Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: James A. Fellows Yates <[email protected]>
  • Loading branch information
aidaanva and jfy133 authored Jul 28, 2023
1 parent 0ede14b commit 526ce85
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
1 change: 0 additions & 1 deletion modules/nf-core/topas/gencons/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ process TOPAS_GENCONS {
def prefix = task.ext.prefix ?: "${meta.id}"
def VERSION = '1.0.1' // WARN: Version information not provided by tool on CLI. Please update this string when bumping container versions.


"""
topas \\
Expand Down
3 changes: 1 addition & 2 deletions modules/nf-core/topas/gencons/meta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ tools:
doi: "10.1038/s41598-017-17723-1"
licence: "['CC-BY']"

## TODO nf-core: Add a description of all of the variables used as input
input:
- meta:
type: map
Expand Down Expand Up @@ -45,7 +44,7 @@ output:

- fasta:
type: file
description: Gzip consensus fasta file
description: Gzipped consensus fasta file with bases under threshold replaced with Ns
pattern: "*.fasta.gz"

- ccf:
Expand Down
4 changes: 2 additions & 2 deletions tests/modules/nf-core/topas/gencons/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
nextflow.enable.dsl = 2

include { GATK_UNIFIEDGENOTYPER } from '../../../../modules/nf-core/gatk/unifiedgenotyper/main.nf'
include { TOPAS_GENCONS } from '../../../../../modules/nf-core/topas/gencons/main.nf'
include { TOPAS_GENCONS } from '../../../../../modules/nf-core/topas/gencons/main.nf'

workflow test_topas_gencons {

input_gatk = [ [ id:'test' ], // meta map
input_gatk = [ [ id:'test' ], // meta map
file(params.test_data['sarscov2']['illumina']['test_paired_end_sorted_bam'], checkIfExists: true),
file(params.test_data['sarscov2']['illumina']['test_paired_end_sorted_bam_bai'], checkIfExists: true),
]
Expand Down

0 comments on commit 526ce85

Please sign in to comment.