Tyler Barrus

Results 70 comments of Tyler Barrus

Sorry, I should have been more clear about the term default. I have been using the second version described while making a UI to help teach my kids about chess....

The random char function is just to show what I meant by not knowing the value before the move is registered. chess.js does not need to support the callback functionality...

@JohnMaguire I think there wouldn't be a reason not to do the language parameter on the page function and allow bypassing the cache. I guess another short term option would...

I do think there is a place for file support in the base library. I would like to figure out how best to incorporate files into the library. Some thoughts...

This is definitely something that could be included. The library does something similar to this for the `categorymembers()` function so it could be added to this and, I would assume,...

Sorry you ran into an issue. Can you provide either a code sample that recreates the issue or an exported bloom filter to use for testing? Thanks!

Thanks, what parameters (`max_elem` and `max_err`) are you using? And I am glad you are using this for Bioinformatics; I use it for bioinfo myself!

So, I took the line of code that is failing (line 350) and wrote a quick script to see where it would fail based on your parameters: ```python for i...

If the one that failed is "quick" can you print these after it is built? ```python print(bloom.number_bits) # count number of bits set setbits = 0 for i in range(0,...

Let me know if the kmer count is different using the different software. As for the same kmer hashing differently, then no; that shouldn't happen. The following code is the...