Skip to content

Commit

Permalink
Changes to CITATIONS and testing for the tupled env
Browse files Browse the repository at this point in the history
  • Loading branch information
DLBPointon committed Jul 17, 2024
1 parent c733f15 commit 8b72624
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 16 deletions.
27 changes: 15 additions & 12 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -9,21 +9,24 @@ message: >-
type: software
authors:
- given-names: Damon-Lee Bernard
family-names: Pointon
affiliation: Wellcome Sanger Institute
orcid: "https://orcid.org/0000-0003-2949-6719"
family-names: Pointon
affiliation: Wellcome Sanger Institute
orcid: "https://orcid.org/0000-0003-2949-6719"
- given-names: Matthieu
family-names: Muffato
affiliation: Wellcome Sanger Institute
orcid: "https://orcid.org/0000-0002-7860-3560"
family-names: Muffato
affiliation: Wellcome Sanger Institute
orcid: "https://orcid.org/0000-0002-7860-3560"
- given-names: Ying
family-names: Sims
affiliation: Wellcome Sanger Institute
orcid: "https://orcid.org/0000-0003-4765-4872"
family-names: Sims
affiliation: Wellcome Sanger Institute
orcid: "https://orcid.org/0000-0003-4765-4872"
- given-names: William
family-names: Eagles
affiliation: Wellcome Sanger Institute
orcid: "https://orcid.org/0009-0006-9956-0404"
family-names: Eagles
affiliation: Wellcome Sanger Institute
orcid: "https://orcid.org/0009-0006-9956-0404"
identifiers:
- type: doi
value: 10.5281/zenodo.XXXXXXX
repository-code: "https://github.com/sanger-tol/curationpretext"
license: MIT
commit: TODO
Expand Down
4 changes: 2 additions & 2 deletions modules/local/get_largest_scaff.nf
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ process GET_LARGEST_SCAFF {
tuple val(meta), path(file)

output:
env largest_scaff , emit: scaff_size
path "versions.yml" , emit: versions
tuple val(meta), env(largest_scaff), emit: scaff_size
path "versions.yml", emit: versions

when:
task.ext.when == null || task.ext.when
Expand Down
4 changes: 2 additions & 2 deletions subworkflows/local/accessory_files.nf
Original file line number Diff line number Diff line change
Expand Up @@ -46,15 +46,15 @@ workflow ACCESSORY_FILES {
//
GAP_FINDER (
reference_tuple,
GET_LARGEST_SCAFF.out.scaff_size.toInteger()
GET_LARGEST_SCAFF.out.scaff_size.map{it -> it[0].toInteger()}
)
ch_versions = ch_versions.mix(GAP_FINDER.out.versions)

//
// SUBWORKFLOW: GENERATE TELOMERE WINDOW FILES WITH LONGREAD READS AND REFERENCE
//
TELO_FINDER (
GET_LARGEST_SCAFF.out.scaff_size,
GET_LARGEST_SCAFF.out.scaff_size.map{it -> it[0].toInteger()},
reference_tuple,
params.teloseq
)
Expand Down

0 comments on commit 8b72624

Please sign in to comment.