Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions assets/samplesheet.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
[
{
"sample": "SAMPLE1",
"fastq_1": "https://raw.githubusercontent.com/nf-core/test-datasets/viralrecon/illumina/amplicon/sample1_R1.fastq.gz",
"fastq_2": "https://raw.githubusercontent.com/nf-core/test-datasets/viralrecon/illumina/amplicon/sample1_R2.fastq.gz"
},
{
"sample": "SAMPLE2",
"fastq_1": "https://raw.githubusercontent.com/nf-core/test-datasets/viralrecon/illumina/amplicon/sample2_R1.fastq.gz",
"fastq_2": "https://raw.githubusercontent.com/nf-core/test-datasets/viralrecon/illumina/amplicon/sample2_R2.fastq.gz"
},
{
"sample": "SAMPLE3",
"fastq_1": "https://raw.githubusercontent.com/nf-core/test-datasets/viralrecon/illumina/amplicon/sample1_R1.fastq.gz"
}
]
2 changes: 1 addition & 1 deletion nextflow_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"format": "file-path",
"exists": true,
"mimetype": "text/csv",
"pattern": "^\\S+\\.csv$",
"pattern": "^\\S+\\.(csv|json)$",
"schema": "assets/schema_input.json",
"description": "Path to comma-separated file containing information about the samples in the experiment.",
"help_text": "You will need to create a design file with information about the samples in your experiment before running the pipeline. Use this parameter to specify its location. It has to be a comma-separated file with 3 columns, and a header row.",
Expand Down
1 change: 1 addition & 0 deletions tests/default.nf.test
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ nextflow_pipeline {
test("-profile test") {
when {
params {
input = "${projectDir}/assets/samplesheet.json"
outdir = "$outputDir"
}
}
Expand Down
Loading