Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

yahs release update #6695

Merged
merged 7 commits into from
Sep 27, 2024
Merged
Show file tree
Hide file tree
Changes from 3 commits
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
8 changes: 4 additions & 4 deletions modules/nf-core/yahs/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,17 @@ process YAHS {

conda "${moduleDir}/environment.yml"
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
'https://depot.galaxyproject.org/singularity/yahs:1.2a.2--h7132678_0':
'biocontainers/yahs:1.2a.2--h7132678_0' }"
'https://depot.galaxyproject.org/singularity/yahs:1.2--he4a0461_1':
'biocontainers/yahs:1.2--he4a0461_1' }"

input:
tuple val(meta), path(hic_map)
path fasta
path fai

output:
tuple val(meta), path("*scaffolds_final.fa") , emit: scaffolds_fasta
tuple val(meta), path("*scaffolds_final.agp"), emit: scaffolds_agp
tuple val(meta), path("*scaffolds_final.fa") , emit: scaffolds_fasta, optional: true
tuple val(meta), path("*scaffolds_final.agp"), emit: scaffolds_agp, optional: true
tuple val(meta), path("*bin") , emit: binary
path "versions.yml" , emit: versions

Expand Down
1 change: 1 addition & 0 deletions modules/nf-core/yahs/meta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,3 +75,4 @@ authors:
- "@ksenia-krasheninnikova"
maintainers:
- "@ksenia-krasheninnikova"
- "@yy5"
Loading