Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PR to fix issue 90 (Pipeline fails when test.fa missing) #92

Open
wants to merge 2 commits into
base: dev
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ params {
// Input options
input = null // location for the input samplesheet file
classifier = "kraken2"
fasta = "test.fa"
fasta = null
schema_ignore_params = "fasta"
tracedir = "null"
tracedir = null

//rasusa subsampling options
skip_subsampling = true
Expand All @@ -33,13 +33,13 @@ params {
skip_seqqc = false
skip_trimming = false
trim_tool = "fastp" // Select which trimming tool to use (fastp/trimmomatic/trimgalore)
adapter_fasta = "/mnt/cidgoh-object-storage/database/adaptors/test.fa" // location for adapator database (fasta file)
adapter_fasta = "" // location for adapator database (fasta file)
save_trimmed_fail = false // Check if reads failed in the trimming process need to be saved (True/False, default: False)
save_merged = true // Check if merged reads need to be saved (True/False, default: True)


// MultiQC options
max_multiqc_email_size = '25.MB'
max_multiqc_email_size = "25.MB"
multiqc_title = "BACPAQ"
multiqc_config = null
multiqc_logo = null
Expand Down Expand Up @@ -144,7 +144,6 @@ params {
version = false
validate_params = false
show_hidden_params = false
schema_ignore_params = 'genomes'

// assembly QC options
skip_checkm = false
Expand Down
2 changes: 1 addition & 1 deletion nextflow_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
},
"fasta": {
"type": "string",
"default": "test.fa",
"default": "",
"hidden": true,
"format": "file-path",
"mimetype": "fasta"
Expand Down
Empty file removed test.fa
Empty file.