Gert Hulselmans
Gert Hulselmans
Seems to be a known issue with datrie and GCC 14: https://github.com/pytries/datrie/issues/101 You will have to download datrie source code and patch one file: https://github.com/pytries/datrie/pull/99 And then install that version.
What are the values for `weight1` and `weight2`? The error seems to indicate that there are zeros there (or infinity or some other weird values).
I know that works, but it is not practical to do it like this for 100k files. It seems like the Globus connector implemented this behaviour recently: https://github.com/irods/irods_client_globus_connector/commit/6be085cad8530f8ec5c29ca1006c90a3d1633917
I want to have a compiled codon program (`codon build -exe ...`) to which a can give an argument which supports only specific values (e.g. 1 to 20) which will...
Yes the last pattern works. I had something like this in the meantime: ```python import sys def foo(n: Static[int]): print(f'foo n={n}') n = int(sys.argv[1]) for i in static.range(1, 21): if...
Another related question. Is there an easy way to read a FASTA file with sequences of different length (1-20), convert those to Kmers and save them per Kmer length. Storing...
@arshajii Is there a way to store Kmers of different lengths in an object and to return a list/set of them of a specific length from a method? ```python from...
Rocky Linux 8.9 It must be related to some `ld` flags then, as I generated the extension with this script: https://github.com/exaloop/codon/issues/308#issuecomment-2688088976
With thisldd command, the crash occurs: ```bash "${LD}" -o "${extension_library_file}" "${extension_object_file}" \ -shared -l codonrt -L "${CODON_PATH}/lib/codon" -rpath "${CODON_PATH}/lib/codon" ``` With this minimal GCC command, it works (not crashing the...
To clarify, this would sometimes be useful if you have a bigWig file with e.g. Ensembl chromosome names, but want UCSC chromosome names to view the data in UCSC genome...