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.

il y a 4 ans
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. #import "./tasks/fastp.wdl" as fastp
  2. import "./tasks/fastqc.wdl" as fastqc
  3. workflow {{ project_name }} {
  4. File read
  5. File idx
  6. File screen_ref_dir
  7. File fastq_screen_conf
  8. File gtf
  9. String sample_id
  10. String fastp_docker
  11. String adapter_sequence
  12. String adapter_sequence_r2
  13. String fastp_cluster
  14. String umi_loc
  15. String idx_prefix
  16. String pen_intronlen
  17. String fastqc_cluster_config
  18. String fastqc_docker
  19. String fastqscreen_docker
  20. String fastqscreen_cluster_config
  21. String hisat2_docker
  22. String hisat2_cluster
  23. String qualimapBAMqc_docker
  24. String qualimapBAMqc_cluster_config
  25. String qualimapRNAseq_docker
  26. String qualimapRNAseq_cluster_config
  27. String samtools_docker
  28. String samtools_cluster
  29. String stringtie_docker
  30. String stringtie_cluster
  31. String multiqc_cluster_config
  32. String multiqc_docker
  33. Int multiqc_disk_size
  34. Int trim_front1
  35. Int trim_tail1
  36. Int max_len1
  37. Int trim_front2
  38. Int trim_tail2
  39. Int max_len2
  40. Int disable_adapter_trimming
  41. Int length_required
  42. Int umi_len
  43. Int UMI
  44. Int qualified_quality_phred
  45. Int length_required1
  46. Int disable_quality_filtering
  47. Int pen_cansplice
  48. Int pen_noncansplice
  49. Int min_intronlen
  50. Int max_intronlen
  51. Int maxins
  52. Int minins
  53. Int fastqc_disk_size
  54. Int fastqscreen_disk_size
  55. Int qualimapBAMqc_disk_size
  56. Int qualimapRNAseq_disk_size
  57. Int insert_size
  58. Int minimum_length_allowed_for_the_predicted_transcripts
  59. Int Junctions_no_spliced_reads
  60. Int count_length
  61. Float minimum_isoform_abundance
  62. Float maximum_fraction_of_muliplelocationmapped_reads
  63. String ballgown_docker
  64. String ballgown_cluster
  65. String disk_size
  66. String count_docker
  67. String count_cluster
  68. Int length_limit
  69. call fastqc.fastqc as fastqc {
  70. input:
  71. read = read,
  72. docker = fastqc_docker,
  73. cluster_config = fastqc_cluster_config,
  74. disk_size = fastqc_disk_size
  75. }
  76. }