Error in command readseq Chapter VII DATA FORMATS-Introduction to data formats #235
Unanswered
rqportillo
asked this question in
Q&A
Replies: 2 comments 1 reply
-
Could you please link to the page that has this information. I have a hard time locating this line. |
Beta Was this translation helpful? Give feedback.
0 replies
-
Hi Istvan,
The page is:
https://www.biostarhandbook.com/introduction-to-data-formats.html
Raul.
…On Sun, Sep 11, 2022 at 5:15 PM Istvan Albert ***@***.***> wrote:
Could you please link to the page that has this information.
I have a hard time locating this line.
—
Reply to this email directly, view it on GitHub
<https://urldefense.com/v3/__https://github.com/biostars/biostar-handbook/discussions/235*discussioncomment-3621625__;Iw!!IKRxdwAv5BmarQ!bKXDrn-ZcsVhgYDMye0FVdvXe3ptI3FEc7kVX58tEo_56xWa69i5qv3WpoTzJKlaGth2QeiQW_POFNWXpmJEPIgZVg$>,
or unsubscribe
<https://urldefense.com/v3/__https://github.com/notifications/unsubscribe-auth/A3AOT5A7XKF3YWXH2P7DYKTV5ZYZHANCNFSM6AAAAAAQJ333KU__;!!IKRxdwAv5BmarQ!bKXDrn-ZcsVhgYDMye0FVdvXe3ptI3FEc7kVX58tEo_56xWa69i5qv3WpoTzJKlaGth2QeiQW_POFNWXpmLnVFAigQ$>
.
You are receiving this because you authored the thread.Message ID:
***@***.***
com>
|
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I found a mistake in a flag in the command readseq. The error was encountered in the Chapter VII DATA FORMATS-Introduction to data formats.
The command in the book is:
cat NC_001501.gb | readseq -p -format FASTA > NC_001501-version3.fa
The correct format will be "-f" or "-format=" instead of -format only.
Running the command with both corrections:
Option 1:
cat NC_001501.gb | readseq -p -f FASTA > NC_001501-version3.fa
Option 2:
cat NC_001501.gb | readseq -p -format=FASTA > NC_001501-version3.fa
Creates the file correctly.
Beta Was this translation helpful? Give feedback.
All reactions