HaploHub API
Project description
haplohub
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
This Python package is automatically generated by the OpenAPI Generator project:
- API version: 1.0
- Package version: 1.0.0
- Generator version: 7.11.0-SNAPSHOT
- Build package: org.openapitools.codegen.languages.PythonPydanticV1ClientCodegen
Requirements.
Python 3.7+
Installation & Usage
pip install
If the python package is hosted on a repository, you can install directly using:
pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git
(you may need to run pip with root permission: sudo pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git)
Then import the package:
import haplohub
Setuptools
Install via Setuptools.
python setup.py install --user
(or sudo python setup.py install to install the package for all users)
Then import the package:
import haplohub
Tests
Execute pytest to run the tests.
Getting Started
Please follow the installation procedure and then run the following:
import time
import haplohub
from haplohub.rest import ApiException
from pprint import pprint
# The client must configure the authentication and authorization parameters
# in accordance with the API server security policy.
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.
# Configure Bearer authorization:
configuration = haplohub.Configuration(
access_token=os.environ["API_KEY"]
)
# Enter a context with an instance of the API client
with haplohub.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = haplohub.ApiKeyApi(api_client)
create_api_key_schema = haplohub.CreateApiKeySchema() # CreateApiKeySchema |
try:
# Create Api Key
api_response = api_instance.haplohub_api_v1_api_key_create_api_key(create_api_key_schema)
print("The response of ApiKeyApi->haplohub_api_v1_api_key_create_api_key:\n")
pprint(api_response)
except ApiException as e:
print("Exception when calling ApiKeyApi->haplohub_api_v1_api_key_create_api_key: %s\n" % e)
Documentation for API Endpoints
All URIs are relative to http://localhost
| Class | Method | HTTP request | Description |
|---|---|---|---|
| ApiKeyApi | haplohub_api_v1_api_key_create_api_key | POST /api/v1/api-key/ | Create Api Key |
| ApiKeyApi | haplohub_api_v1_api_key_delete_api_key | DELETE /api/v1/api-key/{api_key_id}/ | Delete Api Key |
| ApiKeyApi | haplohub_api_v1_api_key_list_api_keys | GET /api/v1/api-key/ | List Api Keys |
| CohortApi | create_cohort | POST /api/v1/cohort/ | Create cohort |
| CohortApi | delete_cohort | DELETE /api/v1/cohort/{cohort_id}/ | Delete cohort |
| CohortApi | get_cohort | GET /api/v1/cohort/{cohort_id}/ | Get cohort |
| CohortApi | list_cohorts | GET /api/v1/cohort/ | List cohorts |
| CohortApi | update_cohort | PUT /api/v1/cohort/{cohort_id}/ | Update cohort |
| EnvironmentApi | create_environment | POST /api/v1/environment/ | Create environment |
| EnvironmentApi | list_environments | GET /api/v1/environment/ | List environments |
| EnvironmentApi | switch_environment | POST /api/v1/environment/{environment_id}/switch/ | Switch environment |
| FileApi | delete_file | DELETE /api/v1/cohort/{cohort_id}/file/{file_id}/ | Delete file |
| FileApi | download_link | POST /api/v1/cohort/{cohort_id}/file/{file_id}/download-link/ | Get download link |
| FileApi | get_file | GET /api/v1/cohort/{cohort_id}/file/{file_id}/ | Get file |
| FileApi | list_files | GET /api/v1/cohort/{cohort_id}/file/ | List files |
| LogApi | list_logs | GET /api/v1/log/ | List logs |
| MemberApi | delete_member | DELETE /api/v1/cohort/{cohort_id}/member/{member_id}/ | Delete member |
| MemberApi | get_member | GET /api/v1/cohort/{cohort_id}/member/{member_id}/ | Get member |
| MemberApi | list_members | GET /api/v1/cohort/{cohort_id}/member/ | List members |
| MetadataApi | accession | GET /api/v1/metadata/ | Each accession is a string of DNA that is used as a reference. These are defined by https://www.ncbi.nlm.nih.gov/grc/human/data?asm=GRCh38 |
| ModelApi | create_model | POST /api/v1/model/ | Create model |
| ModelApi | list_models | GET /api/v1/model/ | List models |
| ModelApi | push_model | POST /api/v1/model/{model_id}/push/ | Push model |
| PredictionApi | get_prediction | GET /api/v1/prediction/{prediction_id}/ | Get prediction |
| PredictionApi | get_prediction_results | GET /api/v1/prediction/{prediction_id}/results/ | Get prediction results |
| PredictionApi | list_predictions | GET /api/v1/prediction/ | List predictions |
| PredictionApi | run_prediction | POST /api/v1/prediction/ | Run prediction |
| ReportApi | create_report | POST /api/v1/report/ | Create report |
| ReportApi | delete_report | DELETE /api/v1/report/{report_id}/ | Delete report |
| ReportApi | get_report | GET /api/v1/report/{report_id}/ | Get report |
| ReportApi | list_reports | GET /api/v1/report/ | List reports |
| ReportApi | preview_report | GET /api/v1/report/{report_id}/preview/ | Preview report |
| ReportApi | update_report | PUT /api/v1/report/{report_id}/ | Update report |
| SampleApi | delete_sample | DELETE /api/v1/cohort/{cohort_id}/sample/{sample_id}/ | Delete sample |
| SampleApi | get_sample | GET /api/v1/cohort/{cohort_id}/sample/{sample_id}/ | Get sample |
| SampleApi | hgvs_dosage | GET /api/v1/sample/ | Fetch the dosage of a given allele for a sample based on the hgvs nomenclature. For example 'NC_000001.11:g.11794419T>G' |
| SampleApi | list_samples | GET /api/v1/cohort/{cohort_id}/sample/ | List samples |
| UploadApi | create_upload_request | POST /api/v1/cohort/{cohort_id}/upload/request/ | Create upload request |
| DefaultApi | status | GET /api/v1/status/ | Status |
Documentation For Models
- AccessionSchema
- ApiKeySchema
- AuthSchema
- CohortDetailSchema
- CohortSchema
- CreateApiKeySchema
- CreateCohortRequest
- CreateCohortResponse
- CreateEnvironmentRequest
- CreateEnvironmentResponse
- CreateModelRequest
- CreateModelResponse
- CreateReportRequest
- CreateReportResponse
- CreateUploadRequestRequest
- DirSchema
- DownloadLinkSchema
- EnvironmentSchema
- ErrorResponse
- ErrorSchema
- FileDirSchema
- FileInfo
- FileSchema
- GenericResponse
- GetCohortResponse
- GetHgvsResponse
- GetPredictionResponse
- GetPredictionResultsResponse
- GetReportResponse
- HgvsDosageSchema
- InfinityPaginatedResponseLogSchema
- ListFilesFilter
- LogSchema
- MLModelSchema
- MemberSchema
- ModelId
- PaginatedResponseAccessionSchema
- PaginatedResponseApiKeySchema
- PaginatedResponseCohortSchema
- PaginatedResponseEnvironmentSchema
- PaginatedResponseMLModelSchema
- PaginatedResponseMemberSchema
- PaginatedResponsePredictionSchema
- PaginatedResponseReportSchema2
- PaginatedResponseSampleSchema
- PredictionResultsSchema
- PredictionSchema
- PredictionStatus
- PushCredentials
- PushModelRequest
- ReportSchema2
- RequestSchema
- Response
- ResponseSchema
- ResponseStatus
- ResultResponse
- ResultResponseApiKeySchema
- ResultResponseDownloadLinkSchema
- ResultResponseFileDirSchema
- ResultResponseFileSchema
- ResultResponseMemberSchema
- ResultResponsePushCredentials
- ResultResponseSampleSchema
- ResultResponseUploadRequestResponse
- RunPredictionRequest
- RunPredictionResponse
- SampleSchema
- SuccessResponse
- SwitchEnvironmentResponse
- TenantSchema
- UpdateCohortRequest
- UpdateCohortResponse
- UpdateReportRequest
- UpdateReportResponse
- UploadLink
- UploadRequestResponse
- UploadType
Documentation For Authorization
Authentication schemes defined for the API:
Auth0JWTBearer
- Type: Bearer authentication
Author
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
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
File details
Details for the file haplohub-1.0.4.tar.gz.
File metadata
- Download URL: haplohub-1.0.4.tar.gz
- Upload date:
- Size: 158.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4fe5e56907c94e9b8d6cb09fce1adc194202c7bf6c5c19f5792c9d24a9c6ba88
|
|
| MD5 |
620a492e14ce79100925159c7aee9233
|
|
| BLAKE2b-256 |
9ad89ee4e24f812c17592665f13f826c827b76a8d34c542f519d479e654d5f48
|
Provenance
The following attestation bundles were made for haplohub-1.0.4.tar.gz:
Publisher:
on_push_main.yml on haplotypelabs/haplohub-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
haplohub-1.0.4.tar.gz -
Subject digest:
4fe5e56907c94e9b8d6cb09fce1adc194202c7bf6c5c19f5792c9d24a9c6ba88 - Sigstore transparency entry: 224106647
- Sigstore integration time:
-
Permalink:
haplotypelabs/haplohub-python@01ab012f8c2470e629e0729f1c6123dd6e0581fa -
Branch / Tag:
refs/tags/v1.0.4 - Owner: https://github.com/haplotypelabs
-
Access:
internal
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
on_push_main.yml@01ab012f8c2470e629e0729f1c6123dd6e0581fa -
Trigger Event:
push
-
Statement type:
File details
Details for the file haplohub-1.0.4-py3-none-any.whl.
File metadata
- Download URL: haplohub-1.0.4-py3-none-any.whl
- Upload date:
- Size: 162.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7ec852038f433f0866cdddc108c6607780d388251d4790e69f5495aabbdbef13
|
|
| MD5 |
dbf1ea1574665238e5378c288f3d8bf7
|
|
| BLAKE2b-256 |
6c052509dc6cd8324b3329d31ec6b30a34e8a7c9a052aaee70e7b459581e69c9
|
Provenance
The following attestation bundles were made for haplohub-1.0.4-py3-none-any.whl:
Publisher:
on_push_main.yml on haplotypelabs/haplohub-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
haplohub-1.0.4-py3-none-any.whl -
Subject digest:
7ec852038f433f0866cdddc108c6607780d388251d4790e69f5495aabbdbef13 - Sigstore transparency entry: 224106670
- Sigstore integration time:
-
Permalink:
haplotypelabs/haplohub-python@01ab012f8c2470e629e0729f1c6123dd6e0581fa -
Branch / Tag:
refs/tags/v1.0.4 - Owner: https://github.com/haplotypelabs
-
Access:
internal
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
on_push_main.yml@01ab012f8c2470e629e0729f1c6123dd6e0581fa -
Trigger Event:
push
-
Statement type: