Skip to content

Commit

Permalink
Merge pull request #171 from bcgsc/bugfix/KBDEV-1243-add-support-for-…
Browse files Browse the repository at this point in the history
…factor-and-fusion-4

Bugfix/kbdev 1243 add support for factor and fusion 4
  • Loading branch information
mathieulemieux authored Jan 29, 2025
2 parents c020504 + 97c2505 commit 05f5c10
Show file tree
Hide file tree
Showing 27 changed files with 1,885 additions and 768 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
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
Loading

0 comments on commit 05f5c10

Please sign in to comment.