Mercurial > repos > bcclaywell > microbiome_pplacer_suite
view preprocessing-wrapper.sh @ 0:d4690e65afcd draft
Uploaded
author | bcclaywell |
---|---|
date | Thu, 26 Feb 2015 18:16:36 -0500 |
parents | |
children | 221a97bf686d |
line wrap: on
line source
#!/bin/bash source $1 deduplicate_sequences.py \ --split-map ${SPLIT_MAP} \ --deduplicated-sequences-file ${DEDUP_INFO} \ ${INPUT_SEQS} \ ${DEDUP_SEQS} # adapted from yapp/bin/refpkg_align ref_sto=$(taxit rp ${REFPKG} aln_sto) profile=$(taxit rp ${REFPKG} profile) sto=$(mktemp -u).sto cmalign --cpu ${GALAXY_SLOTS:-4} -o "$sto" --sfile "${ALIGNED_SCORES}" --noprob --dnaout "$profile" "${DEDUP_SEQS}" | grep -E '^#' esl-alimerge --dna --outformat afa "$ref_sto" "$sto" | \ seqmagick convert --output-format fasta --dash-gap - "${ALIGNED_SEQS}"