pipebio 1.1.3

Last updated:

0 purchases

pipebio 1.1.3 Image
pipebio 1.1.3 Images
Add to Cart

Description:

pipebio 1.1.3

PipeBio Python SDK


A Python 3.9+ SDK for the PipeBio platform.

The integrated bioinformatics platform for large molecule and peptide discovery
PipeBio is an integrated cloud-based platform for biologics discovery that allows wet lab scientists to easily analyze antibody and peptide sequences with functional assay data and bioinformaticians to deploy their own code and run workflows.
Use PipeBio to configure standard analysis workflows and create SOPs with the range bioinformatics tools on PipeBio for

Antibody sequence analysis and discovery
Antibody engineering
Short peptide discovery
NGS, Sanger, PacBio and single cell sequence analysis

Installation
pip install pipebio

Examples
Example usage of the sdk can be found at api-examples.
Environment Variables
In order to use the sdk, you should get an api key from the me page.
This can then be used by either:

setting as a system wide environment variable EXPORT PIPE_API_KEY=*****.
setting in the command line when you run your scripts PIPE_API_KEY=***** python your_script.py.
using an .env file - this sdk will automatically load the contents of an .env file (must be called .env and in the same directory as your script) and set any environment variables set in it.

Example .env file
PIPE_API_KEY=*****

Extending the sdk
If the endpoint you need is not currently supported by the sdk, then session is available in the pipebio_client,
which can be used in the usual requests style e.g.:
from pipebio.pipebio_client import PipebioClient

# PipebioClient iniitialises by reading the PIPE_API_KEY enviornment variable for authorization.
# Please ensure this is set (see Environment Variables section for how).
client = PipebioClient()

# Session already has the base url set, so you just need to use the relevant part of the route as your url.
# So when the below api request is made, it is translated to https://app.pipebio.com/api/v2/me'
response = client.session.get(url='me')
print(response.json())

Support
Please contact [email protected] for help.

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.