Skip to content
Snippets Groups Projects
Commit 531aad93 authored by Michele Co's avatar Michele Co
Browse files

Merge branch '2-aggregate-assurance-evidence-missing' into 'master'

Resolve "aggregate assurance evidence missing"

Closes #2

See merge request allnp/peasoup_examples!1

Former-commit-id: 292551cf4b9cd11203d5d779fa20a2b7d2929159
parents 1c2759f7 c1b454ca
No related branches found
No related tags found
No related merge requests found
......@@ -836,12 +836,17 @@ finalize_json()
done
if [ "x"$use_assurance = "x--enable-assurance" ]; then
if [ ! -f "$outdir/assurance/vs-${vs}_aggregate_evidence.tmp.txt" ]; then
echo "There does not appear to be any AGGREGATE ASSURANCE evidence to gather."
# parse the aggregated assurance case evidence for the variant set
parse_aggregate_assurance_file "$outdir/assurance/vs-${vs}_aggregate_evidence.tmp.txt" "$outdir/assurance/vs-${vs}_aggregate_evidence.txt" "vs-${vs}"
else
# parse the aggregated assurance case evidence for the variant set
parse_aggregate_assurance_file "$outdir/assurance/vs-${vs}_aggregate_evidence.tmp.txt" "$outdir/assurance/vs-${vs}_aggregate_evidence.txt" "vs-${vs}"
# remove the intermediate file
rm -f "$outdir/assurance/vs-${vs}_aggregate_evidence.tmp.txt"
# remove the intermediate file
rm -f "$outdir/assurance/vs-${vs}_aggregate_evidence.tmp.txt"
fi
fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment