Parcourir la source

revise-tophat

master
stead99 il y a 5 ans
Parent
révision
5445db83ca
1 fichiers modifiés avec 3 ajouts et 3 suppressions
  1. +3
    -3
      tasks/tophat2.wdl

+ 3
- 3
tasks/tophat2.wdl Voir le fichier

String cluster String cluster


command <<< command <<<
tophat -p 8 -G ${gtf} -o ${genome_directory}/${idx_prefix} ${read1} ${read2}
tophat -p 8 -G ${gtf} -o baseout ${genome_directory}/${idx_prefix} ${read1} ${read2}
>>> >>>
runtime { runtime {
} }


output { output {
File accepted_hits = "${baseout}_accepted_hits.bam"
File unmapped_bam = "${baseout}_unmapped.bam"
File accepted_hits = baseout + "_accepted_hits.bam"
File unmapped_bam = baseout + "_unmapped.bam"
} }
} }

Chargement…
Annuler
Enregistrer