Skip to content

Commit

Permalink
1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
telatin committed May 14, 2021
1 parent d9662b4 commit a524566
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bin/dadaist2
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#ABSTRACT: A program to run DADA2 from the CLI
use 5.012;
use warnings;
my $VERSION = '1.0.0';
my $VERSION = '1.0.1';

BEGIN {

Expand Down
7 changes: 6 additions & 1 deletion test/all.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ OUT="$BASEDIR/output/"
PASS="\e[32mPASS\e[0m"
FAIL="\e[31m** FAIL **\e[0m"
mkdir -p "$OUT/"
conda activate dadaist
which conda && conda activate dadaist
echo '--------------'
echo -e "Test dir:\t$TEST_DIR"
echo -e "Base dir:\t$BASEDIR"
Expand All @@ -26,6 +26,11 @@ echo '--------------'

set -eux pipefail

# TEST: VERSION
echo " [0] Check version"
perl "$SCRIPTS"/dadaist2 --version && printf " * $PASS: Version $($SCRIPTS/dadaist2 --version )\n";


# TEST: NO TAXONOMY
echo " [1] Test basic settings"
perl "$SCRIPTS"/dadaist2 -i "$DATA" -o "$OUT"/no-tax --tmp-dir "$BASEDIR" > /dev/null 2>&1 || echo "dadaist failed: debugging"
Expand Down

0 comments on commit a524566

Please sign in to comment.