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

Added IRIDA Next JSON output file #10

Merged
merged 1 commit into from
Jun 10, 2024
Merged
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
19 changes: 19 additions & 0 deletions conf/iridanext.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
iridanext {
enabled = true
output {
path = "${params.outdir}/iridanext.output.json.gz"
overwrite = true
files {
global = [
]
samples = [
"**/**/detailed_summary.tsv",
"**/**/mlst.tsv",
"**/**/plasmidfinder.tsv",
"**/**/resfinder.tsv",
"**/**/results.xlsx",
"**/**/settings.txt",
"**/**/summary.tsv"]
}
}
}
5 changes: 5 additions & 0 deletions nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -179,8 +179,10 @@ singularity.registry = 'quay.io'
// Nextflow plugins
plugins {
id 'nf-validation' // Validation of pipeline parameters and creation of an input channel from a sample sheet
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could you change nf-validation to [email protected] so that we are using a fixed version.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Will do!

id '[email protected]' // Output for IRIDA Next
}


// Load igenomes.config if required
if (!params.igenomes_ignore) {
includeConfig 'conf/igenomes.config'
Expand All @@ -191,6 +193,9 @@ if (!params.igenomes_ignore) {
// The JULIA depot path has been adjusted to a fixed path `/usr/local/share/julia` that needs to be used for packages in the container.
// See https://apeltzer.github.io/post/03-julia-lang-nextflow/ for details on that. Once we have a common agreement on where to keep Julia packages, this is adjustable.

// Config file for nf-iridanext
includeConfig 'conf/iridanext.config'

env {
PYTHONNOUSERSITE = 1
R_PROFILE_USER = "/.Rprofile"
Expand Down
Loading