Skip to content

Commit 1267a1a

Browse files
committed
Stop getting path names and BED regions separately on load
1 parent d7d27ef commit 1267a1a

File tree

1 file changed

+0
-14
lines changed

1 file changed

+0
-14
lines changed

src/components/HeaderForm.js

-14
Original file line numberDiff line numberDiff line change
@@ -354,20 +354,6 @@ class HeaderForm extends Component {
354354
// Populate state with either viewTarget or the first example
355355
let ds = this.props.defaultViewTarget ?? DATA_SOURCES[0];
356356
const bedSelect = isSet(ds.bedFile) ? ds.bedFile : "none";
357-
if (isSet(bedSelect)) {
358-
// If so, kick off a request for BED region metadata
359-
this.getBedRegions(bedSelect);
360-
}
361-
for (const key in ds.tracks) {
362-
if (ds.tracks[key].trackType === fileTypes.GRAPH) {
363-
// Load the paths for any graph tracks
364-
console.log("Get path names quietly for initial track: ", ds.tracks[key]);
365-
// Try and get the path names, quietly. We aren't checking here if the
366-
// server actually has this file; maybe it's a fake one from a
367-
// pre-generated region.
368-
this.getPathNames(ds.tracks[key].trackFile, true);
369-
}
370-
}
371357
this.setState((state) => {
372358
const stateVals = {
373359
tracks: ds.tracks,

0 commit comments

Comments
 (0)