|
1234567891011121314151617181920212223242526272829303132333435 |
- task GVCFtyper {
-
- File ref_dir
- String SENTIEON_INSTALL_DIR
- String fasta
- Array[File] gvcfs
- Array[File] gvcf_idxs
- String project
- String chromo
- String docker
- String cluster_config
- String disk_size
-
- command <<<
- set -o pipefail
- set -e
- export SENTIEON_LICENSE=192.168.0.55:8990
- nt=$(nproc)
- ${SENTIEON_INSTALL_DIR}/bin/sentieon driver -r ${ref_dir}/${fasta} --algo GVCFtyper ${project}.${chromo}joint.g.vcf ${sep=" " gvcfs}
- >>>
-
- runtime {
- docker:docker
- cluster: cluster_config
- systemDisk: "cloud_ssd 40"
- dataDisk: "cloud_ssd " + disk_size + " /cromwell_root/"
- }
-
- output {
- File gvcf = "${project}.${chromo}joint.g.vcf"
- File gvcf_idx = "${project}.${chromo}.joint.g.vcf.idx"
- }
- }
-
-
|