We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 090dd82 commit d52fde6Copy full SHA for d52fde6
modules/validate.nf
@@ -18,7 +18,10 @@ process VALIDATE_NANOPORE {
18
script:
19
if ( file(seq_file).getName().endsWith(".fastq.gz") )
20
"""
21
- seqkit seq --validate-seq ${seq_file} -o ${label}.validated.fastq.gz
+ fq lint \
22
+ --lint-mode panic \
23
+ --single-read-validation-level high \
24
+ ${seq_file} && cp \$(realpath ${seq_file}) ${label}.validated.fastq.gz
25
26
else if ( file(seq_file).getName().endsWith(".bam") )
27
@@ -49,7 +52,6 @@ process VALIDATE_ILLUMINA {
49
52
50
53
51
54
- seqfu check --deep --verbose --thousands \
55
fq lint \
56
--lint-mode panic \
57
--single-read-validation-level high \
0 commit comments