Variable referenced before assigning
rneher opened this issue · 3 comments
rneher commented
hi @iosonofabio
is just installed seqanpy on the basel cluster and got errors when calling alignment routines (quite possibly a swig version issue). It complains that seq1
is not defined in the statement seq1="".join(seq1)
where seq1
is supposed to be the first argument of the function. But swig defined the function as align_overlap(*args, **kwargs)
I removed the prepend statements for now and it works. but I thought you might want to know...
cheers,
richard
iosonofabio commented
Hi Richard,
You need SWIG 3.0.8+
Cheers
Fabio
…On June 29, 2017 9:09:57 AM PDT, Richard Neher ***@***.***> wrote:
hi @iosonofabio
is just installed seqanpy on the basel cluster and got errors when
calling alignment routines (quite possibly a swig version issue). It
complains that `seq1` is not defined in the statement
`seq1="".join(seq1)` where `seq1` is supposed to be the first argument
of the function. But swig defined the function as `align_overlap(*args,
**kwargs)`
I removed the prepend statements for now and it works. but I thought
you might want to know...
cheers,
richard
--
You are receiving this because you were mentioned.
Reply to this email directly or view it on GitHub:
#1
iosonofabio commented
I could also make a binary with _manylinux and distribute it on Pypi but it'll take a month
…On June 29, 2017 9:09:57 AM PDT, Richard Neher ***@***.***> wrote:
hi @iosonofabio
is just installed seqanpy on the basel cluster and got errors when
calling alignment routines (quite possibly a swig version issue). It
complains that `seq1` is not defined in the statement
`seq1="".join(seq1)` where `seq1` is supposed to be the first argument
of the function. But swig defined the function as `align_overlap(*args,
**kwargs)`
I removed the prepend statements for now and it works. but I thought
you might want to know...
cheers,
richard
--
You are receiving this because you were mentioned.
Reply to this email directly or view it on GitHub:
#1
rneher commented
thanks. just saw that swig 3.0.10 is in conda. this will work. thanks.