higlass
Version:
HiGlass Hi-C / genomic / large data viewer
12 lines (11 loc) • 455 B
TypeScript
export default expandCombinedTracks;
/** @import * as t from '../types' */
/**
* Go through a list of tracks and expand combined
* tracks.
*
* @param {Array<t.TrackConfig>} trackList - A list of tracks some of which might be combined
* @returns {Array<t.UnknownTrackConfig>} A list of tracks without combined
*/
declare function expandCombinedTracks(trackList: Array<t.TrackConfig>): Array<t.UnknownTrackConfig>;
import type * as t from '../types';