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.
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

25 Zeilen
505B

  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 subsampling_rate
  8. String docker
  9. String cluster_config
  10. String disk_size
  11. call fastq_ncm.fastq_ncm as fastq_ncm {
  12. input:
  13. out_id=sample_id,
  14. fq1=fastq1,
  15. fq2=fastq2,
  16. subsampling_rate=subsampling_rate,
  17. docker=docker,
  18. disk_size=disk_size,
  19. cluster_config=cluster_config
  20. }
  21. }