Skip to content

Commit b937440

Browse files
authored
Merge pull request #481 from vgteam/update-help
Resize dropdowns and remove multiple custom modes from help
2 parents 7fed8c0 + f3adc7e commit b937440

File tree

10 files changed

+5
-5
lines changed

10 files changed

+5
-5
lines changed

public/help/help.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ The Sequence Tube Map is used to generate visualizations of genomic sequence gra
55
##### Selecting Tracks
66
The following procedure describes adding and updating settings of custom tracks. You can use a custom track to load your own graph file, haplotype database, or file of aligned reads.
77

8-
1. From the "Data" dropdown box, select "custom (mounted files)"
8+
1. From the "Data" dropdown box, select "custom"
99
![Selecting Custom Files](helpGuideImages/img1.png)
1010
2. Select the button that says "Configure Tracks".
1111
![Configure Tracks Button](helpGuideImages/img2.png)
1212
3. Once the button is clicked on, a popup with a "+" button will be displayed. Click on this button to add tracks.
1313
![Track Add Button](helpGuideImages/img3.png)
14-
4. Select a graph, read, or haplotype track from the first dropdown. Make sure to always have at least 1 graph track. Select a data file from the list of files of that type in the second dropdown.
15-
![Track Selection](helpGuideImages/img4.png)
14+
4. Select whether you want a graph, read, or haplotype track from the first dropdown. Make sure to always have at least 1 graph track. Select a data file from the list of files of that type in the last dropdown. In the default Tube Map configuration, these files come from the `exampleData/` folder on the system where the Tube Map server is running. If you want to upload a file instead of selecting one that's already available, change the middle dropdown to "upload".
15+
![Track Selection](helpGuideImages/img4.png)
1616
5. Click on the settings button, where there are options to color the tracks from an existing color palette, or select any other color.
1717
![Track Settings Button](helpGuideImages/img5.png)
1818
7. To delete a track, click on the button with the "x" icon.
-6.11 KB
Loading
-8.27 KB
Loading
-26.2 KB
Loading
-49.5 KB
Loading
-26.6 KB
Loading
-9.38 KB
Loading
-7.86 KB
Loading
-8.47 KB
Loading

src/components/TrackListItem.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,15 +83,15 @@ export const TrackListItem = ({
8383
style={{ width: "900px", marginLeft: 0, marginRight: 15 }}
8484
>
8585
<Row className="g-0">
86-
<Col className="tracklist-dropdown">
86+
<Col sm="2" className="tracklist-dropdown type">
8787
<TrackTypeDropdown
8888
value={propChanges["trackType"] || trackProps["trackType"]}
8989
onChange={trackTypeOnChange}
9090
testID={"file-type-select-component".concat(trackID)}
9191
options={["graph", "haplotype", "read"]}
9292
/>
9393
</Col>
94-
<Col className="tracklist-dropdown">
94+
<Col sm="2" className="tracklist-dropdown source">
9595
<TrackTypeDropdown
9696
value={pickerType}
9797
onChange={setPickerType}

0 commit comments

Comments
 (0)