You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- task charger{
- String sample_id
- File vep_vcf
- File inheritanceGeneList
- File clinvar
- File pathogenic
- File HotSpot3D
- File PP2GeneList
-
- String disk_size
- String docker
- String cluster
-
- command <<<
-
- set -o pipefail
- set -e
-
- vep_index=`echo ${vep_vcf}|awk -F "/" '{print $NF}'|sed 's/.vcf//'`
-
- echo ${sample_id}
-
- mkdir ./output/
- charger -f ${vep_vcf} \
- -o ./output/$vep_index.charger.tsv \
- -D ${inheritanceGeneList} \
- -l --mac-clinvar-tsv ${clinvar} \
- -z ${pathogenic} \
- -H ${HotSpot3D} \
- --PP2GeneList ${PP2GeneList}
-
-
- >>>
-
- runtime {
- docker: docker
- cluster: cluster
- systemDisk: "cloud_ssd 40"
- dataDisk: "cloud_ssd " + disk_size + " /cromwell_root/"
- }
-
- output {
- Array[File] filter_result=glob("./output/${sample_id}*")
- }
-
- }
-
|