選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

align.wdl 477B

5年前
12345678910111213141516171819202122232425
  1. task align {
  2. File read1
  3. File read2
  4. String sample
  5. String base = sub(basename(read1),"\\.\\S+$", "")
  6. String docker
  7. String cluster_config
  8. String disk_size
  9. command <<<
  10. mixcr align -p rna-seq -s hsa -OallowPartialAlignments=true ${read1} ${read2} ${base}.vdjca
  11. >>>
  12. runtime {
  13. docker:docker
  14. cluster: cluster_config
  15. systemDisk: "cloud_ssd 40"
  16. dataDisk: "cloud_ssd " + disk_size + " /cromwell_root/"
  17. }
  18. output {
  19. File sam = base + ".vdjca"
  20. }
  21. }