-
Notifications
You must be signed in to change notification settings - Fork 82
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
push_back for aa27 #3018
Comments
Hey! In your AA code, you are using |
Thanks for the quick response. I replaced that line and I now get this compile error:
|
Here is the full error if it helps:
|
I did find a workaround that works. I left
and replaced
with
Then in the align section I used:
But if you do have a solution for the push_back just for aa sequences, let me know. |
Hi @leannmlindsey, Your workaround works well :) another way would be (similar to @eseilers approach):
and then the push_back should work
Since you have a working version, I think the issue is resolved. Feel free to reopen it if you have another question or there is something missing. |
Platform
Question
I have been trying to modify one of your alignment tutorials to work with amino acids instead of dna but I have had trouble when I am trying to call the function push_back on aa27. This is the error that I get:
**DNA version of code that works**
**AA version of code that gives error**
Note: I have the alignment portion working for the input sequences seq1 and seq2 but I want to replace that with a for loop that goes through all of the records read in from two files (ref.fasta and read.fasta), but I am stuck on the push_back for amino acids
The text was updated successfully, but these errors were encountered: