Assembly descriptions #3570
-
Tracks currently support an optional description (e.g., I'm not sure where an optional assembly description would best go in the JBrowse UI for aesthetics and ease of implementation, but it would be helpful to have accessible from somewhere. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
one potential way of doing this is using the 'metadata' field on the reference sequence track Example https://github.com/GMOD/jbrowse-components/blob/main/test_data/volvox/config.json#L9-L11 another is storing the extended description in a 'fasta metadata file'. this was something that was a project of a user https://github.com/GMOD/jbrowse-components/blob/main/test_data/config.json#L16-L19 #2968 potentially more types of tracks should have this type of "arbitrary external metadata file" but not available yet I don't know off hand how to set the metadata and metdataLocation via the CLI tool, but you can possibly hand edit it into the JSON or write a small script that adds it to the JSON |
Beta Was this translation helpful? Give feedback.
one potential way of doing this is using the 'metadata' field on the reference sequence track
Example
https://github.com/GMOD/jbrowse-components/blob/main/test_data/volvox/config.json#L9-L11
another is storing the extended description in a 'fasta metadata file'. this was something that was a project of a user https://github.com/GMOD/jbrowse-components/blob/main/test_data/config.json#L16-L19 #2968
potentially more types of tracks should have this type of "arbitrary external metadata file" but not available yet
I don't know off hand how to set the metadata and metdataLocation via the CLI tool, but you can possibly hand edit it into the JSON or write a small script that adds it to the JSON