Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

6 роки тому
6 роки тому
6 роки тому
123456789101112131415161718192021222324252627282930
  1. task Freebayes {
  2. File ref_dir
  3. File ref_fa_fai
  4. File fasta
  5. File Dedup_bam
  6. File Dedup_bam_index
  7. String sample
  8. String FBdocker
  9. String cluster_config
  10. String disk_size
  11. command <<<
  12. set -o pipefail
  13. set -e
  14. nt=$(nproc)
  15. freebayes-parallel <(/opt/freebayes/scripts/fasta_generate_regions.py ${ref_dir}/${ref_fa_fai} 100) $nt -f ${ref_dir}/${fasta} --genotype-qualities ${Dedup_bam} > ${sample}_fb.vcf
  16. >>>
  17. runtime {
  18. docker:FBdocker
  19. cluster: cluster_config
  20. systemDisk: "cloud_ssd 40"
  21. dataDisk: "cloud_ssd " + disk_size + " /cromwell_root/"
  22. }
  23. output {
  24. File vcf = "${sample}_fb.vcf"
  25. }
  26. }