Generate a VAF file from the FASTQ file. The purpose of this app is that sometimes we have to process hundreds of files. In this case, using YaqingLiu/NGSCheckMate_parallel is not an optimal choice.
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.

workflow.wdl 525B

il y a 3 ans
12345678910111213141516171819202122232425
  1. import "./tasks/fastq_ncm.wdl" as fastq_ncm
  2. import "./tasks/vaf_ncm.wdl" as vaf_ncm
  3. workflow {{ project_name }} {
  4. String sample_id
  5. File fastq1
  6. File fastq2
  7. String output_id
  8. String subsampling_rate
  9. String docker
  10. String cluster_config
  11. String disk_size
  12. call fastq_ncm.fastq_ncm as fastq_ncm {
  13. input:
  14. fq1=fastq1,
  15. fq2=fastq2,
  16. out_id=output_id,
  17. subsampling_rate=subsampling_rate,
  18. docker=docker,
  19. disk_size=disk_size,
  20. cluster_config=cluster_config
  21. }
  22. }