Skip to content

Commit

Permalink
Merge pull request #85 from molgenis/feat/bam2cram
Browse files Browse the repository at this point in the history
Replace .bam with .cram
  • Loading branch information
dennishendriksen authored Sep 28, 2022
2 parents f0b0f7e + 37b029f commit 3f257ce
Show file tree
Hide file tree
Showing 11 changed files with 244 additions and 209 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export interface Api {
getPhenotypes(params: Params): Promise<PagedItems<Phenotype>>;
getFastaGz(contig: string, pos: number): Promise<Uint8Array | null>;
getGenesGz(): Promise<Uint8Array | null>;
getBam(sampleId: string): Promise<Uint8Array | null>;
getCram(sampleId: string): Promise<Cram | null>;
getHtsFileMetadata(): Promise<HtsFileMetadata>;
getAppMetadata(): Promise<AppMetadata>;
getDecisionTree(): Promise<DecisionTree | null>;
Expand Down
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@molgenis/vip-report-api",
"version": "3.5.4",
"version": "4.0.0",
"description": "TypeScript Report API for Variant Call Format (VCF) Report Templates",
"scripts": {
"build": "tsc --build",
Expand Down Expand Up @@ -30,19 +30,19 @@
"access": "public"
},
"devDependencies": {
"@types/node": "^18.7.13",
"@typescript-eslint/eslint-plugin": "^5.35.1",
"@typescript-eslint/parser": "^5.35.1",
"@vitest/coverage-c8": "^0.22.1",
"eslint": "^8.22.0",
"@types/node": "^18.7.23",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"@vitest/coverage-c8": "^0.23.4",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"prettier": "^2.7.1",
"typescript": "^4.7.4",
"vitest": "^0.22.1"
"typescript": "^4.8.4",
"vitest": "^0.23.4"
},
"dependencies": {
"@molgenis/vip-report-vcf": "^1.2.3"
"@molgenis/vip-report-vcf": "^1.2.6"
}
}
Loading

0 comments on commit 3f257ce

Please sign in to comment.