Skip to content

Commit

Permalink
Merge pull request #159 from bcgsc/Bugfix/KBDEV-1152-Add-displayName-…
Browse files Browse the repository at this point in the history
…to-chromosome-json-file

Bugfix/KBDEV-1152 Add displayName to chromosome json file
  • Loading branch information
sshugsc authored Jul 22, 2024
2 parents 786b9d3 + 255006f commit 0562456
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
9 changes: 6 additions & 3 deletions data/chromosomes.json
Original file line number Diff line number Diff line change
Expand Up @@ -91,15 +91,18 @@
},
"MT": {
"biotype": "chromosome",
"name": "chrMT"
"name": "chrMT",
"displayName":"mt"
},
"X": {
"biotype": "chromosome",
"name": "chrX"
"name": "chrX",
"displayName":"x"
},
"Y": {
"biotype": "chromosome",
"name": "chrY"
"name": "chrY",
"displayName":"y"
}
},
"sources": {
Expand Down
2 changes: 1 addition & 1 deletion src/ontology/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,5 +80,5 @@ the ontology term
Once this file has been built it can be loaded as follows. The script will create records if they do not already exist. Any conflicts will be reported in the logging

```bash
node bin/ontology.js --filename /path/to/json/file
node bin/load.js file ontology </path/to/json/file>
```

0 comments on commit 0562456

Please sign in to comment.