Displaying 3 results from an estimated 3 matches for "trim_reads_a".
Did you mean:
trim_reads_as
2017 Jan 24
3
Re: [nbdkit PATCH 0/2] bind .zero to more languages
...ve the binding a way to request graceful fallback to write (what I
implemented in this version)
2) provide a completely different interface to the language bindings,
but keeping the C interface as already committed. The language binding
would only implement a single new entry point, perhaps named
trim_reads_as_zero(). On the C side of the binding, when plugin.c calls
lang_zero(, may_trim=1), C checks if trim_reads_as_zero() is defined and
returns true, and if so calls the existing trim() binding; if
trim_reads_as-zero() is not defined, or returns false, or trim() is not
defined, then C calls the existi...
2017 Jan 24
0
Re: [nbdkit PATCH 0/2] bind .zero to more languages
...t graceful fallback to write (what I
> implemented in this version)
>
> 2) provide a completely different interface to the language bindings,
> but keeping the C interface as already committed. The language binding
> would only implement a single new entry point, perhaps named
> trim_reads_as_zero(). On the C side of the binding, when plugin.c calls
> lang_zero(, may_trim=1), C checks if trim_reads_as_zero() is defined and
> returns true, and if so calls the existing trim() binding; if
> trim_reads_as-zero() is not defined, or returns false, or trim() is not
> defined, the...
2017 Jan 24
4
[nbdkit PATCH 0/2] bind .zero to more languages
Begin the language binding followups to my new .zero callback, since
Rich was indeed correct that we want them.
I'm more familiar with python and perl (at least to the point that
I was able to modify the appropriate example files and prove to
myself that the bindings worked), so I've started with those.
I'm less familiar with ruby and ocaml, so I've left those for
tomorrow (it