Skip to content

Commit

Permalink
test to see if dependencies are working with starfusion1.14 onluy
Browse files Browse the repository at this point in the history
  • Loading branch information
rannick committed Dec 17, 2024
1 parent ff69a60 commit b7383eb
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
4 changes: 3 additions & 1 deletion modules/local/fusioninspector/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@ process FUSIONINSPECTOR {
label 'process_high'

conda "${moduleDir}/environment.yml"
container 'trinityctat/fusioninspector:2.10.0'
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
'https://community-cr-prod.seqera.io/docker/registry/v2/blobs/sha256/f0/f0bf770bcc7a7af4c9b7a83a88a191bb9e9875759e1985030268df9ffa27dde6/data':
'community.wave.seqera.io/library/star-fusion:4d0a3a362520dfa6'}"

input:
tuple val(meta), path(reads), path(fusion_list)
Expand Down
4 changes: 3 additions & 1 deletion modules/local/starfusion/build/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@ process STARFUSION_BUILD {
tag 'star-fusion'

conda "${moduleDir}/environment.yml"
container 'docker.io/trinityctat/starfusion:1.14.0'
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
'https://community-cr-prod.seqera.io/docker/registry/v2/blobs/sha256/f0/f0bf770bcc7a7af4c9b7a83a88a191bb9e9875759e1985030268df9ffa27dde6/data':
'community.wave.seqera.io/library/star-fusion:4d0a3a362520dfa6'}"

input:
tuple val(meta), path(fasta)
Expand Down
4 changes: 3 additions & 1 deletion modules/local/starfusion/detect/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@ process STARFUSION {
label 'process_high'

conda "${moduleDir}/environment.yml"
container 'docker.io/trinityctat/starfusion:1.14.0'
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
'https://community-cr-prod.seqera.io/docker/registry/v2/blobs/sha256/f0/f0bf770bcc7a7af4c9b7a83a88a191bb9e9875759e1985030268df9ffa27dde6/data':
'community.wave.seqera.io/library/star-fusion:4d0a3a362520dfa6'}"

input:
tuple val(meta), path(reads), path(junction)
Expand Down
4 changes: 3 additions & 1 deletion modules/local/starfusion/download/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@ process STARFUSION_DOWNLOAD {
tag 'star-fusion'

conda "${moduleDir}/environment.yml"
container 'docker.io/trinityctat/starfusion:1.14.0'
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
'https://community-cr-prod.seqera.io/docker/registry/v2/blobs/sha256/f0/f0bf770bcc7a7af4c9b7a83a88a191bb9e9875759e1985030268df9ffa27dde6/data':
'community.wave.seqera.io/library/star-fusion:4d0a3a362520dfa6'}"

output:
path "ctat_genome_lib_build_dir/*" , emit: reference
Expand Down

0 comments on commit b7383eb

Please sign in to comment.