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
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
d4690e65afcd Uploaded
bcclaywell
parents:
diff changeset
1 #!/bin/bash
d4690e65afcd Uploaded
bcclaywell
parents:
diff changeset
2
d4690e65afcd Uploaded
bcclaywell
parents:
diff changeset
3 source $(dirname $0)/util.sh
d4690e65afcd Uploaded
bcclaywell
parents:
diff changeset
4 source $1
d4690e65afcd Uploaded
bcclaywell
parents:
diff changeset
5
d4690e65afcd Uploaded
bcclaywell
parents:
diff changeset
6 QUERY_SEQS=$(extify fasta ${QUERY_SEQS})
d4690e65afcd Uploaded
bcclaywell
parents:
diff changeset
7 PPLACER_DEFAULT_ARGS="-j ${GALAXY_SLOTS:-4} -p --inform-prior --prior-lower 0.01 --map-identity"
d4690e65afcd Uploaded
bcclaywell
parents:
diff changeset
8
d4690e65afcd Uploaded
bcclaywell
parents:
diff changeset
9 pplacer \
d4690e65afcd Uploaded
bcclaywell
parents:
diff changeset
10 ${PPLACER_DEFAULT_ARGS} \
d4690e65afcd Uploaded
bcclaywell
parents:
diff changeset
11 -c ${REFPKG} \
d4690e65afcd Uploaded
bcclaywell
parents:
diff changeset
12 -o ${PLACED_SEQS} \
d4690e65afcd Uploaded
bcclaywell
parents:
diff changeset
13 ${QUERY_SEQS}