Integrate the graphs across samples, to form one merged splicing graph (per gene).
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 spladder {
- String sample_id
- Array[File] bam
- Array[File] bai
- Array[File] pickle
- File reference_gtf_file
-
-
- String docker
- String cluster
- String disk_size
-
-
-
- command <<<
- set -o pipefail
- set -e
-
- mkdir -p ${sample_id}/spladder_out
- echo ${bam} > bam.txt
- sed ':a ; N;s/\n/,/ ; t a ; ' bam.txt > alignment.txt
-
- for i in ${sep=" " pickle}
- do
- ln -s $i ${sample_id}/spladder_out/$i
- echo ${sample_id}/spladder_out/$i
- echo ${sample_id}/spladder_out/$i >> pickle.txt
- done
-
- 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"
- File alignment = "alignment.txt"
- File pickle_txt = "pickle.txt"
- }
- }
|