Closed rturba closed 2 years ago
hello, rturba. I also meet the same erro and I solve it in following commands, vim /u/scratch/r/rturba/stickleback/genomics_general-master/ABBABABAwindows.py +85 then u should access edit mode of vim and change "def writer(writeQueue, out, writeFailedWindows=False, verbose)" to "def writer(writeQueue, out, verbose, writeFailedWindows=False)"
Hi rturba, this looks like an error I introduced on the last push. ChanyeeNicole's fix will remove the error, but it's actually not correct because the arguments can't be swapped. Instead use
writer(writeQueue, out, writeFailedWindows=False, verbose=False)
I'll fix this on my next push.
Simon
Hi rturba, this looks like an error I introduced on the last push. ChanyeeNicole's fix will remove the error, but it's actually not correct because the arguments can't be swapped. Instead use
writer(writeQueue, out, writeFailedWindows=False, verbose=False)
I'll fix this on my next push. Simon
omg,thanks for your correction
Yay! It worked :D Thank you both so much for being so quick in helping me out!
Hello!
I'm trying to run the
ABBABABAwindows.py
script using python3. I was able to runpopgenWindows.py
on my files with no problems, but now even trying to get the manual from theABBABABAwindows.py
using the-h
command, I get the following error:Any ideas what might be going on? :(