diff --git a/docs/api.rst b/docs/api.rst index f043de9a3..1e94529f9 100644 --- a/docs/api.rst +++ b/docs/api.rst @@ -194,6 +194,7 @@ For more information about functional characterization analysis, see :ref:`Meta- :toctree: generated/ :template: function.rst + extract.fetch_neuroquery extract.fetch_neurosynth extract.download_nidm_pain extract.download_mallet diff --git a/examples/01_datasets/download_neurosynth.py b/examples/01_datasets/download_neurosynth.py index 7ab45dc38..c1803eaab 100644 --- a/examples/01_datasets/download_neurosynth.py +++ b/examples/01_datasets/download_neurosynth.py @@ -4,47 +4,95 @@ .. _datasets2: -============================================= - Download and convert the Neurosynth database -============================================= +================================================ + Download the Neurosynth or NeuroQuery databases +================================================ Download and convert the Neurosynth database (with abstracts) for analysis with NiMARE. -.. note:: - This will likely change as we work to shift database querying to a remote - database, rather than handling it locally with NiMARE. +.. warning:: + In August 2021, the Neurosynth database was reorganized according to a new file format. + As such, the ``fetch_neurosynth`` function for NiMARE versions before 0.0.10 will not work + with its default parameters. + In order to download the Neurosynth database in its older format using NiMARE <= 0.0.9, + do the following:: + nimare.extract.fetch_neurosynth( + url=( + "https://github.com/neurosynth/neurosynth-data/blob/" + "e8f27c4a9a44dbfbc0750366166ad2ba34ac72d6/current_data.tar.gz?raw=true" + ), + ) """ ############################################################################### # Start with the necessary imports # -------------------------------- import os - -from neurosynth.base.dataset import download +from pprint import pprint import nimare ############################################################################### # Download Neurosynth -# -------------------------------- +# ------------------- +# Neurosynth's data files are stored at https://github.com/neurosynth/neurosynth-data. out_dir = os.path.abspath("../example_data/") -if not os.path.isdir(out_dir): - os.mkdir(out_dir) +os.makedirs(out_dir, exist_ok=True) -if not os.path.isfile(os.path.join(out_dir, "database.txt")): - download(out_dir, unpack=True) +files = nimare.extract.fetch_neurosynth( + path=out_dir, + version="7", + overwrite=False, + source="abstract", + vocab="terms", +) +pprint(files) +neurosynth_db = files[0] ############################################################################### # Convert Neurosynth database to NiMARE dataset file # -------------------------------------------------- -dset = nimare.io.convert_neurosynth_to_dataset( - os.path.join(out_dir, "database.txt"), os.path.join(out_dir, "features.txt") +neurosynth_dset = nimare.io.convert_neurosynth_to_dataset( + database_file=neurosynth_db["database"], + annotations_files=neurosynth_db["features"], ) -dset.save(os.path.join(out_dir, "neurosynth_dataset.pkl.gz")) +neurosynth_dset.save(os.path.join(out_dir, "neurosynth_dataset.pkl.gz")) +print(neurosynth_dset) ############################################################################### # Add article abstracts to dataset # -------------------------------- -dset = nimare.extract.download_abstracts(dset, "tsalo006@fiu.edu") -dset.save(os.path.join(out_dir, "neurosynth_nimare_with_abstracts.pkl.gz")) +# This is only possible because Neurosynth uses PMIDs as study IDs. +# +# Make sure you replace the example email address with your own. +neurosynth_dset = nimare.extract.download_abstracts(neurosynth_dset, "example@example.edu") +neurosynth_dset.save(os.path.join(out_dir, "neurosynth_dataset_with_abstracts.pkl.gz")) + +############################################################################### +# Do the same with NeuroQuery +# --------------------------- +# NeuroQuery's data files are stored at https://github.com/neuroquery/neuroquery_data. +files = nimare.extract.fetch_neuroquery( + path=out_dir, + version="1", + overwrite=False, + source="combined", + vocab="neuroquery7547", + type="tfidf", +) +pprint(files) +neuroquery_db = files[0] + +# Note that the conversion function says "neurosynth". +# This is just for backwards compatibility. +neuroquery_dset = nimare.io.convert_neurosynth_to_dataset( + database_file=neuroquery_db["database"], + annotations_files=neuroquery_db["features"], +) +neuroquery_dset.save(os.path.join(out_dir, "neuroquery_dataset.pkl.gz")) +print(neuroquery_dset) + +# NeuroQuery also uses PMIDs as study IDs. +neuroquery_dset = nimare.extract.download_abstracts(neuroquery_dset, "example@example.edu") +neuroquery_dset.save(os.path.join(out_dir, "neuroquery_dataset_with_abstracts.pkl.gz")) diff --git a/nimare/extract/__init__.py b/nimare/extract/__init__.py index 24d7b86ad..709854be8 100644 --- a/nimare/extract/__init__.py +++ b/nimare/extract/__init__.py @@ -1,6 +1,4 @@ """Dataset and trained model downloading functions.""" -import warnings - from . import utils from .extract import ( download_abstracts, @@ -8,6 +6,7 @@ download_mallet, download_nidm_pain, download_peaks2maps_model, + fetch_neuroquery, fetch_neurosynth, ) @@ -17,14 +16,7 @@ "download_cognitive_atlas", "download_abstracts", "download_peaks2maps_model", + "fetch_neuroquery", "fetch_neurosynth", "utils", ] - -warnings.simplefilter("default") - -warnings.warn( - "{} is an experimental module under active development; use it at your " - "own risk.".format(__name__), - ImportWarning, -) diff --git a/nimare/extract/extract.py b/nimare/extract/extract.py index 2e4858a0f..64b1c36d1 100644 --- a/nimare/extract/extract.py +++ b/nimare/extract/extract.py @@ -1,10 +1,10 @@ """Tools for downloading datasets.""" +import itertools +import json import logging -import math import os import os.path as op import shutil -import sys import tarfile import time import zipfile @@ -19,6 +19,7 @@ from tqdm.auto import tqdm from ..dataset import Dataset +from ..utils import get_resource_path from .utils import ( _download_zipped_file, _expand_df, @@ -29,59 +30,214 @@ LGR = logging.getLogger(__name__) +VALID_ENTITIES = { + "coordinates.tsv.gz": ["data", "version"], + "metadata.tsv.gz": ["data", "version"], + "features.npz": ["data", "version", "vocab", "source", "type"], + "vocabulary.txt": ["data", "version", "vocab"], + "metadata.json": ["data", "version", "vocab"], + "keys.tsv": ["data", "version", "vocab"], +} + + +def _find_entities(filename, search_pairs, log=False): + """Search file for any matching patterns of entities.""" + # Convert all string-based kwargs to lists + search_pairs = {k: [v] if isinstance(v, str) else v for k, v in search_pairs.items()} + search_pairs = [[f"{k}-{v_i}" for v_i in v] for k, v in search_pairs.items()] + searches = list(itertools.product(*search_pairs)) + + if log: + LGR.info(f"Searching for any feature files matching the following criteria: {searches}") + + file_parts = filename.split("_") + suffix = file_parts[-1] + valid_entities_for_suffix = VALID_ENTITIES[suffix] + for search in searches: + temp_search = [term for term in search if term.split("-")[0] in valid_entities_for_suffix] + if all(term in file_parts for term in temp_search): + return True + + return False + + +def _fetch_database(search_pairs, database_url, out_dir, overwrite=False): + """Fetch generic database.""" + res_dir = get_resource_path() + with open(op.join(res_dir, "database_file_manifest.json"), "r") as fo: + database_file_manifest = json.load(fo) + + out_dir = op.abspath(out_dir) + os.makedirs(out_dir, exist_ok=True) + + found_databases = [] + found_files = [] + log = True + for database in database_file_manifest: + coordinates_file = database["coordinates"] + metadata_file = database["metadata"] + if not _find_entities(coordinates_file, search_pairs, log=log): + log = False + continue + + log = False + + feature_dicts = database["features"] + for feature_dict in feature_dicts: + features_file = feature_dict["features"] + # Other files associated with features have subset of entities, + # so unnecessary to search them if we assume that the hard-coded manifest is valid. + if not _find_entities(features_file, search_pairs): + continue + else: + out_coordinates_file = op.join(out_dir, coordinates_file) + out_metadata_file = op.join(out_dir, metadata_file) + out_feature_dict = {k: op.join(out_dir, v) for k, v in feature_dict.items()} + + db_found = [ + i_db + for i_db, db_dct in enumerate(found_databases) + if db_dct["coordinates"] == out_coordinates_file + ] + if len(db_found): + assert len(db_found) == 1 + + found_databases[db_found[0]]["features"].append(out_feature_dict) + else: + found_databases.append( + { + "coordinates": out_coordinates_file, + "metadata": out_metadata_file, + "features": [out_feature_dict], + } + ) + found_files += [coordinates_file, metadata_file, *feature_dict.values()] + + found_files = sorted(list(set(found_files))) + for found_file in found_files: + print(f"Downloading {found_file}", flush=True) + + url = op.join(database_url, found_file + "?raw=true") + out_file = op.join(out_dir, found_file) + + if op.isfile(out_file) and not overwrite: + print("File exists and overwrite is False. Skipping.") + continue + + with open(out_file, "wb") as fo: + u = urlopen(url) + + block_size = 8192 + while True: + buffer = u.read(block_size) + if not buffer: + break + fo.write(buffer) -def fetch_neurosynth(path=".", url=None, unpack=False): + return found_databases + + +def fetch_neurosynth(path=".", version="7", overwrite=False, **kwargs): """Download the latest data files from NeuroSynth. + .. versionchanged:: 0.0.10 + + * Use new format for Neurosynth and NeuroQuery files. + .. versionadded:: 0.0.4 + Parameters + ---------- + path : str + Location in which to save the retrieved data files. Defaults to current directory. + version : str or list, optional + The version to fetch. The default is "7" (Neurosynth's latest version). + overwrite : bool, optional + Whether to overwrite existing files or not. Default is False. + kwargs : dict, optional + Keyword arguments to select relevant feature files. + Valid kwargs include: source, vocab, type. + Each kwarg may be a string or a list of strings. + If no kwargs are provided, all feature files for the specified database version will be + downloaded. + + Returns + ------- + found_databases : :obj:`list` of :obj:`dict` + List of dictionaries indicating datasets downloaded. + Each list entry is a different database, containing a dictionary with three keys: + "coordinates", "metadata", and "features". "coordinates" and "metadata" will be filenames. + "features" will be a list of dictionaries, each containing "id", "vocab", and "features" + keys with associated files. + + Notes + ----- + This function was adapted from neurosynth.base.dataset.download(). + + Warning + ------- + Starting in version 0.0.10, this function operates on the new Neurosynth/NeuroQuery file + format. Old code using this function **will not work** with the new version. + """ + URL = ( + "https://github.com/neurosynth/neurosynth-data/blob/" + "753c058ac17c69db47689c1bb7c7a2598b443035/" + ) + + kwargs["data"] = "neurosynth" + kwargs["version"] = version + + found_databases = _fetch_database(kwargs, URL, path, overwrite=overwrite) + + return found_databases + + +def fetch_neuroquery(path=".", version="1", overwrite=False, **kwargs): + """Download the latest data files from NeuroQuery. + + .. versionadded:: 0.0.10 + Parameters ---------- path : str Location to save the retrieved data files. Defaults to current directory. + version : str or list, optional + The version to fetch. The default is "7" (Neurosynth's latest version). url : None or str, optional Specific URL to download. If not None, overrides URL to current data. - unpack : bool, optional - If True, unzips the data file post-download. Defaults to False. + If you want to fetch Neurosynth's data from *before* the 2021 reorganization, + you will need to use this argument. + kwargs + Keyword arguments to select relevant feature files. + Valid kwargs include: source, vocab, type. + Each kwarg may be a string or a list of strings. + If no kwargs are provided, all feature files for the specified database version will be + downloaded. + + Returns + ------- + found_databases : :obj:`list` of :obj:`dict` + List of dictionaries indicating datasets downloaded. + Each list entry is a different database, containing a dictionary with three keys: + "coordinates", "metadata", and "features". "coordinates" and "metadata" will be filenames. + "features" will be a list of dictionaries, each containing "id", "vocab", and "features" + keys with associated files. Notes ----- - This function was originally neurosynth.base.dataset.download(). + This function was adapted from neurosynth.base.dataset.download(). """ - if url is None: - url = ( - "https://github.com/neurosynth/neurosynth-data/blob/master/current_data.tar.gz?" - "raw=true" - ) - if os.path.exists(path) and os.path.isdir(path): - basename = os.path.basename(url).split("?")[0] - filename = os.path.join(path, basename) - else: - filename = path - - f = open(filename, "wb") - - u = urlopen(url) - file_size = int(u.headers["Content-Length"][0]) - print("Downloading the latest Neurosynth files: {0} bytes: {1}".format(url, file_size)) + URL = ( + "https://github.com/neuroquery/neuroquery_data/blob/" + "893f7c31ee616a2b05419fab8bcd7c40936f7e0a/data/" + ) - bytes_dl = 0 - block_size = 8192 - while True: - buffer = u.read(block_size) - if not buffer: - break - bytes_dl += len(buffer) - f.write(buffer) - p = float(bytes_dl) / file_size - status = r"{0} [{1:.2%}]".format(bytes_dl, p) - status = status + chr(8) * (len(status) + 1) - sys.stdout.write(status) + kwargs["data"] = "neuroquery" + kwargs["version"] = version - f.close() + found_databases = _fetch_database(kwargs, URL, path, overwrite=overwrite) - if unpack: - tarfile.open(filename, "r:gz").extractall(os.path.dirname(filename)) + return found_databases def download_nidm_pain(data_dir=None, overwrite=False, verbose=1): @@ -408,7 +564,7 @@ def download_peaks2maps_model(data_dir=None, overwrite=False, verbose=1): wrote = 0 for data in tqdm( r.iter_content(block_size), - total=math.ceil(total_size // block_size), + total=np.ceil(total_size // block_size), unit="MB", unit_scale=True, ): diff --git a/nimare/io.py b/nimare/io.py index 0bb8faeea..cf59c0cbc 100644 --- a/nimare/io.py +++ b/nimare/io.py @@ -10,6 +10,7 @@ import numpy as np import pandas as pd import requests +from scipy import sparse from .dataset import Dataset from .extract.utils import _get_dataset_dir @@ -25,8 +26,17 @@ } -def convert_neurosynth_to_dict(text_file, annotations_file=None): - """Convert Neurosynth database files to a dictionary. +def convert_neurosynth_to_dict( + coordinates_file, + metadata_file, + annotations_files=None, + feature_groups=None, +): + """Convert Neurosynth/NeuroQuery database files to a dictionary. + + .. versionchanged:: 0.0.10 + + * Use new format for Neurosynth and NeuroQuery files. .. versionchanged:: 0.0.9 @@ -34,81 +44,135 @@ def convert_neurosynth_to_dict(text_file, annotations_file=None): Parameters ---------- - text_file : :obj:`str` - Text file with Neurosynth's coordinates. Normally named "database.txt". - annotations_file : :obj:`str`, :obj:`dict`, or None, optional - Optional file(s) with Neurosynth's annotations. - If a string is provided, then labels from the file will be labeled with the feature group - "Neurosynth_TFIDF". - If a dictionary is provided, then keys must be feature groups and values must be filenames. - The standard Neurosynth annotations file is normally named "features.txt". + coordinates_file : :obj:`str` + TSV.GZ file with Neurosynth/NeuroQuery's coordinates. + metadata_file : :obj:`str` + TSV.GZ file with Neurosynth/NeuroQuery's metadata. + annotations_files : :obj:`dict`, :obj:`list` of :obj:`dict`, or None, optional + Optional file(s) with Neurosynth/NeuroQuery's annotations. + This should consist of a dictionary with two keys: "features" and "vocabulary". + "features" should have an NPZ file containing a sparse matrix of feature values. + "vocabulary" should have a TXT file containing labels. + The vocabulary corresponds to the columns of the feature matrix, while study IDs are + inferred from the metadata file, which MUST be in the same order as the features matrix. + Multiple sets of annotations may be provided, in which case "annotations_files" should be + a list of dictionaries. The appropriate name of each annotation set will be inferred from + the "features" filename, but this can be overwritten by using the "feature_groups" + parameter. + Default is None. + feature_groups : :obj:`list` of :obj:`str`, or None, optional + An optional list of names of annotation sets defined in "annotations_files". + This should only be used if "annotations_files" is used and the users wants to override + the automatically-extracted annotation set names. Default is None. Returns ------- dset_dict : :obj:`dict` - NiMARE-organized dictionary containing experiment information from text - files. + NiMARE-organized dictionary containing experiment information from text files. + + Warning + ------- + Starting in version 0.0.10, this function operates on the new Neurosynth/NeuroQuery file + format. Old code using this function **will not work** with the new version. """ - dset_df = pd.read_table(text_file) - if "space" not in dset_df.columns: + coords_df = pd.read_table(coordinates_file) + metadata_df = pd.read_table(metadata_file) + assert metadata_df["id"].is_unique, "Metadata file must have one row per ID." + + coords_df["id"] = coords_df["id"].astype(str) + metadata_df["id"] = metadata_df["id"].astype(str) + metadata_df = metadata_df.set_index("id", drop=False) + ids = metadata_df["id"].tolist() + + if "space" not in metadata_df.columns: LGR.warning("No 'space' column detected. Defaulting to 'UNKNOWN'.") - dset_df["space"] = "UNKNOWN" + metadata_df["space"] = "UNKNOWN" + + if isinstance(annotations_files, dict): + annotations_files = [annotations_files] - if isinstance(annotations_file, str): - annotations_file = {"Neurosynth_TFIDF": annotations_file} + if isinstance(feature_groups, str): + feature_groups = [feature_groups] - if annotations_file is not None: + # Load labels into a single DataFrame + if annotations_files is not None: label_dfs = [] - for feature_group, features_file in annotations_file.items(): - if feature_group.endswith("__"): - feature_group = feature_group[:-2] - - label_df = pd.read_table(features_file, index_col="pmid") - label_df.index = label_df.index.astype(str) - labels = label_df.columns - if not all("__" in label for label in labels): - labels = {label: f"{feature_group}__" + label for label in labels} - label_df = label_df.rename(columns=labels) - label_dfs.append(label_df) + if feature_groups is not None: + assert len(feature_groups) == len(annotations_files) + + for i_feature_group, annotations_dict in enumerate(annotations_files): + features_file = annotations_dict["features"] + vocabulary_file = annotations_dict["vocabulary"] + + vocab = re.findall("vocab-([a-zA-Z0-9]+)_", features_file)[0] + source = re.findall("source-([a-zA-Z0-9]+)_", features_file)[0] + value_type = re.findall("type-([a-zA-Z0-9]+)_", features_file)[0] + + if feature_groups is not None: + feature_group = feature_groups[i_feature_group] + feature_group = feature_group.rstrip("_") + "__" + else: + feature_group = f"{vocab}_{source}_{value_type}__" + + features = sparse.load_npz(features_file).todense() + vocab = np.loadtxt(vocabulary_file, dtype=str, delimiter="\t") + + labels = [feature_group + label for label in vocab] + + temp_label_df = pd.DataFrame(features, index=ids, columns=labels) + temp_label_df.index.name = "study_id" + + label_dfs.append(temp_label_df) label_df = pd.concat(label_dfs, axis=1) else: label_df = None - dset_df["id"] = dset_df["id"].astype(str) - - ids = dset_df["id"].unique() + # Compile (pseudo-)NIMADS-format dictionary dset_dict = {} - for sid in ids: - study_df = dset_df.loc[dset_df["id"] == sid] + for sid, study_metadata in metadata_df.iterrows(): + study_coords_df = coords_df.loc[coords_df["id"] == sid] study_dict = {} study_dict["metadata"] = {} - study_dict["metadata"]["authors"] = study_df["authors"].tolist()[0] - study_dict["metadata"]["journal"] = study_df["journal"].tolist()[0] - study_dict["metadata"]["year"] = study_df["year"].tolist()[0] - study_dict["metadata"]["title"] = study_df["title"].tolist()[0] + study_dict["metadata"]["authors"] = study_metadata.get("authors", "n/a") + study_dict["metadata"]["journal"] = study_metadata.get("journal", "n/a") + study_dict["metadata"]["year"] = study_metadata.get("year", "n/a") + study_dict["metadata"]["title"] = study_metadata.get("title", "n/a") study_dict["contrasts"] = {} study_dict["contrasts"]["1"] = {} + # Duplicate metadata across study and contrast levels study_dict["contrasts"]["1"]["metadata"] = {} - study_dict["contrasts"]["1"]["metadata"]["authors"] = study_df["authors"].tolist()[0] - study_dict["contrasts"]["1"]["metadata"]["journal"] = study_df["journal"].tolist()[0] - study_dict["contrasts"]["1"]["metadata"]["year"] = study_df["year"].tolist()[0] - study_dict["contrasts"]["1"]["metadata"]["title"] = study_df["title"].tolist()[0] + study_dict["contrasts"]["1"]["metadata"]["authors"] = study_metadata.get("authors", "n/a") + study_dict["contrasts"]["1"]["metadata"]["journal"] = study_metadata.get("journal", "n/a") + study_dict["contrasts"]["1"]["metadata"]["year"] = study_metadata.get("year", "n/a") + study_dict["contrasts"]["1"]["metadata"]["title"] = study_metadata.get("title", "n/a") study_dict["contrasts"]["1"]["coords"] = {} - study_dict["contrasts"]["1"]["coords"]["space"] = study_df["space"].tolist()[0] - study_dict["contrasts"]["1"]["coords"]["x"] = study_df["x"].tolist() - study_dict["contrasts"]["1"]["coords"]["y"] = study_df["y"].tolist() - study_dict["contrasts"]["1"]["coords"]["z"] = study_df["z"].tolist() + study_dict["contrasts"]["1"]["coords"]["space"] = study_metadata["space"] + study_dict["contrasts"]["1"]["coords"]["x"] = study_coords_df["x"].tolist() + study_dict["contrasts"]["1"]["coords"]["y"] = study_coords_df["y"].tolist() + study_dict["contrasts"]["1"]["coords"]["z"] = study_coords_df["z"].tolist() + if label_df is not None: study_dict["contrasts"]["1"]["labels"] = label_df.loc[sid].to_dict() + dset_dict[sid] = study_dict return dset_dict -def convert_neurosynth_to_json(text_file, out_file, annotations_file=None): - """Convert Neurosynth dataset text file to a NiMARE json file. +def convert_neurosynth_to_json( + coordinates_file, + metadata_file, + out_file, + annotations_files=None, + feature_groups=None, +): + """Convert Neurosynth/NeuroQuery dataset text file to a NiMARE json file. + + .. versionchanged:: 0.0.10 + + * Use new format for Neurosynth and NeuroQuery files. .. versionchanged:: 0.0.9 @@ -116,25 +180,54 @@ def convert_neurosynth_to_json(text_file, out_file, annotations_file=None): Parameters ---------- - text_file : :obj:`str` - Text file with Neurosynth's coordinates. Normally named "database.txt". + coordinates_file : :obj:`str` + TSV.GZ file with Neurosynth/NeuroQuery's coordinates and metadata. + metadata_file : :obj:`str` + TSV.GZ file with Neurosynth/NeuroQuery's metadata. out_file : :obj:`str` Output NiMARE-format json file. - annotations_file : :obj:`str`, :obj:`dict`, or None, optional - Optional file(s) with Neurosynth's annotations. - If a string is provided, then labels from the file will be labeled with the feature group - "Neurosynth_TFIDF". - If a dictionary is provided, then keys must be feature groups and values must be filenames. - The standard Neurosynth annotations file is normally named "features.txt". + annotations_files : :obj:`dict`, :obj:`list` of :obj:`dict`, or None, optional + Optional file(s) with Neurosynth/NeuroQuery's annotations. + This should consist of a dictionary with two keys: "features" and "vocabulary". + "features" should have an NPZ file containing a sparse matrix of feature values. + "vocabulary" should have a TXT file containing labels. + The vocabulary corresponds to the columns of the feature matrix, while study IDs are + inferred from the metadata file, which MUST be in the same order as the features matrix. + Multiple sets of annotations may be provided, in which case "annotations_files" should be + a list of dictionaries. The appropriate name of each annotation set will be inferred from + the "features" filename, but this can be overwritten by using the "feature_groups" + parameter. + Default is None. + feature_groups : :obj:`list` of :obj:`str`, or None, optional + An optional list of names of annotation sets defined in "annotations_files". + This should only be used if "annotations_files" is used and the users wants to override + the automatically-extracted annotation set names. Default is None. + + Warning + ------- + Starting in version 0.0.10, this function operates on the new Neurosynth/NeuroQuery file + format. Old code using this function **will not work** with the new version. """ - dset_dict = convert_neurosynth_to_dict(text_file, annotations_file) + dset_dict = convert_neurosynth_to_dict( + coordinates_file, metadata_file, annotations_files, feature_groups + ) with open(out_file, "w") as fo: json.dump(dset_dict, fo, indent=4, sort_keys=True) -def convert_neurosynth_to_dataset(text_file, annotations_file=None, target="mni152_2mm"): - """Convert Neurosynth database files into NiMARE Dataset. +def convert_neurosynth_to_dataset( + coordinates_file, + metadata_file, + annotations_files=None, + feature_groups=None, + target="mni152_2mm", +): + """Convert Neurosynth/NeuroQuery database files into NiMARE Dataset. + + .. versionchanged:: 0.0.10 + + * Use new format for Neurosynth and NeuroQuery files. .. versionchanged:: 0.0.9 @@ -142,24 +235,46 @@ def convert_neurosynth_to_dataset(text_file, annotations_file=None, target="mni1 Parameters ---------- - text_file : :obj:`str` - Text file with Neurosynth's coordinates. Normally named "database.txt". + coordinates_file : :obj:`str` + TSV.GZ file with Neurosynth/NeuroQuery's coordinates and metadata. + metadata_file : :obj:`str` + TSV.GZ file with Neurosynth/NeuroQuery's metadata. + annotations_files : :obj:`dict`, :obj:`list` of :obj:`dict`, or None, optional + Optional file(s) with Neurosynth/NeuroQuery's annotations. + This should consist of a dictionary with two keys: "features" and "vocabulary". + "features" should have an NPZ file containing a sparse matrix of feature values. + "vocabulary" should have a TXT file containing labels. + The vocabulary corresponds to the columns of the feature matrix, while study IDs are + inferred from the metadata file, which MUST be in the same order as the features matrix. + Multiple sets of annotations may be provided, in which case "annotations_files" should be + a list of dictionaries. The appropriate name of each annotation set will be inferred from + the "features" filename, but this can be overwritten by using the "feature_groups" + parameter. + Default is None. + feature_groups : :obj:`list` of :obj:`str`, or None, optional + An optional list of names of annotation sets defined in "annotations_files". + This should only be used if "annotations_files" is used and the users wants to override + the automatically-extracted annotation set names. + Default is None. target : {'mni152_2mm', 'ale_2mm'}, optional Target template space for coordinates. Default is 'mni152_2mm'. - annotations_file : :obj:`str`, :obj:`dict`, or None, optional - Optional file(s) with Neurosynth's annotations. - If a string is provided, then labels from the file will be labeled with the feature group - "Neurosynth_TFIDF". - If a dictionary is provided, then keys must be feature groups and values must be filenames. - The standard Neurosynth annotations file is normally named "features.txt". - Default is None. Returns ------- :obj:`nimare.dataset.Dataset` Dataset object containing experiment information from text_file. + + Warning + ------- + Starting in version 0.0.10, this function operates on the new Neurosynth/NeuroQuery file + format. Old code using this function **will not work** with the new version. """ - dset_dict = convert_neurosynth_to_dict(text_file, annotations_file) + dset_dict = convert_neurosynth_to_dict( + coordinates_file, + metadata_file, + annotations_files, + feature_groups, + ) return Dataset(dset_dict, target=target) diff --git a/nimare/resources/database_file_manifest.json b/nimare/resources/database_file_manifest.json new file mode 100644 index 000000000..82f2ab536 --- /dev/null +++ b/nimare/resources/database_file_manifest.json @@ -0,0 +1,142 @@ +[ + { + "coordinates": "data-neurosynth_version-3_coordinates.tsv.gz", + "metadata": "data-neurosynth_version-3_metadata.tsv.gz", + "features": [ + { + "features": "data-neurosynth_version-3_vocab-terms_source-abstract_type-tfidf_features.npz", + "vocabulary": "data-neurosynth_version-3_vocab-terms_vocabulary.txt" + } + ] + }, + { + "coordinates": "data-neurosynth_version-4_coordinates.tsv.gz", + "metadata": "data-neurosynth_version-4_metadata.tsv.gz", + "features": [ + { + "features": "data-neurosynth_version-4_vocab-terms_source-abstract_type-tfidf_features.npz", + "vocabulary": "data-neurosynth_version-4_vocab-terms_vocabulary.txt" + } + ] + }, + { + "coordinates": "data-neurosynth_version-5_coordinates.tsv.gz", + "metadata": "data-neurosynth_version-5_metadata.tsv.gz", + "features": [ + { + "features": "data-neurosynth_version-5_vocab-terms_source-abstract_type-tfidf_features.npz", + "vocabulary": "data-neurosynth_version-5_vocab-terms_vocabulary.txt" + } + ] + }, + { + "coordinates": "data-neurosynth_version-6_coordinates.tsv.gz", + "metadata": "data-neurosynth_version-6_metadata.tsv.gz", + "features": [ + { + "features": "data-neurosynth_version-6_vocab-terms_source-abstract_type-tfidf_features.npz", + "vocabulary": "data-neurosynth_version-6_vocab-terms_vocabulary.txt" + }, + { + "features": "data-neurosynth_version-6_vocab-LDA50_source-abstract_type-weight_features.npz", + "vocabulary": "data-neurosynth_version-6_vocab-LDA50_vocabulary.txt", + "keys": "data-neurosynth_version-6_vocab-LDA50_keys.tsv", + "metadata": "data-neurosynth_version-6_vocab-LDA50_metadata.json" + }, + { + "features": "data-neurosynth_version-6_vocab-LDA100_source-abstract_type-weight_features.npz", + "vocabulary": "data-neurosynth_version-6_vocab-LDA100_vocabulary.txt", + "keys": "data-neurosynth_version-6_vocab-LDA100_keys.tsv", + "metadata": "data-neurosynth_version-6_vocab-LDA100_metadata.json" + }, + { + "features": "data-neurosynth_version-6_vocab-LDA200_source-abstract_type-weight_features.npz", + "vocabulary": "data-neurosynth_version-6_vocab-LDA200_vocabulary.txt", + "keys": "data-neurosynth_version-6_vocab-LDA200_keys.tsv", + "metadata": "data-neurosynth_version-6_vocab-LDA200_metadata.json" + }, + { + "features": "data-neurosynth_version-6_vocab-LDA400_source-abstract_type-weight_features.npz", + "vocabulary": "data-neurosynth_version-6_vocab-LDA400_vocabulary.txt", + "keys": "data-neurosynth_version-6_vocab-LDA400_keys.tsv", + "metadata": "data-neurosynth_version-6_vocab-LDA400_metadata.json" + } + ] + }, + { + "coordinates": "data-neurosynth_version-7_coordinates.tsv.gz", + "metadata": "data-neurosynth_version-7_metadata.tsv.gz", + "features": [ + { + "features": "data-neurosynth_version-7_vocab-terms_source-abstract_type-tfidf_features.npz", + "vocabulary": "data-neurosynth_version-7_vocab-terms_vocabulary.txt" + }, + { + "features": "data-neurosynth_version-7_vocab-LDA50_source-abstract_type-weight_features.npz", + "vocabulary": "data-neurosynth_version-7_vocab-LDA50_vocabulary.txt", + "keys": "data-neurosynth_version-7_vocab-LDA50_keys.tsv", + "metadata": "data-neurosynth_version-7_vocab-LDA50_metadata.json" + }, + { + "features": "data-neurosynth_version-7_vocab-LDA100_source-abstract_type-weight_features.npz", + "vocabulary": "data-neurosynth_version-7_vocab-LDA100_vocabulary.txt", + "keys": "data-neurosynth_version-7_vocab-LDA100_keys.tsv", + "metadata": "data-neurosynth_version-7_vocab-LDA100_metadata.json" + }, + { + "features": "data-neurosynth_version-7_vocab-LDA200_source-abstract_type-weight_features.npz", + "vocabulary": "data-neurosynth_version-7_vocab-LDA200_vocabulary.txt", + "keys": "data-neurosynth_version-7_vocab-LDA200_keys.tsv", + "metadata": "data-neurosynth_version-7_vocab-LDA200_metadata.json" + }, + { + "features": "data-neurosynth_version-7_vocab-LDA400_source-abstract_type-weight_features.npz", + "vocabulary": "data-neurosynth_version-7_vocab-LDA400_vocabulary.txt", + "keys": "data-neurosynth_version-7_vocab-LDA400_keys.tsv", + "metadata": "data-neurosynth_version-7_vocab-LDA400_metadata.json" + } + ] + }, + { + "coordinates": "data-neuroquery_version-1_coordinates.tsv.gz", + "metadata": "data-neuroquery_version-1_metadata.tsv.gz", + "features": [ + { + "features": "data-neuroquery_version-1_vocab-neuroquery7547_source-combined_type-tfidf_features.npz", + "vocabulary": "data-neuroquery_version-1_vocab-neuroquery7547_vocabulary.txt" + }, + { + "features": "data-neuroquery_version-1_vocab-neuroquery7547_source-abstract_type-count_features.npz", + "vocabulary": "data-neuroquery_version-1_vocab-neuroquery7547_vocabulary.txt" + }, + { + "features": "data-neuroquery_version-1_vocab-neuroquery7547_source-body_type-count_features.npz", + "vocabulary": "data-neuroquery_version-1_vocab-neuroquery7547_vocabulary.txt" + }, + { + "features": "data-neuroquery_version-1_vocab-neuroquery7547_source-keywords_type-count_features.npz", + "vocabulary": "data-neuroquery_version-1_vocab-neuroquery7547_vocabulary.txt" + }, + { + "features": "data-neuroquery_version-1_vocab-neuroquery7547_source-title_type-count_features.npz", + "vocabulary": "data-neuroquery_version-1_vocab-neuroquery7547_vocabulary.txt" + }, + { + "features": "data-neuroquery_version-1_vocab-neuroquery156521_source-abstract_type-count_features.npz", + "vocabulary": "data-neuroquery_version-1_vocab-neuroquery156521_vocabulary.txt" + }, + { + "features": "data-neuroquery_version-1_vocab-neuroquery156521_source-body_type-count_features.npz", + "vocabulary": "data-neuroquery_version-1_vocab-neuroquery156521_vocabulary.txt" + }, + { + "features": "data-neuroquery_version-1_vocab-neuroquery156521_source-keywords_type-count_features.npz", + "vocabulary": "data-neuroquery_version-1_vocab-neuroquery156521_vocabulary.txt" + }, + { + "features": "data-neuroquery_version-1_vocab-neuroquery156521_source-title_type-count_features.npz", + "vocabulary": "data-neuroquery_version-1_vocab-neuroquery156521_vocabulary.txt" + } + ] + } +] diff --git a/nimare/tests/data/data-neurosynth_version-7_coordinates.tsv.gz b/nimare/tests/data/data-neurosynth_version-7_coordinates.tsv.gz new file mode 100644 index 000000000..991389a01 Binary files /dev/null and b/nimare/tests/data/data-neurosynth_version-7_coordinates.tsv.gz differ diff --git a/nimare/tests/data/data-neurosynth_version-7_metadata.tsv.gz b/nimare/tests/data/data-neurosynth_version-7_metadata.tsv.gz new file mode 100644 index 000000000..fc7ab027e Binary files /dev/null and b/nimare/tests/data/data-neurosynth_version-7_metadata.tsv.gz differ diff --git a/nimare/tests/data/data-neurosynth_version-7_vocab-terms_source-abstract_type-tfidf_features.npz b/nimare/tests/data/data-neurosynth_version-7_vocab-terms_source-abstract_type-tfidf_features.npz new file mode 100644 index 000000000..c99e73a5f Binary files /dev/null and b/nimare/tests/data/data-neurosynth_version-7_vocab-terms_source-abstract_type-tfidf_features.npz differ diff --git a/nimare/tests/data/data-neurosynth_version-7_vocab-terms_vocabulary.txt b/nimare/tests/data/data-neurosynth_version-7_vocab-terms_vocabulary.txt new file mode 100644 index 000000000..0ef20080a --- /dev/null +++ b/nimare/tests/data/data-neurosynth_version-7_vocab-terms_vocabulary.txt @@ -0,0 +1,100 @@ +001 +01 +05 +10 +100 +11 +12 +12 healthy +13 +14 +14 healthy +15 +15 healthy +16 +16 healthy +17 +18 +18 healthy +19 +20 +20 healthy +200 +2014 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +3d +3t +40 +41 +42 +43 +44 +45 +46 +47 +48 +49 +50 +60 +70 +75 +80 +90 +aberrant +abilities +ability +able +abnormal +abnormalities +abnormality +absence +absent +abstract +abuse +acc +access +accompanied +accordance +according +accordingly +account +accounted +accounts +accumbens +accuracy +accurate +accurately +achieve +achieved +acoustic +acquired +acquisition +act +action +action observation +actions +activate +activates +activations +active +actively +activities +acts \ No newline at end of file diff --git a/nimare/tests/data/test_neurosynth_database.txt b/nimare/tests/data/test_neurosynth_database.txt deleted file mode 100644 index a8f73957a..000000000 --- a/nimare/tests/data/test_neurosynth_database.txt +++ /dev/null @@ -1 +0,0 @@ -id doi x y z space peak_id table_id table_num title authors year journal 9065511 38 -48 49 MNI 215927 11416 1 Environmental knowledge is subserved by separable dorsal/ventral neural areas. "Aguirre GK, D'Esposito M" 1997 The Journal of neuroscience : the official journal of the Society for Neuroscience 9065511 -4 -70 50 MNI 215928 11416 1 Environmental knowledge is subserved by separable dorsal/ventral neural areas. "Aguirre GK, D'Esposito M" 1997 The Journal of neuroscience : the official journal of the Society for Neuroscience 9065511 -34 -52 60 MNI 215929 11416 1 Environmental knowledge is subserved by separable dorsal/ventral neural areas. "Aguirre GK, D'Esposito M" 1997 The Journal of neuroscience : the official journal of the Society for Neuroscience 9065511 -23 15 67 MNI 215930 11416 1 Environmental knowledge is subserved by separable dorsal/ventral neural areas. "Aguirre GK, D'Esposito M" 1997 The Journal of neuroscience : the official journal of the Society for Neuroscience 9065511 -23 -20 68 MNI 215931 11416 1 Environmental knowledge is subserved by separable dorsal/ventral neural areas. "Aguirre GK, D'Esposito M" 1997 The Journal of neuroscience : the official journal of the Society for Neuroscience 9065511 42 -47 -19 MNI 215932 11416 1 Environmental knowledge is subserved by separable dorsal/ventral neural areas. "Aguirre GK, D'Esposito M" 1997 The Journal of neuroscience : the official journal of the Society for Neuroscience 9065511 25 -35 -8 MNI 215933 11416 1 Environmental knowledge is subserved by separable dorsal/ventral neural areas. "Aguirre GK, D'Esposito M" 1997 The Journal of neuroscience : the official journal of the Society for Neuroscience 9065511 -25 -45 -2 MNI 215934 11416 1 Environmental knowledge is subserved by separable dorsal/ventral neural areas. "Aguirre GK, D'Esposito M" 1997 The Journal of neuroscience : the official journal of the Society for Neuroscience 9065511 52 -62 14 MNI 215935 11416 1 Environmental knowledge is subserved by separable dorsal/ventral neural areas. "Aguirre GK, D'Esposito M" 1997 The Journal of neuroscience : the official journal of the Society for Neuroscience 9065511 21 -81 28 MNI 215936 11416 1 Environmental knowledge is subserved by separable dorsal/ventral neural areas. "Aguirre GK, D'Esposito M" 1997 The Journal of neuroscience : the official journal of the Society for Neuroscience 9084599 -28 42 20 MNI 445511 23709 1 Anatomy of motor learning. I. Frontal cortex and attention to action. "Jueptner M, Stephan KM, Frith CD, Brooks DJ, Frackowiak RS, Passingham RE" 1997 Journal of neurophysiology 9084599 38 24 28 MNI 445512 23709 1 Anatomy of motor learning. I. Frontal cortex and attention to action. "Jueptner M, Stephan KM, Frith CD, Brooks DJ, Frackowiak RS, Passingham RE" 1997 Journal of neurophysiology 9084599 2 20 28 MNI 445513 23709 1 Anatomy of motor learning. I. Frontal cortex and attention to action. "Jueptner M, Stephan KM, Frith CD, Brooks DJ, Frackowiak RS, Passingham RE" 1997 Journal of neurophysiology 9084599 -2 14 44 MNI 445514 23709 1 Anatomy of motor learning. I. Frontal cortex and attention to action. "Jueptner M, Stephan KM, Frith CD, Brooks DJ, Frackowiak RS, Passingham RE" 1997 Journal of neurophysiology 9084599 -18 -8 60 MNI 445515 23709 1 Anatomy of motor learning. I. Frontal cortex and attention to action. "Jueptner M, Stephan KM, Frith CD, Brooks DJ, Frackowiak RS, Passingham RE" 1997 Journal of neurophysiology 9084599 28 4 52 MNI 445516 23709 1 Anatomy of motor learning. I. Frontal cortex and attention to action. "Jueptner M, Stephan KM, Frith CD, Brooks DJ, Frackowiak RS, Passingham RE" 1997 Journal of neurophysiology 9084599 40 -54 44 MNI 445517 23709 1 Anatomy of motor learning. I. Frontal cortex and attention to action. "Jueptner M, Stephan KM, Frith CD, Brooks DJ, Frackowiak RS, Passingham RE" 1997 Journal of neurophysiology 9084599 -30 -16 20 MNI 445518 23709 1 Anatomy of motor learning. I. Frontal cortex and attention to action. "Jueptner M, Stephan KM, Frith CD, Brooks DJ, Frackowiak RS, Passingham RE" 1997 Journal of neurophysiology 9084599 30 26 12 MNI 445519 23709 1 Anatomy of motor learning. I. Frontal cortex and attention to action. "Jueptner M, Stephan KM, Frith CD, Brooks DJ, Frackowiak RS, Passingham RE" 1997 Journal of neurophysiology 9084599 -24 22 0 MNI 445520 23709 1 Anatomy of motor learning. I. Frontal cortex and attention to action. "Jueptner M, Stephan KM, Frith CD, Brooks DJ, Frackowiak RS, Passingham RE" 1997 Journal of neurophysiology 9084599 16 20 8 MNI 445521 23709 1 Anatomy of motor learning. I. Frontal cortex and attention to action. "Jueptner M, Stephan KM, Frith CD, Brooks DJ, Frackowiak RS, Passingham RE" 1997 Journal of neurophysiology 9084599 14 0 4 MNI 445522 23709 1 Anatomy of motor learning. I. Frontal cortex and attention to action. "Jueptner M, Stephan KM, Frith CD, Brooks DJ, Frackowiak RS, Passingham RE" 1997 Journal of neurophysiology 9084599 14 6 4 MNI 445523 23709 1 Anatomy of motor learning. I. Frontal cortex and attention to action. "Jueptner M, Stephan KM, Frith CD, Brooks DJ, Frackowiak RS, Passingham RE" 1997 Journal of neurophysiology 9084599 -8 -26 4 MNI 445524 23709 1 Anatomy of motor learning. I. Frontal cortex and attention to action. "Jueptner M, Stephan KM, Frith CD, Brooks DJ, Frackowiak RS, Passingham RE" 1997 Journal of neurophysiology 9084599 8 -20 12 MNI 445525 23709 1 Anatomy of motor learning. I. Frontal cortex and attention to action. "Jueptner M, Stephan KM, Frith CD, Brooks DJ, Frackowiak RS, Passingham RE" 1997 Journal of neurophysiology 9084599 -10 -2 8 MNI 445526 23709 1 Anatomy of motor learning. I. Frontal cortex and attention to action. "Jueptner M, Stephan KM, Frith CD, Brooks DJ, Frackowiak RS, Passingham RE" 1997 Journal of neurophysiology 9084599 4 -2 12 MNI 445527 23709 1 Anatomy of motor learning. I. Frontal cortex and attention to action. "Jueptner M, Stephan KM, Frith CD, Brooks DJ, Frackowiak RS, Passingham RE" 1997 Journal of neurophysiology 9084599 4 -62 -32 MNI 445528 23709 1 Anatomy of motor learning. I. Frontal cortex and attention to action. "Jueptner M, Stephan KM, Frith CD, Brooks DJ, Frackowiak RS, Passingham RE" 1997 Journal of neurophysiology 9084599 -26 -56 -32 MNI 445529 23709 1 Anatomy of motor learning. I. Frontal cortex and attention to action. "Jueptner M, Stephan KM, Frith CD, Brooks DJ, Frackowiak RS, Passingham RE" 1997 Journal of neurophysiology 9084599 -40 -48 -32 MNI 445530 23709 1 Anatomy of motor learning. I. Frontal cortex and attention to action. "Jueptner M, Stephan KM, Frith CD, Brooks DJ, Frackowiak RS, Passingham RE" 1997 Journal of neurophysiology 9084599 54 -48 -32 MNI 445531 23709 1 Anatomy of motor learning. I. Frontal cortex and attention to action. "Jueptner M, Stephan KM, Frith CD, Brooks DJ, Frackowiak RS, Passingham RE" 1997 Journal of neurophysiology 9084599 -30 22 20 MNI 445532 23710 2 Anatomy of motor learning. I. Frontal cortex and attention to action. "Jueptner M, Stephan KM, Frith CD, Brooks DJ, Frackowiak RS, Passingham RE" 1997 Journal of neurophysiology 9084599 18 10 28 MNI 445533 23710 2 Anatomy of motor learning. I. Frontal cortex and attention to action. "Jueptner M, Stephan KM, Frith CD, Brooks DJ, Frackowiak RS, Passingham RE" 1997 Journal of neurophysiology 9084599 -30 40 20 MNI 445534 23711 3 Anatomy of motor learning. I. Frontal cortex and attention to action. "Jueptner M, Stephan KM, Frith CD, Brooks DJ, Frackowiak RS, Passingham RE" 1997 Journal of neurophysiology 9084599 34 28 28 MNI 445535 23711 3 Anatomy of motor learning. I. Frontal cortex and attention to action. "Jueptner M, Stephan KM, Frith CD, Brooks DJ, Frackowiak RS, Passingham RE" 1997 Journal of neurophysiology 9084599 -2 16 44 MNI 445536 23711 3 Anatomy of motor learning. I. Frontal cortex and attention to action. "Jueptner M, Stephan KM, Frith CD, Brooks DJ, Frackowiak RS, Passingham RE" 1997 Journal of neurophysiology 9084599 18 34 -4 MNI 445537 23711 3 Anatomy of motor learning. I. Frontal cortex and attention to action. "Jueptner M, Stephan KM, Frith CD, Brooks DJ, Frackowiak RS, Passingham RE" 1997 Journal of neurophysiology 9084599 -22 -6 60 MNI 445538 23711 3 Anatomy of motor learning. I. Frontal cortex and attention to action. "Jueptner M, Stephan KM, Frith CD, Brooks DJ, Frackowiak RS, Passingham RE" 1997 Journal of neurophysiology 9084599 24 4 56 MNI 445539 23711 3 Anatomy of motor learning. I. Frontal cortex and attention to action. "Jueptner M, Stephan KM, Frith CD, Brooks DJ, Frackowiak RS, Passingham RE" 1997 Journal of neurophysiology 9084599 38 -50 36 MNI 445540 23711 3 Anatomy of motor learning. I. Frontal cortex and attention to action. "Jueptner M, Stephan KM, Frith CD, Brooks DJ, Frackowiak RS, Passingham RE" 1997 Journal of neurophysiology 9084599 30 20 12 MNI 445541 23711 3 Anatomy of motor learning. I. Frontal cortex and attention to action. "Jueptner M, Stephan KM, Frith CD, Brooks DJ, Frackowiak RS, Passingham RE" 1997 Journal of neurophysiology 9084599 -6 18 4 MNI 445542 23711 3 Anatomy of motor learning. I. Frontal cortex and attention to action. "Jueptner M, Stephan KM, Frith CD, Brooks DJ, Frackowiak RS, Passingham RE" 1997 Journal of neurophysiology 9084599 10 4 12 MNI 445543 23711 3 Anatomy of motor learning. I. Frontal cortex and attention to action. "Jueptner M, Stephan KM, Frith CD, Brooks DJ, Frackowiak RS, Passingham RE" 1997 Journal of neurophysiology 9084599 -4 -22 8 MNI 445544 23711 3 Anatomy of motor learning. I. Frontal cortex and attention to action. "Jueptner M, Stephan KM, Frith CD, Brooks DJ, Frackowiak RS, Passingham RE" 1997 Journal of neurophysiology 9084599 6 -20 12 MNI 445545 23711 3 Anatomy of motor learning. I. Frontal cortex and attention to action. "Jueptner M, Stephan KM, Frith CD, Brooks DJ, Frackowiak RS, Passingham RE" 1997 Journal of neurophysiology 9084599 6 -4 8 MNI 445546 23711 3 Anatomy of motor learning. I. Frontal cortex and attention to action. "Jueptner M, Stephan KM, Frith CD, Brooks DJ, Frackowiak RS, Passingham RE" 1997 Journal of neurophysiology 9084599 2 -62 -32 MNI 445547 23711 3 Anatomy of motor learning. I. Frontal cortex and attention to action. "Jueptner M, Stephan KM, Frith CD, Brooks DJ, Frackowiak RS, Passingham RE" 1997 Journal of neurophysiology 9084599 -28 44 8 MNI 445548 23712 4 Anatomy of motor learning. I. Frontal cortex and attention to action. "Jueptner M, Stephan KM, Frith CD, Brooks DJ, Frackowiak RS, Passingham RE" 1997 Journal of neurophysiology 9084599 32 30 28 MNI 445549 23712 4 Anatomy of motor learning. I. Frontal cortex and attention to action. "Jueptner M, Stephan KM, Frith CD, Brooks DJ, Frackowiak RS, Passingham RE" 1997 Journal of neurophysiology 9084599 -6 4 32 MNI 445550 23712 4 Anatomy of motor learning. I. Frontal cortex and attention to action. "Jueptner M, Stephan KM, Frith CD, Brooks DJ, Frackowiak RS, Passingham RE" 1997 Journal of neurophysiology 9084599 10 16 36 MNI 445551 23712 4 Anatomy of motor learning. I. Frontal cortex and attention to action. "Jueptner M, Stephan KM, Frith CD, Brooks DJ, Frackowiak RS, Passingham RE" 1997 Journal of neurophysiology 9084599 -28 -14 64 MNI 445552 23712 4 Anatomy of motor learning. I. Frontal cortex and attention to action. "Jueptner M, Stephan KM, Frith CD, Brooks DJ, Frackowiak RS, Passingham RE" 1997 Journal of neurophysiology 9084599 18 -4 60 MNI 445553 23712 4 Anatomy of motor learning. I. Frontal cortex and attention to action. "Jueptner M, Stephan KM, Frith CD, Brooks DJ, Frackowiak RS, Passingham RE" 1997 Journal of neurophysiology 9084599 -4 -4 52 MNI 445554 23712 4 Anatomy of motor learning. I. Frontal cortex and attention to action. "Jueptner M, Stephan KM, Frith CD, Brooks DJ, Frackowiak RS, Passingham RE" 1997 Journal of neurophysiology 9084599 4 -10 64 MNI 445555 23712 4 Anatomy of motor learning. I. Frontal cortex and attention to action. "Jueptner M, Stephan KM, Frith CD, Brooks DJ, Frackowiak RS, Passingham RE" 1997 Journal of neurophysiology 9084599 -32 -26 52 MNI 445556 23712 4 Anatomy of motor learning. I. Frontal cortex and attention to action. "Jueptner M, Stephan KM, Frith CD, Brooks DJ, Frackowiak RS, Passingham RE" 1997 Journal of neurophysiology 9084599 -34 -32 48 MNI 445557 23712 4 Anatomy of motor learning. I. Frontal cortex and attention to action. "Jueptner M, Stephan KM, Frith CD, Brooks DJ, Frackowiak RS, Passingham RE" 1997 Journal of neurophysiology 9084599 30 -58 40 MNI 445558 23712 4 Anatomy of motor learning. I. Frontal cortex and attention to action. "Jueptner M, Stephan KM, Frith CD, Brooks DJ, Frackowiak RS, Passingham RE" 1997 Journal of neurophysiology 9084599 28 14 12 MNI 445559 23712 4 Anatomy of motor learning. I. Frontal cortex and attention to action. "Jueptner M, Stephan KM, Frith CD, Brooks DJ, Frackowiak RS, Passingham RE" 1997 Journal of neurophysiology 9084599 12 10 16 MNI 445560 23712 4 Anatomy of motor learning. I. Frontal cortex and attention to action. "Jueptner M, Stephan KM, Frith CD, Brooks DJ, Frackowiak RS, Passingham RE" 1997 Journal of neurophysiology 9084599 -22 14 4 MNI 445561 23712 4 Anatomy of motor learning. I. Frontal cortex and attention to action. "Jueptner M, Stephan KM, Frith CD, Brooks DJ, Frackowiak RS, Passingham RE" 1997 Journal of neurophysiology 9084599 22 12 8 MNI 445562 23712 4 Anatomy of motor learning. I. Frontal cortex and attention to action. "Jueptner M, Stephan KM, Frith CD, Brooks DJ, Frackowiak RS, Passingham RE" 1997 Journal of neurophysiology 9084599 -16 -6 0 MNI 445563 23712 4 Anatomy of motor learning. I. Frontal cortex and attention to action. "Jueptner M, Stephan KM, Frith CD, Brooks DJ, Frackowiak RS, Passingham RE" 1997 Journal of neurophysiology 9084599 18 -2 0 MNI 445564 23712 4 Anatomy of motor learning. I. Frontal cortex and attention to action. "Jueptner M, Stephan KM, Frith CD, Brooks DJ, Frackowiak RS, Passingham RE" 1997 Journal of neurophysiology 9084599 -8 -24 0 MNI 445565 23712 4 Anatomy of motor learning. I. Frontal cortex and attention to action. "Jueptner M, Stephan KM, Frith CD, Brooks DJ, Frackowiak RS, Passingham RE" 1997 Journal of neurophysiology 9084599 6 -24 12 MNI 445566 23712 4 Anatomy of motor learning. I. Frontal cortex and attention to action. "Jueptner M, Stephan KM, Frith CD, Brooks DJ, Frackowiak RS, Passingham RE" 1997 Journal of neurophysiology 9084599 14 -58 -32 MNI 445567 23712 4 Anatomy of motor learning. I. Frontal cortex and attention to action. "Jueptner M, Stephan KM, Frith CD, Brooks DJ, Frackowiak RS, Passingham RE" 1997 Journal of neurophysiology 9084599 6 -60 -24 MNI 445568 23712 4 Anatomy of motor learning. I. Frontal cortex and attention to action. "Jueptner M, Stephan KM, Frith CD, Brooks DJ, Frackowiak RS, Passingham RE" 1997 Journal of neurophysiology 9084599 -28 -58 -32 MNI 445569 23712 4 Anatomy of motor learning. I. Frontal cortex and attention to action. "Jueptner M, Stephan KM, Frith CD, Brooks DJ, Frackowiak RS, Passingham RE" 1997 Journal of neurophysiology 9084599 24 -56 -28 MNI 445570 23712 4 Anatomy of motor learning. I. Frontal cortex and attention to action. "Jueptner M, Stephan KM, Frith CD, Brooks DJ, Frackowiak RS, Passingham RE" 1997 Journal of neurophysiology 9084599 -20 -38 28 MNI 445571 23713 5 Anatomy of motor learning. I. Frontal cortex and attention to action. "Jueptner M, Stephan KM, Frith CD, Brooks DJ, Frackowiak RS, Passingham RE" 1997 Journal of neurophysiology 9084599 -2 -16 64 MNI 445572 23713 5 Anatomy of motor learning. I. Frontal cortex and attention to action. "Jueptner M, Stephan KM, Frith CD, Brooks DJ, Frackowiak RS, Passingham RE" 1997 Journal of neurophysiology 9084599 -14 -20 56 MNI 445573 23713 5 Anatomy of motor learning. I. Frontal cortex and attention to action. "Jueptner M, Stephan KM, Frith CD, Brooks DJ, Frackowiak RS, Passingham RE" 1997 Journal of neurophysiology 9084599 -20 -32 48 MNI 445574 23713 5 Anatomy of motor learning. I. Frontal cortex and attention to action. "Jueptner M, Stephan KM, Frith CD, Brooks DJ, Frackowiak RS, Passingham RE" 1997 Journal of neurophysiology 9084599 -22 -34 44 MNI 445575 23713 5 Anatomy of motor learning. I. Frontal cortex and attention to action. "Jueptner M, Stephan KM, Frith CD, Brooks DJ, Frackowiak RS, Passingham RE" 1997 Journal of neurophysiology 9084599 -24 -10 0 MNI 445576 23713 5 Anatomy of motor learning. I. Frontal cortex and attention to action. "Jueptner M, Stephan KM, Frith CD, Brooks DJ, Frackowiak RS, Passingham RE" 1997 Journal of neurophysiology 9084599 2 -62 -20 MNI 445577 23713 5 Anatomy of motor learning. I. Frontal cortex and attention to action. "Jueptner M, Stephan KM, Frith CD, Brooks DJ, Frackowiak RS, Passingham RE" 1997 Journal of neurophysiology 9084599 10 -52 -24 MNI 445578 23713 5 Anatomy of motor learning. I. Frontal cortex and attention to action. "Jueptner M, Stephan KM, Frith CD, Brooks DJ, Frackowiak RS, Passingham RE" 1997 Journal of neurophysiology 9084599 -32 -54 -28 MNI 445579 23713 5 Anatomy of motor learning. I. Frontal cortex and attention to action. "Jueptner M, Stephan KM, Frith CD, Brooks DJ, Frackowiak RS, Passingham RE" 1997 Journal of neurophysiology 9084599 18 -54 -36 MNI 445580 23713 5 Anatomy of motor learning. I. Frontal cortex and attention to action. "Jueptner M, Stephan KM, Frith CD, Brooks DJ, Frackowiak RS, Passingham RE" 1997 Journal of neurophysiology 9084599 -8 -18 44 MNI 445581 23714 6 Anatomy of motor learning. I. Frontal cortex and attention to action. "Jueptner M, Stephan KM, Frith CD, Brooks DJ, Frackowiak RS, Passingham RE" 1997 Journal of neurophysiology 9084599 2 -2 32 MNI 445582 23714 6 Anatomy of motor learning. I. Frontal cortex and attention to action. "Jueptner M, Stephan KM, Frith CD, Brooks DJ, Frackowiak RS, Passingham RE" 1997 Journal of neurophysiology 9084599 -8 -18 60 MNI 445583 23714 6 Anatomy of motor learning. I. Frontal cortex and attention to action. "Jueptner M, Stephan KM, Frith CD, Brooks DJ, Frackowiak RS, Passingham RE" 1997 Journal of neurophysiology 9084599 -14 -20 56 MNI 445584 23714 6 Anatomy of motor learning. I. Frontal cortex and attention to action. "Jueptner M, Stephan KM, Frith CD, Brooks DJ, Frackowiak RS, Passingham RE" 1997 Journal of neurophysiology 9084599 24 -12 52 MNI 445585 23714 6 Anatomy of motor learning. I. Frontal cortex and attention to action. "Jueptner M, Stephan KM, Frith CD, Brooks DJ, Frackowiak RS, Passingham RE" 1997 Journal of neurophysiology 9084599 -34 -32 48 MNI 445586 23714 6 Anatomy of motor learning. I. Frontal cortex and attention to action. "Jueptner M, Stephan KM, Frith CD, Brooks DJ, Frackowiak RS, Passingham RE" 1997 Journal of neurophysiology 9084599 44 -22 40 MNI 445587 23714 6 Anatomy of motor learning. I. Frontal cortex and attention to action. "Jueptner M, Stephan KM, Frith CD, Brooks DJ, Frackowiak RS, Passingham RE" 1997 Journal of neurophysiology 9084599 -36 -30 44 MNI 445588 23714 6 Anatomy of motor learning. I. Frontal cortex and attention to action. "Jueptner M, Stephan KM, Frith CD, Brooks DJ, Frackowiak RS, Passingham RE" 1997 Journal of neurophysiology 9084599 18 -66 48 MNI 445589 23714 6 Anatomy of motor learning. I. Frontal cortex and attention to action. "Jueptner M, Stephan KM, Frith CD, Brooks DJ, Frackowiak RS, Passingham RE" 1997 Journal of neurophysiology 9084599 30 4 12 MNI 445590 23714 6 Anatomy of motor learning. I. Frontal cortex and attention to action. "Jueptner M, Stephan KM, Frith CD, Brooks DJ, Frackowiak RS, Passingham RE" 1997 Journal of neurophysiology 9084599 -24 -6 4 MNI 445591 23714 6 Anatomy of motor learning. I. Frontal cortex and attention to action. "Jueptner M, Stephan KM, Frith CD, Brooks DJ, Frackowiak RS, Passingham RE" 1997 Journal of neurophysiology 9084599 -20 -4 0 MNI 445592 23714 6 Anatomy of motor learning. I. Frontal cortex and attention to action. "Jueptner M, Stephan KM, Frith CD, Brooks DJ, Frackowiak RS, Passingham RE" 1997 Journal of neurophysiology 9084599 -30 -54 -36 MNI 445593 23714 6 Anatomy of motor learning. I. Frontal cortex and attention to action. "Jueptner M, Stephan KM, Frith CD, Brooks DJ, Frackowiak RS, Passingham RE" 1997 Journal of neurophysiology 9084599 20 -54 -36 MNI 445594 23714 6 Anatomy of motor learning. I. Frontal cortex and attention to action. "Jueptner M, Stephan KM, Frith CD, Brooks DJ, Frackowiak RS, Passingham RE" 1997 Journal of neurophysiology 9084599 -28 -56 -32 MNI 445595 23714 6 Anatomy of motor learning. I. Frontal cortex and attention to action. "Jueptner M, Stephan KM, Frith CD, Brooks DJ, Frackowiak RS, Passingham RE" 1997 Journal of neurophysiology 9084599 14 -48 -24 MNI 445596 23714 6 Anatomy of motor learning. I. Frontal cortex and attention to action. "Jueptner M, Stephan KM, Frith CD, Brooks DJ, Frackowiak RS, Passingham RE" 1997 Journal of neurophysiology 9084599 10 -50 -20 MNI 445597 23714 6 Anatomy of motor learning. I. Frontal cortex and attention to action. "Jueptner M, Stephan KM, Frith CD, Brooks DJ, Frackowiak RS, Passingham RE" 1997 Journal of neurophysiology 9114263 -38 -22 60 MNI 445598 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -38 -22 60 MNI 445599 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -38 -25 60 MNI 445600 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -38 -25 50 MNI 445601 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -38 -25 50 MNI 445602 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -37 -25 50 MNI 445603 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -37 -31 50 MNI 445604 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -37 -31 66 MNI 445605 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -37 -31 66 MNI 445606 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -27 -24 64 MNI 445607 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -30 -24 64 MNI 445608 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -30 -32 64 MNI 445609 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -30 -32 64 MNI 445610 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -30 -32 64 MNI 445611 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -35 -32 64 MNI 445612 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -35 -35 64 MNI 445613 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -35 -35 67 MNI 445614 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -35 -35 67 MNI 445615 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -3 -37 59 MNI 445616 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -6 -37 59 MNI 445617 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -6 -40 59 MNI 445618 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -6 -40 52 MNI 445619 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -6 -40 52 MNI 445620 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -5 -40 52 MNI 445621 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -5 -36 52 MNI 445622 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -5 -36 56 MNI 445623 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -5 -36 56 MNI 445624 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -39 -25 61 MNI 445625 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -52 -25 61 MNI 445626 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -52 -28 61 MNI 445627 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -52 -28 50 MNI 445628 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -52 -28 50 MNI 445629 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -38 -28 50 MNI 445630 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -38 -38 50 MNI 445631 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -38 -38 69 MNI 445632 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -38 -38 69 MNI 445633 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -29 -29 64 MNI 445634 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -36 -29 64 MNI 445635 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -36 -39 64 MNI 445636 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -36 -39 58 MNI 445637 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -36 -39 58 MNI 445638 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -32 -39 58 MNI 445639 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -32 -42 58 MNI 445640 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -32 -42 60 MNI 445641 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -32 -42 60 MNI 445642 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -8 -45 55 MNI 445643 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -12 -45 55 MNI 445644 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -12 -47 55 MNI 445645 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -12 -47 66 MNI 445646 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -12 -47 66 MNI 445647 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -5 -47 66 MNI 445648 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -5 -48 66 MNI 445649 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -5 -48 52 MNI 445650 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -5 -48 52 MNI 445651 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -33 -45 63 MNI 445652 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -40 -45 63 MNI 445653 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -40 -53 63 MNI 445654 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -40 -53 50 MNI 445655 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -40 -53 50 MNI 445656 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -38 -53 50 MNI 445657 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -38 -52 50 MNI 445658 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -38 -52 59 MNI 445659 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -38 -52 59 MNI 445660 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -35 -50 65 MNI 445661 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -34 -50 65 MNI 445662 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -34 -58 65 MNI 445663 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -34 -58 47 MNI 445664 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -34 -58 47 MNI 445665 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -23 -58 47 MNI 445666 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -23 -54 47 MNI 445667 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -23 -54 61 MNI 445668 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -23 -54 61 MNI 445669 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -4 -56 70 MNI 445670 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -27 -56 70 MNI 445671 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -27 -62 70 MNI 445672 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -27 -62 52 MNI 445673 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -27 -62 52 MNI 445674 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -18 -62 52 MNI 445675 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -18 -58 52 MNI 445676 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -18 -58 62 MNI 445677 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -18 -58 62 MNI 445678 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -35 -14 59 MNI 445679 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -35 -14 59 MNI 445680 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -28 -14 59 MNI 445681 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -28 -1 59 MNI 445682 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -28 -1 68 MNI 445683 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -28 -1 68 MNI 445684 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -33 -3 60 MNI 445685 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -33 -3 60 MNI 445686 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -33 -9 60 MNI 445687 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -33 -9 46 MNI 445688 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -33 -9 46 MNI 445689 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -37 -9 46 MNI 445690 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -37 -7 46 MNI 445691 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -37 -7 64 MNI 445692 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -37 -7 64 MNI 445693 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -22 -12 67 MNI 445694 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -38 -12 67 MNI 445695 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -38 -8 67 MNI 445696 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -38 -8 53 MNI 445697 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -38 -8 53 MNI 445698 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -21 -8 53 MNI 445699 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -21 -2 53 MNI 445700 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -21 -2 61 MNI 445701 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -21 -2 61 MNI 445702 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -32 -4 55 MNI 445703 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -44 -4 55 MNI 445704 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -44 -20 55 MNI 445705 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -44 -20 38 MNI 445706 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -44 -20 38 MNI 445707 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -25 -20 38 MNI 445708 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -25 -7 38 MNI 445709 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -25 -7 59 MNI 445710 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -25 -7 59 MNI 445711 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -26 -10 68 MNI 445712 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -39 -10 68 MNI 445713 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -39 -13 68 MNI 445714 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -39 -13 53 MNI 445715 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -39 -13 53 MNI 445716 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -38 -13 53 MNI 445717 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -38 -12 53 MNI 445718 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -38 -12 71 MNI 445719 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -38 -12 71 MNI 445720 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -32 -5 56 MNI 445721 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -35 -5 56 MNI 445722 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -35 -13 56 MNI 445723 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -35 -13 47 MNI 445724 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -35 -13 47 MNI 445725 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -28 -13 47 MNI 445726 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -28 -8 47 MNI 445727 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -28 -8 64 MNI 445728 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -28 -8 64 MNI 445729 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -39 -2 0 MNI 445730 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -34 -2 0 MNI 445731 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -34 -8 0 MNI 445732 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -34 -8 -3 MNI 445733 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -34 -8 -3 MNI 445734 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -43 -8 -3 MNI 445735 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -43 -12 -3 MNI 445736 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -43 -12 10 MNI 445737 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -43 -12 10 MNI 445738 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -41 -7 4 MNI 445739 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -34 -7 4 MNI 445740 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -34 -20 4 MNI 445741 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -34 -20 -2 MNI 445742 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -34 -20 -2 MNI 445743 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -40 -1 -1 MNI 445744 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -34 -1 -1 MNI 445745 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -34 -16 -1 MNI 445746 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -34 -16 -2 MNI 445747 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -34 -16 -2 MNI 445748 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -57 -16 -2 MNI 445749 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -57 -3 -2 MNI 445750 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -57 -3 7 MNI 445751 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -57 -3 7 MNI 445752 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -46 5 7 MNI 445753 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -52 5 7 MNI 445754 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -52 3 7 MNI 445755 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -52 3 -4 MNI 445756 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -52 3 -4 MNI 445757 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -61 3 -4 MNI 445758 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -61 4 -4 MNI 445759 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -61 4 13 MNI 445760 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -61 4 13 MNI 445761 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -44 3 12 MNI 445762 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -55 3 12 MNI 445763 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -55 1 12 MNI 445764 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -55 1 -2 MNI 445765 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -55 1 -2 MNI 445766 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -47 1 -2 MNI 445767 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -47 6 -2 MNI 445768 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -47 6 3 MNI 445769 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -47 6 3 MNI 445770 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -43 5 11 MNI 445771 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -52 5 11 MNI 445772 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -52 -3 11 MNI 445773 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -52 -3 -2 MNI 445774 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -52 -3 -2 MNI 445775 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -51 -3 -2 MNI 445776 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -51 4 -2 MNI 445777 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -51 4 3 MNI 445778 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -51 4 3 MNI 445779 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -50 -17 20 MNI 445780 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -63 -17 20 MNI 445781 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -63 -26 20 MNI 445782 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -63 -26 9 MNI 445783 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -63 -26 9 MNI 445784 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -67 -26 9 MNI 445785 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -67 -20 9 MNI 445786 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -67 -20 10 MNI 445787 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -67 -20 10 MNI 445788 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -43 -25 21 MNI 445789 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -44 -28 20 MNI 445790 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -57 -28 20 MNI 445791 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -57 -34 20 MNI 445792 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -57 -34 18 MNI 445793 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -57 -34 18 MNI 445794 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -39 -34 18 MNI 445795 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -39 -12 18 MNI 445796 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -39 -12 9 MNI 445797 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -39 -12 9 MNI 445798 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -49 -32 32 MNI 445799 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -59 -32 32 MNI 445800 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -59 -30 32 MNI 445801 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -59 -30 25 MNI 445802 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -59 -30 25 MNI 445803 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -62 -30 25 MNI 445804 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -62 -42 25 MNI 445805 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -62 -42 37 MNI 445806 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -62 -42 37 MNI 445807 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -48 -32 30 MNI 445808 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -61 -32 30 MNI 445809 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -61 -25 30 MNI 445810 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -61 -25 33 MNI 445811 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -61 -25 33 MNI 445812 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -44 -25 33 MNI 445813 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -44 -38 33 MNI 445814 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -44 -38 36 MNI 445815 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -44 -38 36 MNI 445816 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -49 -33 30 MNI 445817 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -47 -33 30 MNI 445818 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -47 -29 30 MNI 445819 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -47 -29 31 MNI 445820 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -47 -29 31 MNI 445821 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -63 -29 31 MNI 445822 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -63 -41 31 MNI 445823 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -63 -41 38 MNI 445824 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -63 -41 38 MNI 445825 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -5 -16 67 MNI 445826 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -2 -16 67 MNI 445827 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -2 -12 67 MNI 445828 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -2 -12 67 MNI 445829 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -2 -12 67 MNI 445830 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -1 -12 67 MNI 445831 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -1 -26 67 MNI 445832 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -1 -26 73 MNI 445833 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -1 -26 73 MNI 445834 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -3 -17 66 MNI 445835 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -7 -17 66 MNI 445836 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -7 -14 66 MNI 445837 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -7 -14 60 MNI 445838 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -7 -14 60 MNI 445839 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -11 -20 62 MNI 445840 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -15 -20 62 MNI 445841 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -15 -15 62 MNI 445842 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -15 -15 66 MNI 445843 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -15 -15 66 MNI 445844 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -5 -15 66 MNI 445845 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -5 -29 66 MNI 445846 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -5 -29 67 MNI 445847 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -5 -29 67 MNI 445848 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -6 6 57 MNI 445849 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -5 6 57 MNI 445850 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -5 14 57 MNI 445851 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -5 14 52 MNI 445852 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -5 14 52 MNI 445853 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -7 14 52 MNI 445854 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -7 4 52 MNI 445855 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -7 4 51 MNI 445856 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -7 4 51 MNI 445857 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -7 8 50 MNI 445858 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 0 8 50 MNI 445859 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 0 1 50 MNI 445860 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 0 1 47 MNI 445861 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 0 1 47 MNI 445862 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -1 1 47 MNI 445863 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -1 7 47 MNI 445864 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -1 7 51 MNI 445865 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -1 7 51 MNI 445866 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -8 11 40 MNI 445867 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -2 9 49 MNI 445868 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -2 9 49 MNI 445869 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -3 -11 50 MNI 445870 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -3 -11 50 MNI 445871 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -5 -11 50 MNI 445872 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -5 -14 50 MNI 445873 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -5 -14 50 MNI 445874 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -5 -14 50 MNI 445875 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -3 -29 57 MNI 445876 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -3 -29 57 MNI 445877 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -3 -30 57 MNI 445878 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -3 -30 51 MNI 445879 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -3 -30 51 MNI 445880 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -12 -30 51 MNI 445881 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -12 -21 51 MNI 445882 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -12 -21 60 MNI 445883 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -12 -21 60 MNI 445884 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -7 -16 51 MNI 445885 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -11 -16 51 MNI 445886 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -11 -10 51 MNI 445887 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -11 -10 50 MNI 445888 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -11 -10 50 MNI 445889 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -6 -21 49 MNI 445890 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -10 -21 49 MNI 445891 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -10 -23 49 MNI 445892 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -10 -23 52 MNI 445893 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -10 -23 52 MNI 445894 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -5 -23 52 MNI 445895 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -5 -21 52 MNI 445896 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -5 -21 56 MNI 445897 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -5 -21 56 MNI 445898 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -6 -3 42 MNI 445899 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -14 -3 42 MNI 445900 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -14 -8 42 MNI 445901 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -14 -8 47 MNI 445902 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -14 -8 47 MNI 445903 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -3 -8 47 MNI 445904 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -3 -10 47 MNI 445905 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -3 -10 50 MNI 445906 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -3 -10 50 MNI 445907 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -6 -21 51 MNI 445908 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -6 -21 51 MNI 445909 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -6 -14 51 MNI 445910 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -6 -14 54 MNI 445911 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -6 -14 54 MNI 445912 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -6 -14 54 MNI 445913 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -6 -23 54 MNI 445914 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -6 -23 46 MNI 445915 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -6 -23 46 MNI 445916 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -4 -31 46 MNI 445917 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -4 -31 46 MNI 445918 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -15 -31 46 MNI 445919 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -15 -30 46 MNI 445920 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -15 -30 40 MNI 445921 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -15 -30 40 MNI 445922 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -3 -32 47 MNI 445923 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -3 -32 47 MNI 445924 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -3 -32 47 MNI 445925 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -3 -36 47 MNI 445926 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -3 -36 40 MNI 445927 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -3 -36 40 MNI 445928 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -6 -34 36 MNI 445929 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -2 -34 36 MNI 445930 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -2 -30 36 MNI 445931 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -2 -30 46 MNI 445932 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -2 -30 46 MNI 445933 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -13 -30 46 MNI 445934 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -13 -30 46 MNI 445935 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -13 -30 38 MNI 445936 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9114263 -13 -30 38 MNI 445937 23715 1 Multiple nonprimary motor areas in the human cortex. "Fink GR, Frackowiak RS, Pietrzyk U, Passingham RE" 1997 Journal of neurophysiology 9185551 17 37 -20 TAL 215937 11417 3 A role for the right anterior temporal lobe in taste quality recognition. "Small DM, Jones-Gotman M, Zatorre RJ, Petrides M, Evans AC" 1997 The Journal of neuroscience : the official journal of the Society for Neuroscience 9185551 28 48 -9 TAL 215938 11417 3 A role for the right anterior temporal lobe in taste quality recognition. "Small DM, Jones-Gotman M, Zatorre RJ, Petrides M, Evans AC" 1997 The Journal of neuroscience : the official journal of the Society for Neuroscience 9185551 9 41 -27 TAL 215939 11417 3 A role for the right anterior temporal lobe in taste quality recognition. "Small DM, Jones-Gotman M, Zatorre RJ, Petrides M, Evans AC" 1997 The Journal of neuroscience : the official journal of the Society for Neuroscience 9185551 -21 36 -12 TAL 215940 11417 3 A role for the right anterior temporal lobe in taste quality recognition. "Small DM, Jones-Gotman M, Zatorre RJ, Petrides M, Evans AC" 1997 The Journal of neuroscience : the official journal of the Society for Neuroscience 9185551 -26 29 -18 TAL 215941 11417 3 A role for the right anterior temporal lobe in taste quality recognition. "Small DM, Jones-Gotman M, Zatorre RJ, Petrides M, Evans AC" 1997 The Journal of neuroscience : the official journal of the Society for Neuroscience 9185551 -15 53 -17 TAL 215942 11417 3 A role for the right anterior temporal lobe in taste quality recognition. "Small DM, Jones-Gotman M, Zatorre RJ, Petrides M, Evans AC" 1997 The Journal of neuroscience : the official journal of the Society for Neuroscience 9185551 -12 -73 3 TAL 215943 11417 3 A role for the right anterior temporal lobe in taste quality recognition. "Small DM, Jones-Gotman M, Zatorre RJ, Petrides M, Evans AC" 1997 The Journal of neuroscience : the official journal of the Society for Neuroscience 9185551 32 25 24 TAL 215944 11417 3 A role for the right anterior temporal lobe in taste quality recognition. "Small DM, Jones-Gotman M, Zatorre RJ, Petrides M, Evans AC" 1997 The Journal of neuroscience : the official journal of the Society for Neuroscience 9185551 -17 41 -17 TAL 215945 11417 3 A role for the right anterior temporal lobe in taste quality recognition. "Small DM, Jones-Gotman M, Zatorre RJ, Petrides M, Evans AC" 1997 The Journal of neuroscience : the official journal of the Society for Neuroscience 9185551 -25 24 -23 TAL 215946 11417 3 A role for the right anterior temporal lobe in taste quality recognition. "Small DM, Jones-Gotman M, Zatorre RJ, Petrides M, Evans AC" 1997 The Journal of neuroscience : the official journal of the Society for Neuroscience 9185551 17 1 -18 TAL 215947 11417 3 A role for the right anterior temporal lobe in taste quality recognition. "Small DM, Jones-Gotman M, Zatorre RJ, Petrides M, Evans AC" 1997 The Journal of neuroscience : the official journal of the Society for Neuroscience 9256495 6 -69 -2 TAL 400418 21144 1 Pattern of neuronal activity associated with conscious and unconscious processing of visual signals. "Sahraie A, Weiskrantz L, Barbur JL, Simmons A, Williams SC, Brammer MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9256495 46 6 -13 TAL 400419 21144 1 Pattern of neuronal activity associated with conscious and unconscious processing of visual signals. "Sahraie A, Weiskrantz L, Barbur JL, Simmons A, Williams SC, Brammer MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9256495 40 31 20 TAL 400420 21144 1 Pattern of neuronal activity associated with conscious and unconscious processing of visual signals. "Sahraie A, Weiskrantz L, Barbur JL, Simmons A, Williams SC, Brammer MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9256495 3 -69 31 TAL 400421 21144 1 Pattern of neuronal activity associated with conscious and unconscious processing of visual signals. "Sahraie A, Weiskrantz L, Barbur JL, Simmons A, Williams SC, Brammer MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9256495 -9 -42 -2 TAL 400422 21144 1 Pattern of neuronal activity associated with conscious and unconscious processing of visual signals. "Sahraie A, Weiskrantz L, Barbur JL, Simmons A, Williams SC, Brammer MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9256495 29 8 -18 TAL 400423 21144 1 Pattern of neuronal activity associated with conscious and unconscious processing of visual signals. "Sahraie A, Weiskrantz L, Barbur JL, Simmons A, Williams SC, Brammer MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9256495 -49 3 -13 TAL 400424 21144 1 Pattern of neuronal activity associated with conscious and unconscious processing of visual signals. "Sahraie A, Weiskrantz L, Barbur JL, Simmons A, Williams SC, Brammer MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9256495 17 -86 15 TAL 400425 21144 1 Pattern of neuronal activity associated with conscious and unconscious processing of visual signals. "Sahraie A, Weiskrantz L, Barbur JL, Simmons A, Williams SC, Brammer MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9256495 -23 -75 -2 TAL 400426 21144 1 Pattern of neuronal activity associated with conscious and unconscious processing of visual signals. "Sahraie A, Weiskrantz L, Barbur JL, Simmons A, Williams SC, Brammer MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9256495 -20 -61 15 TAL 400427 21144 1 Pattern of neuronal activity associated with conscious and unconscious processing of visual signals. "Sahraie A, Weiskrantz L, Barbur JL, Simmons A, Williams SC, Brammer MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9256495 55 6 26 TAL 400428 21144 1 Pattern of neuronal activity associated with conscious and unconscious processing of visual signals. "Sahraie A, Weiskrantz L, Barbur JL, Simmons A, Williams SC, Brammer MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9256495 55 -33 -7 TAL 400429 21144 1 Pattern of neuronal activity associated with conscious and unconscious processing of visual signals. "Sahraie A, Weiskrantz L, Barbur JL, Simmons A, Williams SC, Brammer MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9256495 -35 36 -2 TAL 400430 21144 1 Pattern of neuronal activity associated with conscious and unconscious processing of visual signals. "Sahraie A, Weiskrantz L, Barbur JL, Simmons A, Williams SC, Brammer MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9256495 -40 -69 15 TAL 400431 21144 1 Pattern of neuronal activity associated with conscious and unconscious processing of visual signals. "Sahraie A, Weiskrantz L, Barbur JL, Simmons A, Williams SC, Brammer MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9256495 14 19 15 TAL 400432 21144 1 Pattern of neuronal activity associated with conscious and unconscious processing of visual signals. "Sahraie A, Weiskrantz L, Barbur JL, Simmons A, Williams SC, Brammer MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9256495 -9 -83 26 TAL 400433 21144 1 Pattern of neuronal activity associated with conscious and unconscious processing of visual signals. "Sahraie A, Weiskrantz L, Barbur JL, Simmons A, Williams SC, Brammer MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9256495 49 14 -7 TAL 400434 21144 1 Pattern of neuronal activity associated with conscious and unconscious processing of visual signals. "Sahraie A, Weiskrantz L, Barbur JL, Simmons A, Williams SC, Brammer MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9256495 -9 -42 -7 TAL 400435 21144 1 Pattern of neuronal activity associated with conscious and unconscious processing of visual signals. "Sahraie A, Weiskrantz L, Barbur JL, Simmons A, Williams SC, Brammer MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9256495 -6 -50 -7 TAL 400436 21144 1 Pattern of neuronal activity associated with conscious and unconscious processing of visual signals. "Sahraie A, Weiskrantz L, Barbur JL, Simmons A, Williams SC, Brammer MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9256495 46 11 26 TAL 400437 21144 1 Pattern of neuronal activity associated with conscious and unconscious processing of visual signals. "Sahraie A, Weiskrantz L, Barbur JL, Simmons A, Williams SC, Brammer MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9256495 -20 -31 -18 TAL 400438 21144 1 Pattern of neuronal activity associated with conscious and unconscious processing of visual signals. "Sahraie A, Weiskrantz L, Barbur JL, Simmons A, Williams SC, Brammer MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9256495 58 19 4 TAL 400439 21144 1 Pattern of neuronal activity associated with conscious and unconscious processing of visual signals. "Sahraie A, Weiskrantz L, Barbur JL, Simmons A, Williams SC, Brammer MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9256495 -14 -8 -18 TAL 400440 21144 1 Pattern of neuronal activity associated with conscious and unconscious processing of visual signals. "Sahraie A, Weiskrantz L, Barbur JL, Simmons A, Williams SC, Brammer MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9256495 -46 -61 -7 TAL 400441 21144 1 Pattern of neuronal activity associated with conscious and unconscious processing of visual signals. "Sahraie A, Weiskrantz L, Barbur JL, Simmons A, Williams SC, Brammer MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9256495 -9 -72 37 TAL 400442 21144 1 Pattern of neuronal activity associated with conscious and unconscious processing of visual signals. "Sahraie A, Weiskrantz L, Barbur JL, Simmons A, Williams SC, Brammer MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9256495 -3 -58 9 TAL 400443 21144 1 Pattern of neuronal activity associated with conscious and unconscious processing of visual signals. "Sahraie A, Weiskrantz L, Barbur JL, Simmons A, Williams SC, Brammer MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9256495 9 -14 -18 TAL 400444 21144 1 Pattern of neuronal activity associated with conscious and unconscious processing of visual signals. "Sahraie A, Weiskrantz L, Barbur JL, Simmons A, Williams SC, Brammer MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9256495 20 -19 -13 TAL 400445 21144 1 Pattern of neuronal activity associated with conscious and unconscious processing of visual signals. "Sahraie A, Weiskrantz L, Barbur JL, Simmons A, Williams SC, Brammer MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9256495 -35 -22 -2 TAL 400446 21144 1 Pattern of neuronal activity associated with conscious and unconscious processing of visual signals. "Sahraie A, Weiskrantz L, Barbur JL, Simmons A, Williams SC, Brammer MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9256495 3 -14 -2 TAL 400447 21144 1 Pattern of neuronal activity associated with conscious and unconscious processing of visual signals. "Sahraie A, Weiskrantz L, Barbur JL, Simmons A, Williams SC, Brammer MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9256495 3 -31 -7 TAL 400448 21144 1 Pattern of neuronal activity associated with conscious and unconscious processing of visual signals. "Sahraie A, Weiskrantz L, Barbur JL, Simmons A, Williams SC, Brammer MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9256495 -32 6 -18 TAL 400449 21144 1 Pattern of neuronal activity associated with conscious and unconscious processing of visual signals. "Sahraie A, Weiskrantz L, Barbur JL, Simmons A, Williams SC, Brammer MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9256495 55 28 9 TAL 400450 21144 1 Pattern of neuronal activity associated with conscious and unconscious processing of visual signals. "Sahraie A, Weiskrantz L, Barbur JL, Simmons A, Williams SC, Brammer MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9256495 17 11 -2 TAL 400451 21144 1 Pattern of neuronal activity associated with conscious and unconscious processing of visual signals. "Sahraie A, Weiskrantz L, Barbur JL, Simmons A, Williams SC, Brammer MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9256495 -23 8 -7 TAL 400452 21144 1 Pattern of neuronal activity associated with conscious and unconscious processing of visual signals. "Sahraie A, Weiskrantz L, Barbur JL, Simmons A, Williams SC, Brammer MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9256495 -14 -44 31 TAL 400453 21144 1 Pattern of neuronal activity associated with conscious and unconscious processing of visual signals. "Sahraie A, Weiskrantz L, Barbur JL, Simmons A, Williams SC, Brammer MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9256495 23 3 -13 TAL 400454 21144 1 Pattern of neuronal activity associated with conscious and unconscious processing of visual signals. "Sahraie A, Weiskrantz L, Barbur JL, Simmons A, Williams SC, Brammer MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9256495 0 -36 -13 TAL 400455 21144 1 Pattern of neuronal activity associated with conscious and unconscious processing of visual signals. "Sahraie A, Weiskrantz L, Barbur JL, Simmons A, Williams SC, Brammer MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9256495 0 36 -2 TAL 400456 21144 1 Pattern of neuronal activity associated with conscious and unconscious processing of visual signals. "Sahraie A, Weiskrantz L, Barbur JL, Simmons A, Williams SC, Brammer MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9256495 9 6 15 TAL 400457 21144 1 Pattern of neuronal activity associated with conscious and unconscious processing of visual signals. "Sahraie A, Weiskrantz L, Barbur JL, Simmons A, Williams SC, Brammer MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9256495 46 -25 -2 TAL 400458 21144 1 Pattern of neuronal activity associated with conscious and unconscious processing of visual signals. "Sahraie A, Weiskrantz L, Barbur JL, Simmons A, Williams SC, Brammer MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9256495 23 -36 31 TAL 400459 21144 1 Pattern of neuronal activity associated with conscious and unconscious processing of visual signals. "Sahraie A, Weiskrantz L, Barbur JL, Simmons A, Williams SC, Brammer MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9256495 -12 -56 20 TAL 400460 21144 1 Pattern of neuronal activity associated with conscious and unconscious processing of visual signals. "Sahraie A, Weiskrantz L, Barbur JL, Simmons A, Williams SC, Brammer MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9256495 -43 -6 20 TAL 400461 21144 1 Pattern of neuronal activity associated with conscious and unconscious processing of visual signals. "Sahraie A, Weiskrantz L, Barbur JL, Simmons A, Williams SC, Brammer MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9256495 -9 6 26 TAL 400462 21144 1 Pattern of neuronal activity associated with conscious and unconscious processing of visual signals. "Sahraie A, Weiskrantz L, Barbur JL, Simmons A, Williams SC, Brammer MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9256495 29 44 -13 TAL 400463 21144 1 Pattern of neuronal activity associated with conscious and unconscious processing of visual signals. "Sahraie A, Weiskrantz L, Barbur JL, Simmons A, Williams SC, Brammer MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9256495 -9 17 4 TAL 400464 21144 1 Pattern of neuronal activity associated with conscious and unconscious processing of visual signals. "Sahraie A, Weiskrantz L, Barbur JL, Simmons A, Williams SC, Brammer MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9256495 -38 -39 4 TAL 400465 21144 1 Pattern of neuronal activity associated with conscious and unconscious processing of visual signals. "Sahraie A, Weiskrantz L, Barbur JL, Simmons A, Williams SC, Brammer MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9256495 52 -31 9 TAL 400466 21144 1 Pattern of neuronal activity associated with conscious and unconscious processing of visual signals. "Sahraie A, Weiskrantz L, Barbur JL, Simmons A, Williams SC, Brammer MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9256495 23 33 -7 TAL 400467 21144 1 Pattern of neuronal activity associated with conscious and unconscious processing of visual signals. "Sahraie A, Weiskrantz L, Barbur JL, Simmons A, Williams SC, Brammer MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9256495 -29 -8 4 TAL 400468 21144 1 Pattern of neuronal activity associated with conscious and unconscious processing of visual signals. "Sahraie A, Weiskrantz L, Barbur JL, Simmons A, Williams SC, Brammer MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9256495 -12 3 20 TAL 400469 21144 1 Pattern of neuronal activity associated with conscious and unconscious processing of visual signals. "Sahraie A, Weiskrantz L, Barbur JL, Simmons A, Williams SC, Brammer MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9256495 -14 -33 20 TAL 400470 21144 1 Pattern of neuronal activity associated with conscious and unconscious processing of visual signals. "Sahraie A, Weiskrantz L, Barbur JL, Simmons A, Williams SC, Brammer MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9256495 58 0 -13 TAL 400471 21144 1 Pattern of neuronal activity associated with conscious and unconscious processing of visual signals. "Sahraie A, Weiskrantz L, Barbur JL, Simmons A, Williams SC, Brammer MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9256495 -38 -61 31 TAL 400472 21144 1 Pattern of neuronal activity associated with conscious and unconscious processing of visual signals. "Sahraie A, Weiskrantz L, Barbur JL, Simmons A, Williams SC, Brammer MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9256495 58 -3 4 TAL 400473 21144 1 Pattern of neuronal activity associated with conscious and unconscious processing of visual signals. "Sahraie A, Weiskrantz L, Barbur JL, Simmons A, Williams SC, Brammer MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9256495 14 25 26 TAL 400474 21144 1 Pattern of neuronal activity associated with conscious and unconscious processing of visual signals. "Sahraie A, Weiskrantz L, Barbur JL, Simmons A, Williams SC, Brammer MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9256495 -3 -6 15 TAL 400475 21144 1 Pattern of neuronal activity associated with conscious and unconscious processing of visual signals. "Sahraie A, Weiskrantz L, Barbur JL, Simmons A, Williams SC, Brammer MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9256495 -43 -69 9 TAL 400476 21144 1 Pattern of neuronal activity associated with conscious and unconscious processing of visual signals. "Sahraie A, Weiskrantz L, Barbur JL, Simmons A, Williams SC, Brammer MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9256495 35 -17 -18 TAL 400477 21144 1 Pattern of neuronal activity associated with conscious and unconscious processing of visual signals. "Sahraie A, Weiskrantz L, Barbur JL, Simmons A, Williams SC, Brammer MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9256495 58 0 31 TAL 400478 21144 1 Pattern of neuronal activity associated with conscious and unconscious processing of visual signals. "Sahraie A, Weiskrantz L, Barbur JL, Simmons A, Williams SC, Brammer MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9256495 35 31 9 TAL 400479 21144 1 Pattern of neuronal activity associated with conscious and unconscious processing of visual signals. "Sahraie A, Weiskrantz L, Barbur JL, Simmons A, Williams SC, Brammer MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9256495 -26 -56 4 TAL 400480 21144 1 Pattern of neuronal activity associated with conscious and unconscious processing of visual signals. "Sahraie A, Weiskrantz L, Barbur JL, Simmons A, Williams SC, Brammer MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9256495 9 -47 26 TAL 400481 21144 1 Pattern of neuronal activity associated with conscious and unconscious processing of visual signals. "Sahraie A, Weiskrantz L, Barbur JL, Simmons A, Williams SC, Brammer MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9256495 29 31 26 TAL 400482 21144 1 Pattern of neuronal activity associated with conscious and unconscious processing of visual signals. "Sahraie A, Weiskrantz L, Barbur JL, Simmons A, Williams SC, Brammer MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9256495 -6 -89 4 TAL 400483 21144 1 Pattern of neuronal activity associated with conscious and unconscious processing of visual signals. "Sahraie A, Weiskrantz L, Barbur JL, Simmons A, Williams SC, Brammer MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9256495 17 -11 26 TAL 400484 21144 1 Pattern of neuronal activity associated with conscious and unconscious processing of visual signals. "Sahraie A, Weiskrantz L, Barbur JL, Simmons A, Williams SC, Brammer MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9256495 38 36 37 TAL 400485 21144 1 Pattern of neuronal activity associated with conscious and unconscious processing of visual signals. "Sahraie A, Weiskrantz L, Barbur JL, Simmons A, Williams SC, Brammer MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9256495 38 -39 -7 TAL 400486 21144 1 Pattern of neuronal activity associated with conscious and unconscious processing of visual signals. "Sahraie A, Weiskrantz L, Barbur JL, Simmons A, Williams SC, Brammer MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9256495 55 -44 -7 TAL 400487 21144 1 Pattern of neuronal activity associated with conscious and unconscious processing of visual signals. "Sahraie A, Weiskrantz L, Barbur JL, Simmons A, Williams SC, Brammer MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9256495 52 -56 4 TAL 400488 21144 1 Pattern of neuronal activity associated with conscious and unconscious processing of visual signals. "Sahraie A, Weiskrantz L, Barbur JL, Simmons A, Williams SC, Brammer MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9256495 14 -56 -7 TAL 400489 21144 1 Pattern of neuronal activity associated with conscious and unconscious processing of visual signals. "Sahraie A, Weiskrantz L, Barbur JL, Simmons A, Williams SC, Brammer MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9256495 -26 19 20 TAL 400490 21144 1 Pattern of neuronal activity associated with conscious and unconscious processing of visual signals. "Sahraie A, Weiskrantz L, Barbur JL, Simmons A, Williams SC, Brammer MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9256495 26 28 -7 TAL 400491 21144 1 Pattern of neuronal activity associated with conscious and unconscious processing of visual signals. "Sahraie A, Weiskrantz L, Barbur JL, Simmons A, Williams SC, Brammer MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9256495 -29 47 15 TAL 400492 21144 1 Pattern of neuronal activity associated with conscious and unconscious processing of visual signals. "Sahraie A, Weiskrantz L, Barbur JL, Simmons A, Williams SC, Brammer MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9256495 12 11 15 TAL 400493 21144 1 Pattern of neuronal activity associated with conscious and unconscious processing of visual signals. "Sahraie A, Weiskrantz L, Barbur JL, Simmons A, Williams SC, Brammer MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9256495 17 36 -2 TAL 400494 21144 1 Pattern of neuronal activity associated with conscious and unconscious processing of visual signals. "Sahraie A, Weiskrantz L, Barbur JL, Simmons A, Williams SC, Brammer MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9256495 17 22 -2 TAL 400495 21144 1 Pattern of neuronal activity associated with conscious and unconscious processing of visual signals. "Sahraie A, Weiskrantz L, Barbur JL, Simmons A, Williams SC, Brammer MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9256495 -20 -64 9 TAL 400496 21144 1 Pattern of neuronal activity associated with conscious and unconscious processing of visual signals. "Sahraie A, Weiskrantz L, Barbur JL, Simmons A, Williams SC, Brammer MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9256495 20 -6 4 TAL 400497 21144 1 Pattern of neuronal activity associated with conscious and unconscious processing of visual signals. "Sahraie A, Weiskrantz L, Barbur JL, Simmons A, Williams SC, Brammer MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9256495 -20 -25 31 TAL 400498 21144 1 Pattern of neuronal activity associated with conscious and unconscious processing of visual signals. "Sahraie A, Weiskrantz L, Barbur JL, Simmons A, Williams SC, Brammer MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9256495 9 17 -13 TAL 400499 21144 1 Pattern of neuronal activity associated with conscious and unconscious processing of visual signals. "Sahraie A, Weiskrantz L, Barbur JL, Simmons A, Williams SC, Brammer MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9256495 43 -47 15 TAL 400500 21144 1 Pattern of neuronal activity associated with conscious and unconscious processing of visual signals. "Sahraie A, Weiskrantz L, Barbur JL, Simmons A, Williams SC, Brammer MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9256495 12 42 37 TAL 400501 21144 1 Pattern of neuronal activity associated with conscious and unconscious processing of visual signals. "Sahraie A, Weiskrantz L, Barbur JL, Simmons A, Williams SC, Brammer MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9391021 1 2 3 MNI 215948 11418 1 Role of the supplementary motor area and the right premotor cortex in the coordination of bimanual finger movements. "Sadato N, Yonekura Y, Waki A, Yamada H, Ishii Y" 1997 The Journal of neuroscience : the official journal of the Society for Neuroscience 9391021 1 2 3 MNI 215949 11418 1 Role of the supplementary motor area and the right premotor cortex in the coordination of bimanual finger movements. "Sadato N, Yonekura Y, Waki A, Yamada H, Ishii Y" 1997 The Journal of neuroscience : the official journal of the Society for Neuroscience 9391021 1 2 3 MNI 215950 11418 1 Role of the supplementary motor area and the right premotor cortex in the coordination of bimanual finger movements. "Sadato N, Yonekura Y, Waki A, Yamada H, Ishii Y" 1997 The Journal of neuroscience : the official journal of the Society for Neuroscience 9391021 4 3 2 MNI 215951 11418 1 Role of the supplementary motor area and the right premotor cortex in the coordination of bimanual finger movements. "Sadato N, Yonekura Y, Waki A, Yamada H, Ishii Y" 1997 The Journal of neuroscience : the official journal of the Society for Neuroscience 9391021 -34 -20 56 MNI 215952 11419 3 Role of the supplementary motor area and the right premotor cortex in the coordination of bimanual finger movements. "Sadato N, Yonekura Y, Waki A, Yamada H, Ishii Y" 1997 The Journal of neuroscience : the official journal of the Society for Neuroscience 9391021 34 -20 56 MNI 215953 11419 3 Role of the supplementary motor area and the right premotor cortex in the coordination of bimanual finger movements. "Sadato N, Yonekura Y, Waki A, Yamada H, Ishii Y" 1997 The Journal of neuroscience : the official journal of the Society for Neuroscience 9391021 -32 -34 44 MNI 215954 11419 3 Role of the supplementary motor area and the right premotor cortex in the coordination of bimanual finger movements. "Sadato N, Yonekura Y, Waki A, Yamada H, Ishii Y" 1997 The Journal of neuroscience : the official journal of the Society for Neuroscience 9391021 32 -34 44 MNI 215955 11419 3 Role of the supplementary motor area and the right premotor cortex in the coordination of bimanual finger movements. "Sadato N, Yonekura Y, Waki A, Yamada H, Ishii Y" 1997 The Journal of neuroscience : the official journal of the Society for Neuroscience 9391021 -20 -56 -28 MNI 215956 11419 3 Role of the supplementary motor area and the right premotor cortex in the coordination of bimanual finger movements. "Sadato N, Yonekura Y, Waki A, Yamada H, Ishii Y" 1997 The Journal of neuroscience : the official journal of the Society for Neuroscience 9391021 26 -54 -28 MNI 215957 11419 3 Role of the supplementary motor area and the right premotor cortex in the coordination of bimanual finger movements. "Sadato N, Yonekura Y, Waki A, Yamada H, Ishii Y" 1997 The Journal of neuroscience : the official journal of the Society for Neuroscience 9391021 -22 -8 4 MNI 215958 11419 3 Role of the supplementary motor area and the right premotor cortex in the coordination of bimanual finger movements. "Sadato N, Yonekura Y, Waki A, Yamada H, Ishii Y" 1997 The Journal of neuroscience : the official journal of the Society for Neuroscience 9391021 22 -8 4 MNI 215959 11419 3 Role of the supplementary motor area and the right premotor cortex in the coordination of bimanual finger movements. "Sadato N, Yonekura Y, Waki A, Yamada H, Ishii Y" 1997 The Journal of neuroscience : the official journal of the Society for Neuroscience 9391021 -8 -30 8 MNI 215960 11419 3 Role of the supplementary motor area and the right premotor cortex in the coordination of bimanual finger movements. "Sadato N, Yonekura Y, Waki A, Yamada H, Ishii Y" 1997 The Journal of neuroscience : the official journal of the Society for Neuroscience 9391021 14 -24 8 MNI 215961 11419 3 Role of the supplementary motor area and the right premotor cortex in the coordination of bimanual finger movements. "Sadato N, Yonekura Y, Waki A, Yamada H, Ishii Y" 1997 The Journal of neuroscience : the official journal of the Society for Neuroscience 9391021 -32 -40 56 MNI 215962 11419 3 Role of the supplementary motor area and the right premotor cortex in the coordination of bimanual finger movements. "Sadato N, Yonekura Y, Waki A, Yamada H, Ishii Y" 1997 The Journal of neuroscience : the official journal of the Society for Neuroscience 9391021 32 -60 52 MNI 215963 11419 3 Role of the supplementary motor area and the right premotor cortex in the coordination of bimanual finger movements. "Sadato N, Yonekura Y, Waki A, Yamada H, Ishii Y" 1997 The Journal of neuroscience : the official journal of the Society for Neuroscience 9391021 6 -4 52 MNI 215964 11419 3 Role of the supplementary motor area and the right premotor cortex in the coordination of bimanual finger movements. "Sadato N, Yonekura Y, Waki A, Yamada H, Ishii Y" 1997 The Journal of neuroscience : the official journal of the Society for Neuroscience 9391021 -36 -30 56 MNI 215965 11420 4 Role of the supplementary motor area and the right premotor cortex in the coordination of bimanual finger movements. "Sadato N, Yonekura Y, Waki A, Yamada H, Ishii Y" 1997 The Journal of neuroscience : the official journal of the Society for Neuroscience 9391021 32 -18 56 MNI 215966 11420 4 Role of the supplementary motor area and the right premotor cortex in the coordination of bimanual finger movements. "Sadato N, Yonekura Y, Waki A, Yamada H, Ishii Y" 1997 The Journal of neuroscience : the official journal of the Society for Neuroscience 9391021 -32 -34 44 MNI 215967 11420 4 Role of the supplementary motor area and the right premotor cortex in the coordination of bimanual finger movements. "Sadato N, Yonekura Y, Waki A, Yamada H, Ishii Y" 1997 The Journal of neuroscience : the official journal of the Society for Neuroscience 9391021 32 -34 44 MNI 215968 11420 4 Role of the supplementary motor area and the right premotor cortex in the coordination of bimanual finger movements. "Sadato N, Yonekura Y, Waki A, Yamada H, Ishii Y" 1997 The Journal of neuroscience : the official journal of the Society for Neuroscience 9391021 -20 -56 -28 MNI 215969 11420 4 Role of the supplementary motor area and the right premotor cortex in the coordination of bimanual finger movements. "Sadato N, Yonekura Y, Waki A, Yamada H, Ishii Y" 1997 The Journal of neuroscience : the official journal of the Society for Neuroscience 9391021 12 -56 -20 MNI 215970 11420 4 Role of the supplementary motor area and the right premotor cortex in the coordination of bimanual finger movements. "Sadato N, Yonekura Y, Waki A, Yamada H, Ishii Y" 1997 The Journal of neuroscience : the official journal of the Society for Neuroscience 9391021 -22 -8 4 MNI 215971 11420 4 Role of the supplementary motor area and the right premotor cortex in the coordination of bimanual finger movements. "Sadato N, Yonekura Y, Waki A, Yamada H, Ishii Y" 1997 The Journal of neuroscience : the official journal of the Society for Neuroscience 9391021 22 -8 4 MNI 215972 11420 4 Role of the supplementary motor area and the right premotor cortex in the coordination of bimanual finger movements. "Sadato N, Yonekura Y, Waki A, Yamada H, Ishii Y" 1997 The Journal of neuroscience : the official journal of the Society for Neuroscience 9391021 -18 -10 4 MNI 215973 11420 4 Role of the supplementary motor area and the right premotor cortex in the coordination of bimanual finger movements. "Sadato N, Yonekura Y, Waki A, Yamada H, Ishii Y" 1997 The Journal of neuroscience : the official journal of the Society for Neuroscience 9391021 14 -22 8 MNI 215974 11420 4 Role of the supplementary motor area and the right premotor cortex in the coordination of bimanual finger movements. "Sadato N, Yonekura Y, Waki A, Yamada H, Ishii Y" 1997 The Journal of neuroscience : the official journal of the Society for Neuroscience 9391021 -30 -54 56 MNI 215975 11420 4 Role of the supplementary motor area and the right premotor cortex in the coordination of bimanual finger movements. "Sadato N, Yonekura Y, Waki A, Yamada H, Ishii Y" 1997 The Journal of neuroscience : the official journal of the Society for Neuroscience 9391021 14 -68 56 MNI 215976 11420 4 Role of the supplementary motor area and the right premotor cortex in the coordination of bimanual finger movements. "Sadato N, Yonekura Y, Waki A, Yamada H, Ishii Y" 1997 The Journal of neuroscience : the official journal of the Society for Neuroscience 9391021 4 -6 56 MNI 215977 11420 4 Role of the supplementary motor area and the right premotor cortex in the coordination of bimanual finger movements. "Sadato N, Yonekura Y, Waki A, Yamada H, Ishii Y" 1997 The Journal of neuroscience : the official journal of the Society for Neuroscience 9391021 54 2 24 MNI 215978 11420 4 Role of the supplementary motor area and the right premotor cortex in the coordination of bimanual finger movements. "Sadato N, Yonekura Y, Waki A, Yamada H, Ishii Y" 1997 The Journal of neuroscience : the official journal of the Society for Neuroscience 9391021 -2 -24 -12 MNI 215979 11420 4 Role of the supplementary motor area and the right premotor cortex in the coordination of bimanual finger movements. "Sadato N, Yonekura Y, Waki A, Yamada H, Ishii Y" 1997 The Journal of neuroscience : the official journal of the Society for Neuroscience 9391021 22 -10 52 MNI 215980 11421 5 Role of the supplementary motor area and the right premotor cortex in the coordination of bimanual finger movements. "Sadato N, Yonekura Y, Waki A, Yamada H, Ishii Y" 1997 The Journal of neuroscience : the official journal of the Society for Neuroscience 9391021 20 -10 52 MNI 215981 11421 5 Role of the supplementary motor area and the right premotor cortex in the coordination of bimanual finger movements. "Sadato N, Yonekura Y, Waki A, Yamada H, Ishii Y" 1997 The Journal of neuroscience : the official journal of the Society for Neuroscience 9391021 16 -20 64 MNI 215982 11421 5 Role of the supplementary motor area and the right premotor cortex in the coordination of bimanual finger movements. "Sadato N, Yonekura Y, Waki A, Yamada H, Ishii Y" 1997 The Journal of neuroscience : the official journal of the Society for Neuroscience 9391021 -12 -10 64 MNI 215983 11421 5 Role of the supplementary motor area and the right premotor cortex in the coordination of bimanual finger movements. "Sadato N, Yonekura Y, Waki A, Yamada H, Ishii Y" 1997 The Journal of neuroscience : the official journal of the Society for Neuroscience 9391021 -32 -26 56 MNI 215984 11422 6 Role of the supplementary motor area and the right premotor cortex in the coordination of bimanual finger movements. "Sadato N, Yonekura Y, Waki A, Yamada H, Ishii Y" 1997 The Journal of neuroscience : the official journal of the Society for Neuroscience 9391021 -4 -8 44 MNI 215985 11422 6 Role of the supplementary motor area and the right premotor cortex in the coordination of bimanual finger movements. "Sadato N, Yonekura Y, Waki A, Yamada H, Ishii Y" 1997 The Journal of neuroscience : the official journal of the Society for Neuroscience 9391021 18 -62 -20 MNI 215986 11422 6 Role of the supplementary motor area and the right premotor cortex in the coordination of bimanual finger movements. "Sadato N, Yonekura Y, Waki A, Yamada H, Ishii Y" 1997 The Journal of neuroscience : the official journal of the Society for Neuroscience 9391021 40 -20 52 MNI 215987 11422 6 Role of the supplementary motor area and the right premotor cortex in the coordination of bimanual finger movements. "Sadato N, Yonekura Y, Waki A, Yamada H, Ishii Y" 1997 The Journal of neuroscience : the official journal of the Society for Neuroscience 9391021 2 -8 40 MNI 215988 11422 6 Role of the supplementary motor area and the right premotor cortex in the coordination of bimanual finger movements. "Sadato N, Yonekura Y, Waki A, Yamada H, Ishii Y" 1997 The Journal of neuroscience : the official journal of the Society for Neuroscience 9391021 -6 -64 -16 MNI 215989 11422 6 Role of the supplementary motor area and the right premotor cortex in the coordination of bimanual finger movements. "Sadato N, Yonekura Y, Waki A, Yamada H, Ishii Y" 1997 The Journal of neuroscience : the official journal of the Society for Neuroscience 9391021 8 -90 -28 MNI 215990 11422 6 Role of the supplementary motor area and the right premotor cortex in the coordination of bimanual finger movements. "Sadato N, Yonekura Y, Waki A, Yamada H, Ishii Y" 1997 The Journal of neuroscience : the official journal of the Society for Neuroscience 9391021 30 -26 40 MNI 215991 11422 6 Role of the supplementary motor area and the right premotor cortex in the coordination of bimanual finger movements. "Sadato N, Yonekura Y, Waki A, Yamada H, Ishii Y" 1997 The Journal of neuroscience : the official journal of the Society for Neuroscience 9391021 -54 -10 32 MNI 215992 11422 6 Role of the supplementary motor area and the right premotor cortex in the coordination of bimanual finger movements. "Sadato N, Yonekura Y, Waki A, Yamada H, Ishii Y" 1997 The Journal of neuroscience : the official journal of the Society for Neuroscience 9391021 -34 -22 52 MNI 215993 11423 7 Role of the supplementary motor area and the right premotor cortex in the coordination of bimanual finger movements. "Sadato N, Yonekura Y, Waki A, Yamada H, Ishii Y" 1997 The Journal of neuroscience : the official journal of the Society for Neuroscience 9391021 40 -20 52 MNI 215994 11423 7 Role of the supplementary motor area and the right premotor cortex in the coordination of bimanual finger movements. "Sadato N, Yonekura Y, Waki A, Yamada H, Ishii Y" 1997 The Journal of neuroscience : the official journal of the Society for Neuroscience 9391021 10 -2 36 MNI 215995 11423 7 Role of the supplementary motor area and the right premotor cortex in the coordination of bimanual finger movements. "Sadato N, Yonekura Y, Waki A, Yamada H, Ishii Y" 1997 The Journal of neuroscience : the official journal of the Society for Neuroscience 9391021 -4 -64 -16 MNI 215996 11423 7 Role of the supplementary motor area and the right premotor cortex in the coordination of bimanual finger movements. "Sadato N, Yonekura Y, Waki A, Yamada H, Ishii Y" 1997 The Journal of neuroscience : the official journal of the Society for Neuroscience 9391021 8 -60 -24 MNI 215997 11423 7 Role of the supplementary motor area and the right premotor cortex in the coordination of bimanual finger movements. "Sadato N, Yonekura Y, Waki A, Yamada H, Ishii Y" 1997 The Journal of neuroscience : the official journal of the Society for Neuroscience 9391021 -28 -38 40 MNI 215998 11423 7 Role of the supplementary motor area and the right premotor cortex in the coordination of bimanual finger movements. "Sadato N, Yonekura Y, Waki A, Yamada H, Ishii Y" 1997 The Journal of neuroscience : the official journal of the Society for Neuroscience 9391021 36 -38 44 MNI 215999 11423 7 Role of the supplementary motor area and the right premotor cortex in the coordination of bimanual finger movements. "Sadato N, Yonekura Y, Waki A, Yamada H, Ishii Y" 1997 The Journal of neuroscience : the official journal of the Society for Neuroscience 9391021 -16 -20 48 MNI 216000 11423 7 Role of the supplementary motor area and the right premotor cortex in the coordination of bimanual finger movements. "Sadato N, Yonekura Y, Waki A, Yamada H, Ishii Y" 1997 The Journal of neuroscience : the official journal of the Society for Neuroscience 9391021 24 -16 48 MNI 216001 11423 7 Role of the supplementary motor area and the right premotor cortex in the coordination of bimanual finger movements. "Sadato N, Yonekura Y, Waki A, Yamada H, Ishii Y" 1997 The Journal of neuroscience : the official journal of the Society for Neuroscience 9391021 -22 -14 4 MNI 216002 11423 7 Role of the supplementary motor area and the right premotor cortex in the coordination of bimanual finger movements. "Sadato N, Yonekura Y, Waki A, Yamada H, Ishii Y" 1997 The Journal of neuroscience : the official journal of the Society for Neuroscience 9391021 58 6 16 MNI 216003 11423 7 Role of the supplementary motor area and the right premotor cortex in the coordination of bimanual finger movements. "Sadato N, Yonekura Y, Waki A, Yamada H, Ishii Y" 1997 The Journal of neuroscience : the official journal of the Society for Neuroscience 9391021 0 -24 12 MNI 216004 11423 7 Role of the supplementary motor area and the right premotor cortex in the coordination of bimanual finger movements. "Sadato N, Yonekura Y, Waki A, Yamada H, Ishii Y" 1997 The Journal of neuroscience : the official journal of the Society for Neuroscience 9391021 -36 -22 52 MNI 216005 11423 7 Role of the supplementary motor area and the right premotor cortex in the coordination of bimanual finger movements. "Sadato N, Yonekura Y, Waki A, Yamada H, Ishii Y" 1997 The Journal of neuroscience : the official journal of the Society for Neuroscience 9391021 40 -20 52 MNI 216006 11423 7 Role of the supplementary motor area and the right premotor cortex in the coordination of bimanual finger movements. "Sadato N, Yonekura Y, Waki A, Yamada H, Ishii Y" 1997 The Journal of neuroscience : the official journal of the Society for Neuroscience 9391021 -30 -26 40 MNI 216007 11423 7 Role of the supplementary motor area and the right premotor cortex in the coordination of bimanual finger movements. "Sadato N, Yonekura Y, Waki A, Yamada H, Ishii Y" 1997 The Journal of neuroscience : the official journal of the Society for Neuroscience 9391021 30 -26 40 MNI 216008 11423 7 Role of the supplementary motor area and the right premotor cortex in the coordination of bimanual finger movements. "Sadato N, Yonekura Y, Waki A, Yamada H, Ishii Y" 1997 The Journal of neuroscience : the official journal of the Society for Neuroscience 9391021 -16 -20 48 MNI 216009 11423 7 Role of the supplementary motor area and the right premotor cortex in the coordination of bimanual finger movements. "Sadato N, Yonekura Y, Waki A, Yamada H, Ishii Y" 1997 The Journal of neuroscience : the official journal of the Society for Neuroscience 9391021 24 -16 48 MNI 216010 11423 7 Role of the supplementary motor area and the right premotor cortex in the coordination of bimanual finger movements. "Sadato N, Yonekura Y, Waki A, Yamada H, Ishii Y" 1997 The Journal of neuroscience : the official journal of the Society for Neuroscience 9391021 -16 -54 -20 MNI 216011 11423 7 Role of the supplementary motor area and the right premotor cortex in the coordination of bimanual finger movements. "Sadato N, Yonekura Y, Waki A, Yamada H, Ishii Y" 1997 The Journal of neuroscience : the official journal of the Society for Neuroscience 9391021 26 -56 -28 MNI 216012 11423 7 Role of the supplementary motor area and the right premotor cortex in the coordination of bimanual finger movements. "Sadato N, Yonekura Y, Waki A, Yamada H, Ishii Y" 1997 The Journal of neuroscience : the official journal of the Society for Neuroscience 9391021 -16 -18 8 MNI 216013 11423 7 Role of the supplementary motor area and the right premotor cortex in the coordination of bimanual finger movements. "Sadato N, Yonekura Y, Waki A, Yamada H, Ishii Y" 1997 The Journal of neuroscience : the official journal of the Society for Neuroscience 9391021 2 -24 12 MNI 216014 11423 7 Role of the supplementary motor area and the right premotor cortex in the coordination of bimanual finger movements. "Sadato N, Yonekura Y, Waki A, Yamada H, Ishii Y" 1997 The Journal of neuroscience : the official journal of the Society for Neuroscience 9391021 -20 -6 4 MNI 216015 11423 7 Role of the supplementary motor area and the right premotor cortex in the coordination of bimanual finger movements. "Sadato N, Yonekura Y, Waki A, Yamada H, Ishii Y" 1997 The Journal of neuroscience : the official journal of the Society for Neuroscience 9391021 24 -16 8 MNI 216016 11423 7 Role of the supplementary motor area and the right premotor cortex in the coordination of bimanual finger movements. "Sadato N, Yonekura Y, Waki A, Yamada H, Ishii Y" 1997 The Journal of neuroscience : the official journal of the Society for Neuroscience 9391021 58 4 16 MNI 216017 11423 7 Role of the supplementary motor area and the right premotor cortex in the coordination of bimanual finger movements. "Sadato N, Yonekura Y, Waki A, Yamada H, Ishii Y" 1997 The Journal of neuroscience : the official journal of the Society for Neuroscience 9391021 14 -6 48 MNI 216018 11424 8 Role of the supplementary motor area and the right premotor cortex in the coordination of bimanual finger movements. "Sadato N, Yonekura Y, Waki A, Yamada H, Ishii Y" 1997 The Journal of neuroscience : the official journal of the Society for Neuroscience 9391021 22 -10 44 MNI 216019 11424 8 Role of the supplementary motor area and the right premotor cortex in the coordination of bimanual finger movements. "Sadato N, Yonekura Y, Waki A, Yamada H, Ishii Y" 1997 The Journal of neuroscience : the official journal of the Society for Neuroscience 9405692 -49 8 30 UNKNOWN 400502 21145 1 Role of left inferior prefrontal cortex in retrieval of semantic knowledge: a reevaluation. "Thompson-Schill SL, D'Esposito M, Aguirre GK, Farah MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9405692 -38 15 30 UNKNOWN 400503 21145 1 Role of left inferior prefrontal cortex in retrieval of semantic knowledge: a reevaluation. "Thompson-Schill SL, D'Esposito M, Aguirre GK, Farah MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9405692 -38 15 30 UNKNOWN 400504 21145 1 Role of left inferior prefrontal cortex in retrieval of semantic knowledge: a reevaluation. "Thompson-Schill SL, D'Esposito M, Aguirre GK, Farah MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9405692 -38 15 30 UNKNOWN 400505 21145 1 Role of left inferior prefrontal cortex in retrieval of semantic knowledge: a reevaluation. "Thompson-Schill SL, D'Esposito M, Aguirre GK, Farah MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9405692 -45 4 30 UNKNOWN 400506 21145 1 Role of left inferior prefrontal cortex in retrieval of semantic knowledge: a reevaluation. "Thompson-Schill SL, D'Esposito M, Aguirre GK, Farah MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9405692 -45 4 30 UNKNOWN 400507 21145 1 Role of left inferior prefrontal cortex in retrieval of semantic knowledge: a reevaluation. "Thompson-Schill SL, D'Esposito M, Aguirre GK, Farah MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9405692 -45 4 30 UNKNOWN 400508 21145 1 Role of left inferior prefrontal cortex in retrieval of semantic knowledge: a reevaluation. "Thompson-Schill SL, D'Esposito M, Aguirre GK, Farah MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9405692 38 15 23 UNKNOWN 400509 21145 1 Role of left inferior prefrontal cortex in retrieval of semantic knowledge: a reevaluation. "Thompson-Schill SL, D'Esposito M, Aguirre GK, Farah MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9405692 38 15 23 UNKNOWN 400510 21145 1 Role of left inferior prefrontal cortex in retrieval of semantic knowledge: a reevaluation. "Thompson-Schill SL, D'Esposito M, Aguirre GK, Farah MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9405692 38 15 23 UNKNOWN 400511 21145 1 Role of left inferior prefrontal cortex in retrieval of semantic knowledge: a reevaluation. "Thompson-Schill SL, D'Esposito M, Aguirre GK, Farah MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9405692 -41 30 8 UNKNOWN 400512 21145 1 Role of left inferior prefrontal cortex in retrieval of semantic knowledge: a reevaluation. "Thompson-Schill SL, D'Esposito M, Aguirre GK, Farah MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9405692 -41 30 8 UNKNOWN 400513 21145 1 Role of left inferior prefrontal cortex in retrieval of semantic knowledge: a reevaluation. "Thompson-Schill SL, D'Esposito M, Aguirre GK, Farah MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9405692 -41 30 8 UNKNOWN 400514 21145 1 Role of left inferior prefrontal cortex in retrieval of semantic knowledge: a reevaluation. "Thompson-Schill SL, D'Esposito M, Aguirre GK, Farah MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9405692 -38 8 34 UNKNOWN 400515 21145 1 Role of left inferior prefrontal cortex in retrieval of semantic knowledge: a reevaluation. "Thompson-Schill SL, D'Esposito M, Aguirre GK, Farah MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9405692 -38 8 34 UNKNOWN 400516 21145 1 Role of left inferior prefrontal cortex in retrieval of semantic knowledge: a reevaluation. "Thompson-Schill SL, D'Esposito M, Aguirre GK, Farah MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9405692 -38 8 34 UNKNOWN 400517 21145 1 Role of left inferior prefrontal cortex in retrieval of semantic knowledge: a reevaluation. "Thompson-Schill SL, D'Esposito M, Aguirre GK, Farah MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9405692 -4 38 34 UNKNOWN 400518 21145 1 Role of left inferior prefrontal cortex in retrieval of semantic knowledge: a reevaluation. "Thompson-Schill SL, D'Esposito M, Aguirre GK, Farah MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9405692 -4 38 34 UNKNOWN 400519 21145 1 Role of left inferior prefrontal cortex in retrieval of semantic knowledge: a reevaluation. "Thompson-Schill SL, D'Esposito M, Aguirre GK, Farah MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9405692 -4 38 34 UNKNOWN 400520 21145 1 Role of left inferior prefrontal cortex in retrieval of semantic knowledge: a reevaluation. "Thompson-Schill SL, D'Esposito M, Aguirre GK, Farah MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9405692 41 15 34 UNKNOWN 400521 21145 1 Role of left inferior prefrontal cortex in retrieval of semantic knowledge: a reevaluation. "Thompson-Schill SL, D'Esposito M, Aguirre GK, Farah MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9405692 41 15 34 UNKNOWN 400522 21145 1 Role of left inferior prefrontal cortex in retrieval of semantic knowledge: a reevaluation. "Thompson-Schill SL, D'Esposito M, Aguirre GK, Farah MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9405692 41 15 34 UNKNOWN 400523 21145 1 Role of left inferior prefrontal cortex in retrieval of semantic knowledge: a reevaluation. "Thompson-Schill SL, D'Esposito M, Aguirre GK, Farah MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9405692 -4 11 45 UNKNOWN 400524 21145 1 Role of left inferior prefrontal cortex in retrieval of semantic knowledge: a reevaluation. "Thompson-Schill SL, D'Esposito M, Aguirre GK, Farah MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9405692 -4 11 53 UNKNOWN 400525 21145 1 Role of left inferior prefrontal cortex in retrieval of semantic knowledge: a reevaluation. "Thompson-Schill SL, D'Esposito M, Aguirre GK, Farah MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9405692 -4 11 53 UNKNOWN 400526 21145 1 Role of left inferior prefrontal cortex in retrieval of semantic knowledge: a reevaluation. "Thompson-Schill SL, D'Esposito M, Aguirre GK, Farah MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9405692 -4 11 53 UNKNOWN 400527 21145 1 Role of left inferior prefrontal cortex in retrieval of semantic knowledge: a reevaluation. "Thompson-Schill SL, D'Esposito M, Aguirre GK, Farah MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9405692 -4 11 53 UNKNOWN 400528 21145 1 Role of left inferior prefrontal cortex in retrieval of semantic knowledge: a reevaluation. "Thompson-Schill SL, D'Esposito M, Aguirre GK, Farah MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9405692 -4 11 53 UNKNOWN 400529 21145 1 Role of left inferior prefrontal cortex in retrieval of semantic knowledge: a reevaluation. "Thompson-Schill SL, D'Esposito M, Aguirre GK, Farah MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9405692 -4 11 53 UNKNOWN 400530 21145 1 Role of left inferior prefrontal cortex in retrieval of semantic knowledge: a reevaluation. "Thompson-Schill SL, D'Esposito M, Aguirre GK, Farah MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9405692 -49 -53 0 UNKNOWN 400531 21145 1 Role of left inferior prefrontal cortex in retrieval of semantic knowledge: a reevaluation. "Thompson-Schill SL, D'Esposito M, Aguirre GK, Farah MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9405692 -49 -53 0 UNKNOWN 400532 21145 1 Role of left inferior prefrontal cortex in retrieval of semantic knowledge: a reevaluation. "Thompson-Schill SL, D'Esposito M, Aguirre GK, Farah MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9405692 -49 -53 0 UNKNOWN 400533 21145 1 Role of left inferior prefrontal cortex in retrieval of semantic knowledge: a reevaluation. "Thompson-Schill SL, D'Esposito M, Aguirre GK, Farah MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9405692 -38 -60 -15 UNKNOWN 400534 21145 1 Role of left inferior prefrontal cortex in retrieval of semantic knowledge: a reevaluation. "Thompson-Schill SL, D'Esposito M, Aguirre GK, Farah MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9405692 -38 -60 -15 UNKNOWN 400535 21145 1 Role of left inferior prefrontal cortex in retrieval of semantic knowledge: a reevaluation. "Thompson-Schill SL, D'Esposito M, Aguirre GK, Farah MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9405692 -38 -60 -15 UNKNOWN 400536 21145 1 Role of left inferior prefrontal cortex in retrieval of semantic knowledge: a reevaluation. "Thompson-Schill SL, D'Esposito M, Aguirre GK, Farah MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9405692 -49 -56 -8 UNKNOWN 400537 21145 1 Role of left inferior prefrontal cortex in retrieval of semantic knowledge: a reevaluation. "Thompson-Schill SL, D'Esposito M, Aguirre GK, Farah MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9405692 -49 -56 -8 UNKNOWN 400538 21145 1 Role of left inferior prefrontal cortex in retrieval of semantic knowledge: a reevaluation. "Thompson-Schill SL, D'Esposito M, Aguirre GK, Farah MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9405692 -49 -56 -8 UNKNOWN 400539 21145 1 Role of left inferior prefrontal cortex in retrieval of semantic knowledge: a reevaluation. "Thompson-Schill SL, D'Esposito M, Aguirre GK, Farah MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9405692 -34 -68 45 UNKNOWN 400540 21145 1 Role of left inferior prefrontal cortex in retrieval of semantic knowledge: a reevaluation. "Thompson-Schill SL, D'Esposito M, Aguirre GK, Farah MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9405692 -34 -68 45 UNKNOWN 400541 21145 1 Role of left inferior prefrontal cortex in retrieval of semantic knowledge: a reevaluation. "Thompson-Schill SL, D'Esposito M, Aguirre GK, Farah MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9405692 -34 -68 45 UNKNOWN 400542 21145 1 Role of left inferior prefrontal cortex in retrieval of semantic knowledge: a reevaluation. "Thompson-Schill SL, D'Esposito M, Aguirre GK, Farah MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9405692 -11 -68 49 UNKNOWN 400543 21145 1 Role of left inferior prefrontal cortex in retrieval of semantic knowledge: a reevaluation. "Thompson-Schill SL, D'Esposito M, Aguirre GK, Farah MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9405692 -11 -68 49 UNKNOWN 400544 21145 1 Role of left inferior prefrontal cortex in retrieval of semantic knowledge: a reevaluation. "Thompson-Schill SL, D'Esposito M, Aguirre GK, Farah MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9405692 -11 -68 49 UNKNOWN 400545 21145 1 Role of left inferior prefrontal cortex in retrieval of semantic knowledge: a reevaluation. "Thompson-Schill SL, D'Esposito M, Aguirre GK, Farah MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9405692 8 -71 53 UNKNOWN 400546 21145 1 Role of left inferior prefrontal cortex in retrieval of semantic knowledge: a reevaluation. "Thompson-Schill SL, D'Esposito M, Aguirre GK, Farah MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9405692 8 -71 53 UNKNOWN 400547 21145 1 Role of left inferior prefrontal cortex in retrieval of semantic knowledge: a reevaluation. "Thompson-Schill SL, D'Esposito M, Aguirre GK, Farah MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9405692 8 -71 53 UNKNOWN 400548 21145 1 Role of left inferior prefrontal cortex in retrieval of semantic knowledge: a reevaluation. "Thompson-Schill SL, D'Esposito M, Aguirre GK, Farah MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9405692 -30 -71 34 UNKNOWN 400549 21145 1 Role of left inferior prefrontal cortex in retrieval of semantic knowledge: a reevaluation. "Thompson-Schill SL, D'Esposito M, Aguirre GK, Farah MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9405692 -30 -71 34 UNKNOWN 400550 21145 1 Role of left inferior prefrontal cortex in retrieval of semantic knowledge: a reevaluation. "Thompson-Schill SL, D'Esposito M, Aguirre GK, Farah MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9405692 -30 -71 34 UNKNOWN 400551 21145 1 Role of left inferior prefrontal cortex in retrieval of semantic knowledge: a reevaluation. "Thompson-Schill SL, D'Esposito M, Aguirre GK, Farah MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9405692 -19 -83 -4 UNKNOWN 400552 21145 1 Role of left inferior prefrontal cortex in retrieval of semantic knowledge: a reevaluation. "Thompson-Schill SL, D'Esposito M, Aguirre GK, Farah MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9405692 -19 -83 -4 UNKNOWN 400553 21145 1 Role of left inferior prefrontal cortex in retrieval of semantic knowledge: a reevaluation. "Thompson-Schill SL, D'Esposito M, Aguirre GK, Farah MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9405692 -19 -83 -4 UNKNOWN 400554 21145 1 Role of left inferior prefrontal cortex in retrieval of semantic knowledge: a reevaluation. "Thompson-Schill SL, D'Esposito M, Aguirre GK, Farah MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9405692 23 -86 11 UNKNOWN 400555 21145 1 Role of left inferior prefrontal cortex in retrieval of semantic knowledge: a reevaluation. "Thompson-Schill SL, D'Esposito M, Aguirre GK, Farah MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9405692 23 -86 11 UNKNOWN 400556 21145 1 Role of left inferior prefrontal cortex in retrieval of semantic knowledge: a reevaluation. "Thompson-Schill SL, D'Esposito M, Aguirre GK, Farah MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9405692 23 -86 11 UNKNOWN 400557 21145 1 Role of left inferior prefrontal cortex in retrieval of semantic knowledge: a reevaluation. "Thompson-Schill SL, D'Esposito M, Aguirre GK, Farah MJ" 1997 Proceedings of the National Academy of Sciences of the United States of America 9412517 18 -6 -15 TAL 216020 11425 1 Masked presentations of emotional facial expressions modulate amygdala activity without explicit knowledge. "Whalen PJ, Rauch SL, Etcoff NL, McInerney SC, Lee MB, Jenike MA" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9412517 -12 0 -9 TAL 216021 11425 1 Masked presentations of emotional facial expressions modulate amygdala activity without explicit knowledge. "Whalen PJ, Rauch SL, Etcoff NL, McInerney SC, Lee MB, Jenike MA" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9412517 -28 42 9 TAL 216022 11425 1 Masked presentations of emotional facial expressions modulate amygdala activity without explicit knowledge. "Whalen PJ, Rauch SL, Etcoff NL, McInerney SC, Lee MB, Jenike MA" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 -40 24 36 UNKNOWN 216023 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 -6 8 48 UNKNOWN 216024 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 -8 -58 38 UNKNOWN 216025 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 -8 -58 38 UNKNOWN 216026 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 -28 -74 32 UNKNOWN 216027 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 -28 -74 32 UNKNOWN 216028 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 22 -78 32 UNKNOWN 216029 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 22 -78 32 UNKNOWN 216030 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 -42 28 34 UNKNOWN 216031 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 38 28 34 UNKNOWN 216032 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 38 28 34 UNKNOWN 216033 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 -8 10 46 UNKNOWN 216034 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 -12 -62 40 UNKNOWN 216035 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 -12 -62 40 UNKNOWN 216036 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 -26 -68 34 UNKNOWN 216037 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 -26 -68 34 UNKNOWN 216038 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 24 -72 40 UNKNOWN 216039 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 24 -72 40 UNKNOWN 216040 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 -44 24 32 UNKNOWN 216041 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 -6 10 46 UNKNOWN 216042 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 -10 -64 40 UNKNOWN 216043 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 -10 -64 40 UNKNOWN 216044 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 -30 -72 40 UNKNOWN 216045 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 -30 -72 40 UNKNOWN 216046 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 24 -76 40 UNKNOWN 216047 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 24 -76 40 UNKNOWN 216048 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 -34 30 34 UNKNOWN 216049 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 38 36 40 UNKNOWN 216050 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 38 36 40 UNKNOWN 216051 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 -2 6 54 UNKNOWN 216052 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 -4 -68 36 UNKNOWN 216053 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 -4 -68 36 UNKNOWN 216054 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 -26 -66 36 UNKNOWN 216055 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 -26 -66 36 UNKNOWN 216056 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 28 -64 36 UNKNOWN 216057 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 28 -64 36 UNKNOWN 216058 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 -30 30 34 UNKNOWN 216059 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 30 26 34 UNKNOWN 216060 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 30 26 34 UNKNOWN 216061 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 6 8 48 UNKNOWN 216062 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 6 8 48 UNKNOWN 216063 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 -4 -62 40 UNKNOWN 216064 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 -4 -62 40 UNKNOWN 216065 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 -22 -64 40 UNKNOWN 216066 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 -22 -64 40 UNKNOWN 216067 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 30 -64 40 UNKNOWN 216068 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 30 -64 40 UNKNOWN 216069 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 -36 26 38 UNKNOWN 216070 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 28 26 38 UNKNOWN 216071 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 28 26 38 UNKNOWN 216072 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 4 6 52 UNKNOWN 216073 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 4 6 52 UNKNOWN 216074 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 -6 -60 38 UNKNOWN 216075 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 -6 -60 38 UNKNOWN 216076 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 -28 -68 38 UNKNOWN 216077 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 -28 -68 38 UNKNOWN 216078 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 30 -66 38 UNKNOWN 216079 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 30 -66 38 UNKNOWN 216080 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 -34 32 34 UNKNOWN 216081 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 34 36 34 UNKNOWN 216082 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 34 36 34 UNKNOWN 216083 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 -8 8 54 UNKNOWN 216084 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 -10 -66 42 UNKNOWN 216085 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 -10 -66 42 UNKNOWN 216086 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 -30 -64 42 UNKNOWN 216087 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 -30 -64 42 UNKNOWN 216088 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 34 -64 42 UNKNOWN 216089 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 34 -64 42 UNKNOWN 216090 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 -38 30 38 UNKNOWN 216091 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 -8 -66 38 UNKNOWN 216092 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 -8 -66 38 UNKNOWN 216093 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 -34 -68 38 UNKNOWN 216094 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 -34 -68 38 UNKNOWN 216095 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 28 -62 38 UNKNOWN 216096 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 28 -62 38 UNKNOWN 216097 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 -42 26 32 UNKNOWN 216098 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 40 20 38 UNKNOWN 216099 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 40 20 38 UNKNOWN 216100 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 -4 12 48 UNKNOWN 216101 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 -2 -62 38 UNKNOWN 216102 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 -2 -62 38 UNKNOWN 216103 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 -22 -72 36 UNKNOWN 216104 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 -22 -72 36 UNKNOWN 216105 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 28 -66 40 UNKNOWN 216106 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 28 -66 40 UNKNOWN 216107 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 -38 38 38 UNKNOWN 216108 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 -4 12 52 UNKNOWN 216109 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 -2 -58 38 UNKNOWN 216110 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 -2 -58 38 UNKNOWN 216111 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 -26 -78 38 UNKNOWN 216112 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 -26 -78 38 UNKNOWN 216113 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 24 -62 38 UNKNOWN 216114 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 24 -62 38 UNKNOWN 216115 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 -34 28 38 UNKNOWN 216116 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 38 36 32 UNKNOWN 216117 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 38 36 32 UNKNOWN 216118 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 -4 8 46 UNKNOWN 216119 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 -2 -64 36 UNKNOWN 216120 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 -2 -64 36 UNKNOWN 216121 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 -24 -66 32 UNKNOWN 216122 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 -24 -66 32 UNKNOWN 216123 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 32 -66 26 UNKNOWN 216124 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 32 -66 26 UNKNOWN 216125 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 -38 24 38 UNKNOWN 216126 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 4 4 54 UNKNOWN 216127 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 4 4 54 UNKNOWN 216128 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 -6 -70 38 UNKNOWN 216129 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 -6 -70 38 UNKNOWN 216130 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 -26 -78 38 UNKNOWN 216131 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 -26 -78 38 UNKNOWN 216132 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 28 -76 38 UNKNOWN 216133 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 28 -76 38 UNKNOWN 216134 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 -42 24 34 UNKNOWN 216135 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 -6 6 54 UNKNOWN 216136 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 -2 -70 42 UNKNOWN 216137 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 -2 -70 42 UNKNOWN 216138 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 -32 -64 42 UNKNOWN 216139 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 -32 -64 42 UNKNOWN 216140 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 38 -68 42 UNKNOWN 216141 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9465007 38 -68 42 UNKNOWN 216142 11426 1 Transition of brain activation from frontal to parietal areas in visuomotor sequence learning. "Sakai K, Hikosaka O, Miyauchi S, Takino R, Sasaki Y, Putz B" 1998 The Journal of neuroscience : the official journal of the Society for Neuroscience 9491989 10.1016/S0896-6273(00)80456-0 -34 -68 -15 TAL 337557 17456 1 Functional-anatomic correlates of object priming in humans revealed by rapid presentation event-related fMRI. "Buckner RL, Goodman J, Burock M, Rotte M, Koutstaal W, Schacter D, Rosen B, Dale AM" 1998 Neuron 9491989 10.1016/S0896-6273(00)80456-0 -28 -52 -15 TAL 337558 17456 1 Functional-anatomic correlates of object priming in humans revealed by rapid presentation event-related fMRI. "Buckner RL, Goodman J, Burock M, Rotte M, Koutstaal W, Schacter D, Rosen B, Dale AM" 1998 Neuron 9491989 10.1016/S0896-6273(00)80456-0 -31 -49 -18 TAL 337559 17456 1 Functional-anatomic correlates of object priming in humans revealed by rapid presentation event-related fMRI. "Buckner RL, Goodman J, Burock M, Rotte M, Koutstaal W, Schacter D, Rosen B, Dale AM" 1998 Neuron 9491989 10.1016/S0896-6273(00)80456-0 34 -62 -15 TAL 337560 17456 1 Functional-anatomic correlates of object priming in humans revealed by rapid presentation event-related fMRI. "Buckner RL, Goodman J, Burock M, Rotte M, Koutstaal W, Schacter D, Rosen B, Dale AM" 1998 Neuron 9491989 10.1016/S0896-6273(00)80456-0 34 -74 -12 TAL 337561 17456 1 Functional-anatomic correlates of object priming in humans revealed by rapid presentation event-related fMRI. "Buckner RL, Goodman J, Burock M, Rotte M, Koutstaal W, Schacter D, Rosen B, Dale AM" 1998 Neuron 9491989 10.1016/S0896-6273(00)80456-0 37 -83 -3 TAL 337562 17456 1 Functional-anatomic correlates of object priming in humans revealed by rapid presentation event-related fMRI. "Buckner RL, Goodman J, Burock M, Rotte M, Koutstaal W, Schacter D, Rosen B, Dale AM" 1998 Neuron 9491989 10.1016/S0896-6273(00)80456-0 -34 -83 -9 TAL 337563 17456 1 Functional-anatomic correlates of object priming in humans revealed by rapid presentation event-related fMRI. "Buckner RL, Goodman J, Burock M, Rotte M, Koutstaal W, Schacter D, Rosen B, Dale AM" 1998 Neuron 9491989 10.1016/S0896-6273(00)80456-0 -28 -90 9 TAL 337564 17456 1 Functional-anatomic correlates of object priming in humans revealed by rapid presentation event-related fMRI. "Buckner RL, Goodman J, Burock M, Rotte M, Koutstaal W, Schacter D, Rosen B, Dale AM" 1998 Neuron 9491989 10.1016/S0896-6273(00)80456-0 37 -21 53 TAL 337565 17456 1 Functional-anatomic correlates of object priming in humans revealed by rapid presentation event-related fMRI. "Buckner RL, Goodman J, Burock M, Rotte M, Koutstaal W, Schacter D, Rosen B, Dale AM" 1998 Neuron 9491989 10.1016/S0896-6273(00)80456-0 -43 0 34 TAL 337566 17456 1 Functional-anatomic correlates of object priming in humans revealed by rapid presentation event-related fMRI. "Buckner RL, Goodman J, Burock M, Rotte M, Koutstaal W, Schacter D, Rosen B, Dale AM" 1998 Neuron 9491989 10.1016/S0896-6273(00)80456-0 0 -3 53 TAL 337567 17456 1 Functional-anatomic correlates of object priming in humans revealed by rapid presentation event-related fMRI. "Buckner RL, Goodman J, Burock M, Rotte M, Koutstaal W, Schacter D, Rosen B, Dale AM" 1998 Neuron 9491989 10.1016/S0896-6273(00)80456-0 -21 -68 40 TAL 337568 17456 1 Functional-anatomic correlates of object priming in humans revealed by rapid presentation event-related fMRI. "Buckner RL, Goodman J, Burock M, Rotte M, Koutstaal W, Schacter D, Rosen B, Dale AM" 1998 Neuron 9491989 10.1016/S0896-6273(00)80456-0 -3 -74 -18 TAL 337569 17456 1 Functional-anatomic correlates of object priming in humans revealed by rapid presentation event-related fMRI. "Buckner RL, Goodman J, Burock M, Rotte M, Koutstaal W, Schacter D, Rosen B, Dale AM" 1998 Neuron 9491989 10.1016/S0896-6273(00)80456-0 31 -65 43 TAL 337570 17456 1 Functional-anatomic correlates of object priming in humans revealed by rapid presentation event-related fMRI. "Buckner RL, Goodman J, Burock M, Rotte M, Koutstaal W, Schacter D, Rosen B, Dale AM" 1998 Neuron 9491989 10.1016/S0896-6273(00)80456-0 9 -90 -12 TAL 337571 17456 1 Functional-anatomic correlates of object priming in humans revealed by rapid presentation event-related fMRI. "Buckner RL, Goodman J, Burock M, Rotte M, Koutstaal W, Schacter D, Rosen B, Dale AM" 1998 Neuron 9491989 10.1016/S0896-6273(00)80456-0 -28 -55 40 TAL 337572 17456 1 Functional-anatomic correlates of object priming in humans revealed by rapid presentation event-related fMRI. "Buckner RL, Goodman J, Burock M, Rotte M, Koutstaal W, Schacter D, Rosen B, Dale AM" 1998 Neuron 9491989 10.1016/S0896-6273(00)80456-0 12 -18 9 TAL 337573 17456 1 Functional-anatomic correlates of object priming in humans revealed by rapid presentation event-related fMRI. "Buckner RL, Goodman J, Burock M, Rotte M, Koutstaal W, Schacter D, Rosen B, Dale AM" 1998 Neuron 9491989 10.1016/S0896-6273(00)80456-0 -25 -71 31 TAL 337574 17456 1 Functional-anatomic correlates of object priming in humans revealed by rapid presentation event-related fMRI. "Buckner RL, Goodman J, Burock M, Rotte M, Koutstaal W, Schacter D, Rosen B, Dale AM" 1998 Neuron 9491989 10.1016/S0896-6273(00)80456-0 9 -71 -34 TAL 337575 17456 1 Functional-anatomic correlates of object priming in humans revealed by rapid presentation event-related fMRI. "Buckner RL, Goodman J, Burock M, Rotte M, Koutstaal W, Schacter D, Rosen B, Dale AM" 1998 Neuron 9491989 10.1016/S0896-6273(00)80456-0 28 -68 31 TAL 337576 17456 1 Functional-anatomic correlates of object priming in humans revealed by rapid presentation event-related fMRI. "Buckner RL, Goodman J, Burock M, Rotte M, Koutstaal W, Schacter D, Rosen B, Dale AM" 1998 Neuron 9491989 10.1016/S0896-6273(00)80456-0 34 -24 -21 TAL 337577 17456 1 Functional-anatomic correlates of object priming in humans revealed by rapid presentation event-related fMRI. "Buckner RL, Goodman J, Burock M, Rotte M, Koutstaal W, Schacter D, Rosen B, Dale AM" 1998 Neuron 9491989 10.1016/S0896-6273(00)80456-0 -6 -65 -37 TAL 337578 17456 1 Functional-anatomic correlates of object priming in humans revealed by rapid presentation event-related fMRI. "Buckner RL, Goodman J, Burock M, Rotte M, Koutstaal W, Schacter D, Rosen B, Dale AM" 1998 Neuron 9491989 10.1016/S0896-6273(00)80456-0 -53 -24 31 TAL 337579 17456 1 Functional-anatomic correlates of object priming in humans revealed by rapid presentation event-related fMRI. "Buckner RL, Goodman J, Burock M, Rotte M, Koutstaal W, Schacter D, Rosen B, Dale AM" 1998 Neuron 9491989 10.1016/S0896-6273(00)80456-0 53 -24 43 TAL 337580 17456 1 Functional-anatomic correlates of object priming in humans revealed by rapid presentation event-related fMRI. "Buckner RL, Goodman J, Burock M, Rotte M, Koutstaal W, Schacter D, Rosen B, Dale AM" 1998 Neuron 9491989 10.1016/S0896-6273(00)80456-0 0 -43 -15 TAL 337581 17456 1 Functional-anatomic correlates of object priming in humans revealed by rapid presentation event-related fMRI. "Buckner RL, Goodman J, Burock M, Rotte M, Koutstaal W, Schacter D, Rosen B, Dale AM" 1998 Neuron 9491989 10.1016/S0896-6273(00)80456-0 -3 -62 -18 TAL 337582 17456 1 Functional-anatomic correlates of object priming in humans revealed by rapid presentation event-related fMRI. "Buckner RL, Goodman J, Burock M, Rotte M, Koutstaal W, Schacter D, Rosen B, Dale AM" 1998 Neuron 9491989 10.1016/S0896-6273(00)80456-0 3 -3 25 TAL 337583 17456 1 Functional-anatomic correlates of object priming in humans revealed by rapid presentation event-related fMRI. "Buckner RL, Goodman J, Burock M, Rotte M, Koutstaal W, Schacter D, Rosen B, Dale AM" 1998 Neuron 9491989 10.1016/S0896-6273(00)80456-0 -37 -12 -34 TAL 337584 17456 1 Functional-anatomic correlates of object priming in humans revealed by rapid presentation event-related fMRI. "Buckner RL, Goodman J, Burock M, Rotte M, Koutstaal W, Schacter D, Rosen B, Dale AM" 1998 Neuron 9491989 10.1016/S0896-6273(00)80456-0 -6 -55 -12 TAL 337585 17456 1 Functional-anatomic correlates of object priming in humans revealed by rapid presentation event-related fMRI. "Buckner RL, Goodman J, Burock M, Rotte M, Koutstaal W, Schacter D, Rosen B, Dale AM" 1998 Neuron 9491989 10.1016/S0896-6273(00)80456-0 -18 -49 -43 TAL 337586 17456 1 Functional-anatomic correlates of object priming in humans revealed by rapid presentation event-related fMRI. "Buckner RL, Goodman J, Burock M, Rotte M, Koutstaal W, Schacter D, Rosen B, Dale AM" 1998 Neuron 9491989 10.1016/S0896-6273(00)80456-0 -9 -55 -40 TAL 337587 17456 1 Functional-anatomic correlates of object priming in humans revealed by rapid presentation event-related fMRI. "Buckner RL, Goodman J, Burock M, Rotte M, Koutstaal W, Schacter D, Rosen B, Dale AM" 1998 Neuron 9491989 10.1016/S0896-6273(00)80456-0 -53 -27 40 TAL 337588 17456 1 Functional-anatomic correlates of object priming in humans revealed by rapid presentation event-related fMRI. "Buckner RL, Goodman J, Burock M, Rotte M, Koutstaal W, Schacter D, Rosen B, Dale AM" 1998 Neuron 9491989 10.1016/S0896-6273(00)80456-0 9 -71 9 TAL 337589 17456 1 Functional-anatomic correlates of object priming in humans revealed by rapid presentation event-related fMRI. "Buckner RL, Goodman J, Burock M, Rotte M, Koutstaal W, Schacter D, Rosen B, Dale AM" 1998 Neuron 9491989 10.1016/S0896-6273(00)80456-0 -31 -46 34 TAL 337590 17456 1 Functional-anatomic correlates of object priming in humans revealed by rapid presentation event-related fMRI. "Buckner RL, Goodman J, Burock M, Rotte M, Koutstaal W, Schacter D, Rosen B, Dale AM" 1998 Neuron 9491989 10.1016/S0896-6273(00)80456-0 15 -83 43 TAL 337591 17456 1 Functional-anatomic correlates of object priming in humans revealed by rapid presentation event-related fMRI. "Buckner RL, Goodman J, Burock M, Rotte M, Koutstaal W, Schacter D, Rosen B, Dale AM" 1998 Neuron 9491989 10.1016/S0896-6273(00)80456-0 -43 -37 34 TAL 337592 17456 1 Functional-anatomic correlates of object priming in humans revealed by rapid presentation event-related fMRI. "Buckner RL, Goodman J, Burock M, Rotte M, Koutstaal W, Schacter D, Rosen B, Dale AM" 1998 Neuron 9491989 10.1016/S0896-6273(00)80456-0 18 -37 21 TAL 337593 17456 1 Functional-anatomic correlates of object priming in humans revealed by rapid presentation event-related fMRI. "Buckner RL, Goodman J, Burock M, Rotte M, Koutstaal W, Schacter D, Rosen B, Dale AM" 1998 Neuron 9491989 10.1016/S0896-6273(00)80456-0 59 -46 -15 TAL 337594 17456 1 Functional-anatomic correlates of object priming in humans revealed by rapid presentation event-related fMRI. "Buckner RL, Goodman J, Burock M, Rotte M, Koutstaal W, Schacter D, Rosen B, Dale AM" 1998 Neuron 9491989 10.1016/S0896-6273(00)80456-0 -43 -65 -6 TAL 337595 17457 2 Functional-anatomic correlates of object priming in humans revealed by rapid presentation event-related fMRI. "Buckner RL, Goodman J, Burock M, Rotte M, Koutstaal W, Schacter D, Rosen B, Dale AM" 1998 Neuron 9491989 10.1016/S0896-6273(00)80456-0 -34 -55 -12 TAL 337596 17457 2 Functional-anatomic correlates of object priming in humans revealed by rapid presentation event-related fMRI. "Buckner RL, Goodman J, Burock M, Rotte M, Koutstaal W, Schacter D, Rosen B, Dale AM" 1998 Neuron 9491989 10.1016/S0896-6273(00)80456-0 40 -83 25 TAL 337597 17457 2 Functional-anatomic correlates of object priming in humans revealed by rapid presentation event-related fMRI. "Buckner RL, Goodman J, Burock M, Rotte M, Koutstaal W, Schacter D, Rosen B, Dale AM" 1998 Neuron 9491989 10.1016/S0896-6273(00)80456-0 -25 -40 -15 TAL 337598 17457 2 Functional-anatomic correlates of object priming in humans revealed by rapid presentation event-related fMRI. "Buckner RL, Goodman J, Burock M, Rotte M, Koutstaal W, Schacter D, Rosen B, Dale AM" 1998 Neuron 9491989 10.1016/S0896-6273(00)80456-0 46 -55 -12 TAL 337599 17457 2 Functional-anatomic correlates of object priming in humans revealed by rapid presentation event-related fMRI. "Buckner RL, Goodman J, Burock M, Rotte M, Koutstaal W, Schacter D, Rosen B, Dale AM" 1998 Neuron 9491989 10.1016/S0896-6273(00)80456-0 34 -52 -15 TAL 337600 17457 2 Functional-anatomic correlates of object priming in humans revealed by rapid presentation event-related fMRI. "Buckner RL, Goodman J, Burock M, Rotte M, Koutstaal W, Schacter D, Rosen B, Dale AM" 1998 Neuron 9491989 10.1016/S0896-6273(00)80456-0 43 -83 9 TAL 337601 17457 2 Functional-anatomic correlates of object priming in humans revealed by rapid presentation event-related fMRI. "Buckner RL, Goodman J, Burock M, Rotte M, Koutstaal W, Schacter D, Rosen B, Dale AM" 1998 Neuron 9491989 10.1016/S0896-6273(00)80456-0 -40 9 31 TAL 337602 17457 2 Functional-anatomic correlates of object priming in humans revealed by rapid presentation event-related fMRI. "Buckner RL, Goodman J, Burock M, Rotte M, Koutstaal W, Schacter D, Rosen B, Dale AM" 1998 Neuron 9491989 10.1016/S0896-6273(00)80456-0 28 -40 -15 TAL 337603 17457 2 Functional-anatomic correlates of object priming in humans revealed by rapid presentation event-related fMRI. "Buckner RL, Goodman J, Burock M, Rotte M, Koutstaal W, Schacter D, Rosen B, Dale AM" 1998 Neuron 9491989 10.1016/S0896-6273(00)80456-0 -37 -87 -15 TAL 337604 17457 2 Functional-anatomic correlates of object priming in humans revealed by rapid presentation event-related fMRI. "Buckner RL, Goodman J, Burock M, Rotte M, Koutstaal W, Schacter D, Rosen B, Dale AM" 1998 Neuron 9491989 10.1016/S0896-6273(00)80456-0 3 22 40 TAL 337605 17457 2 Functional-anatomic correlates of object priming in humans revealed by rapid presentation event-related fMRI. "Buckner RL, Goodman J, Burock M, Rotte M, Koutstaal W, Schacter D, Rosen B, Dale AM" 1998 Neuron 9491989 10.1016/S0896-6273(00)80456-0 -43 -87 18 TAL 337606 17457 2 Functional-anatomic correlates of object priming in humans revealed by rapid presentation event-related fMRI. "Buckner RL, Goodman J, Burock M, Rotte M, Koutstaal W, Schacter D, Rosen B, Dale AM" 1998 Neuron 9491989 10.1016/S0896-6273(00)80456-0 3 9 43 TAL 337607 17457 2 Functional-anatomic correlates of object priming in humans revealed by rapid presentation event-related fMRI. "Buckner RL, Goodman J, Burock M, Rotte M, Koutstaal W, Schacter D, Rosen B, Dale AM" 1998 Neuron 9491989 10.1016/S0896-6273(00)80456-0 -34 -43 -21 TAL 337608 17457 2 Functional-anatomic correlates of object priming in humans revealed by rapid presentation event-related fMRI. "Buckner RL, Goodman J, Burock M, Rotte M, Koutstaal W, Schacter D, Rosen B, Dale AM" 1998 Neuron \ No newline at end of file diff --git a/nimare/tests/data/test_neurosynth_features.txt b/nimare/tests/data/test_neurosynth_features.txt deleted file mode 100644 index 61731f1e8..000000000 --- a/nimare/tests/data/test_neurosynth_features.txt +++ /dev/null @@ -1 +0,0 @@ -pmid aberrant abilities ability able abnormal abnormalities abnormality absence absent absolute 9065511 0 0 0 0 0 0 0 0 0 0 9084599 0 0 0 0.06112773 0 0 0 0 0 0 9114263 0 0 0 0 0 0 0 0 0 0 9185551 0 0 0 0 0 0 0 0 0 0 9256495 0 0 0 0 0 0 0 0 0 0 9391021 0 0 0 0 0 0 0 0 0 0 9405692 0 0 0 0 0 0 0 0.074285323 0 0 9412517 0 0 0 0 0 0 0 0.050676799 0 0 9465007 0 0 0 0 0 0 0 0 0 0 9491989 0 0 0 0 0 0 0 0 0 0 \ No newline at end of file diff --git a/nimare/tests/test_extract.py b/nimare/tests/test_extract.py index a259307ce..d11a48a78 100644 --- a/nimare/tests/test_extract.py +++ b/nimare/tests/test_extract.py @@ -11,10 +11,27 @@ def test_fetch_neurosynth(tmp_path_factory): Taken from the Neurosynth Python package. """ tmpdir = tmp_path_factory.mktemp("test_fetch_neurosynth") - url = ( - "https://raw.githubusercontent.com/neurosynth/neurosynth/master/neurosynth/tests/" - "data/test_data.tar.gz" + nimare.extract.fetch_neurosynth( + path=tmpdir, + version="7", + overwrite=False, + source="abstract", + vocab="terms", ) - nimare.extract.fetch_neurosynth(tmpdir, url=url, unpack=True) - files = glob(os.path.join(tmpdir, "*.txt")) - assert len(files) == 2 + files = glob(os.path.join(tmpdir, "*")) + assert len(files) == 4 + + +def test_fetch_neuroquery(tmp_path_factory): + """Smoke test for extract.fetch_neuroquery.""" + tmpdir = tmp_path_factory.mktemp("test_fetch_neuroquery") + nimare.extract.fetch_neuroquery( + path=tmpdir, + version="1", + overwrite=False, + source="abstract", + vocab="neuroquery7547", + type="count", + ) + files = glob(os.path.join(tmpdir, "*")) + assert len(files) == 4 diff --git a/nimare/tests/test_io.py b/nimare/tests/test_io.py index 2f61a4f41..7d51f4b3a 100644 --- a/nimare/tests/test_io.py +++ b/nimare/tests/test_io.py @@ -78,22 +78,58 @@ def test_convert_sleuth_to_json_smoke(): def test_convert_neurosynth_to_dataset_smoke(): """Smoke test for Neurosynth file conversion.""" - db_file = os.path.join(get_test_data_path(), "test_neurosynth_database.txt") - features_file = os.path.join(get_test_data_path(), "test_neurosynth_features.txt") + coordinates_file = os.path.join( + get_test_data_path(), + "data-neurosynth_version-7_coordinates.tsv.gz", + ) + metadata_file = os.path.join( + get_test_data_path(), + "data-neurosynth_version-7_metadata.tsv.gz", + ) + features = { + "features": os.path.join( + get_test_data_path(), + "data-neurosynth_version-7_vocab-terms_source-abstract_type-tfidf_features.npz", + ), + "vocabulary": os.path.join( + get_test_data_path(), "data-neurosynth_version-7_vocab-terms_vocabulary.txt" + ), + } dset = io.convert_neurosynth_to_dataset( - db_file, - {"Neurosynth_TEST": features_file}, + coordinates_file, + metadata_file, + annotations_files=features, ) assert isinstance(dset, nimare.dataset.Dataset) - assert "Neurosynth_TEST__abilities" in dset.annotations.columns + assert "terms_abstract_tfidf__abilities" in dset.annotations.columns def test_convert_neurosynth_to_json_smoke(): """Smoke test for Neurosynth file conversion.""" out_file = os.path.abspath("temp.json") - db_file = os.path.join(get_test_data_path(), "test_neurosynth_database.txt") - features_file = os.path.join(get_test_data_path(), "test_neurosynth_features.txt") - io.convert_neurosynth_to_json(db_file, out_file, annotations_file=features_file) + coordinates_file = os.path.join( + get_test_data_path(), + "data-neurosynth_version-7_coordinates.tsv.gz", + ) + metadata_file = os.path.join( + get_test_data_path(), + "data-neurosynth_version-7_metadata.tsv.gz", + ) + features = { + "features": os.path.join( + get_test_data_path(), + "data-neurosynth_version-7_vocab-terms_source-abstract_type-tfidf_features.npz", + ), + "vocabulary": os.path.join( + get_test_data_path(), "data-neurosynth_version-7_vocab-terms_vocabulary.txt" + ), + } + io.convert_neurosynth_to_json( + coordinates_file, + metadata_file, + out_file, + annotations_files=features, + ) dset = nimare.dataset.Dataset(out_file) assert os.path.isfile(out_file) assert isinstance(dset, nimare.dataset.Dataset)