TRΛNS-GIRL.C0DΞS

Results 35 comments of TRΛNS-GIRL.C0DΞS

My instinct with this, is to simply look at what can be done, indexing with Vectors, and basically have `getindex` and `setindex` for BioSequences let you do the same/have the...

```julia julia> a = [1,2,3,4,5] 5-element Array{Int64,1}: 1 2 3 4 5 julia> a[4:5] = [-1, -2] 2-element Array{Int64,1}: -1 -2 julia> a 5-element Array{Int64,1}: 1 2 3 -1 -2...

```julia julia> my_seq[2:4] = DNA_M ERROR: MethodError: no method matching length(::DNA) Closest candidates are: length(::CompositeException) at task.jl:41 length(::Base.MethodList) at reflection.jl:869 length(::ExponentialBackOff) at error.jl:259 ... Stacktrace: [1] setindex!(::LongSequence{DNAAlphabet{4}}, ::DNA, ::UnitRange{Int64}) at...

So as far as I can tell, we need a style, and then we need rules, that dictate when the output should be a sequence or not. So `dna"AAAA" .=...

So, since broadcasting is a bit... complex, I'm going to be documenting my progress here so I can ask questions and the wider julia community can poke holes in what...

Yes I've been thinking that Alphabet's should in a way, behave like a lazy container/set of all the symbols they permit, so `Base.iterate(x::Alphabet, state...) = iterate(symbols(x), state...)`, or (`symbols(x::Alphabet) =...

@barche I suspected the issue was that the ArrayRef I was returning, used the data pointer from a vector, and perhaps the ArrayRef did not copy data from the vector,...

I tried a different tack, and tried to wrap std::vector: ```c++ mod.add_type("BSGVector") .apply([](auto wrapped){ typedef typename decltype(wrapped)::type WrappedT; wrapped.method("size", &WrappedT::size); //wrapped.method("at", [](WrappedT& vec, size_t i) { return vec.at(i); }); });...

So I've played with this a bit more and I've found that if I set the `repo` argument in the conf.toml to the form of `https://USER:[email protected]/User/Repo`, then the server will...

The user token does work. Would you consider it the server supporting using a Deploy Key for the registry repo? Documenter uses the deploy key method, and unlike an API...