A client for the Flow API.
Project description
flowbio
A client for the Flow API.
import flowbio
client = flowbio.Client()
client.login("your_username", "your_password")
# Upload standard data
data = client.upload_data("/path/to/file.fa", progress=True, retries=5)
print(data)
# Upload sample
sample = client.upload_sample(
"My Sample Name",
"/path/to/reads1.fastq.gz",
"/path/to/reads2.fastq.gz", # optional
progress=True,
retries=5,
metadata={
"sample_type": "RNA-Seq",
"scientist": "Charles Darwin",
"type_specific_metadata": '{"strandedness": "reverse"}',
}
)
print(sample)
# Upload multiplexed
multiplexed = client.upload_multiplexed(
"/path/to/reads.fastq.gz",
progress=True,
retries=5,
)
print(multiplexed)
# Upload annotation
annotation = client.upload_annotation(
"/path/to/annotation.csv",
progress=True,
retries=5,
)
print(annotation)
# Run pipeline
execution = client.run_pipeline(
"RNA-Seq",
"3.8.1",
"23.04.3",
params={"param1": "param2"},
data_params={"fasta": 123456789},
)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
flowbio-0.5.1.tar.gz
(17.4 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
flowbio-0.5.1-py3-none-any.whl
(21.1 kB
view details)
File details
Details for the file flowbio-0.5.1.tar.gz.
File metadata
- Download URL: flowbio-0.5.1.tar.gz
- Upload date:
- Size: 17.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bd034e9926a51d73358cca91ad8ca9dbc05cc5a304836b3f40c8ed3b3e2c00a2
|
|
| MD5 |
04b685c421ce3a13c394db8a142f5a44
|
|
| BLAKE2b-256 |
2c80d2b7903f224c045ffb92e6a54d84055cee11077b79306c00bb591b9eac58
|
File details
Details for the file flowbio-0.5.1-py3-none-any.whl.
File metadata
- Download URL: flowbio-0.5.1-py3-none-any.whl
- Upload date:
- Size: 21.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a07c7c9eb83b75230b3d4101e7dd16a81043bb2e3377bff0e1b4265b21935296
|
|
| MD5 |
5db779df04033daa2d6005ef593d37bd
|
|
| BLAKE2b-256 |
a81b7690308c8c5950443c5374f2ca9d651dcce183b1fbf03b2c957c67ac9f29
|