@plantinformatics/vcf-genotype-brapi
Version:
Client and server functions to access genotype data from VCF via a custom web API and BrAPI
20 lines (15 loc) • 929 B
JavaScript
import * as vcfFeature from './src/utils/data/vcf-feature.js';
/* These functions won't be used in node.js server ATM,
* They are very close to the synonymous files in src/utils/data/
* and can be merged, with isomorphic packaging enabling a single source to be
* used in either the browser or node.js
* src/utils/data/nodeJs/germinate-genotype.js
* src/utils/data/nodeJs/germinate.js
*/
import * as genolinkPassport from './src/utils/data/genolink-passport.js';
import * as brapiGenotype from './src/utils/data/brapi-genotype.js';
import * as germinateGenotype from './src/utils/data/germinate-genotype.js';
import * as germinate from './src/utils/data/germinate.js';
/* Alternately use either browser : bluebird, or node : util */
import * as promisify from './src/utils/data/promisify.js';
export default {vcfFeature, genolinkPassport, brapiGenotype, germinateGenotype, germinate, promisify};