Skip to content

Commit

Permalink
avoid name collision, fix argument names
Browse files Browse the repository at this point in the history
  • Loading branch information
alpae committed Nov 12, 2024
1 parent 9635aa9 commit b4efc51
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions modules/local/cache_builder/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ process COMBINE_JOBS {
container "dessimozlab/omabuild:nf-latest"

input:
path(job_res)
path(job_res, stageAs: "res???/*")

output:
path("cache.h5"), emit: cache_h5
Expand All @@ -73,4 +73,4 @@ process COMBINE_JOBS {
"""
touch cache.h5
"""
}
}
4 changes: 2 additions & 2 deletions modules/local/go_import/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ process GO_IMPORT {
--out ./GO.h5 \\
--tax-map $tax_map \\
--obo $obo \\
--gafs $gaf \\
--gaf $gaf \\
"""

stub:
"""
touch GO.h5
"""
}
}
2 changes: 1 addition & 1 deletion nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ params {
xref_refseq = null //null -> download from refseq; folder -> files with gpff.gz to process

// gene ontology
go_obo = "https://purl.obolibrary.org/obo/go/go-basic.obo"
go_obo = "http://purl.obolibrary.org/obo/go/go-basic.obo"
go_gaf = "https://ftp.ebi.ac.uk/pub/databases/GO/goa/UNIPROT/goa_uniprot_all.gaf.gz"

// OMA Browser data directory
Expand Down

0 comments on commit b4efc51

Please sign in to comment.