Skip to content

Commit

Permalink
Bypass RDP Classifier in versions when missing
Browse files Browse the repository at this point in the history
  • Loading branch information
lmrodriguezr committed Sep 28, 2024
1 parent 8198090 commit 8c64843
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/miga/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ module MiGA
# - String indicating release status:
# - rc* release candidate, not released as gem
# - [0-9]+ stable release, released as gem
VERSION = [1.3, 21, 2].freeze
VERSION = [1.3, 21, 3].freeze

##
# Nickname for the current major.minor version.
Expand Down
6 changes: 4 additions & 2 deletions scripts/ssu.bash
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,10 @@ $(
bedtools --version 2>&1 | perl -pe 's/^bedtools //'
echo "=> Enveomics Collection"
echo "version unknown"
echo "=> RDP Naive Bayes Classifier"
gzip -cd "${DATASET}.rdp.tsv.gz" | tail -n 1 | perl -pe 's/.*: //'
if [[ -e "${DATASET}.rdp.tsv.gz" ]] ; then
echo "=> RDP Naive Bayes Classifier"
gzip -cd "${DATASET}.rdp.tsv.gz" | tail -n 1 | perl -pe 's/.*: //'
fi
echo "=> tRNAscan-SE"
tRNAscan-SE -h 2>&1 | head -n 2 | tail -n 1 | perl -pe 's/^tRNAscan-SE //'
fi
Expand Down

0 comments on commit 8c64843

Please sign in to comment.