-
Notifications
You must be signed in to change notification settings - Fork 135
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 Siemens 2D MB PCASL example #466
Conversation
Hi there, this is the example BIDS dataset with the Siemens 2D MB Multi-delay PCASL (the same sequence used by HCP Aging) to support the PR [ENH] Add noRF and n/a ASL volume types addressing aslcontext.tsv dummy volumes. I am looking for feedback and have a couple of questions/comments.
There are 2 issues:
Please let me know I've missed anything (I am new to contributing to open source projects!) or have any feedback. Thank you! |
The issue here is that we have an exclusive minimum: PostLabelingDelay:
name: PostLabelingDelay
display_name: Post Labeling Delay
description: |
This is the postlabeling delay (PLD) time, in seconds, after the end of the
labeling (for `"CASL"` or `"PCASL"`) or middle of the labeling pulse
(for `"PASL"`) until the middle of the excitation pulse applied to the
imaging slab (for 3D acquisition) or first slice (for 2D acquisition).
Can be a number (for a single-PLD time series) or an array of numbers
(for multi-PLD and Look-Locker).
In the latter case, the array of numbers contains the PLD of each volume,
namely each `control` and `label`, in the acquisition order.
Any image within the time-series without a PLD, for example an `m0scan`,
is indicated by a zero.
Based on DICOM Tags 0018, 9079 `Inversion Times` and 0018, 0082
`InversionTime`.
anyOf:
- type: number
exclusiveMinimum: 0
unit: s
- type: array
items:
type: number
exclusiveMinimum: 0
unit: s I pushed to @tsalo's branch, so will rerun these now. |
This comment was marked as outdated.
This comment was marked as outdated.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pending the upstream PR
@@ -10,7 +10,7 @@ | |||
from bids import BIDSLayout | |||
|
|||
folders_to_skip = ["docs", ".git", ".github", "tools", "env", "site", ".vscode"] | |||
suffixes_to_remove = ["README", "description", "participants"] | |||
suffixes_to_remove = ["README", "description", "participants", "CITATION"] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for catching that one
# Update this URL to the schema.json from PRs to the spec, when needed. | ||
BIDS_SCHEMA: https://bids-specification.readthedocs.io/en/latest/schema.json | ||
BIDS_SCHEMA: https://bids-specification--1884.org.readthedocs.build/en/1884/schema.json |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
unrelated to this PR but this little 'trick' to test a version of the schema related to a PR in the spec should be mentioned in our doc, so that BEP leads know how to start testing their datasets
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
#1864 was merged so this PR should be updated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
good with me
No description provided.