Skip to content

Commit

Permalink
add merged alignments
Browse files Browse the repository at this point in the history
  • Loading branch information
jayhesselberth committed Jul 6, 2024
1 parent 3afef77 commit f3cc5fb
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 0 deletions.
Binary file added db-searches/combined-class-1.sto.gz
Binary file not shown.
Binary file added db-searches/combined-class-2.sto.gz
Binary file not shown.
13 changes: 13 additions & 0 deletions db-searches/merge-alignments.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#! /usr/bin/env bash

set -x

models=(class-1 class-2)

for model in ${models[@]}; do
ls *$model.sto.gz > $model.txt
esl-alimerge --list $model.txt > combined-$model.sto
gzip combined-$model.sto
rm -f $model.txt
done

0 comments on commit f3cc5fb

Please sign in to comment.