-
I'm trying to add some alignment tracks to our instances, and have a question about the manipulation of the Core details/Mate details/Attributes that show up if you click a feature a linear synteny track (see below). Normally, one can manipulate the features that show up in these kinds of tracks through some JEXL code in the config file. However, I cannot find the right variables for these types of tracks. The crux of my question thus is, how can we manipulate the variables in the detailed description of these alignment features? Is there an overview of the variablenames that we have to use? Thank you for your help! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Hi there, Basically the "synteny tracks" were not properly wired up to the "featureDetail" formatter callbacks I can do a little more testing on it, but you can also try it if you want to try out that branch (e.g. The dot notation probably won't work but you can use
note that this removes mate.state and mate.end and mate.assemblyName (e.g. it does not deepmerge 'replacement stuff' into the refName, leaving everything else, it replaces it so it is just mate.refName='replacement stuff' and nothing else in the details |
Beta Was this translation helpful? Give feedback.
-
Thank you very much, this works great! |
Beta Was this translation helpful? Give feedback.
Hi there,
I found potentially a cause of this issue here #4542
Basically the "synteny tracks" were not properly wired up to the "featureDetail" formatter callbacks
I can do a little more testing on it, but you can also try it if you want to try out that branch (e.g.
jbrowse create --branch fix_alignments_customization
)The dot notation probably won't work but you can use
note that this removes mate.state and mate.end and mate.assemblyName (e.g. it does not deepmerge 'replacement stuff' into the refName, leaving everything else, it replaces it so it is just mate.refName='replacement stuff' and nothing else…