Mats,
You put just the right words to my difficulties. Thank you.
Since I last posted, I attempted to use Setuptools, and got a handful of
files that were less than 1kB. I also attempted to use py2exe (I know this
is only for Windoze, but I wanted to find some sliver of success) and
py2exe does
On 11/02/2019 13:48, Chip Wachob wrote:
> I realize that choosing a tool is always a case of personal preference. I
> don't want to start a 'this is better than that' debate.
>
> If the 'pros' out there have more input, I'm all ears.
To be fair this is not just a Python problem but applies
to al
On 2/11/19 6:48 AM, Chip Wachob wrote:
> Thanks. These are both great helps to get me started.
>
> The little bit of searching does leave me a little bit confused, but the
> reference to the book is somewhat helpful / encouraging.
>
> I see a lot of people saying that certain approaches have bee
Thanks. These are both great helps to get me started.
The little bit of searching does leave me a little bit confused, but the
reference to the book is somewhat helpful / encouraging.
I see a lot of people saying that certain approaches have been depreciated,
then re-appreciated (?) then depreci
On 11/02/2019 10:10, Alan Gauld via Tutor wrote:
>> def minhash(s, prime=4294967311):
>> vec = [float('inf') for i in range(N)]
>>
>> for val in s:
>> if not isinstance(val, int): val = hash(val)
>>
>> for perm_idx, perm_vals in enumerate(perms):
>> a, b = perm_vals
>> outp
On 11/02/2019 09:13, lokesh kumar wrote:
> i want to make a code to run few DNA seg. so that i will be able to find
> similarity in them. file are in million as well as seq. are large so i
> tried developing program but fails in it i think minhash and lsh can able
> to solve my problem.
Bear in m
Hi There,
i want to make a code to run few DNA seg. so that i will be able to find
similarity in them. file are in million as well as seq. are large so i
tried developing program but fails in it i think minhash and lsh can able
to solve my problem.
i need kind of program that will be easy to handle