Skip to content

Commit

Permalink
Merge branch 'dev' into update-docs
Browse files Browse the repository at this point in the history
  • Loading branch information
ramprasadn authored Aug 14, 2024
2 parents 151e909 + af1406d commit 01a7b42
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### `Changed`

- Allow `0` as a valid value for `sex` in the samplesheet [#595](https://github.com/nf-core/raredisease/pull/587)
- Updated deepvariant to version 1.6.1 [#587](https://github.com/nf-core/raredisease/pull/587)
- Parallelized vcfanno [#585](https://github.com/nf-core/raredisease/pull/585)
- Skip ROH calling with bcftools if there are no affected samples [#579](https://github.com/nf-core/raredisease/pull/579)
Expand Down
2 changes: 1 addition & 1 deletion assets/schema_input.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
"sex": {
"type": "string",
"meta": ["sex"],
"enum": ["1", "2", "other"],
"enum": ["1", "2", "0", "other"],
"errorMessage": "Sex must be provided and cannot contain spaces"
},
"phenotype": {
Expand Down
2 changes: 1 addition & 1 deletion docs/usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ nf-core/raredisease will auto-detect whether a sample is single- or paired-end u
| `lane` | Used to generate separate channels during the alignment step. |
| `fastq_1` | Absolute path to FASTQ file for Illumina short reads 1. File has to be gzipped and have the extension ".fastq.gz" or ".fq.gz". |
| `fastq_2` | Absolute path to FASTQ file for Illumina short reads 2. File has to be gzipped and have the extension ".fastq.gz" or ".fq.gz". |
| `sex` | Sex (1=male; 2=female; other=unknown). |
| `sex` | Sex (1=male; 2=female; for unknown sex use 0 or other). |
| `phenotype` | Affected status of patient (0 = missing; 1=unaffected; 2=affected). |
| `paternal_id` | Sample ID of the father, can be blank if the father isn't part of the analysis or for samples other than the proband. |
| `maternal_id` | Sample ID of the mother, can be blank if the mother isn't part of the analysis or for samples other than the proband. |
Expand Down

0 comments on commit 01a7b42

Please sign in to comment.