Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions public/help/help.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ The Sequence Tube Map is used to generate visualizations of genomic sequence gra
##### Selecting Tracks
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.

1. From the "Data" dropdown box, select "custom (mounted files)"
1. From the "Data" dropdown box, select "custom"
![Selecting Custom Files](helpGuideImages/img1.png)
2. Select the button that says "Configure Tracks".
![Configure Tracks Button](helpGuideImages/img2.png)
3. Once the button is clicked on, a popup with a "+" button will be displayed. Click on this button to add tracks.
![Track Add Button](helpGuideImages/img3.png)
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.
![Track Selection](helpGuideImages/img4.png)
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".
![Track Selection](helpGuideImages/img4.png)
5. Click on the settings button, where there are options to color the tracks from an existing color palette, or select any other color.
![Track Settings Button](helpGuideImages/img5.png)
7. To delete a track, click on the button with the "x" icon.
Expand Down
Binary file modified public/help/helpGuideImages/img1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/help/helpGuideImages/img2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/help/helpGuideImages/img4.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/help/helpGuideImages/img5.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/help/helpGuideImages/img6.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/help/helpGuideImages/img7.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/help/helpGuideImages/img8.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/help/helpGuideImages/img9.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions src/components/TrackListItem.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,15 +83,15 @@ export const TrackListItem = ({
style={{ width: "900px", marginLeft: 0, marginRight: 15 }}
>
<Row className="g-0">
<Col className="tracklist-dropdown">
<Col sm="2" className="tracklist-dropdown type">
<TrackTypeDropdown
value={propChanges["trackType"] || trackProps["trackType"]}
onChange={trackTypeOnChange}
testID={"file-type-select-component".concat(trackID)}
options={["graph", "haplotype", "read"]}
/>
</Col>
<Col className="tracklist-dropdown">
<Col sm="2" className="tracklist-dropdown source">
<TrackTypeDropdown
value={pickerType}
onChange={setPickerType}
Expand Down