TRΛNS-GIRL.C0DΞS

Results 34 issues of TRΛNS-GIRL.C0DΞS

Hi, it's not obvious from the documentation, but I was wondering if `subplot_grid` has an `ncol` option in the same way as ggplot2's `facet_wrap`? I have many groups for grouping...

Hi @blahah, I really like the look of science-fair, looking forward to more datasources being available. I was reading the source code, and looking at how the project is built,...

Hi, I'm about to implement computation of evolutionary distances between DNA sequences for Bio.jl: https://github.com/BioJulia/Bio.jl/pull/228 using several common nucleotide substitution models (https://en.wikipedia.org/wiki/Models_of_DNA_evolution), like the dist.dna function in the 'ape' R...

Can we add an `ispermitted` method for Alphabets? So the background context for this is I'm doing some of the internals for Kmers.jl - iterators being the last thing to...

Addresses #231 #232 ## Types of changes This PR implements the following changes: _(Please tick any or all of the following that are applicable)_ * [X] :sparkles: New feature (A...

## Types of changes This PR implements the following changes: _(Please tick any or all of the following that are applicable)_ * [X] :sparkles: New feature (A non-breaking change which...

v4

Hey @barche I have a class wrapped: ```c++ mod.add_type("SequenceGraph") .constructor() .method("load_from_gfa", &SequenceGraph::load_from_gfa) ``` The class has the following method that returns a `std::vector`: ```c++ std::vector get_fw_nodes(sgNodeID_t n) const; ``` I...

If I have a C++ function that accepts `std::set` as an argument, will CxxWrap it to accept a julia `Set{Int}` type, or do I need to do some intermediary work...

How do I wrap operators like: `LinkedReadMapper operator=(const LinkedReadMapper &other);` or `bool operator==(const SequenceGraph &o) const ;` My guess is something like: `.method("=", operator=(const LinkedReadMapper &other))` and `.method("==", operator==(const SequenceGraph...

This PR adds the ability to get the port from ENV for the WebUI. It also addresses #74, by allowing URLs for registries to be specified through ENV. This is...