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.

24 lignes
464B

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