Entering edit mode
23 months ago
Diego
▴
110
Hi all,
I wonder if you know a good way to unmask a soft masked genome (i.e., atatata --> ATATATA).
Thanks in advance
Hi all,
I wonder if you know a good way to unmask a soft masked genome (i.e., atatata --> ATATATA).
Thanks in advance
You can use a tool like seqkit
https://bioinf.shenwei.me/seqkit/usage/
seqkit seq
-u, --upper-case print sequences in upper case
Using reformat.sh
from BBMap suite
reformat.sh -Xmx2g in=masked.fa out=unmasked.fa tuc=t
Use of this site constitutes acceptance of our User Agreement and Privacy Policy.
You can try tr command
in all fairness this would alter the sequence names as well, usually that is not a desired behavior
Yes you need to skip the names some way.