Skip to content

Commit

Permalink
release 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
telatin committed Oct 21, 2020
1 parent 0b8aba6 commit eef15bd
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 0 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,8 @@ Options:
-l MINLEN, --min-len=MINLEN
print BED feature only if its length is bigger (or equal
to) than MINLELN (default: 1)
-z MINCTG, --min-ctg-len=MINCTG
skip reference sequences having size less or equal to MINCTG
-d, --discard-invalid-alignments
skip duplicates, failed QC, and non primary alignment,
minq>0 (or user-defined if higher) (default: 0)
Expand Down
1 change: 1 addition & 0 deletions binaries/build_osx.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#!/bin/bash
if [ ! -d "$HOME/miniconda3" ]; then
echo "MINICONDA not found in $HOME/miniconda3"
echo "Install miniconda, then get bamtools from bioconda."
exit 1;
fi
if [ ! -e "$HOME/miniconda3/lib/libbamtools.a" ]; then
Expand Down
10 changes: 10 additions & 0 deletions binaries/build_ubuntu.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
#!/bin/bash

if [ ! -e "/usr/lib/x86_64-linux-gnu/libbamtools.a" ]; then
echo "Bamtools not found at: /usr/lib/x86_64-linux-gnu/libbamtools.a"
exit 1
fi

if [ ! -e "/usr/lib/gcc/x86_64-linux-gnu/5/libstdc++.a" ]; then
echo "Stdlib not found at: /usr/lib/gcc/x86_64-linux-gnu/5/libstdc++.a"
exit 1
fi

set -euxo pipefail
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )"
cd "$SCRIPT_DIR/.."
Expand Down
Binary file modified binaries/covtobed_mac
Binary file not shown.
Binary file modified binaries/covtobed_mac_debug
Binary file not shown.

0 comments on commit eef15bd

Please sign in to comment.