Skip to content

Commit

Permalink
Updated GAS to 0.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
sgsutcliffe committed Feb 4, 2025
1 parent 3850e90 commit 2921a96
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions modules/local/gas/call/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ process GAS_CALL{
tag "Assigning Nomenclature"

container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
'https://depot.galaxyproject.org/singularity/genomic_address_service%3A0.1.3--pyh7e72e81_0' :
'biocontainers/genomic_address_service:0.1.3--pyh7e72e81_0' }"
'https://depot.galaxyproject.org/singularity/genomic_address_service%3A0.1.4--pyh7e72e81_0' :
'biocontainers/genomic_address_service:0.1.4--pyh7e72e81_0' }"

input:
path(reference_clusters)
Expand Down
2 changes: 1 addition & 1 deletion tests/data/called/expected_results_missing.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ id address
sample1 1
sample2 1
sample3 2
sampleQ 3
sampleQ 1
2 changes: 1 addition & 1 deletion tests/data/irida/missing_iridanext.output.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"metadata": {
"samples": {
"sampleQ": {
"address": "3"
"address": "1"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion tests/pipelines/main_missing_alleles.nf.test
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ nextflow_pipeline {
def iridanext_metadata = iridanext_json.metadata.samples

assert iridanext_metadata.size() == 1 && iridanext_metadata.containsKey("sampleQ")
assert iridanext_metadata.sampleQ."address" == "3"
assert iridanext_metadata.sampleQ."address" == "1"
}
}

Expand Down

0 comments on commit 2921a96

Please sign in to comment.