forked from broadinstitute/seqr
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #199 from populationgenomics/upstream_2024-02-06
Upstream 2024 04 22
- Loading branch information
Showing
437 changed files
with
7,728 additions
and
4,294 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,19 @@ | ||
name: hail search dataset version release | ||
name: hail search persistent volume snapshot release | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
reference_genome: | ||
environment: | ||
type: choice | ||
description: Reference Genome | ||
options: | ||
- GRCh37 | ||
- GRCh38 | ||
required: true | ||
- dev | ||
- prod | ||
reference_genome: | ||
type: choice | ||
description: Reference Genome | ||
options: | ||
- GRCh37 | ||
- GRCh38 | ||
required: true | ||
dataset_type: | ||
type: choice | ||
description: Dataset Type | ||
|
@@ -20,6 +25,8 @@ on: | |
required: true | ||
version: | ||
required: true | ||
volume_handle: | ||
required: true | ||
|
||
jobs: | ||
helm_update: | ||
|
@@ -38,7 +45,13 @@ jobs: | |
uses: mikefarah/[email protected] | ||
with: | ||
cmd: > | ||
yq -i '.global.hail_search.datasetVersions.${{ inputs.reference_genome }}/${{ inputs.dataset_type }} = "${{ inputs.version }}"' charts/broad-seqr/values.yaml | ||
yq -i '.global.hail_search.datasetVersions.${{ inputs.reference_genome }}/${{ inputs.dataset_type }} = "${{ inputs.version }}"' charts/broad-seqr/values-${{ inputs.environment }}.yaml | ||
- name: update volume handle in the broad-seqr chart | ||
uses: mikefarah/[email protected] | ||
with: | ||
cmd: > | ||
yq -i '.hail-search.persistentVolume.volumeHandle = "${{ inputs.volume_handle }}"' charts/broad-seqr/values-${{ inputs.environment }}.yaml | ||
- name: Commit and Push changes | ||
uses: Andro999b/[email protected] | ||
|
@@ -48,4 +61,4 @@ jobs: | |
github_token: ${{ secrets.SEQR_VERSION_UPDATE_TOKEN }} | ||
author_email: ${{ github.actor }}@users.noreply.github.com | ||
author_name: tgg-automation | ||
message: "Updating ${{ inputs.reference_genome }}/${{ inputs.dataset_type }} dataset version to ${{ inputs.version }}" | ||
message: "Updating ${{ inputs.environment }} ${{ inputs.reference_genome }}/${{ inputs.dataset_type }} dataset version to ${{ inputs.version }} and volume handle to ${{ inputs.volume_handle }} " |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
name: seqr hail search prod release | ||
on: | ||
workflow_run: | ||
workflows: ["Hail Search Unit Tests"] | ||
types: | ||
- completed | ||
branches: | ||
- master | ||
|
||
permissions: | ||
id-token: write | ||
|
||
jobs: | ||
docker: | ||
runs-on: ubuntu-latest | ||
if: ${{ github.event.workflow_run.conclusion == 'success' }} | ||
steps: | ||
- name: checkout | ||
uses: actions/checkout@v3 | ||
with: | ||
ref: ${{ github.event.workflow_run.head_branch }} | ||
|
||
- name: authenticate to google cloud | ||
id: "auth" | ||
uses: google-github-actions/auth@v0 | ||
with: | ||
workload_identity_provider: "${{ secrets.WORKLOAD_IDENTITY_PROVIDER }}" | ||
service_account: "${{ secrets.RUN_SA_EMAIL }}" | ||
|
||
- name: "setup gcloud sdk" | ||
uses: google-github-actions/setup-gcloud@v0 | ||
|
||
- name: Build and push images | ||
run: |- | ||
gcloud builds submit --quiet --substitutions="COMMIT_SHA=${{ github.event.workflow_run.head_sha }},_CUSTOM_BRANCH_TAG=gcloud-prod" --config .cloudbuild/seqr-hail-search-docker.cloudbuild.yaml --gcs-log-dir=gs://seqr-github-actions-logs/logs . | ||
helm_update: | ||
runs-on: ubuntu-latest | ||
needs: docker | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
repository: broadinstitute/seqr-helm | ||
ref: main | ||
persist-credentials: false # otherwise, the token used is the GITHUB_TOKEN, instead of your personal token | ||
fetch-depth: 0 # otherwise, you will failed to push refs to dest repo | ||
|
||
- name: Update appVersion in hail-search Chart file | ||
uses: mikefarah/[email protected] | ||
with: | ||
cmd: > | ||
yq -i '.appVersion = "${{ github.event.workflow_run.head_sha }}"' charts/hail-search/Chart.yaml | ||
- name: Commit and Push changes | ||
uses: Andro999b/[email protected] | ||
with: | ||
repository: broadinstitute/seqr-helm | ||
branch: main | ||
github_token: ${{ secrets.SEQR_VERSION_UPDATE_TOKEN }} | ||
author_email: ${{ github.actor }}@users.noreply.github.com | ||
author_name: tgg-automation | ||
message: "Update hail-search chart appVersion to ${{ github.event.workflow_run.head_sha }}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM hailgenetics/hail:0.2.126 | ||
FROM hailgenetics/hail:0.2.128 | ||
|
||
LABEL maintainer="Broad TGG" | ||
|
||
|
Binary file added
BIN
+12 Bytes
hail_search/fixtures/GRCh37/SNV_INDEL/annotations.ht/.README.txt.crc
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+16 Bytes
hail_search/fixtures/GRCh37/SNV_INDEL/annotations.ht/.metadata.json.gz.crc
Binary file not shown.
3 changes: 3 additions & 0 deletions
3
hail_search/fixtures/GRCh37/SNV_INDEL/annotations.ht/README.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
This folder comprises a Hail (www.hail.is) native Table or MatrixTable. | ||
Written with version 0.2.128-eead8100a1c1 | ||
Created at 2024/02/26 15:45:13 |
Empty file.
Binary file added
BIN
+16 Bytes
hail_search/fixtures/GRCh37/SNV_INDEL/annotations.ht/globals/.metadata.json.gz.crc
Binary file not shown.
Binary file added
BIN
+662 Bytes
hail_search/fixtures/GRCh37/SNV_INDEL/annotations.ht/globals/metadata.json.gz
Binary file not shown.
Binary file added
BIN
+24 Bytes
hail_search/fixtures/GRCh37/SNV_INDEL/annotations.ht/globals/parts/.part-0.crc
Binary file not shown.
Binary file added
BIN
+1.67 KB
hail_search/fixtures/GRCh37/SNV_INDEL/annotations.ht/globals/parts/part-0
Binary file not shown.
Binary file added
BIN
+12 Bytes
...SNV_INDEL/annotations.ht/index/part-0-51a119fe-d7b8-4308-a65f-b03043bbab4c.idx/.index.crc
Binary file not shown.
Binary file added
BIN
+12 Bytes
...nnotations.ht/index/part-0-51a119fe-d7b8-4308-a65f-b03043bbab4c.idx/.metadata.json.gz.crc
Binary file not shown.
Binary file added
BIN
+67 Bytes
...Ch37/SNV_INDEL/annotations.ht/index/part-0-51a119fe-d7b8-4308-a65f-b03043bbab4c.idx/index
Binary file not shown.
Binary file added
BIN
+185 Bytes
...DEL/annotations.ht/index/part-0-51a119fe-d7b8-4308-a65f-b03043bbab4c.idx/metadata.json.gz
Binary file not shown.
Binary file added
BIN
+882 Bytes
hail_search/fixtures/GRCh37/SNV_INDEL/annotations.ht/metadata.json.gz
Binary file not shown.
Binary file added
BIN
+20 Bytes
hail_search/fixtures/GRCh37/SNV_INDEL/annotations.ht/rows/.metadata.json.gz.crc
Binary file not shown.
Binary file added
BIN
+1.21 KB
hail_search/fixtures/GRCh37/SNV_INDEL/annotations.ht/rows/metadata.json.gz
Binary file not shown.
Binary file added
BIN
+12 Bytes
...Ch37/SNV_INDEL/annotations.ht/rows/parts/.part-0-51a119fe-d7b8-4308-a65f-b03043bbab4c.crc
Binary file not shown.
Binary file added
BIN
+335 Bytes
...es/GRCh37/SNV_INDEL/annotations.ht/rows/parts/part-0-51a119fe-d7b8-4308-a65f-b03043bbab4c
Binary file not shown.
Binary file added
BIN
+12 Bytes
hail_search/fixtures/GRCh37/SNV_INDEL/families/F000002_2.ht/.README.txt.crc
Binary file not shown.
Binary file added
BIN
+8 Bytes
hail_search/fixtures/GRCh37/SNV_INDEL/families/F000002_2.ht/._SUCCESS.crc
Binary file not shown.
Binary file added
BIN
+12 Bytes
hail_search/fixtures/GRCh37/SNV_INDEL/families/F000002_2.ht/.metadata.json.gz.crc
Binary file not shown.
3 changes: 3 additions & 0 deletions
3
hail_search/fixtures/GRCh37/SNV_INDEL/families/F000002_2.ht/README.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
This folder comprises a Hail (www.hail.is) native Table or MatrixTable. | ||
Written with version 0.2.126-ee77707f4fab | ||
Created at 2024/01/24 11:38:19 |
Empty file.
Binary file added
BIN
+12 Bytes
hail_search/fixtures/GRCh37/SNV_INDEL/families/F000002_2.ht/globals/.metadata.json.gz.crc
Binary file not shown.
Binary file added
BIN
+293 Bytes
hail_search/fixtures/GRCh37/SNV_INDEL/families/F000002_2.ht/globals/metadata.json.gz
Binary file not shown.
Binary file added
BIN
+12 Bytes
hail_search/fixtures/GRCh37/SNV_INDEL/families/F000002_2.ht/globals/parts/.part-0.crc
Binary file not shown.
Binary file added
BIN
+129 Bytes
hail_search/fixtures/GRCh37/SNV_INDEL/families/F000002_2.ht/globals/parts/part-0
Binary file not shown.
Binary file added
BIN
+12 Bytes
...EL/families/F000002_2.ht/index/part-0-a30c1a83-2851-4434-9ca6-ba437ff4a1da.idx/.index.crc
Binary file not shown.
Binary file added
BIN
+12 Bytes
.../F000002_2.ht/index/part-0-a30c1a83-2851-4434-9ca6-ba437ff4a1da.idx/.metadata.json.gz.crc
Binary file not shown.
Binary file added
BIN
+65 Bytes
...V_INDEL/families/F000002_2.ht/index/part-0-a30c1a83-2851-4434-9ca6-ba437ff4a1da.idx/index
Binary file not shown.
Binary file added
BIN
+185 Bytes
...ilies/F000002_2.ht/index/part-0-a30c1a83-2851-4434-9ca6-ba437ff4a1da.idx/metadata.json.gz
Binary file not shown.
Binary file added
BIN
+350 Bytes
hail_search/fixtures/GRCh37/SNV_INDEL/families/F000002_2.ht/metadata.json.gz
Binary file not shown.
Binary file added
BIN
+16 Bytes
hail_search/fixtures/GRCh37/SNV_INDEL/families/F000002_2.ht/rows/.metadata.json.gz.crc
Binary file not shown.
Binary file added
BIN
+613 Bytes
hail_search/fixtures/GRCh37/SNV_INDEL/families/F000002_2.ht/rows/metadata.json.gz
Binary file not shown.
Binary file added
BIN
+12 Bytes
...V_INDEL/families/F000002_2.ht/rows/parts/.part-0-a30c1a83-2851-4434-9ca6-ba437ff4a1da.crc
Binary file not shown.
Binary file added
BIN
+101 Bytes
...37/SNV_INDEL/families/F000002_2.ht/rows/parts/part-0-a30c1a83-2851-4434-9ca6-ba437ff4a1da
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+12 Bytes
hail_search/fixtures/GRCh37/SNV_INDEL/lookup.ht/.metadata.json.gz.crc
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
This folder comprises a Hail (www.hail.is) native Table or MatrixTable. | ||
Written with version 0.2.128-eead8100a1c1 | ||
Created at 2024/04/03 17:08:32 |
Empty file.
Binary file added
BIN
+12 Bytes
hail_search/fixtures/GRCh37/SNV_INDEL/lookup.ht/globals/.metadata.json.gz.crc
Binary file not shown.
Binary file added
BIN
+303 Bytes
hail_search/fixtures/GRCh37/SNV_INDEL/lookup.ht/globals/metadata.json.gz
Binary file not shown.
Binary file added
BIN
+12 Bytes
hail_search/fixtures/GRCh37/SNV_INDEL/lookup.ht/globals/parts/.part-0.crc
Binary file not shown.
Binary file added
BIN
+63 Bytes
hail_search/fixtures/GRCh37/SNV_INDEL/lookup.ht/globals/parts/part-0
Binary file not shown.
Binary file added
BIN
+12 Bytes
...Ch37/SNV_INDEL/lookup.ht/index/part-0-9ed567ca-8929-4068-88bc-1b4d0cae37c6.idx/.index.crc
Binary file not shown.
Binary file added
BIN
+12 Bytes
...DEL/lookup.ht/index/part-0-9ed567ca-8929-4068-88bc-1b4d0cae37c6.idx/.metadata.json.gz.crc
Binary file not shown.
Binary file added
BIN
+65 Bytes
...es/GRCh37/SNV_INDEL/lookup.ht/index/part-0-9ed567ca-8929-4068-88bc-1b4d0cae37c6.idx/index
Binary file not shown.
Binary file added
BIN
+185 Bytes
...NV_INDEL/lookup.ht/index/part-0-9ed567ca-8929-4068-88bc-1b4d0cae37c6.idx/metadata.json.gz
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+16 Bytes
hail_search/fixtures/GRCh37/SNV_INDEL/lookup.ht/rows/.metadata.json.gz.crc
Binary file not shown.
Binary file added
BIN
+606 Bytes
hail_search/fixtures/GRCh37/SNV_INDEL/lookup.ht/rows/metadata.json.gz
Binary file not shown.
Binary file added
BIN
+12 Bytes
...es/GRCh37/SNV_INDEL/lookup.ht/rows/parts/.part-0-9ed567ca-8929-4068-88bc-1b4d0cae37c6.crc
Binary file not shown.
Binary file added
BIN
+52 Bytes
...ixtures/GRCh37/SNV_INDEL/lookup.ht/rows/parts/part-0-9ed567ca-8929-4068-88bc-1b4d0cae37c6
Binary file not shown.
Binary file added
BIN
+12 Bytes
hail_search/fixtures/GRCh37/SNV_INDEL/projects/R0001_1kg.ht/.README.txt.crc
Binary file not shown.
Binary file added
BIN
+8 Bytes
hail_search/fixtures/GRCh37/SNV_INDEL/projects/R0001_1kg.ht/._SUCCESS.crc
Binary file not shown.
Binary file added
BIN
+12 Bytes
hail_search/fixtures/GRCh37/SNV_INDEL/projects/R0001_1kg.ht/.metadata.json.gz.crc
Binary file not shown.
3 changes: 3 additions & 0 deletions
3
hail_search/fixtures/GRCh37/SNV_INDEL/projects/R0001_1kg.ht/README.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
This folder comprises a Hail (www.hail.is) native Table or MatrixTable. | ||
Written with version 0.2.128-eead8100a1c1 | ||
Created at 2024/04/03 17:41:01 |
Empty file.
Binary file added
BIN
+12 Bytes
hail_search/fixtures/GRCh37/SNV_INDEL/projects/R0001_1kg.ht/globals/.metadata.json.gz.crc
Binary file not shown.
Binary file added
BIN
+332 Bytes
hail_search/fixtures/GRCh37/SNV_INDEL/projects/R0001_1kg.ht/globals/metadata.json.gz
Binary file not shown.
Binary file added
BIN
+12 Bytes
hail_search/fixtures/GRCh37/SNV_INDEL/projects/R0001_1kg.ht/globals/parts/.part-0.crc
Binary file not shown.
Binary file added
BIN
+144 Bytes
hail_search/fixtures/GRCh37/SNV_INDEL/projects/R0001_1kg.ht/globals/parts/part-0
Binary file not shown.
Binary file added
BIN
+12 Bytes
...EL/projects/R0001_1kg.ht/index/part-0-7af5daf7-4c5e-40db-ba9f-3248f8540152.idx/.index.crc
Binary file not shown.
Binary file added
BIN
+12 Bytes
.../R0001_1kg.ht/index/part-0-7af5daf7-4c5e-40db-ba9f-3248f8540152.idx/.metadata.json.gz.crc
Binary file not shown.
Binary file added
BIN
+65 Bytes
...V_INDEL/projects/R0001_1kg.ht/index/part-0-7af5daf7-4c5e-40db-ba9f-3248f8540152.idx/index
Binary file not shown.
Binary file added
BIN
+185 Bytes
...jects/R0001_1kg.ht/index/part-0-7af5daf7-4c5e-40db-ba9f-3248f8540152.idx/metadata.json.gz
Binary file not shown.
Binary file added
BIN
+372 Bytes
hail_search/fixtures/GRCh37/SNV_INDEL/projects/R0001_1kg.ht/metadata.json.gz
Binary file not shown.
Binary file added
BIN
+16 Bytes
hail_search/fixtures/GRCh37/SNV_INDEL/projects/R0001_1kg.ht/rows/.metadata.json.gz.crc
Binary file not shown.
Binary file added
BIN
+625 Bytes
hail_search/fixtures/GRCh37/SNV_INDEL/projects/R0001_1kg.ht/rows/metadata.json.gz
Binary file not shown.
Binary file added
BIN
+12 Bytes
...V_INDEL/projects/R0001_1kg.ht/rows/parts/.part-0-7af5daf7-4c5e-40db-ba9f-3248f8540152.crc
Binary file not shown.
Binary file added
BIN
+102 Bytes
...37/SNV_INDEL/projects/R0001_1kg.ht/rows/parts/part-0-7af5daf7-4c5e-40db-ba9f-3248f8540152
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
hail_search/fixtures/GRCh38/MITO/annotations.ht/.README.txt.crc
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
hail_search/fixtures/GRCh38/MITO/annotations.ht/.metadata.json.gz.crc
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
This folder comprises a Hail (www.hail.is) native Table or MatrixTable. | ||
Written with version 0.2.124-13536b531342 | ||
Created at 2023/11/22 10:50:28 | ||
Written with version 0.2.128-eead8100a1c1 | ||
Created at 2024/02/26 14:35:40 |
Binary file modified
BIN
+0 Bytes
(100%)
hail_search/fixtures/GRCh38/MITO/annotations.ht/globals/.metadata.json.gz.crc
Binary file not shown.
Binary file modified
BIN
-9 Bytes
(99%)
hail_search/fixtures/GRCh38/MITO/annotations.ht/globals/metadata.json.gz
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
hail_search/fixtures/GRCh38/MITO/annotations.ht/globals/parts/.part-0.crc
Binary file not shown.
Binary file modified
BIN
+15 Bytes
(100%)
hail_search/fixtures/GRCh38/MITO/annotations.ht/globals/parts/part-0
Binary file not shown.
Binary file added
BIN
+12 Bytes
...Ch38/MITO/annotations.ht/index/part-0-9051c447-510b-49ab-bf6a-cadcf5f69801.idx/.index.crc
Binary file not shown.
File renamed without changes.
Binary file added
BIN
+95 Bytes
...es/GRCh38/MITO/annotations.ht/index/part-0-9051c447-510b-49ab-bf6a-cadcf5f69801.idx/index
Binary file not shown.
File renamed without changes.
Binary file removed
BIN
-12 Bytes
...Ch38/MITO/annotations.ht/index/part-0-9762ffa7-64ef-4769-b166-fbd6e240e32d.idx/.index.crc
Binary file not shown.
Binary file removed
BIN
-95 Bytes
...es/GRCh38/MITO/annotations.ht/index/part-0-9762ffa7-64ef-4769-b166-fbd6e240e32d.idx/index
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
hail_search/fixtures/GRCh38/MITO/annotations.ht/metadata.json.gz
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
hail_search/fixtures/GRCh38/MITO/annotations.ht/rows/.metadata.json.gz.crc
Binary file not shown.
Binary file modified
BIN
+5 Bytes
(100%)
hail_search/fixtures/GRCh38/MITO/annotations.ht/rows/metadata.json.gz
Binary file not shown.
Binary file added
BIN
+12 Bytes
...es/GRCh38/MITO/annotations.ht/rows/parts/.part-0-9051c447-510b-49ab-bf6a-cadcf5f69801.crc
Binary file not shown.
Binary file removed
BIN
-12 Bytes
...es/GRCh38/MITO/annotations.ht/rows/parts/.part-0-9762ffa7-64ef-4769-b166-fbd6e240e32d.crc
Binary file not shown.
Binary file added
BIN
+466 Bytes
...ixtures/GRCh38/MITO/annotations.ht/rows/parts/part-0-9051c447-510b-49ab-bf6a-cadcf5f69801
Binary file not shown.
Binary file removed
BIN
-467 Bytes
...ixtures/GRCh38/MITO/annotations.ht/rows/parts/part-0-9762ffa7-64ef-4769-b166-fbd6e240e32d
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
This folder comprises a Hail (www.hail.is) native Table or MatrixTable. | ||
Written with version 0.2.128-eead8100a1c1 | ||
Created at 2024/04/03 15:52:09 |
Empty file.
Binary file added
BIN
+12 Bytes
hail_search/fixtures/GRCh38/MITO/lookup.ht/globals/.metadata.json.gz.crc
Binary file not shown.
Binary file added
BIN
+335 Bytes
hail_search/fixtures/GRCh38/MITO/lookup.ht/globals/metadata.json.gz
Binary file not shown.
Binary file added
BIN
+16 Bytes
hail_search/fixtures/GRCh38/MITO/lookup.ht/globals/parts/.part-0.crc
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+12 Bytes
...es/GRCh38/MITO/lookup.ht/index/part-0-b3a842d6-2c33-4b32-9184-7975c4499a1b.idx/.index.crc
Binary file not shown.
Binary file added
BIN
+12 Bytes
...ITO/lookup.ht/index/part-0-b3a842d6-2c33-4b32-9184-7975c4499a1b.idx/.metadata.json.gz.crc
Binary file not shown.
Binary file added
BIN
+90 Bytes
...ixtures/GRCh38/MITO/lookup.ht/index/part-0-b3a842d6-2c33-4b32-9184-7975c4499a1b.idx/index
Binary file not shown.
Binary file added
BIN
+185 Bytes
...h38/MITO/lookup.ht/index/part-0-b3a842d6-2c33-4b32-9184-7975c4499a1b.idx/metadata.json.gz
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+16 Bytes
hail_search/fixtures/GRCh38/MITO/lookup.ht/rows/.metadata.json.gz.crc
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+12 Bytes
...ixtures/GRCh38/MITO/lookup.ht/rows/parts/.part-0-b3a842d6-2c33-4b32-9184-7975c4499a1b.crc
Binary file not shown.
Binary file added
BIN
+85 Bytes
...rch/fixtures/GRCh38/MITO/lookup.ht/rows/parts/part-0-b3a842d6-2c33-4b32-9184-7975c4499a1b
Binary file not shown.
Binary file added
BIN
+12 Bytes
hail_search/fixtures/GRCh38/MITO/projects/R0001_1kg.ht/.README.txt.crc
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+12 Bytes
hail_search/fixtures/GRCh38/MITO/projects/R0001_1kg.ht/.metadata.json.gz.crc
Binary file not shown.
3 changes: 3 additions & 0 deletions
3
hail_search/fixtures/GRCh38/MITO/projects/R0001_1kg.ht/README.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
This folder comprises a Hail (www.hail.is) native Table or MatrixTable. | ||
Written with version 0.2.128-eead8100a1c1 | ||
Created at 2024/04/03 17:42:32 |
Empty file.
Binary file added
BIN
+12 Bytes
hail_search/fixtures/GRCh38/MITO/projects/R0001_1kg.ht/globals/.metadata.json.gz.crc
Binary file not shown.
Binary file added
BIN
+320 Bytes
hail_search/fixtures/GRCh38/MITO/projects/R0001_1kg.ht/globals/metadata.json.gz
Binary file not shown.
Binary file added
BIN
+12 Bytes
hail_search/fixtures/GRCh38/MITO/projects/R0001_1kg.ht/globals/parts/.part-0.crc
Binary file not shown.
Binary file added
BIN
+67 Bytes
hail_search/fixtures/GRCh38/MITO/projects/R0001_1kg.ht/globals/parts/part-0
Binary file not shown.
Binary file added
BIN
+12 Bytes
...TO/projects/R0001_1kg.ht/index/part-0-9a202b26-a04d-4337-9aa5-bbab41b4bc06.idx/.index.crc
Binary file not shown.
Binary file added
BIN
+12 Bytes
.../R0001_1kg.ht/index/part-0-9a202b26-a04d-4337-9aa5-bbab41b4bc06.idx/.metadata.json.gz.crc
Binary file not shown.
Binary file added
BIN
+90 Bytes
...38/MITO/projects/R0001_1kg.ht/index/part-0-9a202b26-a04d-4337-9aa5-bbab41b4bc06.idx/index
Binary file not shown.
Binary file added
BIN
+185 Bytes
...jects/R0001_1kg.ht/index/part-0-9a202b26-a04d-4337-9aa5-bbab41b4bc06.idx/metadata.json.gz
Binary file not shown.
Binary file added
BIN
+383 Bytes
hail_search/fixtures/GRCh38/MITO/projects/R0001_1kg.ht/metadata.json.gz
Binary file not shown.
Binary file added
BIN
+16 Bytes
hail_search/fixtures/GRCh38/MITO/projects/R0001_1kg.ht/rows/.metadata.json.gz.crc
Binary file not shown.
Binary file added
BIN
+652 Bytes
hail_search/fixtures/GRCh38/MITO/projects/R0001_1kg.ht/rows/metadata.json.gz
Binary file not shown.
Binary file added
BIN
+12 Bytes
...38/MITO/projects/R0001_1kg.ht/rows/parts/.part-0-9a202b26-a04d-4337-9aa5-bbab41b4bc06.crc
Binary file not shown.
Binary file added
BIN
+155 Bytes
.../GRCh38/MITO/projects/R0001_1kg.ht/rows/parts/part-0-9a202b26-a04d-4337-9aa5-bbab41b4bc06
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
hail_search/fixtures/GRCh38/ONT_SNV_INDEL/annotations.ht/.README.txt.crc
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
hail_search/fixtures/GRCh38/ONT_SNV_INDEL/annotations.ht/.metadata.json.gz.crc
Binary file not shown.
4 changes: 2 additions & 2 deletions
4
hail_search/fixtures/GRCh38/ONT_SNV_INDEL/annotations.ht/README.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
This folder comprises a Hail (www.hail.is) native Table or MatrixTable. | ||
Written with version 0.2.124-13536b531342 | ||
Created at 2023/11/21 12:19:09 | ||
Written with version 0.2.128-eead8100a1c1 | ||
Created at 2024/03/07 14:19:33 |
Binary file modified
BIN
+0 Bytes
(100%)
hail_search/fixtures/GRCh38/ONT_SNV_INDEL/annotations.ht/globals/.metadata.json.gz.crc
Binary file not shown.
Binary file modified
BIN
-47 Bytes
(94%)
hail_search/fixtures/GRCh38/ONT_SNV_INDEL/annotations.ht/globals/metadata.json.gz
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
hail_search/fixtures/GRCh38/ONT_SNV_INDEL/annotations.ht/globals/parts/.part-0.crc
Binary file not shown.
Binary file modified
BIN
-6 Bytes
(100%)
hail_search/fixtures/GRCh38/ONT_SNV_INDEL/annotations.ht/globals/parts/part-0
Binary file not shown.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Binary file modified
BIN
-16 Bytes
(98%)
hail_search/fixtures/GRCh38/ONT_SNV_INDEL/annotations.ht/metadata.json.gz
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
hail_search/fixtures/GRCh38/ONT_SNV_INDEL/annotations.ht/rows/.metadata.json.gz.crc
Binary file not shown.
Binary file modified
BIN
-1 Byte
(100%)
hail_search/fixtures/GRCh38/ONT_SNV_INDEL/annotations.ht/rows/metadata.json.gz
Binary file not shown.
Binary file added
BIN
+12 Bytes
.../ONT_SNV_INDEL/annotations.ht/rows/parts/.part-0-432b4fda-19b7-4eaf-963f-41f8b545319c.crc
Binary file not shown.
Binary file removed
BIN
-12 Bytes
.../ONT_SNV_INDEL/annotations.ht/rows/parts/.part-0-8bca7c69-2d63-46d7-a244-a2cac529217b.crc
Binary file not shown.
Binary file added
BIN
+375 Bytes
...RCh38/ONT_SNV_INDEL/annotations.ht/rows/parts/part-0-432b4fda-19b7-4eaf-963f-41f8b545319c
Binary file not shown.
Binary file removed
BIN
-373 Bytes
...RCh38/ONT_SNV_INDEL/annotations.ht/rows/parts/part-0-8bca7c69-2d63-46d7-a244-a2cac529217b
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
hail_search/fixtures/GRCh38/SNV_INDEL/annotations.ht/.README.txt.crc
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
hail_search/fixtures/GRCh38/SNV_INDEL/annotations.ht/.metadata.json.gz.crc
Binary file not shown.
4 changes: 2 additions & 2 deletions
4
hail_search/fixtures/GRCh38/SNV_INDEL/annotations.ht/README.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
This folder comprises a Hail (www.hail.is) native Table or MatrixTable. | ||
Written with version 0.2.115-10932c754edb | ||
Created at 2023/09/11 13:37:41 | ||
Written with version 0.2.128-eead8100a1c1 | ||
Created at 2024/02/26 15:21:48 |
Binary file modified
BIN
+0 Bytes
(100%)
hail_search/fixtures/GRCh38/SNV_INDEL/annotations.ht/globals/.metadata.json.gz.crc
Binary file not shown.
Binary file modified
BIN
-48 Bytes
(94%)
hail_search/fixtures/GRCh38/SNV_INDEL/annotations.ht/globals/metadata.json.gz
Binary file not shown.
Binary file modified
BIN
-4 Bytes
(86%)
hail_search/fixtures/GRCh38/SNV_INDEL/annotations.ht/globals/parts/.part-0.crc
Binary file not shown.
Binary file modified
BIN
-550 Bytes
(78%)
hail_search/fixtures/GRCh38/SNV_INDEL/annotations.ht/globals/parts/part-0
Binary file not shown.
Binary file removed
BIN
-12 Bytes
...SNV_INDEL/annotations.ht/index/part-0-1f334eda-eb79-42c7-baa9-43d1fc765f36.idx/.index.crc
Binary file not shown.
Binary file removed
BIN
-12 Bytes
...nnotations.ht/index/part-0-1f334eda-eb79-42c7-baa9-43d1fc765f36.idx/.metadata.json.gz.crc
Binary file not shown.
Binary file removed
BIN
-125 Bytes
...Ch38/SNV_INDEL/annotations.ht/index/part-0-1f334eda-eb79-42c7-baa9-43d1fc765f36.idx/index
Binary file not shown.
Binary file removed
BIN
-183 Bytes
...DEL/annotations.ht/index/part-0-1f334eda-eb79-42c7-baa9-43d1fc765f36.idx/metadata.json.gz
Binary file not shown.
Binary file added
BIN
+12 Bytes
...SNV_INDEL/annotations.ht/index/part-0-69dcebe5-50a9-4af1-a543-db0e0db24364.idx/.index.crc
Binary file not shown.
Binary file added
BIN
+12 Bytes
...nnotations.ht/index/part-0-69dcebe5-50a9-4af1-a543-db0e0db24364.idx/.metadata.json.gz.crc
Binary file not shown.
Binary file added
BIN
+139 Bytes
...Ch38/SNV_INDEL/annotations.ht/index/part-0-69dcebe5-50a9-4af1-a543-db0e0db24364.idx/index
Binary file not shown.
Binary file added
BIN
+185 Bytes
...DEL/annotations.ht/index/part-0-69dcebe5-50a9-4af1-a543-db0e0db24364.idx/metadata.json.gz
Binary file not shown.
Binary file modified
BIN
-17 Bytes
(98%)
hail_search/fixtures/GRCh38/SNV_INDEL/annotations.ht/metadata.json.gz
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
hail_search/fixtures/GRCh38/SNV_INDEL/annotations.ht/rows/.metadata.json.gz.crc
Binary file not shown.
Binary file modified
BIN
+1 Byte
(100%)
hail_search/fixtures/GRCh38/SNV_INDEL/annotations.ht/rows/metadata.json.gz
Binary file not shown.
Binary file removed
BIN
-20 Bytes
...Ch38/SNV_INDEL/annotations.ht/rows/parts/.part-0-1f334eda-eb79-42c7-baa9-43d1fc765f36.crc
Binary file not shown.
Binary file added
BIN
+20 Bytes
...Ch38/SNV_INDEL/annotations.ht/rows/parts/.part-0-69dcebe5-50a9-4af1-a543-db0e0db24364.crc
Binary file not shown.
Binary file removed
BIN
-1.41 KB
...es/GRCh38/SNV_INDEL/annotations.ht/rows/parts/part-0-1f334eda-eb79-42c7-baa9-43d1fc765f36
Binary file not shown.
Binary file added
BIN
+1.25 KB
...es/GRCh38/SNV_INDEL/annotations.ht/rows/parts/part-0-69dcebe5-50a9-4af1-a543-db0e0db24364
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
hail_search/fixtures/GRCh38/SNV_INDEL/high_af_variants.ht/.README.txt.crc
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
hail_search/fixtures/GRCh38/SNV_INDEL/high_af_variants.ht/.metadata.json.gz.crc
Binary file not shown.
4 changes: 2 additions & 2 deletions
4
hail_search/fixtures/GRCh38/SNV_INDEL/high_af_variants.ht/README.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
This folder comprises a Hail (www.hail.is) native Table or MatrixTable. | ||
Written with version 0.2.109-b71b065e4bb6 | ||
Created at 2023/08/11 14:19:35 | ||
Written with version 0.2.128-eead8100a1c1 | ||
Created at 2024/03/04 16:14:35 |
Binary file modified
BIN
+0 Bytes
(100%)
hail_search/fixtures/GRCh38/SNV_INDEL/high_af_variants.ht/globals/.metadata.json.gz.crc
Binary file not shown.
Binary file modified
BIN
-1 Byte
(100%)
hail_search/fixtures/GRCh38/SNV_INDEL/high_af_variants.ht/globals/metadata.json.gz
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
hail_search/fixtures/GRCh38/SNV_INDEL/high_af_variants.ht/globals/parts/.part-0.crc
Binary file not shown.
Binary file modified
BIN
+25 Bytes
(330%)
hail_search/fixtures/GRCh38/SNV_INDEL/high_af_variants.ht/globals/parts/part-0
Binary file not shown.
Binary file added
BIN
+12 Bytes
...NDEL/high_af_variants.ht/index/part-0-2e367afa-f8b5-4167-84b3-5abbd6837c8b.idx/.index.crc
Binary file not shown.
Binary file added
BIN
+12 Bytes
...f_variants.ht/index/part-0-2e367afa-f8b5-4167-84b3-5abbd6837c8b.idx/.metadata.json.gz.crc
Binary file not shown.
Binary file added
BIN
+87 Bytes
...SNV_INDEL/high_af_variants.ht/index/part-0-2e367afa-f8b5-4167-84b3-5abbd6837c8b.idx/index
Binary file not shown.
Binary file added
BIN
+184 Bytes
...igh_af_variants.ht/index/part-0-2e367afa-f8b5-4167-84b3-5abbd6837c8b.idx/metadata.json.gz
Binary file not shown.
Binary file removed
BIN
-12 Bytes
...NDEL/high_af_variants.ht/index/part-0-6d901bc9-e51f-4a61-8373-97bc944ff192.idx/.index.crc
Binary file not shown.
Binary file removed
BIN
-12 Bytes
...f_variants.ht/index/part-0-6d901bc9-e51f-4a61-8373-97bc944ff192.idx/.metadata.json.gz.crc
Binary file not shown.
Binary file removed
BIN
-70 Bytes
...SNV_INDEL/high_af_variants.ht/index/part-0-6d901bc9-e51f-4a61-8373-97bc944ff192.idx/index
Binary file not shown.
Binary file removed
BIN
-184 Bytes
...igh_af_variants.ht/index/part-0-6d901bc9-e51f-4a61-8373-97bc944ff192.idx/metadata.json.gz
Binary file not shown.
Binary file modified
BIN
+6 Bytes
(100%)
hail_search/fixtures/GRCh38/SNV_INDEL/high_af_variants.ht/metadata.json.gz
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
hail_search/fixtures/GRCh38/SNV_INDEL/high_af_variants.ht/rows/.metadata.json.gz.crc
Binary file not shown.
Binary file modified
BIN
+16 Bytes
(100%)
hail_search/fixtures/GRCh38/SNV_INDEL/high_af_variants.ht/rows/metadata.json.gz
Binary file not shown.
Binary file added
BIN
+12 Bytes
...SNV_INDEL/high_af_variants.ht/rows/parts/.part-0-2e367afa-f8b5-4167-84b3-5abbd6837c8b.crc
Binary file not shown.
Binary file removed
BIN
-12 Bytes
...SNV_INDEL/high_af_variants.ht/rows/parts/.part-0-6d901bc9-e51f-4a61-8373-97bc944ff192.crc
Binary file not shown.
Binary file added
BIN
+72 Bytes
...Ch38/SNV_INDEL/high_af_variants.ht/rows/parts/part-0-2e367afa-f8b5-4167-84b3-5abbd6837c8b
Binary file not shown.
Binary file removed
BIN
-40 Bytes
...Ch38/SNV_INDEL/high_af_variants.ht/rows/parts/part-0-6d901bc9-e51f-4a61-8373-97bc944ff192
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+12 Bytes
hail_search/fixtures/GRCh38/SNV_INDEL/lookup.ht/.metadata.json.gz.crc
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
This folder comprises a Hail (www.hail.is) native Table or MatrixTable. | ||
Written with version 0.2.128-eead8100a1c1 | ||
Created at 2024/04/03 17:00:55 |
Empty file.
Binary file added
BIN
+12 Bytes
hail_search/fixtures/GRCh38/SNV_INDEL/lookup.ht/globals/.metadata.json.gz.crc
Binary file not shown.
Binary file added
BIN
+335 Bytes
hail_search/fixtures/GRCh38/SNV_INDEL/lookup.ht/globals/metadata.json.gz
Binary file not shown.
Binary file added
BIN
+52 Bytes
hail_search/fixtures/GRCh38/SNV_INDEL/lookup.ht/globals/parts/.part-0.crc
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+12 Bytes
...Ch38/SNV_INDEL/lookup.ht/index/part-0-38581d1a-27f8-452f-9678-75225dfc64ab.idx/.index.crc
Binary file not shown.
Binary file added
BIN
+12 Bytes
...DEL/lookup.ht/index/part-0-38581d1a-27f8-452f-9678-75225dfc64ab.idx/.metadata.json.gz.crc
Binary file not shown.
Binary file added
BIN
+110 Bytes
...es/GRCh38/SNV_INDEL/lookup.ht/index/part-0-38581d1a-27f8-452f-9678-75225dfc64ab.idx/index
Binary file not shown.
Binary file added
BIN
+184 Bytes
...NV_INDEL/lookup.ht/index/part-0-38581d1a-27f8-452f-9678-75225dfc64ab.idx/metadata.json.gz
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+16 Bytes
hail_search/fixtures/GRCh38/SNV_INDEL/lookup.ht/rows/.metadata.json.gz.crc
Binary file not shown.
Binary file added
BIN
+619 Bytes
hail_search/fixtures/GRCh38/SNV_INDEL/lookup.ht/rows/metadata.json.gz
Binary file not shown.
Binary file added
BIN
+12 Bytes
...es/GRCh38/SNV_INDEL/lookup.ht/rows/parts/.part-0-38581d1a-27f8-452f-9678-75225dfc64ab.crc
Binary file not shown.
Binary file added
BIN
+118 Bytes
...ixtures/GRCh38/SNV_INDEL/lookup.ht/rows/parts/part-0-38581d1a-27f8-452f-9678-75225dfc64ab
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
hail_search/fixtures/GRCh38/SNV_INDEL/projects/R0001_1kg.ht/.README.txt.crc
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
hail_search/fixtures/GRCh38/SNV_INDEL/projects/R0001_1kg.ht/.metadata.json.gz.crc
Binary file not shown.
4 changes: 2 additions & 2 deletions
4
hail_search/fixtures/GRCh38/SNV_INDEL/projects/R0001_1kg.ht/README.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
This folder comprises a Hail (www.hail.is) native Table or MatrixTable. | ||
Written with version 0.2.124-13536b531342 | ||
Created at 2023/11/27 16:03:24 | ||
Written with version 0.2.126-ee77707f4fab | ||
Created at 2024/02/05 17:25:57 |
Binary file modified
BIN
+0 Bytes
(100%)
hail_search/fixtures/GRCh38/SNV_INDEL/projects/R0001_1kg.ht/globals/.metadata.json.gz.crc
Binary file not shown.
Binary file modified
BIN
+36 Bytes
(110%)
hail_search/fixtures/GRCh38/SNV_INDEL/projects/R0001_1kg.ht/globals/metadata.json.gz
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
hail_search/fixtures/GRCh38/SNV_INDEL/projects/R0001_1kg.ht/globals/parts/.part-0.crc
Binary file not shown.
Binary file modified
BIN
+24 Bytes
(120%)
hail_search/fixtures/GRCh38/SNV_INDEL/projects/R0001_1kg.ht/globals/parts/part-0
Binary file not shown.
Binary file removed
BIN
-12 Bytes
...EL/projects/R0001_1kg.ht/index/part-0-11cbd242-4170-435c-a65c-e962fd9b1e05.idx/.index.crc
Binary file not shown.
Binary file removed
BIN
-113 Bytes
...V_INDEL/projects/R0001_1kg.ht/index/part-0-11cbd242-4170-435c-a65c-e962fd9b1e05.idx/index
Binary file not shown.
Binary file added
BIN
+12 Bytes
...EL/projects/R0001_1kg.ht/index/part-0-ad3760b2-5a76-4b94-9268-9673bf62e956.idx/.index.crc
Binary file not shown.
File renamed without changes.
Binary file added
BIN
+113 Bytes
...V_INDEL/projects/R0001_1kg.ht/index/part-0-ad3760b2-5a76-4b94-9268-9673bf62e956.idx/index
Binary file not shown.
File renamed without changes.
Binary file modified
BIN
+20 Bytes
(110%)
hail_search/fixtures/GRCh38/SNV_INDEL/projects/R0001_1kg.ht/metadata.json.gz
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
hail_search/fixtures/GRCh38/SNV_INDEL/projects/R0001_1kg.ht/rows/.metadata.json.gz.crc
Binary file not shown.
Binary file modified
BIN
+12 Bytes
(100%)
hail_search/fixtures/GRCh38/SNV_INDEL/projects/R0001_1kg.ht/rows/metadata.json.gz
Binary file not shown.
Binary file removed
BIN
-12 Bytes
...V_INDEL/projects/R0001_1kg.ht/rows/parts/.part-0-11cbd242-4170-435c-a65c-e962fd9b1e05.crc
Binary file not shown.
Binary file added
BIN
+12 Bytes
...V_INDEL/projects/R0001_1kg.ht/rows/parts/.part-0-ad3760b2-5a76-4b94-9268-9673bf62e956.crc
Binary file not shown.
Binary file removed
BIN
-233 Bytes
...38/SNV_INDEL/projects/R0001_1kg.ht/rows/parts/part-0-11cbd242-4170-435c-a65c-e962fd9b1e05
Binary file not shown.
Binary file added
BIN
+240 Bytes
...38/SNV_INDEL/projects/R0001_1kg.ht/rows/parts/part-0-ad3760b2-5a76-4b94-9268-9673bf62e956
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
hail_search/fixtures/GRCh38/SNV_INDEL/projects/R0003_test.ht/.README.txt.crc
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
hail_search/fixtures/GRCh38/SNV_INDEL/projects/R0003_test.ht/.metadata.json.gz.crc
Binary file not shown.
4 changes: 2 additions & 2 deletions
4
hail_search/fixtures/GRCh38/SNV_INDEL/projects/R0003_test.ht/README.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
This folder comprises a Hail (www.hail.is) native Table or MatrixTable. | ||
Written with version 0.2.124-13536b531342 | ||
Created at 2023/11/27 16:03:50 | ||
Written with version 0.2.126-ee77707f4fab | ||
Created at 2024/02/05 17:29:22 |
Binary file modified
BIN
+0 Bytes
(100%)
hail_search/fixtures/GRCh38/SNV_INDEL/projects/R0003_test.ht/globals/.metadata.json.gz.crc
Binary file not shown.
Binary file modified
BIN
+36 Bytes
(110%)
hail_search/fixtures/GRCh38/SNV_INDEL/projects/R0003_test.ht/globals/metadata.json.gz
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
hail_search/fixtures/GRCh38/SNV_INDEL/projects/R0003_test.ht/globals/parts/.part-0.crc
Binary file not shown.
Binary file modified
BIN
+14 Bytes
(110%)
hail_search/fixtures/GRCh38/SNV_INDEL/projects/R0003_test.ht/globals/parts/part-0
Binary file not shown.
Binary file added
BIN
+12 Bytes
...L/projects/R0003_test.ht/index/part-0-28a643dd-8eb0-4510-8718-6e98b4f4274d.idx/.index.crc
Binary file not shown.
File renamed without changes.
Binary file added
BIN
+104 Bytes
..._INDEL/projects/R0003_test.ht/index/part-0-28a643dd-8eb0-4510-8718-6e98b4f4274d.idx/index
Binary file not shown.
File renamed without changes.
Binary file removed
BIN
-12 Bytes
...L/projects/R0003_test.ht/index/part-0-69ee3f53-4c49-4b02-b7fb-359ac8248c3c.idx/.index.crc
Binary file not shown.
Binary file removed
BIN
-104 Bytes
..._INDEL/projects/R0003_test.ht/index/part-0-69ee3f53-4c49-4b02-b7fb-359ac8248c3c.idx/index
Binary file not shown.
Binary file modified
BIN
+20 Bytes
(110%)
hail_search/fixtures/GRCh38/SNV_INDEL/projects/R0003_test.ht/metadata.json.gz
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
hail_search/fixtures/GRCh38/SNV_INDEL/projects/R0003_test.ht/rows/.metadata.json.gz.crc
Binary file not shown.
Binary file modified
BIN
+11 Bytes
(100%)
hail_search/fixtures/GRCh38/SNV_INDEL/projects/R0003_test.ht/rows/metadata.json.gz
Binary file not shown.
Binary file added
BIN
+12 Bytes
..._INDEL/projects/R0003_test.ht/rows/parts/.part-0-28a643dd-8eb0-4510-8718-6e98b4f4274d.crc
Binary file not shown.
Binary file removed
BIN
-12 Bytes
..._INDEL/projects/R0003_test.ht/rows/parts/.part-0-69ee3f53-4c49-4b02-b7fb-359ac8248c3c.crc
Binary file not shown.
Binary file added
BIN
+107 Bytes
...8/SNV_INDEL/projects/R0003_test.ht/rows/parts/part-0-28a643dd-8eb0-4510-8718-6e98b4f4274d
Binary file not shown.
Binary file removed
BIN
-105 Bytes
...8/SNV_INDEL/projects/R0003_test.ht/rows/parts/part-0-69ee3f53-4c49-4b02-b7fb-359ac8248c3c
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
hail_search/fixtures/GRCh38/SV_WES/projects/R0001_1kg.ht/.README.txt.crc
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
hail_search/fixtures/GRCh38/SV_WES/projects/R0001_1kg.ht/.metadata.json.gz.crc
Binary file not shown.
4 changes: 2 additions & 2 deletions
4
hail_search/fixtures/GRCh38/SV_WES/projects/R0001_1kg.ht/README.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
This folder comprises a Hail (www.hail.is) native Table or MatrixTable. | ||
Written with version 0.2.109-b71b065e4bb6 | ||
Created at 2023/08/25 11:56:33 | ||
Written with version 0.2.126-ee77707f4fab | ||
Created at 2024/02/05 17:32:17 |
Binary file modified
BIN
+0 Bytes
(100%)
hail_search/fixtures/GRCh38/SV_WES/projects/R0001_1kg.ht/globals/.metadata.json.gz.crc
Binary file not shown.
Binary file modified
BIN
+16 Bytes
(110%)
hail_search/fixtures/GRCh38/SV_WES/projects/R0001_1kg.ht/globals/metadata.json.gz
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
hail_search/fixtures/GRCh38/SV_WES/projects/R0001_1kg.ht/globals/parts/.part-0.crc
Binary file not shown.
Binary file modified
BIN
-306 Bytes
(37%)
hail_search/fixtures/GRCh38/SV_WES/projects/R0001_1kg.ht/globals/parts/part-0
Binary file not shown.
Binary file added
BIN
+12 Bytes
...ES/projects/R0001_1kg.ht/index/part-0-4bb6b390-07db-405c-abad-c57b5aa95da0.idx/.index.crc
Binary file not shown.
Binary file added
BIN
+12 Bytes
.../R0001_1kg.ht/index/part-0-4bb6b390-07db-405c-abad-c57b5aa95da0.idx/.metadata.json.gz.crc
Binary file not shown.
Binary file added
BIN
+118 Bytes
.../SV_WES/projects/R0001_1kg.ht/index/part-0-4bb6b390-07db-405c-abad-c57b5aa95da0.idx/index
Binary file not shown.
Binary file added
BIN
+162 Bytes
...jects/R0001_1kg.ht/index/part-0-4bb6b390-07db-405c-abad-c57b5aa95da0.idx/metadata.json.gz
Binary file not shown.
Binary file removed
BIN
-12 Bytes
...cts/R0001_1kg.ht/index/part-0-702-0-0-4d0242f4-15be-5c06-45f9-2e54e9c95dfa.idx/.index.crc
Binary file not shown.
Binary file removed
BIN
-12 Bytes
...kg.ht/index/part-0-702-0-0-4d0242f4-15be-5c06-45f9-2e54e9c95dfa.idx/.metadata.json.gz.crc
Binary file not shown.
Binary file removed
BIN
-104 Bytes
...projects/R0001_1kg.ht/index/part-0-702-0-0-4d0242f4-15be-5c06-45f9-2e54e9c95dfa.idx/index
Binary file not shown.
Binary file removed
BIN
-161 Bytes
...001_1kg.ht/index/part-0-702-0-0-4d0242f4-15be-5c06-45f9-2e54e9c95dfa.idx/metadata.json.gz
Binary file not shown.
Binary file modified
BIN
+41 Bytes
(110%)
hail_search/fixtures/GRCh38/SV_WES/projects/R0001_1kg.ht/metadata.json.gz
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
hail_search/fixtures/GRCh38/SV_WES/projects/R0001_1kg.ht/rows/.metadata.json.gz.crc
Binary file not shown.
Binary file modified
BIN
+3 Bytes
(100%)
hail_search/fixtures/GRCh38/SV_WES/projects/R0001_1kg.ht/rows/metadata.json.gz
Binary file not shown.
Binary file added
BIN
+12 Bytes
.../SV_WES/projects/R0001_1kg.ht/rows/parts/.part-0-4bb6b390-07db-405c-abad-c57b5aa95da0.crc
Binary file not shown.
Binary file removed
BIN
-12 Bytes
...projects/R0001_1kg.ht/rows/parts/.part-0-702-0-0-4d0242f4-15be-5c06-45f9-2e54e9c95dfa.crc
Binary file not shown.
Binary file added
BIN
+260 Bytes
...RCh38/SV_WES/projects/R0001_1kg.ht/rows/parts/part-0-4bb6b390-07db-405c-abad-c57b5aa95da0
Binary file not shown.
Binary file removed
BIN
-235 Bytes
..._WES/projects/R0001_1kg.ht/rows/parts/part-0-702-0-0-4d0242f4-15be-5c06-45f9-2e54e9c95dfa
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
hail_search/fixtures/GRCh38/SV_WGS/projects/R0003_test.ht/.README.txt.crc
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
hail_search/fixtures/GRCh38/SV_WGS/projects/R0003_test.ht/.metadata.json.gz.crc
Binary file not shown.
4 changes: 2 additions & 2 deletions
4
hail_search/fixtures/GRCh38/SV_WGS/projects/R0003_test.ht/README.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
This folder comprises a Hail (www.hail.is) native Table or MatrixTable. | ||
Written with version 0.2.109-b71b065e4bb6 | ||
Created at 2023/08/23 14:16:26 | ||
Written with version 0.2.126-ee77707f4fab | ||
Created at 2024/02/05 17:34:17 |
Binary file modified
BIN
+0 Bytes
(100%)
hail_search/fixtures/GRCh38/SV_WGS/projects/R0003_test.ht/globals/.metadata.json.gz.crc
Binary file not shown.
Binary file modified
BIN
+16 Bytes
(110%)
hail_search/fixtures/GRCh38/SV_WGS/projects/R0003_test.ht/globals/metadata.json.gz
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
hail_search/fixtures/GRCh38/SV_WGS/projects/R0003_test.ht/globals/parts/.part-0.crc
Binary file not shown.
Binary file modified
BIN
-269 Bytes
(42%)
hail_search/fixtures/GRCh38/SV_WGS/projects/R0003_test.ht/globals/parts/part-0
Binary file not shown.
Binary file removed
BIN
-12 Bytes
...ts/R0003_test.ht/index/part-0-273-0-0-90763219-49c9-d0b3-2ad8-552e6f929c64.idx/.index.crc
Binary file not shown.
Binary file removed
BIN
-12 Bytes
...st.ht/index/part-0-273-0-0-90763219-49c9-d0b3-2ad8-552e6f929c64.idx/.metadata.json.gz.crc
Binary file not shown.
Binary file removed
BIN
-169 Bytes
...rojects/R0003_test.ht/index/part-0-273-0-0-90763219-49c9-d0b3-2ad8-552e6f929c64.idx/index
Binary file not shown.
Binary file removed
BIN
-162 Bytes
...03_test.ht/index/part-0-273-0-0-90763219-49c9-d0b3-2ad8-552e6f929c64.idx/metadata.json.gz
Binary file not shown.
Binary file added
BIN
+12 Bytes
...S/projects/R0003_test.ht/index/part-0-cbf84037-3354-427a-98a6-b953711ae5bc.idx/.index.crc
Binary file not shown.
Binary file added
BIN
+12 Bytes
...R0003_test.ht/index/part-0-cbf84037-3354-427a-98a6-b953711ae5bc.idx/.metadata.json.gz.crc
Binary file not shown.
Binary file added
BIN
+183 Bytes
...SV_WGS/projects/R0003_test.ht/index/part-0-cbf84037-3354-427a-98a6-b953711ae5bc.idx/index
Binary file not shown.
Binary file added
BIN
+162 Bytes
...ects/R0003_test.ht/index/part-0-cbf84037-3354-427a-98a6-b953711ae5bc.idx/metadata.json.gz
Binary file not shown.
Binary file modified
BIN
+38 Bytes
(110%)
hail_search/fixtures/GRCh38/SV_WGS/projects/R0003_test.ht/metadata.json.gz
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
hail_search/fixtures/GRCh38/SV_WGS/projects/R0003_test.ht/rows/.metadata.json.gz.crc
Binary file not shown.
Binary file modified
BIN
+3 Bytes
(100%)
hail_search/fixtures/GRCh38/SV_WGS/projects/R0003_test.ht/rows/metadata.json.gz
Binary file not shown.
Binary file removed
BIN
-12 Bytes
...rojects/R0003_test.ht/rows/parts/.part-0-273-0-0-90763219-49c9-d0b3-2ad8-552e6f929c64.crc
Binary file not shown.
Binary file added
BIN
+12 Bytes
...SV_WGS/projects/R0003_test.ht/rows/parts/.part-0-cbf84037-3354-427a-98a6-b953711ae5bc.crc
Binary file not shown.
Oops, something went wrong.