Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .dockstore.yml
Original file line number Diff line number Diff line change
Expand Up @@ -344,6 +344,7 @@ workflows:
- master
- ah_var_store
- vs_1634_pgen_exome
- gg_VS-1754_RemoveOneClinvarSignificanceFromTest
tags:
- /.*/
- name: GvsIngestTieout
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1101,7 +1101,6 @@ task ClinvarSignificance {
# "risk factor",
# "protective",
# "affects",
# "conflicting data from submitters",
# "other",
# "not provided"]
Expand All @@ -1114,7 +1113,6 @@ task ClinvarSignificance {
echo 'affects
association
benign
conflicting data from submitters
drug response
likely benign
likely pathogenic
Expand All @@ -1125,7 +1123,7 @@ task ClinvarSignificance {
risk factor
uncertain significance' > expected_clinvar_classes.txt
comm -23 <(sort bq_clinvar_classes.txt) expected_clinvar_classes.txt > missing_clinvar_classes.txt
comm -13 <(sort bq_clinvar_classes.txt) expected_clinvar_classes.txt > missing_clinvar_classes.txt
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This looks to have been wrong in the original implementation.

NUMRESULTS=$( wc -l bq_clinvar_classes.txt | awk '{print $1;}' ) # we expect this to be 13+
NUMMISS=$( wc -l missing_clinvar_classes.txt | awk '{print $1;}' ) # we expect this to be 0
Expand Down
Loading