Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Error in output of bold_seq() #79

Closed
salix-d opened this issue Oct 6, 2021 · 2 comments
Closed

Error in output of bold_seq() #79

salix-d opened this issue Oct 6, 2021 · 2 comments
Labels
Milestone

Comments

@salix-d
Copy link
Collaborator

salix-d commented Oct 6, 2021

In the output of bold_seq(), $id and $gene were both the value of $id.
There's a mistake in the indexes of split_fasta() on line 11 of zzz.R :

list(id = stuff[1], name = stuff[2], gene = stuff[1], sequence = seq)

should be :

list(id = stuff[1], name = stuff[2], gene = stuff[3], sequence = seq)

The accession from the fasta (which would be stuff[4] minus the sequence) also get lost.

@sckott
Copy link
Contributor

sckott commented Oct 6, 2021

thanks!

@sckott
Copy link
Contributor

sckott commented Oct 6, 2021

fixed via #80

@sckott sckott closed this as completed Oct 6, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants