-
Notifications
You must be signed in to change notification settings - Fork 51
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
Refactor remaining array configs to use ConfigOB instead of the DBI library #770
Conversation
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.
Haven't tested this yet, just reviewed it. Full Moose compliance for the Config. Moo Moo !!!!
40b5542
to
b48bcde
Compare
@nicolasbrossard ready for another review. Thank you! |
@nicolasbrossard I believe I took care of all your comments. Thanks! |
@nicolasbrossard good catch! Should be fixed in the last commit |
|
||
Get the bids_acknowledgments_text Config setting | ||
|
||
RETURN: an array (possibly empty) of the acknowledgment text to use for a BIDS dataset |
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.
I don't think this method returns an array but a string. Also, when you do not define an acknowledgment text, this method returns undef
(not the empty string ''
). Is this the intended behavior?
|
||
Get the bids_readme_text Config setting | ||
|
||
RETURN: an array (possibly empty) of the README text to use for a BIDS dataset |
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.
Same comment as for the acknowledgment text.
This PR is stale because it has been open 45 days with no activity. Remove stale label or comment or this will be closed in 20 days. |
…ibrary (aces#770) * use configOB for array configs * use configOB for minc_to_bids script * fix bug in delete script * fix bugs with new perl * use array for some bids config * bug fix * fix pod error + Nic's comment * take care of Nic's comments * recreate markdown files * correct documentation of grep_FileIDs_to_deface in run_defacing_script * Nic's review
This PR finishes the refactoring of the database config queries to use ConfigOB instead of the DBI library directly.
This resolves #465