-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
control_barcode should be control_barcodes in barcode_plot.py #21
Comments
Thanks for the notice and solution! We'll push a fix for this ASAP. |
@magruca I pushed a fix to the |
Bugfix - Variable name typo as reported in #21
Tested and good to go -- sorry this was my fault when I copied over the new file parsing code when we tweaked the md_scores.txt formatting. We can push the fix to PyPi |
Changes pushed to PyPi, now v0.3.1. |
Lines 104 and 121 in barcode_plot.py are both
control_bc_data = np.array(control_barcode[relevant_tf].split(';'))
but
control_barcode
doesn't appear anywhere else in the code, and Python won't run the package because the variable is unknown. The variablecontrol_barcodes
is defined and I think that's the one that is supposed to be in those two lines. If I add an s to lines 104 and 121, the program runs okay.The text was updated successfully, but these errors were encountered: