|
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- task rmats {
- String sample_id
- File b1_1
- File b1_2
- File b1_3
- File b2_1
- File b2_2
- File b2_3
- File reference_gtf_file
-
-
- String docker
- String cluster
- String disk_size
-
-
-
- command <<<
- set -o pipefail
- set -e
-
- mkdir -p ${sample_id}/output
- mkdir -p ${sample_id}/tmp_output
- python /usr/local/bin/rmats.py --b1 ${b1_1},${b1_2},${b1_3} \
- --b2 ${b2_1},${b2_2},${b2_3}\
- --gtf ${reference_gtf_file} \
- -t paired \
- --readLength 150 \
- --nthread 4 \
- --od ${sample_id}/output \
- --tmp ${sample_id}/tmp_output
-
- find . -depth > fileList.txt
- >>>
-
- runtime {
- docker: docker
- cluster: cluster
- systemDisk: "cloud_ssd 40"
- dataDisk: "cloud_ssd " + disk_size + " /cromwell_root/"
- }
-
- output {
- File fileList = "fileList.txt"
- Array[File] AS_txt = glob("${sample_id}/output/*.txt")
- Array[File] tmp = glob("${sample_id}/output/tmp/*")
- }
- }
-
|