We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The read_primer function in get_pcr_product.py needs to be modified a little bit to avoid possible error.
read_primer
get_pcr_product.py
In the code:
if name[0] == 'R': if seq in rpri: temp = rpri[rseq] + ',' +name rpri[rseq] = temp else: rpri[rseq] = name
the second if should check if rseq in rpri, instead of if seq in rpri
if rseq in rpri
if seq in rpri
The text was updated successfully, but these errors were encountered:
fixed issue #41: a bug in read_primer function in get_pcr_product.py …
f08f2b7
…used by mfpqpcr
Merge pull request #43 from pommevilla/MFP-3
94df484
fixed issue #41: a bug in read_primer function in get_pcr_product.py
jialiu232
No branches or pull requests
The
read_primer
function inget_pcr_product.py
needs to be modified a little bit to avoid possible error.In the code:
the second if should check
if rseq in rpri
, instead ofif seq in rpri
The text was updated successfully, but these errors were encountered: