From 3b2a59353254fb456af0d44e71816af40037166e Mon Sep 17 00:00:00 2001 From: Lili Andersson-Li <64467552+LilyAnderssonLee@users.noreply.github.com> Date: Wed, 17 Jan 2024 13:18:30 +0100 Subject: [PATCH] Update check_samplesheet.py --- bin/check_samplesheet.py | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/bin/check_samplesheet.py b/bin/check_samplesheet.py index d4edb74..62c5a46 100755 --- a/bin/check_samplesheet.py +++ b/bin/check_samplesheet.py @@ -26,10 +26,8 @@ def __init__( sample_col="sample", run_accession_col="run_accession", instrument_platform_col="instrument_platform", - reads_type_col="reads_type", fastq_1_col="fastq_1", fastq_2_col="fastq_2", - fasta_col="fasta", kraken2_report_col="kraken2_report", kraken2_classifiedout_col="kraken2_classifiedout", centrifuge_out_col="centrifuge_out", @@ -47,14 +45,10 @@ def __init__( (default "run_accession"). instrument_platform_col (str): The name of the column that contains the instrument platform (default "instrument_platform"). - reads_type_col (str): The name of the column that contains the reads type, shortread or longread - (default "reads_type"). fastq_1_col (str): The name of the column that contains the first (or only) FASTQ file path (default "fastq_1") from bowtie2 unmapped read 1 against the human genome. fastq_2_col (str): The name of the column that contains the second (if any) FASTQ file path (default "fastq_2") from bowtie2 unmapped read 2 against the human genome. - fasta_col (str): The name of the column that contains the FASTA information - (default "fasta") from minimap2 unmapped read against the human genome. kraken2_report_col (str): The name of the column that contains the kraken2 report (default "kraken2_report"). kraken2_classifiedout_col (str): The name of the column that contains the kraken2 classifiedout @@ -71,10 +65,8 @@ def __init__( self._sample_col = sample_col self._run_accession_col = run_accession_col self._instrument_platform_col = instrument_platform_col - self._reads_type_col = reads_type_col self._fastq_1_col = fastq_1_col self._fastq_2_col = fastq_2_col - self._fasta_col = fasta_col self._kraken2_report_col = kraken2_report_col self._kraken2_classifiedout_col = kraken2_classifiedout_col self._centrifuge_out_col = centrifuge_out_col @@ -199,10 +191,8 @@ def check_samplesheet(file_in, file_out): "sample", "run_accession", "instrument_platform", - "reads_type", "fastq_1", "fastq_2", - "fasta", "kraken2_report", "kraken2_classifiedout", "centrifuge_out",