flowbio
A client for the Flow API. Full documentation is available at https://goodwright.github.io/flowbio/.
import flowbio
# NB: this client is being deprecated. Please use the v2 client instead. See the [v2 documentation](https://goodwright.github.io/flowbio/v2/) for details.
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},
)
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.9.0.tar.gz
(36.9 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.9.0-py3-none-any.whl
(47.6 kB
view details)
File details
Details for the file flowbio-0.9.0.tar.gz.
File metadata
- Download URL: flowbio-0.9.0.tar.gz
- Upload date:
- Size: 36.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4da7d4c2ff58c5e614e52f2b6a95161b6cd44ec3fb3f8b69faf439954d50b8a1
|
|
| MD5 |
8d4c572155220a5a7cdc146bab17561d
|
|
| BLAKE2b-256 |
1ce57fb076d69191be004487947805c03f486c93618613d21911da4e7b5cb2d7
|
File details
Details for the file flowbio-0.9.0-py3-none-any.whl.
File metadata
- Download URL: flowbio-0.9.0-py3-none-any.whl
- Upload date:
- Size: 47.6 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 |
ab5c7d3668a4d335b5632d0fc28af0567433c2a632987f249fae80d9ef8c220e
|
|
| MD5 |
3be92a23345ac8e19a530fd65cc4ec41
|
|
| BLAKE2b-256 |
151ba92a4a8be14dd04d6e063db9b5b1d90ddd920282c274972b5fef9e96c21f
|