Skip to content

Commit

Permalink
Code review feedback.
Browse files Browse the repository at this point in the history
  • Loading branch information
gbggrant committed May 16, 2022
1 parent 9e65874 commit 0ff2f76
Showing 1 changed file with 7 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -123,10 +123,10 @@ workflow GvsValidateVat {

call SpotCheckForAAChangeAndExonNumberConsistency {
input:
query_project_id = query_project_id,
fq_vat_table = fq_vat_table,
service_account_json_path = service_account_json_path,
last_modified_timestamp = GetBQTableLastModifiedDatetime.last_modified_timestamp
query_project_id = query_project_id,
fq_vat_table = fq_vat_table,
service_account_json_path = service_account_json_path,
last_modified_timestamp = GetBQTableLastModifiedDatetime.last_modified_timestamp
}

output {
Expand Down Expand Up @@ -235,6 +235,7 @@ task EnsureVatTableHasVariants {
# otherwise, something is off, so return the output from the bq query call
else
echo "Something went wrong. The attempt to count the variants returned: " $(cat bq_variant_count.csv) > validation_results.txt
exit 1
fi
>>>
# ------------------------------------------------
Expand Down Expand Up @@ -1004,6 +1005,7 @@ task SchemaAAChangeAndExonNumberConsistent {
# otherwise, something is off, so return the output from the bq query call
else
echo "Something went wrong. The attempt to count the variants returned: " $(cat bq_aachange_exonnumber.csv) > validation_results.txt
exit 1
fi
>>>
# ------------------------------------------------
Expand Down Expand Up @@ -1115,6 +1117,7 @@ task SpotCheckForAAChangeAndExonNumberConsistency {
# otherwise, something is off, so return the output from the bq query call
else
echo "Something went wrong. The attempt to count the spot checked entries returned: " $(cat output.csv.csv) > validation_results.txt
exit 1
fi
>>>

Expand Down

0 comments on commit 0ff2f76

Please sign in to comment.