We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0ef6a73 commit 5b6bdfeCopy full SHA for 5b6bdfe
1 file changed
subworkflows/local/interproscan/main.nf
@@ -25,7 +25,7 @@ workflow INTERPROSCAN {
25
file(params.interproscan_tar_gz, checkIfExists: true),
26
]
27
UNTAR(interproscan_compressed)
28
- interproscan_db = UNTAR.out.untar.map { meta, folder -> tuple(folder.resolve('data'), params.interproscan_database_version) }
+ interproscan_db = UNTAR.out.untar.map { _meta, folder -> tuple(folder.resolve('data'), params.interproscan_database_version) }
29
}
30
else if (params.interproscan_database) {
31
interproscan_db = [file(params.interproscan_database, checkIfExists: true), params.interproscan_database_version]
0 commit comments