@@ -32,14 +32,13 @@ of providing a command-line application experience like fMRIPrep_.
32
32
33
33
What does NiBetaSeries give me?
34
34
-------------------------------
35
- Currently NiBetaSeries returns symmetric z-transformed correlation
36
- matrices, with an entry for each parcel defined in the atlas.
37
- Soon, NiBetaSeries will also return the betaseries images themselves,
38
- so you can flexibly apply additional analysis methods.
35
+ Currently NiBetaSeries returns the beta series images and optionally
36
+ symmetric z-transformed correlation matrices with an entry for each
37
+ parcel defined in the atlas.
39
38
40
- .. note :: The betas (i.e., parameter estimates) are generated using the "Least Squares Separate" procedure.
39
+ .. note :: The betas (i.e., parameter estimates) are generated using either
40
+ the "Least Squares Separate" or "Least Squares All" procedures.
41
41
Please read the betaseries page for more background information.
42
- There are plans to support Least Squares All in future iterations.
43
42
44
43
What do I need to run NiBetaSeries?
45
44
-----------------------------------
@@ -73,18 +72,104 @@ Please check out their pages and support the developers.
73
72
74
73
.. _changelog :
75
74
76
- 0.3.0 (August 29, 2019)
77
- =======================
75
+ =========
76
+ CHANGELOG
77
+ =========
78
+
79
+ 0.4.0 (October 07, 2019)
80
+ ------------------------
81
+ This has been a busy month for NiBetaSeries.
82
+ We have two more methods for calculating betas (LSA and FS),
83
+ and LSS has been modified to account for separate conditions.
84
+ All of this great work is thanks to @tsalo.
85
+
86
+ The second major change is the refactor of how we read from
87
+ the FMRIPREP directory, previously we assumed results from
88
+ fmriprep version (< v1.2.0), but now we only support files output
89
+ from fmriprep (>= v1.2.0).
90
+ If you have results from an older version of fmriprep, check our
91
+ FAQ for a potential solution.
92
+
93
+ The third major change is the generation of a citation template,
94
+ so you can easily populate your methods section with the appropriate information.
95
+ Again, thanks to @tsalo for this marvelous contribution.
96
+
97
+ The fourth and final major change (in no particular order), is passing the
98
+ beta series image maps directly to the output directory, no longer requiring the
99
+ user to have an atlas and a lookup table to use NiBetaSeries.
100
+ This will allow users to use the beta series image maps for whatever downstream
101
+ analysis they wish.
102
+
103
+ Thank you to all the contributors mentioned below for improving NiBetaSeries
104
+ through documentation fixes and other code changes.
105
+
106
+ An unsung hero is @PeerHerholz for code review and
107
+ beneficial recommendations for the future of NiBetaSeries, Thank you!
108
+ Also not listed is @mwvoss for opening issue #123.
109
+ Making a good issue is work and should be recognized, thank you!
110
+
111
+ While I have almost certainly missed giving thanks to everyone that
112
+ has helped, please know I appreciate your contributions and I'm
113
+ thankful you took some time out of your day to help this project grow.
114
+
115
+ * [DOC] update instructions with template checklist (#242) @jdkent
116
+ * [FIX] update code-server version (#238) @jdkent
117
+ * [DOC] Generate citable boilerplates for workflows (#205) @tsalo
118
+ * [DOC] Clarify in demo that you are stripping color codes #123 (#234) @ipacheco-uy
119
+ * [DOC] Fix documentation headers (#235) @atrievel
120
+ * [FIX] add nano to dev container (#233) @pranesh-sp
121
+ * [DOC] add lsa section (#231) @jdkent
122
+ * [DOC] add joss badge (#229) @zkhan12
123
+ * [ENH,DOC] add development documentation section (#222) @jdkent
124
+ * [DOC,FIX] add fake img and lut to participant workflow (#225) @jdkent
125
+ * [ENH] Implement finite BOLD response- separate (FS) modeling (#204) @tsalo
126
+ * [MAINT] allow more lenience for pull requests (#223) @jdkent
127
+ * [ENH] Make atlases optional (#213) @jdkent
128
+ * [FIX,DOC] make title for changelog (#221) @jdkent
129
+ * [MAINT] make travisci more efficient (#216) @jdkent
130
+ * [FIX] make codecov yaml valid (#220) @jdkent
131
+ * [FIX] show binder badge on readthedocs (#219) @jdkent
132
+ * [ENH,DOC] sphinx gallery binder (#217) @jdkent
133
+ * [MAINT] make codecov more lenient (#215) @jdkent
134
+ * [FIX] use scope=derivatives in collect_data (#212) @jdkent
135
+ * [FIX] respond to suggested edits (#206) @jdkent
136
+ * [ENH] Implement least squares- all (LSA) modeling (#202) @tsalo
137
+ * [TST] add more tests (#201) @jdkent
138
+ * [FIX, DOC] Rename low-pass filter to high-pass filter (#198) @tsalo
139
+ * [MAINT] explicitly set codecov settings (#200) @jdkent
140
+ * [ENH,FIX] refactor bids file processing (#193) @jdkent
141
+ * [ENH] Separate other conditions in LSS model (#191) @tsalo
142
+
143
+
144
+ 0.3.2 (September 04, 2019)
145
+ --------------------------
78
146
79
- Thanks to @PeerHerholz and @njvack for their contributions on this release.
80
- Special thanks to @snastase for being a great reviewer and improving the project
81
- overall.
82
147
This release is special because it will be published in the
83
148
Journal of Open Source Software (JOSS).
84
149
One condition of this is that the authors on the paper be the only authors in the zenodo file.
85
150
I will modify the authors listed on the zenodo file for this release,
86
151
but I will add all contributors back on for the subsequent release.
87
152
153
+ * [MAINT] fix zenodo file
154
+
155
+ 0.3.1 (September 04, 2019)
156
+ --------------------------
157
+
158
+ Changes to installation and documentation, but no functional code changes.
159
+
160
+ * [DOC] address review comments (#185) @jdkent
161
+ * [DOC] add everyone to contributors in the zenodo file (#188) @jdkent
162
+ * [MAINT] Change Installation Method (#187) @jdkent
163
+ * [ENH] add code server (#182) @jdkent
164
+ * [MAINT] build tags (#183) @jdkent
165
+
166
+ 0.3.0 (August 29, 2019)
167
+ -----------------------
168
+
169
+ Thanks to @PeerHerholz and @njvack for their contributions on this release.
170
+ Special thanks to @snastase for being a great reviewer and improving the project
171
+ overall.
172
+
88
173
* [ENH] reduce focus on parcellations (#179) @jdkent
89
174
* [FIX] generalized -> general linear model description (#178) @jdkent
90
175
* [DOC] Add math (#177) @jdkent
@@ -110,7 +195,7 @@ but I will add all contributors back on for the subsequent release.
110
195
* [WIP] JOSS Paper (#122) @jdkent
111
196
112
197
0.2.3 (January 29, 2019)
113
- ========================
198
+ ------------------------
114
199
115
200
Various documentation and testing changes.
116
201
We will be using readthedocs going forward and not doctr.
@@ -137,7 +222,7 @@ We will be using readthedocs going forward and not doctr.
137
222
* [FIX] syntax links (#119) @PeerHerholz
138
223
139
224
0.2.2 (November 15, 2018)
140
- =========================
225
+ -------------------------
141
226
142
227
Quick bug fixes, one related to updating the
143
228
nipype dependency to a newer version (1.1.5)
@@ -146,7 +231,7 @@ nipype dependency to a newer version (1.1.5)
146
231
* [FIX] add missing comma in hrf_models (#83) @jdkent
147
232
148
233
0.2.1 (November 13, 2018)
149
- =========================
234
+ -------------------------
150
235
151
236
Large thanks to everyone at neurohackademy that helped make this a reality.
152
237
This release is still a bit premature because I'm testing out
@@ -170,7 +255,7 @@ my workflow for making releases.
170
255
* [MGT] simplify and create deployment (#79) @jdkent
171
256
172
257
0.2.0 (November 13, 2018)
173
- =========================
258
+ -------------------------
174
259
175
260
* [MGT] simplify and create deployment (#79)
176
261
* [TST] Add more tests (#78)
@@ -210,7 +295,7 @@ my workflow for making releases.
210
295
* [ENH] Refactor (#2)
211
296
212
297
213
- 0.1.0 (2018-06-08 )
214
- ==================
298
+ 0.1.0 (June 08, 2018 )
299
+ ---------------------
215
300
216
301
* First release on PyPI.
0 commit comments