We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4bcca15 commit 0ba1652Copy full SHA for 0ba1652
workflows/seqinspector.nf
@@ -86,6 +86,10 @@ workflow SEQINSPECTOR {
86
// and transpose it into a tuple containing lists for each property
87
88
if (!("fastqscreen" in skip_tools)) {
89
+
90
+ assert params.fastq_screen_references; "params.fastq_screen_references is not defined, either supply it or skip running FastQ Screen"
91
+ assert file(params.fastq_screen_references).exists(); "params.fastq_screen_references does not exist, either supply it or skip running FastQ Screen"
92
93
ch_fastqscreen_refs = Channel
94
.fromList(samplesheetToList(
95
params.fastq_screen_references,
0 commit comments