Skip to content

Latest commit

 

History

History
19 lines (12 loc) · 599 Bytes

README.md

File metadata and controls

19 lines (12 loc) · 599 Bytes

BigWig Reader - GCP Loader

An add-on to the Bigwig Reader project for loading data from files stored in Google Cloud Storage.

Installation

For npm use: npm install bigwig-reader-gcp --save

For yarn use: yarn add bigwig-reader-gcp

Usage

import { AxiosDataLoader, BigWigReader } from "bigwig-reader";
import { GoogleBucketDataLoader } from "bigwig-reader-gcp";

const loader = new GoogleBucketDataLoader("my-test-bucket", "my-test-file.txt");
const reader = new BigWigReader(loader);