Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix #780 - Update do.sh #781

Merged
merged 15 commits into from
Feb 23, 2015
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
2015-02-20 Tamer A. Mansour <drtamermansour@gmail.com>

* In the do.sh script, the old argument --savehash has been updated to
--savetable
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Wrapped lines should be indented to match the line above. In this instance you need three space before --savetable


2015-02-20 Titus Brown <titus@idyll.org>

* doc/dev/scripts-and-sandbox.txt: policies for sandbox/ and scripts/
Expand Down
4 changes: 2 additions & 2 deletions examples/stamps/do.sh
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ load-into-counting.py -x 1e8 -k 20 stamps-reads.ct \
abundance-dist.py stamps-reads.ct ../../data/stamps-reads.fa.gz \
stamps-reads.hist
normalize-by-median.py -k 20 -C 10 -x 1e8 ../../data/stamps-reads.fa.gz \
--savehash stamps-dn.ct
--savetable stamps-dn.ct
abundance-dist.py stamps-dn.ct stamps-reads.fa.gz.keep stamps-dn.hist
do-partition.py -k 32 -x 1e8 -s 1e4 -T 8 stamps-part \
../../data/stamps-reads.fa.gz
Expand All @@ -27,7 +27,7 @@ abundance-dist.py stamps-part.g1.ct stamps-part.group0001.fa stamps-part.g1.hist

filter-abund.py stamps-dn.ct stamps-reads.fa.gz.keep
normalize-by-median.py -x 1e8 -k 20 -C 10 stamps-reads.fa.gz.keep.abundfilt \
--savehash stamps-dn3.ct
--savetable stamps-dn3.ct

abundance-dist.py stamps-dn3.ct stamps-reads.fa.gz.keep.abundfilt.keep \
stamps-dn3.hist
3 changes: 3 additions & 0 deletions jenkins-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -64,3 +64,6 @@ if type sloccount >/dev/null 2>&1
then
make sloccount.sc
fi

bash -ex -c 'cd examples/stamps/; ./do.sh' || { echo examples/stamps/do.sh no longer runs; /bin/false }