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

updated default databases to null #71

Merged
merged 17 commits into from
May 2, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
8 changes: 4 additions & 4 deletions nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -69,10 +69,10 @@ params {


// Datasets
dehosting_idx = "./databases/PhiPacHum_m2.idx" // mm2 index
mash_sketch = "./databases/GTDBSketch_20231003.msh" // Make sure comments are formatted as taxonomic strings
bakta_db = "./databases/db-light"
kraken2_db = "./databases/k2_standard_20220607/"
dehosting_idx = null // mm2 index
mash_sketch = null // Make sure comments are formatted as taxonomic strings
bakta_db = null
kraken2_db = null
staramr_db = null // Recommended usage is to use the default database in the container


Expand Down
4 changes: 0 additions & 4 deletions nextflow_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -76,28 +76,24 @@
"properties": {
"dehosting_idx": {
"type": "string",
"default": "./databases/PhiPacHum_m2.idx",
apetkau marked this conversation as resolved.
Show resolved Hide resolved
"description": "Mash sketch used for contamination detection and speciation (Sketch comments must be a taxonomic string similar to what Kraken2 outputs)",
"pattern": "^\\S+$",
"format": "file-path"
},
"mash_sketch": {
"type": "string",
"default": "./databases/GTDBSketch_20231003.msh",
"description": "Minimpa2 index for dehosting and kitome removal",
"pattern": "^\\S+$",
"format": "file-path"
},
"bakta_db": {
"type": "string",
"description": "Database use for bakta, this value is optional as bakta can be skipped",
"default": "./databases/db-light",
"pattern": "^\\S+$",
"format": "directory-path"
},
"kraken2_db": {
"type": "string",
"default": "./databases/k2_standard_20220607/",
"description": "Kraken2 database",
"pattern": "^\\S+$",
"format": "directory-path"
Expand Down
Loading