1
0
Fork 0
mirror of https://github.com/MillironX/taxprofiler.git synced 2024-09-21 04:32:06 +00:00

minor fixes

This commit is contained in:
James Fellows Yates 2022-12-20 13:55:15 +01:00
parent 7709245874
commit 11db981a88
3 changed files with 5 additions and 12 deletions

View file

@ -50,13 +50,9 @@ def check_samplesheet(file_in, file_out):
FQ_EXTENSIONS = (".fq.gz", ".fastq.gz")
FA_EXTENSIONS = (
".fa",
".fa.gz",
".fasta",
".fasta.gz",
".fna",
".fna.gz",
".fas",
".fas.gz",
)
INSTRUMENT_PLATFORMS = [

View file

@ -12,7 +12,7 @@
nf-core/taxprofiler can accept as input raw or preprocessed single- or paired-end short-read (e.g. Illumina) FASTQ files, long-read FASTQ files (e.g. Oxford Nanopore), or FASTA sequences (available for a subset of profilers).
> ⚠️ Input FASTQ files _must_ be gzipped, while FASTA files may optionally be uncompressed (although this is not recommended)
> ⚠️ Input FASTQ and FASTA files _must_ be gzipped
You will need to create a samplesheet with information about the samples you would like to analyse before running the pipeline. Use this parameter to specify its location. It has to be a comma-separated file with 6 columns, and a header row as shown in the examples below. Furthermother, nf-core/taxprofiler also requires a second comma-separated file of 3 columns with a header row as in the examples below.

View file

@ -18,17 +18,14 @@ workflow INPUT_CHECK {
fastq: true
}
parsed_samplesheet.fastq
fastq = parsed_samplesheet.fastq
.map { create_fastq_channel(it) }
.set { fastq }
parsed_samplesheet.nanopore
nanopore = parsed_samplesheet.nanopore
.map { create_fastq_channel(it) }
.set { nanopore }
parsed_samplesheet.fasta
fasta = parsed_samplesheet.fasta
.map { create_fasta_channel(it) }
.set { fasta }
emit:
fastq = fastq ?: [] // channel: [ val(meta), [ reads ] ]