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

Interproscan #104

Merged
merged 13 commits into from
Jan 12, 2024
Merged
Show file tree
Hide file tree
Changes from 2 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
2 changes: 0 additions & 2 deletions config/functional_annotation_modules.config
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,9 @@ process {
}
withName: 'INTERPROSCAN' {
ext.args = [
'-f TSV',
'--iprlookup',
'--goterms',
'-pa',
'-dp',
'-t p'
].join(' ').trim()
}
Expand Down
1 change: 1 addition & 0 deletions config/nf-core-defaults.config
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ process {
}
withLabel: process_long {
time = 20.h
cpus = 4
mahesh-panchal marked this conversation as resolved.
Show resolved Hide resolved
}
withLabel: process_high_memory {
memory = 120.GB
Expand Down
4 changes: 3 additions & 1 deletion config/test.config
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,13 @@ if ( params.subworkflow == 'functional_annotation' ) {
process {
withName: 'FUNCTIONAL_ANNOTATION:INTERPROSCAN' {
ext.args = [
'-f TSV',
//'-f TSV',
mahesh-panchal marked this conversation as resolved.
Show resolved Hide resolved
// '--iprlookup',
// '--goterms',
// '-pa',
// '-dp',
'-t p'

mahesh-panchal marked this conversation as resolved.
Show resolved Hide resolved
].join(' ').trim()
}
}
Expand Down Expand Up @@ -77,6 +78,7 @@ process {
}
withLabel: process_long {
time = 1.h
cpus = 2
mahesh-panchal marked this conversation as resolved.
Show resolved Hide resolved
}
withLabel: process_high_memory {
memory = 6.GB
Expand Down
5 changes: 5 additions & 0 deletions modules.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,11 @@
"git_sha": "9a4517e720bc812e95b56d23d15a1653b6db4f53",
"installed_by": ["modules"]
},
"interproscan": {
"branch": "master",
"git_sha": "3f5420aa22e00bd030a2556dfdffc9e164ec0ec5",
"installed_by": ["modules"]
},
"multiqc": {
"branch": "master",
"git_sha": "a6e11ac655e744f7ebc724be669dd568ffdc0e80",
Expand Down
34 changes: 0 additions & 34 deletions modules/local/interproscan.nf

This file was deleted.

7 changes: 7 additions & 0 deletions modules/nf-core/interproscan/environment.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

88 changes: 88 additions & 0 deletions modules/nf-core/interproscan/main.nf

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

54 changes: 54 additions & 0 deletions modules/nf-core/interproscan/meta.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

65 changes: 65 additions & 0 deletions modules/nf-core/interproscan/tests/main.nf.test

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

28 changes: 28 additions & 0 deletions modules/nf-core/interproscan/tests/main.nf.test.snap

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions modules/nf-core/interproscan/tests/nextflow.config

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions modules/nf-core/interproscan/tests/tags.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 2 additions & 18 deletions subworkflows/functional_annotation/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,23 +26,6 @@ nextflow run NBISweden/pipelines-nextflow \
-params-file params.yml
```

> **note**
>
> The Interproscan conda package is temperamental. Please use a local installation
> by overriding the workflow configuration.
>
> `nextflow.config`:
>
> ```nextflow
> process {
> withName: 'INTERPROSCAN' {
> conda = null
> container = null
> module = 'bioinfo-tools:InterProScan/5.30-69.0' // Load Uppmax modules `bioinfo-tools` and `InterProScan/5.30-69.0`
> }
> }
> ```

## Parameters

- General:
Expand All @@ -65,7 +48,8 @@ These command line tool parameters can be changed by overriding the `ext.args` v
```nextflow
process {
withName: 'INTERPROSCAN' {
ext.args = '-f TSV --iprlookup --goterms -pa -dp -t p'
//
MartinPippel marked this conversation as resolved.
Show resolved Hide resolved
ext.args = '--iprlookup --goterms -pa -t p'
}
}
```
Expand Down
Loading
Loading