Code to produce the analyses of the paper "Edge-based general linear models capture high-frequency fluctuations in attention".
-
envs/
holds the following environmental requirement files:environemt.yml
lists the minimal set of packages required to build the environment.manifest.yml
was generated via the commandconda env export
, and is the most comprehensive, listing all packages in the environment on my machine and their specific versions. However, it may contain packages specific for running the code on Apple Silicon.
-
The Shen atlas (
shen_2mm_268_parcellation.nii.gz
), which is used in the ROI activity visualizations, was downloaded from here. -
Shen_network_labels.mat
maps the 268 regions onto 8 networks, and is used in compressing the results from the edge level to the network level. -
saCPM.mat
, which was used for the additional secondlevel overlap analysis, was downloaded from here. -
dataset-2/sublist.csv
lists the 65 participants who completed 2 runs of GradCPT in dataset 2.
-
IMPORTANT NOTE: Dataset 1 cannot be shared publicly. Thus, you can only rerun analyses on dataset 2. For inquiries about Dataset 1, contact the authors of the original manuscript https://doi.org/10.1038/nn.4179.
-
Some notebooks can be run from without any modifications. For others, arguments needed to be provided in one of the earliest cells defining the arguments, typically the first line of the 3rd cell. The code would be changed from
get_args()
(the standard analysis) toget_args(["-arg1", "new_arg1_val", "-arg2", "new_arg2_val", ...etc])
. Because we are only sharing dataset 2, the firstlevel and secondlevel notebooks have been set to run on dataset 2 (get_args(["-dataset", "2"])
).
To produce the material for Figure 1, replicating the ROI activity analyses, run the following, adding a '-replicate'
flag to the arguments of the firstlevels:
firstlevels_glm.ipynb
[set the first line of cell 3 toget_args(["-replicate" "-dataset", "2"])
]firstlevels_VTCcorrs.ipynb
[set the first line of cell 3 toget_args(["-replicate" "-dataset", "2"])
]secondlevels_replicate-Dataset2.ipynb
To produce the material for Figure 2 & 3, examining edges results for traditional analyses, run the following:
firstlevels_glm.ipynb
firstlevels_VTCcorrs.ipynb
secondlevels.ipynb
thirdlevels.ipynb
visualize_results.ipynb
To produce the material for Figure 4, comparing edges correlated with the VTC and attention networks predicting individual differences, run:
thirdlevels.ipynb
(The critical section is "Compare 2ndlevels with CPM edges")visualize_results.ipynb
(the critical section is "VTC corr * CPM overlap, dataset 2 NBS")
This assumes you've run the notebooks described above for generating Figure 2.
To produce the material for Figure 5, the estimated hemodynamic response clusters, see the following (but note they can't be run without dataset 1):
FIR_ROIs.ipynb
FIR_edges.ipynb
To identify edges which weren't predicted by ROIs, see visualize_results.ipynb
. The critical section is "Looking for Edges that aren't predicted by ROIs"
To run the alternative VTC analysis, treating the VTC as a parametric regressor, run:
firstlevels_glm.ipynb
[set the first line of cell 3 to:get_args(["-dataset", "2", "-model", "VTC_convolved"])
]
Then, run secondlevel notebook onwards as if producing Figure 2.
See visualize_projected_ROIs.ipynb
.
To compare CO against CE in the timepoints leading up to the rare category trials, run the following:
firstlevels_pretrial.ipynb
[set the first line of cell 3 to:get_args(["-dataset", "2"])
]firstlevels_pretrial.ipynb
[set the first line of cell 3 to:get_args(["-replicate", "-dataset", "2"])
]secondlevels.ipynb