diff options
author | Calvin Morrison <mutantturkey@gmail.com> | 2014-04-21 11:53:01 -0400 |
---|---|---|
committer | Calvin Morrison <mutantturkey@gmail.com> | 2014-04-21 11:53:01 -0400 |
commit | 22f186bdcd228807771c3caa0bac857715a57772 (patch) | |
tree | d954e3dd02e3d93641aeeafd5d813ce2ce07ff5c /SelectiveWholeGenomeAmplification | |
parent | aaf0eaad4b118588b3d3b3177e8d563282142929 (diff) |
be specific
Diffstat (limited to 'SelectiveWholeGenomeAmplification')
-rwxr-xr-x | SelectiveWholeGenomeAmplification | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/SelectiveWholeGenomeAmplification b/SelectiveWholeGenomeAmplification index e807690..5b33be1 100755 --- a/SelectiveWholeGenomeAmplification +++ b/SelectiveWholeGenomeAmplification @@ -185,12 +185,12 @@ export primer_weight echo # check foreground and background if [[ ! -f "$foreground" ]]; then - echo "Error: could not open $foreground" + echo "Error: could not open foreground: $foreground" exit 1 fi if [[ ! -f "$background" ]]; then - echo "Error: could not open $background" + echo "Error: could not open background: $background" exit 1 fi |