Entering edit mode
5.5 years ago
kA
•
0
Hi,
I am trying to get the CDS of a sequence using extractfeat on bash linux. It gives me the error: Warning: No sequences written to output file
I am unsure if my syntax is right, but this is what I have:
extractfeat inputFile outputFile -type CDS
Check if you have
CDS
underFEATURES
(assuming inputFile is in GenBank Flat File Format), for example:Additionally, if you want the whole CDS, try adding
-join
after-type CDS
.What is the input data format? Can you show a snippet of the input data?