pipeline/wdl/chemo.wdl

18 lines
298 B
Plaintext
Raw Normal View History

2023-11-01 10:09:29 +08:00
task chemo {
String name
String output_dir
String project
String vcf
command <<<
if [ ! -d ${output_dir}/chemo ];then
mkdir ${output_dir}/chemo
fi
chemo.py -p ${project} -n ${name} -v ${vcf} -o ${output_dir}/chemo
>>>
}