You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fatal("The following options are not accepted with the fastx_filter command when the input is a FASTA file, because quality scores are not available: eeout, fastq_ascii, fastq_eeout, fastq_maxee, fastq_maxee_rate, fastq_out, fastq_qmax, fastq_qmin, fastq_truncee, fastq_truncqual, fastqout_discarded, fastqout_discarded_rev, fastqout_rev");
303
+
fatal("The following options are not accepted with the fastx_filter command when the input is a FASTA file, because quality scores are not available: eeout, fastq_ascii, fastq_eeout, fastq_maxee, fastq_maxee_rate, fastq_minqual, fastq_out, fastq_qmax, fastq_qmin, fastq_truncee, fastq_truncee_rate, fastq_truncqual, fastqout_discarded, fastqout_discarded_rev, fastqout_rev");
fatal("The forward and reverse input sequence must in the same format, either FASTA or FASTQ");
313
321
}
314
-
315
-
if (! (h2->is_fastq || h2->is_empty))
316
-
{
317
-
if (fastq_only)
318
-
{
319
-
fatal("FASTA input files not allowed with fastq_filter, consider using fastx_filter command instead");
320
-
}
321
-
elseif (opt_eeout ||
322
-
(opt_fastq_ascii != 33) ||
323
-
opt_fastq_eeout ||
324
-
(opt_fastq_maxee < dbl_max) ||
325
-
(opt_fastq_maxee_rate < dbl_max) ||
326
-
opt_fastqout ||
327
-
(opt_fastq_qmax < 41) ||
328
-
(opt_fastq_qmin > 0) ||
329
-
(opt_fastq_truncee < dbl_max) ||
330
-
(opt_fastq_truncqual < long_min) ||
331
-
opt_fastqout_discarded ||
332
-
opt_fastqout_discarded_rev ||
333
-
opt_fastqout_rev)
334
-
{
335
-
fatal("The following options are not accepted with the fastx_filter command when the input is a FASTA file, because quality scores are not available: eeout, fastq_ascii, fastq_eeout, fastq_maxee, fastq_maxee_rate, fastq_out, fastq_qmax, fastq_qmin, fastq_truncee, fastq_truncqual, fastqout_discarded, fastqout_discarded_rev, fastqout_rev");
0 commit comments