-
Hello, First of all, I wanted to thank you for developing your snakebids tool. I am a post-graduate intern trying to build a PET/MR pipeline and it has been really helpful. After running:
In my dataset, the PET images have a "trc" label (to specify the tracer used) As I understand the way the inputs generation works is:
The Finally, inside the Thanks in advance for your help 😄 |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 11 replies
-
This is actually a Adding basic support would be very straightforward: we can just add another parameter to |
Beta Was this translation helpful? Give feedback.
-
Ah yes you're right @pvandyken, my memory of bids_tags.json wasn't very good! |
Beta Was this translation helpful? Give feedback.
This is actually a
pybids
issue, the library that does the path parsing. It will only read entities that it knows about, as defined in a config file (see here for the default config). Pybids allows custom config files, but as it turns out,Snakebids
currently doesn't support these.Adding basic support would be very straightforward: we can just add another parameter to
generate_inputs
calledconfig
and pass it transparently on toBIDSLayout
. I'm going to make an issue from this. @tkkuehn , @akhanf, @kaitj, any thoughts?