@@ -301,6 +301,55 @@ q{gatk_baserecalibration_known_sites, gatk_haplotypecaller_snp_known_set, gatk_v
301301 )
302302 );
303303
304+ option(
305+ q{ fastp} => (
306+ cmd_tags => [q{ Analysis recipe switch} ],
307+ documentation => q{ Sequence quality trimming using FastP} ,
308+ is => q{ rw} ,
309+ isa => enum( [ 0, 1, 2 ] ),
310+ )
311+ );
312+
313+ option(
314+ q{ fastp_detect_pe_adapter} => (
315+ documentation => q{ Automatically detect paired end adapters} ,
316+ is => q{ rw} ,
317+ isa => Bool,
318+ )
319+ );
320+
321+ option(
322+ q{ fastp_length_required} => (
323+ documentation => q{ Required length to keep trimmed read pair} ,
324+ is => q{ rw} ,
325+ isa => Int,
326+ )
327+ );
328+
329+ option(
330+ q{ fastp_low_complexity_filter} => (
331+ documentation => q{ Apply Fastp low complexity filter} ,
332+ is => q{ rw} ,
333+ isa => Bool,
334+ )
335+ );
336+
337+ option(
338+ q{ fastp_overrepresentation_analysis} => (
339+ documentation => q{ Do an overrepresentation analysis on the fastq files} ,
340+ is => q{ rw} ,
341+ isa => Bool,
342+ )
343+ );
344+
345+ option(
346+ q{ fastp_trim_poly_g} => (
347+ documentation => q{ Trim poly g sequences from fastq files} ,
348+ is => q{ rw} ,
349+ isa => Bool,
350+ )
351+ );
352+
304353 option(
305354 q{ bwa_mem} => (
306355 cmd_tags => [q{ Analysis recipe switch} ],
@@ -2061,7 +2110,7 @@ q{Default: hgvs, symbol, numbers, sift, polyphen, humdiv, domains, protein, ccds
20612110
20622111 option(
20632112 q{ qccollect_regexp_file} => (
2064- cmd_tags => [q{ Default: qc_regexp_-v1.25 -.yaml} ],
2113+ cmd_tags => [q{ Default: qc_regexp_-v1.28 -.yaml} ],
20652114 documentation =>
20662115q{ Regular expression file containing the regular expression to be used for each program} ,
20672116 is => q{ rw} ,
0 commit comments