Integrate the graphs across samples, to form one merged splicing graph (per gene).
Nie możesz wybrać więcej, niż 25 tematów
Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
|
- 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
-
- sed ':a ; N;s/\n/,/ ; t a ; ' bam > 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"
- }
- }
|