annotate pplacer-wrapper.sh @ 8:35f9b833e12b
draft default tip
planemo upload commit 2774930eebe258ecd56c8f1c5ddabf5092282ab9
| author |
bcclaywell |
| date |
Mon, 12 Oct 2015 16:09:02 -0400 |
| parents |
d4690e65afcd |
| children |
|
| rev |
line source |
|
0
|
1 #!/bin/bash
|
|
|
2
|
|
|
3 source $(dirname $0)/util.sh
|
|
|
4 source $1
|
|
|
5
|
|
|
6 QUERY_SEQS=$(extify fasta ${QUERY_SEQS})
|
|
|
7 PPLACER_DEFAULT_ARGS="-j ${GALAXY_SLOTS:-4} -p --inform-prior --prior-lower 0.01 --map-identity"
|
|
|
8
|
|
|
9 pplacer \
|
|
|
10 ${PPLACER_DEFAULT_ARGS} \
|
|
|
11 -c ${REFPKG} \
|
|
|
12 -o ${PLACED_SEQS} \
|
|
|
13 ${QUERY_SEQS}
|