-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #260 from broadinstitute/ct-guess-instrument-model
guess instrument model in demux; pass to output
- Loading branch information
Showing
6 changed files
with
33 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,6 +10,10 @@ workflow demux_only { | |
email: "[email protected]" | ||
} | ||
|
||
input { | ||
String? instrument_model_user_specified | ||
} | ||
|
||
call tasks_demux.illumina_demux | ||
|
||
call reports.MultiQC { | ||
|
@@ -18,11 +22,12 @@ workflow demux_only { | |
} | ||
|
||
output { | ||
Array[File] raw_reads_unaligned_bams = illumina_demux.raw_reads_unaligned_bams | ||
File demux_metrics = illumina_demux.metrics | ||
File demux_commonBarcodes = illumina_demux.commonBarcodes | ||
File demux_outlierBarcodes = illumina_demux.outlierBarcodes | ||
File multiqc_report_raw = MultiQC.multiqc_report | ||
String demux_viral_core_version = illumina_demux.viralngs_version | ||
Array[File] raw_reads_unaligned_bams = illumina_demux.raw_reads_unaligned_bams | ||
File demux_metrics = illumina_demux.metrics | ||
File demux_commonBarcodes = illumina_demux.commonBarcodes | ||
File demux_outlierBarcodes = illumina_demux.outlierBarcodes | ||
File multiqc_report_raw = MultiQC.multiqc_report | ||
String instrument_model_inferred = select_first(flatten([[instrument_model_user_specified],[illumina_demux.run_info['sequencer_model']]])) | ||
String demux_viral_core_version = illumina_demux.viralngs_version | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters