refget-client 0.1.0

HTTP client for GA4GH refget Sequences and Sequence Collections APIs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! HTTP client for GA4GH refget Sequences v2.0.0 and Sequence Collections v1.0.0 APIs.

mod async_client;
#[cfg(feature = "blocking")]
mod blocking;
mod error;
mod response;
#[cfg(feature = "store")]
mod store;

pub use async_client::RefgetClient;
#[cfg(feature = "blocking")]
pub use blocking::RefgetClientBlocking;
pub use error::{ClientError, ClientResult};
#[cfg(feature = "store")]
pub use store::RemoteSequenceStore;