Skip to content

Commit

Permalink
Fix test script
Browse files Browse the repository at this point in the history
  • Loading branch information
nicodr97 committed Feb 26, 2024
1 parent 2a759f5 commit b335b7d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions scripts/compare_trimmed_msas.sh
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
methods=(gappyout strict strictplus automated1 nogaps noallgaps)
methods="gappyout strict strictplus automated1 nogaps noallgaps"
for method in $methods
do
for msa in test_msas/$method/*.fasta
do
msa_filename=$(basename $msa)
diff $msa dataset/trimmed_msas/$method/$msa_filename -q || exit 1
diff "$msa" "dataset/trimmed_msas/$method/$msa_filename" -q || exit 1
echo "Compared $msa and dataset/trimmed_msas/$method/$msa_filename"
done
done
rm -rf test_msas

0 comments on commit b335b7d

Please sign in to comment.