chores: remove deprecated module

This commit is contained in:
MaxUlysse 2021-02-16 14:31:16 +01:00
parent 7d5ac60aa1
commit 3da905b0fd
4 changed files with 0 additions and 57 deletions

View file

@ -1,16 +0,0 @@
process htslib_tabix {
tag "$vcf"
container 'quay.io/biocontainers/tabix:0.2.6--ha92aebf_0'
input:
path vcf
output:
path "${vcf}.tbi"
script:
"""
tabix -p vcf ${vcf}
"""
}

View file

@ -1,26 +0,0 @@
name: htslib tabix
description: create tabix index from a bgzip vcf file
keywords:
- index
- tabix
tools:
- bwa:
description: |
Generic indexer for TAB-delimited genome position files.
homepage: https://www.htslib.org/
documentation: https://www.htslib.org/doc/tabix.1.html
doi: 10.1093/bioinformatics/btq671
input:
-
- input:
type: file
description: Input vcf.gz file
pattern: "*.{vcf.gz}"
output:
-
- index:
type: file
description: tabix index file
pattern: "*.{vcf.gz.tbi}"
authors:
- "@maxulysse"

View file

@ -1,13 +0,0 @@
#!/usr/bin/env nextflow
nextflow.preview.dsl = 2
include '../../../tests/functions/check_process_outputs.nf' params(params)
include '../main.nf' params(params)
// Define input channels
input = '../../../test-datasets/tools/file.vcf.gz'
// Run the workflow
workflow {
tabix_index(ch_read_files)
// .check_output()
}

View file

@ -1,2 +0,0 @@
docker.enabled = true
params.outdir = './results'