Skip to content
Merged
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
5 changes: 4 additions & 1 deletion modules/ebi-metagenomics/interproscan/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ process INTERPROSCAN {
tag "$meta.id"
label 'process_long'

container 'microbiome-informatics/interproscan:5.76-107.0'
container 'microbiome-informatics/interproscan:5.76-107.0_patch1'

containerOptions {
def containerArgs = []
Expand Down Expand Up @@ -44,6 +44,9 @@ process INTERPROSCAN {
gzip -c -d ${fasta} > ${fasta_file_name}
fi

# Set the max memory for the JVM
export JAVA_OPTS="-Xmx${task.memory.toGiga()}G"

# -dp (disable precalculation) is on so no online dependency
interproscan.sh \\
-cpu $task.cpus \\
Expand Down
Loading