molstar
Version:
A comprehensive macromolecular library.
23 lines (22 loc) • 655 B
TypeScript
/**
* Copyright (c) 2018 mol* contributors, licensed under MIT, See LICENSE file for more info.
*
* @author David Sehnal <david.sehnal@gmail.com>
*/
import { QueryName, QueryParams } from './api';
export declare type Entry<Q extends QueryName = QueryName> = {
input: string;
query: Q;
modelNums?: number[];
copyAllCategories?: boolean;
transform?: number[];
params?: QueryParams<Q>;
};
export declare type LocalInput = {
queries: Entry[];
output: string;
binary?: boolean;
asTarGz?: boolean;
gzipLevel?: number;
}[];
export declare function runLocal(input: LocalInput): Promise<void>;