unix - Read a sequence in reverse -
i have problem here:
if have chain sequence below, how read strand in reverse (unix)?
input : cctttatctttatctag desired output : gatctatttctatttcc
thanks help. =)
echo "cctttatctttatctag" | rev gatctatttctatttcc
rev want.
a related command tac reverses line order of file.
Comments
Post a Comment