Add logs to print the sequence length and if the sequence is reverse

complemented

Former-commit-id: ba55f354ea7a51119fe44bcb36aa5927194293e2
Former-commit-id: dd7715be54ac92c9625f0a2c30e572b7aee76dc7
This commit is contained in:
2018-01-18 22:00:07 +01:00
parent 08d7c940a4
commit a25ab81b38

View File

@ -23,7 +23,6 @@ source "${THIS_DIR}/../../../scripts/bash_init.sh"
pushTmpDir ORG.its
loginfo "Normalizing nuclear rDNA cistron..."
RRNADB="${NUCRRNA_DATA_DIR}/plants/nuc_RRNA.hmm"
if [[ ! "$1" =~ ^/ ]]; then
@ -32,6 +31,7 @@ pushTmpDir ORG.its
QUERY="$1"
fi
loginfo "Sequence length $(seqlength ${QUERY})"
strand=( $(hmmsearch --max ${RRNADB} ${QUERY} | \
$AwkCmd '/Query: / { \
@ -55,7 +55,8 @@ pushTmpDir ORG.its
if [[ "${strand[0]}" == "Forward" ]] ; then
cat ${QUERY}
else
fastarevcomp -f ${QUERY}
loginfo "Revert complement rDNA cluster cistron"
fastarevcomp ${QUERY}
fi
else
logerror "Cannot determine the Cistron orientation"