Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
|
- task CNV {
- File Tumordir
- String TumorBam
- File Normaldir
- String NormalBam
- String TumorSampleID
- File bed_file
- String docker
- String disk_size
- String cluster_config
-
- command <<<
- cn_mops --Tumor=${Tumordir}/${TumorBam} --Normal=${Normaldir}/${NormalBam} --TumorID==${TumorSampleID} --bed_file=${bed_file} --workDir=.
- >>>
-
- runtime {
- docker: docker
- cluster: cluster_config
- systemDisk: "cloud_ssd 40"
- dataDisk: "cloud_ssd " + disk_size + " /cromwell_root/"
- }
- output {
- File cn_mops = "${TumorSampleID}.cn.mops.res.txt"
- }
- }
|