gpml2pvjson
Version:
convert GPML (XML) to pvjson (json)
9 lines (8 loc) • 408 B
TypeScript
/// <reference types="node" />
import "source-map-support/register";
import { Pathway, PathwayStarter, PvjsonEntitiesById } from "../gpml2pvjson";
export declare const RECURSION_LIMIT = 1000;
export declare function toPvjson(inputStreamWithMessedUpRDFIDs: NodeJS.ReadableStream, pathwayIri?: string): Highland.Stream<Error | {
pathway: Pathway | PathwayStarter;
entitiesById: PvjsonEntitiesById;
}>;