Skip to content

Commit

Permalink
Removed schema-input.json, fixed typo
Browse files Browse the repository at this point in the history
The samplesheet schema did not properly work to validate the
samplesheet. It's easier to remove it and validate it ourselves later.
  • Loading branch information
FelixAntoineLeSieur committed Jul 9, 2024
1 parent 8729e1d commit 0413f7a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 54 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Initial release of ferlab/postprocessing, created with the [nf-core](https://nf-
### `Added`

### `Fixed`
[#1]https://github.com/FelixAntoineLeSieur/Post-processing-Pipeline/pull/1 Fixed template schemas
[#1](https://github.com/FelixAntoineLeSieur/Post-processing-Pipeline/pull/1) Fixed template schemas

### `Dependencies`

Expand Down
51 changes: 0 additions & 51 deletions assets/schema_input.json

This file was deleted.

3 changes: 1 addition & 2 deletions nextflow_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,7 @@
"pattern": "^\\S+\\.tsv$",
"description": "Path to the .tsv sample file, of format V1 or V2, containing the Family ID and path to GVCF files",
"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.",
"fa_icon": "fas fa-file-csv",
"schema": "assets/schema_input.json"
"fa_icon": "fas fa-file-csv"
},
"outdir": {
"type": "string",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ workflow PIPELINE_INITIALISATION {
//
// Create channel from input file provided through params.input
//
/*
Channel
.fromSamplesheet("input")
.map {
Expand All @@ -103,6 +104,7 @@ workflow PIPELINE_INITIALISATION {
emit:
samplesheet = ch_samplesheet
versions = ch_versions
*/
}

/*
Expand Down

0 comments on commit 0413f7a

Please sign in to comment.