-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Unknown
committed
Jan 26, 2018
1 parent
8096b23
commit fe6ecf7
Showing
2 changed files
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#!/bin/bash | ||
set -e | ||
CXX=$PREFIX/bin/g++ | ||
make | ||
mkdir -p $PREFIX/bin | ||
cp AmpliconClipper $PREFIX/bin/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
package: | ||
name: ampliconclipper | ||
version: "0.0" | ||
|
||
source: | ||
git_url: https://github.com/SoapZA/AmpliconClipper | ||
git_tag: ceced74 | ||
|
||
requirements: | ||
build: | ||
- gcc ==5.4.0 | ||
run: | ||
- libgcc >=5.4.0 | ||
|
||
test: | ||
commands: | ||
- AmpliconClipper | ||
|
||
about: | ||
home: https://github.com/SoapZA/AmpliconClipper | ||
summary: "an alignment postprocessor that removes PCR primers from SAM alignments and discards reads with major errors" | ||
license: GPLv3 |