Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add FAQ section about faceted track selector #4223

Merged
merged 1 commit into from Feb 20, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
20 changes: 20 additions & 0 deletions website/docs/faq.md
Expand Up @@ -235,6 +235,26 @@ configurations using the --config option. This additional configuration is a
"renderer" on the display that your track will be using. In this case, this .vcf
will be using the `LinearBasicDisplay`.

### How do I get (more) categories to filter on in the faceted track selector?

The faceted track selector displays all the different adapters, categories, and
all the metadata. Categories are also used to group tracks in the track selector.
New categories can be added with the `--category` option from `jbrowse add-track`.

Alternatively, you can add a metadata to a track, which will be used in the
faceted track selector:

```
{
"name": "mytrack",
...
"metadata": {
"origin": "public",
"data_added": "2024-02-20"
}
}
```

## Curiosities

### Why do all the tracks need an assembly specified
Expand Down