Skip to content
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

Requests optional dependency #325

Merged
merged 1 commit into from
Nov 7, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/pydna/tm.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@

import textwrap as _textwrap
from pydna._pretty import pretty_str as _pretty_str
import requests

# See the documentation for Bio.SeqUtils.MeltingTemp for more details
# The 10X Taq Buffer with (NH4)2SO4 is commercialized by companies like
Expand Down Expand Up @@ -331,6 +330,8 @@ def tmbresluc(primer: str, *args, primerc=500.0, saltc=50, **kwargs):


def tm_neb(primer, conc=0.5, prodcode="q5-0"):
import requests

"""Calculates a single primers melting temp from NEB.

Parameters
Expand Down
Loading