-
Notifications
You must be signed in to change notification settings - Fork 48
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
getindex not defined for arrays #61
Comments
Thanks for pointing this out @diegozea, perhaps we can include this method in version 2.0. |
I have been going over the source code to get familiar and to add this functionality. I could not understand how the decode function call in indexing.jl properly decodes the given Int representation. I could not find a decode function in the source code. Below is the corresponding code from indexing.jl:
|
@ardakdemir The definitions for BioSequences.jl/src/alphabet.jl Line 127 in e54ee6b
A of the BioSequence{A} , and so A is the first argument to the decode method, so as Julia's compiler can select the correct decode method at compile time.
|
This appears to be fixed on master, so closing it |
I was trying to create a sequence without some index and I've found that
getindex
using arrays isn't supported:The text was updated successfully, but these errors were encountered: