Skip to content

Commit

Permalink
Correct build in travis. Change vdjdb shell script
Browse files Browse the repository at this point in the history
  • Loading branch information
mikessh committed Jul 10, 2016
1 parent a3dee30 commit a3db1b4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ install:
- cd ..

script:
- gradle clean install
- gradle clean build
- java -Xmx4G -jar `ls build/libs/vdjdb-*.jar` -v -j -S human -R TRB --search-scope 3,1,1,3 --search-preset high-precision src/test/resources/sergey_anatolyevich.gz test
- if [[ ! -s test.sergey_anatolyevich.annot.txt ]]; then exit 1; fi; rm test.sergey_anatolyevich.annot.txt
- if [[ ! -s test.annot.summary.txt ]]; then exit 1; fi; rm test.annot.summary.txt
Expand Down
4 changes: 2 additions & 2 deletions vdjdb
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ do
shift
;;
*)
vdjdbArgs+=(${key})
vdjdbArgs+=("${key}")
;;
esac
done
Expand Down Expand Up @@ -141,4 +141,4 @@ then
exit 1
fi

$java -XX:+AggressiveOpts "${javaArgs[@]}" -jar $jar "${vdjdbArgs[@]}"
$java -XX:+AggressiveOpts "${javaArgs[@]}" -jar $jar "${vdjdbArgs[@]}"

0 comments on commit a3db1b4

Please sign in to comment.