Skip to content

Commit

Permalink
Merge pull request #172 from bcgsc/release/v8.1.0
Browse files Browse the repository at this point in the history
Release/v8.1.0
  • Loading branch information
mathieulemieux authored Feb 12, 2025
2 parents 4c25b32 + 573e236 commit 447497d
Show file tree
Hide file tree
Showing 40 changed files with 2,350 additions and 1,850 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/npm-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node: ['12', '14', '16']
node: [16, 18, 20]
name: node-${{ matrix.node }}
steps:
- uses: actions/checkout@v2
Expand Down
5 changes: 3 additions & 2 deletions Snakefile
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ rule download_cgi:
output: f'{DATA_DIR}/cgi/cgi_biomarkers_per_variant.tsv'
shell: dedent(f'''\
cd {DATA_DIR}/cgi
wget https://www.cancergenomeinterpreter.org/data/cgi_biomarkers_20180117.zip
wget https://www.cancergenomeinterpreter.org/data/biomarkers/cgi_biomarkers_20180117.zip
unzip cgi_biomarkers_20180117.zip
''')

Expand All @@ -162,7 +162,7 @@ rule download_cancerhotspots:
shell: dedent(f'''\
mkdir -p {DATA_DIR}/cancerhotspots
cd {DATA_DIR}/cancerhotspots
wget http://download.cbioportal.org/cancerhotspots/cancerhotspots.v2.maf.gz
wget https://cbioportal-download.s3.amazonaws.com/cancerhotspots.v2.maf.gz
gunzip cancerhotspots.v2.maf.gz
''')

Expand Down Expand Up @@ -222,6 +222,7 @@ rule load_ncit:

rule load_fda_srs:
input: expand(rules.load_local.output, local=['vocab']),
f'{DATA_DIR}/ncit.COMPLETE',
data=f'{DATA_DIR}/fda/UNII_Records.txt'
container: CONTAINER
log: f'{LOGS_DIR}/fdaSrs.logs.txt'
Expand Down
10 changes: 10 additions & 0 deletions bin/load.js
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,16 @@ civicParser.add_argument('--noUpdate', {
default: false,
help: 'Will not check for updating content of existing GraphKB Statements',
});
civicParser.add_argument('--noDeleteOnUnmatched', {
action: 'store_true',
default: false,
help: 'Will not delete GraphKB Statements from valid sourceID but not matching a combination',
});
civicParser.add_argument('--deleteDeprecated', {
action: 'store_true',
default: false,
help: 'Will delete GraphKB Statements from deprecated sourceID',
});

const clinicaltrialsgovParser = subparsers.add_parser('clinicaltrialsgov');
clinicaltrialsgovParser.add_argument('--days', {
Expand Down
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
Loading

0 comments on commit 447497d

Please sign in to comment.