mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
chores: remove deprecated bwamem2/index modules cf #166
This commit is contained in:
parent
9472f2fa2d
commit
8c4d201dd5
4 changed files with 0 additions and 60 deletions
|
@ -1,16 +0,0 @@
|
|||
process bwa-mem2_index {
|
||||
tag {fasta}
|
||||
|
||||
container 'quay.io/biocontainers/bwa-mem2:2.0--he513fc3_0'
|
||||
|
||||
input:
|
||||
path(fasta)
|
||||
|
||||
output:
|
||||
path("${fasta}.*")
|
||||
|
||||
script:
|
||||
"""
|
||||
bwa-mem2 index ${fasta}
|
||||
"""
|
||||
}
|
|
@ -1,26 +0,0 @@
|
|||
name: bwa-mem2 index
|
||||
description: create indexes for BWA from a fasta file
|
||||
keywords:
|
||||
- index
|
||||
tools:
|
||||
- bwa:
|
||||
description: |
|
||||
Bwa-mem2 is the next version of the bwa-mem algorithm in bwa.
|
||||
It produces alignment identical to bwa and is ~1.3-3.1x faster depending on the use-case, dataset and the running machine.
|
||||
homepage: https://github.com/bwa-mem2/bwa-mem2
|
||||
documentation: https://github.com/bwa-mem2/bwa-mem2
|
||||
arxiv: arXiv:1303.3997
|
||||
input:
|
||||
-
|
||||
- input:
|
||||
type: file
|
||||
description: Input fasta file
|
||||
pattern: "*.{fasta,fa}"
|
||||
output:
|
||||
-
|
||||
- index:
|
||||
type: file
|
||||
description: bwa indexes file
|
||||
pattern: "*.{fasta,fa}.{amb,ann,bwt,pac,sa}"
|
||||
authors:
|
||||
- "@maxulysse"
|
|
@ -1,16 +0,0 @@
|
|||
#!/usr/bin/env nextflow
|
||||
nextflow.preview.dsl = 2
|
||||
include '../../../nf-core/module_testing/check_process_outputs.nf' params(params)
|
||||
include '../main.nf' params(params)
|
||||
|
||||
// Define input channels
|
||||
input = '../../../test-datasets/tools/bwa/index/input/reference.fasta'
|
||||
Channel
|
||||
.from(input)
|
||||
.set { ch_input }
|
||||
|
||||
// Run the workflow
|
||||
workflow {
|
||||
fastqc(ch_input)
|
||||
// .check_output()
|
||||
}
|
|
@ -1,2 +0,0 @@
|
|||
docker.enabled = true
|
||||
params.outdir = './results'
|
Loading…
Reference in a new issue