from fastq to bam files
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

ballgown.wdl 580B

il y a 3 ans
12345678910111213141516171819202122232425
  1. task ballgown {
  2. File gene_abundance
  3. Array[File] ballgown
  4. String sample_id
  5. String docker
  6. String cluster
  7. String disk_size
  8. command <<<
  9. mkdir -p /cromwell_root/tmp/${sample_id}
  10. cp -r ${sep=" " ballgown} /cromwell_root/tmp/${sample_id}
  11. ballgown /cromwell_root/tmp/${sample_id} ${sample_id}.txt
  12. >>>
  13. runtime {
  14. docker: docker
  15. cluster: cluster
  16. systemDisk: "cloud_ssd 40"
  17. dataDisk: "cloud_ssd " + disk_size + " /cromwell_root/"
  18. }
  19. output {
  20. File mat_expression = "${sample_id}.txt"
  21. }
  22. }