Skip to content

Commit

Permalink
Merge pull request #675 from mashehu/fix-file-extension-regex
Browse files Browse the repository at this point in the history
Fix file extension regex
  • Loading branch information
drpatelh authored Jul 21, 2021
2 parents f6009b1 + aa7daac commit cd0e91a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

* Updated pipeline template to [nf-core/tools 2.0.1](https://github.com/nf-core/tools/releases/tag/2.0.1)
* [[#668](https://github.com/nf-core/rnaseq/issues/668)] - Salmon quant with UMI-tools does not work
* [[#674](https://github.com/nf-core/rnaseq/issues/674)] - Launch pipeline regex fails

### Parameters

Expand Down
16 changes: 8 additions & 8 deletions nextflow_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"type": "string",
"format": "file-path",
"mimetype": "text/csv",
"pattern": "\\.csv$",
"pattern": "^\\S+\\.csv$",
"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 4 columns, and a header row. See [usage docs](https://nf-co.re/rnaseq/usage#samplesheet-input).",
Expand Down Expand Up @@ -121,7 +121,7 @@
"type": "string",
"format": "file-path",
"mimetype": "text/plain",
"pattern": "\\.fn?a(sta)?(\\.gz)?$",
"pattern": "^\\S+\\.fn?a(sta)?(\\.gz)?$",
"description": "Path to FASTA genome file.",
"help_text": "This parameter is *mandatory* if `--genome` is not specified. If you don't have a BWA index available this will be generated for you automatically. Combine with `--save_reference` to save BWA index for future runs.",
"fa_icon": "far fa-file-code"
Expand All @@ -130,7 +130,7 @@
"type": "string",
"format": "file-path",
"mimetype": "text/plain",
"pattern": "\\.gtf(\\.gz)?$",
"pattern": "^\\S+\\.gtf(\\.gz)?$",
"description": "Path to GTF annotation file.",
"fa_icon": "fas fa-code-branch",
"help_text": "This parameter is *mandatory* if `--genome` is not specified."
Expand All @@ -139,7 +139,7 @@
"type": "string",
"format": "file-path",
"mimetype": "text/plain",
"pattern": "\\.gff(\\.gz)?$",
"pattern": "^\\S+\\.gff(\\.gz)?$",
"fa_icon": "fas fa-code-branch",
"description": "Path to GFF3 annotation file.",
"help_text": "This parameter must be specified if `--genome` or `--gtf` are not specified."
Expand All @@ -148,23 +148,23 @@
"type": "string",
"format": "file-path",
"mimetype": "text/plain",
"pattern": "\\.bed(\\.gz)?$",
"pattern": "^\\S+\\.bed(\\.gz)?$",
"fa_icon": "fas fa-procedures",
"description": "Path to BED file containing gene intervals. This will be created from the GTF file if not specified."
},
"transcript_fasta": {
"type": "string",
"format": "file-path",
"mimetype": "text/plain",
"pattern": "\\.fn?a(sta)?(\\.gz)?$",
"pattern": "^\\S+\\.fn?a(sta)?(\\.gz)?$",
"fa_icon": "far fa-file-code",
"description": "Path to FASTA transcriptome file."
},
"additional_fasta": {
"type": "string",
"format": "file-path",
"mimetype": "text/plain",
"pattern": "\\.fn?a(sta)?(\\.gz)?$",
"pattern": "^\\S+\\.fn?a(sta)?(\\.gz)?$",
"fa_icon": "far fa-file-code",
"description": "FASTA file to concatenate to genome FASTA file e.g. containing spike-in sequences.",
"help_text": "If provided, the sequences in this file will get concatenated to the existing genome FASTA file, a GTF file will be automatically created using the entire sequence as the gene, transcript, and exon features, and any alignment index will get created from the combined FASTA and GTF. It is recommended to save the reference with `--save_reference` to re-use the index for future runs so you do not need to create it again."
Expand Down Expand Up @@ -686,4 +686,4 @@
"$ref": "#/definitions/generic_options"
}
]
}
}

0 comments on commit cd0e91a

Please sign in to comment.