Skip to content

Commit

Permalink
Replace Illumina with nanopore as default sequencing platform (#656)
Browse files Browse the repository at this point in the history
  • Loading branch information
bartcharbon authored Dec 4, 2024
1 parent 1b7535c commit 1275b96
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/usage/input.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ The following sections describe the columns that can be used in every sample-she
| ``fastq`` | ``file list`` | yes<sup>3</sup> | | allowed file extensions: [``fastq``, ``fastq.gz``, ``fq``, ``fq.gz``]. single-reads file(s) |
| ``fastq_r1`` | ``file list`` | yes<sup>3</sup> | | allowed file extensions: [``fastq``, ``fastq.gz``, ``fq``, ``fq.gz``]. paired-end reads file(s) #1 |
| ``fastq_r2`` | ``file list`` | yes<sup>3</sup> | | allowed file extensions: [``fastq``, ``fastq.gz``, ``fq``, ``fq.gz``]. paired-end reads file(s) #2 |
| ``sequencing_platform`` | ``enum`` | | ``illumina`` | allowed values: [``illumina``,``nanopore``,``pacbio_hifi``], value must be the same for all project samples |
| ``sequencing_platform`` | ``enum`` | | ``nanopore`` | allowed values: [``illumina``,``nanopore``,``pacbio_hifi``], value must be the same for all project samples |

<sup>3</sup> Either the `fastq` or the ``fastq_r1`` and ``fastq_r2`` are required.

Expand Down
2 changes: 1 addition & 1 deletion vip_fastq.nf
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ def parseSampleSheet(params) {
],
sequencing_platform: [
type: "string",
default: { 'illumina' },
default: { 'nanopore' },
enum: ['illumina', 'nanopore', 'pacbio_hifi'],
scope: "project"
]
Expand Down

0 comments on commit 1275b96

Please sign in to comment.