From 69ff4353625d2a6e76bdb2de71825b3505dca1dd Mon Sep 17 00:00:00 2001 From: Travis Riddle Date: Sat, 8 Aug 2020 15:00:10 -0400 Subject: [PATCH 01/10] fixed some issues that occurred when pulling data for all PIs at once --- scopus_search.py | 257 ++++++++++++++++++++++++----------------------- 1 file changed, 129 insertions(+), 128 deletions(-) diff --git a/scopus_search.py b/scopus_search.py index 3fb3080..2967183 100644 --- a/scopus_search.py +++ b/scopus_search.py @@ -13,150 +13,151 @@ "Abstract Link", "Scopus Link", "Cited-By Link" ) -def query_scopus(query_ids, query_str, outfile): +def query_scopus(query_strs, outfile): headers = {"X-ELS-APIKey": SCOPUS_API_KEY} - params = { - "view": "COMPLETE", - "query": query_str, - "count": 25, - "start": 0 - } - + total_entries = 0 + eid_list = [] with open(outfile, "w") as output: writer = csv.writer(output) writer.writerow(CSV_COLUMN_HEADERS) - entry_count = 0 - page_count = 0 - - print("[+] Sending query to SCOPUS Search API...") - while True: - r = requests.get( - SCOPUS_SEARCH_API_URL, - params=params, - headers=headers - ) - - if r.status_code != 200: - print("Error:") - print(r.reason) - break - - body = r.json() - results = body.get("search-results") - - if results is None: - print("Error:") - print(body) - break - - page_count += 1 - - # Extract information for each result on this page - for entry in results["entry"]: - title = entry.get("dc:title", "") - - author_set = set() - - author_list = entry.get("author", []) - - for author in author_list: - firstname = author.get("given-name", "") - lastname = author.get("surname", "") - - if firstname is None: - firstname = "" - - if lastname is None: - lastname = "" - - author_set.add(firstname + " " + lastname) - - try: - if author_list[0].get("authid") in query_ids: - # If first author in the author list is a PI, - # set PI to first listed author - pi = author_list[0].get("surname", "") - else: - # Else, the PI is the author from the list nearest the end - for author in reversed(author_list): - if author.get("authid") in query_ids: - pi = author.get("surname", "") - break - except: - pi = '' - - date = entry.get("prism:coverDate", "") - citedby_count = entry.get("citedby-count", 0) - pub = entry.get("prism:publicationName", "") - page_range = entry.get("prism:pageRange", "") - doi = entry.get("prism:doi", "") - pubmed_id = entry.get("pubmed-id", "") - scopus_id = entry.get("dc:identifier", "").split(":")[1] - eid = entry.get("eid", "") - subtype = entry.get("subtypeDescription", "") - fund_acr = entry.get("fund-acr", "") - - abstract_link = "" - scopus_link = "" - citedby_link = "" - - for linkobj in entry["link"]: - if linkobj["@ref"] == "self": - abstract_link = linkobj["@href"] - if linkobj["@ref"] == "scopus": - scopus_link = linkobj["@href"] - if linkobj["@ref"] == "scopus-citedby": - citedby_link = linkobj["@href"] - - authors = ";".join(author_set) - - writer.writerow(( - title, pi, - authors, date, citedby_count, - pub, page_range, doi, pubmed_id, scopus_id, - eid, subtype, fund_acr, abstract_link, scopus_link, - citedby_link - )) - - entry_count += 1 - - # account for pagination - start = int(results["opensearch:startIndex"]) - total = int(results["opensearch:totalResults"]) - per_page = int(results["opensearch:itemsPerPage"]) - - # print("Start: %d, Total: %d, Per Page: %d" % (start, total, per_page)) - if start + per_page >= total: - break - - # update "start" index for "next" page of results - params["start"] = start + per_page - - print("[+] %d results on %d pages. Done!" % (entry_count, page_count)) + for pi in query_strs.keys(): + params = { + "view": "COMPLETE", + "query": query_strs[pi], + "count": 25, + "start": 0 + } + page_count = 0 + pi_entries = 0 + + print("[+] Sending " + pi + " query to SCOPUS Search API...") + while True: + r = requests.get( + SCOPUS_SEARCH_API_URL, + params=params, + headers=headers + ) + time.sleep(.25) + + if r.status_code != 200: + print("Error:") + print(r.reason) + break + + body = r.json() + results = body.get("search-results") + + if results is None: + print("Error:") + print(body) + break + + if results['opensearch:totalResults'] != '0': + page_count += 1 + + # Extract information for each result on this page + for entry in results["entry"]: + if entry.get("eid", "") not in eid_list: + title = entry.get("dc:title", "") + + author_set = set() + + author_list = entry.get("author", []) + + for author in author_list: + firstname = author.get("given-name", "") + lastname = author.get("surname", "") + + if firstname is None: + firstname = "" + + if lastname is None: + lastname = "" + + author_set.add(firstname + " " + lastname) + + date = entry.get("prism:coverDate", "") + citedby_count = entry.get("citedby-count", 0) + pub = entry.get("prism:publicationName", "") + page_range = entry.get("prism:pageRange", "") + doi = entry.get("prism:doi", "") + pubmed_id = entry.get("pubmed-id", "") + scopus_id = entry.get("dc:identifier", "").split(":")[1] + eid = entry.get("eid", "") + subtype = entry.get("subtypeDescription", "") + fund_acr = entry.get("fund-acr", "") + + abstract_link = "" + scopus_link = "" + citedby_link = "" + + for linkobj in entry["link"]: + if linkobj["@ref"] == "self": + abstract_link = linkobj["@href"] + if linkobj["@ref"] == "scopus": + scopus_link = linkobj["@href"] + if linkobj["@ref"] == "scopus-citedby": + citedby_link = linkobj["@href"] + + authors = ";".join(author_set) + + writer.writerow(( + title, pi, + authors, date, citedby_count, + pub, page_range, doi, pubmed_id, scopus_id, + eid, subtype, fund_acr, abstract_link, scopus_link, + citedby_link + )) + + pi_entries += 1 + eid_list.append(eid) + + # account for pagination + start = int(results["opensearch:startIndex"]) + total = int(results["opensearch:totalResults"]) + per_page = int(results["opensearch:itemsPerPage"]) + + # print("Start: %d, Total: %d, Per Page: %d" % (start, total, per_page)) + if start + per_page >= total: + print("[+] Done! %d records found." % (pi_entries)) + break + + # update "start" index for "next" page of results + params["start"] = start + per_page + + else: + pass def create_query(fname, start): """Generate query IDs and query string from input file and start date.""" - query_ids = set() - query_str = "" + query_strs = {} + query_dict = {} print("[+] Gathering AU-IDs...") + query_dict = {} with open(fname, 'r') as f: + local_ids = [] for line in f: + if line.startswith('#') and len(local_ids)==0: + pi = line.strip()[2:].split(' ')[-1] + if line.startswith('#') and len(local_ids)>0: + query_dict[pi] = local_ids + local_ids = [] + pi = line.strip()[2:].split(' ')[-1] if not line.startswith("#"): - query_ids.add(line.strip()) + local_ids.append(line.strip()) + + query_dict[pi] = local_ids + # Join all but the last AU-IDs with "OR" - for au_id in list(query_ids)[:-1]: - query_str += "AU-ID(" + au_id + ") OR " + for pi in query_dict.keys(): + query_strs[pi] = "AU-ID(" + ") OR AU-ID(".join(query_dict[pi]) + ") AND ORIG-LOAD-DATE AFT " + start - # Append the last AU-ID without the trailing "OR", and the date search - # parameter - print("[+] Creating SCOPUS query string...") - query_str += "AU-ID(" + list(query_ids)[-1] + ") AND ORIG-LOAD-DATE AFT " + start - return query_ids, query_str + return query_strs if __name__ == "__main__": @@ -176,5 +177,5 @@ def create_query(fname, start): if not SCOPUS_API_KEY: sys.exit("You must set the SCOPUS_API_KEY environment variable.") - query_ids, query_str = create_query(args.fname, args.start) - query_scopus(query_ids, query_str, args.outfile) + query_strs = create_query(args.fname, args.start) + query_scopus(query_strs, args.outfile) From d9417658ef151df31f08e4937da6f172c78e9742 Mon Sep 17 00:00:00 2001 From: Travis Riddle Date: Tue, 29 Sep 2020 10:34:25 -0400 Subject: [PATCH 02/10] more extensive description in readme --- README.md | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 070363c..232c9a5 100644 --- a/README.md +++ b/README.md @@ -2,11 +2,23 @@ An application to catalog and measure NIH IRP publications. -Assuming that the user is interested in updating these measures in subsequent years, it is a two-stage process. +Assuming that the user is interested in updating these measures in subsequent years, follow these steps: -In the first stage, the `scopus_search.py` script takes as input a list of investigators, and returns all the papers listed in scopus since the specified date. +1. Check the authors in `au_ids.txt` to ensure all PIs are represented. [Note1: we have discovered that some of the EIDs in this file returned data from investigators not in the IRP] -In the second stage, the `update_citation_counts.py` script takes as input the file produced in the previous year, and pulls all the unique EID (paper identifiers), updating the citation counts for those articles. We have experienced EIDs that change a bit year-to-year (on the order of one or two percent). Consequently, this script will print (and write to disk) EIDs that are missed. It is up to the user to go through an manually correct these by, for instance, creating a new csv file with a column labeled `EID` and using this as input for `update_citation_counts.py`. +2. Obtain a listing of the previously used publications in this analysis (henceforth: *old publications*). + +3. Use the `scopus_search.py` script to obtain all the papers listed in scopus since a given date (henceforth: *new publications*). This script takes as input a list of investigators, and a cutoff date. [Note2: we have found that this function still returns some papers that precede the cutoff date] + +4. Clean up the new publications, and distribute to the investigators so they can mark which papers of theirs used the scanners. [here](https://docs.google.com/spreadsheets/d/1w_00-0GV0OHPJxf1FsTi4oVQzbqitz6xmB5-1qMx-vQ/edit#gid=339438628) is a version of this spreadhseet from 2019. + +5. Use the `update_citation_counts.py` script to update the number of citations for the *old publications*. This script takes as input the file produced in the previous year, and pulls all the unique EID (paper identifiers), updating the citation counts for those articles. We have experienced EIDs that change a bit year-to-year (on the order of one or two percent). Consequently, this script will print (and write to disk) EIDs that are missed. It is up to the user to go through an manually correct these by, for instance, creating a new csv file with a column labeled `EID` and using this as input for a second run of `update_citation_counts.py`. + +6. Download the completed tabulation of which *new publications* used the scanners. + +7. The notebook `nih_irp_pubcount_workbook.ipynb` aggregates the data from the previous steps and generates a paragraph that describes the "productivity" of the reseaerch group as a whole. It also writes out a complete listing of papers for use next year. This notebook will rely on a PI <-> IC linking file (`investigator_ics.csv`) + +There have been uneven historical attempts to remove editorials, reviews, errata, and the like. The above does not attempt to describe how that might happen. ### scopus_search.py From 737871ed663045a989f527a24702a3d4d6e50de0 Mon Sep 17 00:00:00 2001 From: Travis Riddle Date: Tue, 29 Sep 2020 10:41:03 -0400 Subject: [PATCH 03/10] some ids were yielding incorrect data --- au-ids.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/au-ids.txt b/au-ids.txt index 9b8a2da..8fba62b 100644 --- a/au-ids.txt +++ b/au-ids.txt @@ -98,8 +98,8 @@ 7102502816 56650044800 56927814900 -#Armin Raznahan -18537910900 +# Armin Raznahan +57210439822 # Daniel Reich 7102312699 # Peter Schmidt From 5edd372cec260829d8010bac5ce262727e045091 Mon Sep 17 00:00:00 2001 From: Travis Riddle Date: Tue, 29 Sep 2020 10:44:23 -0400 Subject: [PATCH 04/10] fixed some bugs --- update_citation_counts.py | 29 +++++++++-------------------- 1 file changed, 9 insertions(+), 20 deletions(-) diff --git a/update_citation_counts.py b/update_citation_counts.py index 22dd593..065f93a 100644 --- a/update_citation_counts.py +++ b/update_citation_counts.py @@ -31,7 +31,7 @@ def query_scopus(eids, outfile): for eid in eids: params = { "view": "COMPLETE", - "query": "eid(" + str(eid) + ")", + "query": "eid(" + str(eid[0]) + ")", } try: @@ -80,22 +80,7 @@ def query_scopus(eids, outfile): author_set.add(firstname + " " + lastname) - try: - if author_list[0].get("authid") in auth_ids: - # If first author in the author list is a PI, - # set PI to first listed author - pi = author_list[0].get("surname", "") - else: - # Else, the PI is the author from the list nearest the end - for author in reversed(author_list): - if author.get("authid") in auth_ids: - pi = author.get("surname", "") - except: - print(eid) - if eid not in missed: - missed.append(eid) - pi = 'NA' - continue + pi = eid[1] date = entry.get("prism:coverDate", "") citedby_count = entry.get("citedby-count", 0) @@ -112,7 +97,7 @@ def query_scopus(eids, outfile): scopus_id = 'NA' continue - eid = entry.get("eid", "") + #eid = entry.get("eid", "") subtype = entry.get("subtypeDescription", "") fund_acr = entry.get("fund-acr", "") @@ -140,7 +125,7 @@ def query_scopus(eids, outfile): with open('missed_edids.txt', 'w') as f: for item in missed: - f.write("%s\n" % item) + f.write("%s\n" % ','.join(item)) def get_eids(fname): @@ -150,7 +135,11 @@ def get_eids(fname): print("[+] Gathering EIDS") dat = pd.read_csv(fname) - eids = dat.EID.tolist() + if 'PI' in dat.columns.tolist(): + eids = [tuple(x) for x in dat[['EID', 'PI']].to_numpy()] + else: + dat.rename(columns={'SearchedAuthor':'PI'}, inplace=True) + eids = [tuple(x) for x in dat[['EID', 'PI']].to_numpy()] return eids From 3fc8dd2ae5eb3fa115bf526d27bb50713f2d43d4 Mon Sep 17 00:00:00 2001 From: Travis Riddle Date: Tue, 29 Sep 2020 10:50:15 -0400 Subject: [PATCH 05/10] add notebook to aggregate data & generate paragraph --- 01.0-TAR-irp_pubcount.ipynb | 320 ++++++++++++++++++++++++++++++++++++ 1 file changed, 320 insertions(+) create mode 100644 01.0-TAR-irp_pubcount.ipynb diff --git a/01.0-TAR-irp_pubcount.ipynb b/01.0-TAR-irp_pubcount.ipynb new file mode 100644 index 0000000..1ff72d5 --- /dev/null +++ b/01.0-TAR-irp_pubcount.ipynb @@ -0,0 +1,320 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "import glob\n", + "import requests\n", + "import time\n", + "import warnings\n", + "warnings.filterwarnings(action='ignore')\n", + "SCOPUS_API_KEY = 'Get_yer_own_stinkin_key'\n", + "SCOPUS_SEARCH_API_URL = \"http://api.elsevier.com/content/search/scopus\"" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Helper functions" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [], + "source": [ + "def compute_h_index(citations):\n", + " sortlist = sorted(citations, reverse = True)\n", + " N = len(citations)\n", + " i = 0\n", + " while i= (i+1):\n", + " i += 1\n", + " return i\n", + "\n", + "\n", + "def scopus_query_citation_count(eidlist):\n", + " SCOPUS_API_KEY = 'Get_yer_own_stinkin_key'\n", + " SCOPUS_SEARCH_API_URL = \"http://api.elsevier.com/content/search/scopus\"\n", + " \"\"\"Take a list of EIDs and return a dictionary of EID -> citation_count\n", + " mapping.\"\"\"\n", + " eiddict = {}\n", + " failed = []\n", + " failed_count = 0\n", + " max_failed_attempts = 5\n", + " headers = {\"X-ELS-APIKey\": SCOPUS_API_KEY}\n", + "\n", + " sys.stdout.write(\"[+] Query EIDs from SCOPUS Search API\")\n", + " sys.stdout.flush()\n", + "\n", + " for eid in eidlist:\n", + " print(eid)\n", + " params = {\n", + " \"field\": \"eid,citedby-count\",\n", + " \"query\": \"eid(\" + eid + \")\"\n", + " }\n", + "\n", + " try:\n", + " r = requests.get(\n", + " SCOPUS_SEARCH_API_URL,\n", + " params=params,\n", + " headers=headers,\n", + " timeout=3\n", + " )\n", + " except requests.exceptions.Timeout:\n", + " sys.stdout.write(\"T\")\n", + " sys.stdout.flush()\n", + " failed.append(eid)\n", + " time.sleep(2)\n", + " continue\n", + "\n", + " if r.status_code != 200:\n", + " sys.stdout.write(\"F\")\n", + " sys.stdout.flush()\n", + "\n", + " if eid not in failed:\n", + " failed.append(eid)\n", + "\n", + " time.sleep(2)\n", + " continue\n", + "\n", + " body = r.json()\n", + " results = body.get(\"search-results\")\n", + "\n", + " if results is None:\n", + " sys.stdout.write(\"N\")\n", + " sys.stdout.flush()\n", + " continue\n", + "\n", + " # Extract information for each result on this page\n", + " entry = results.get(\"entry\")[0]\n", + " eid_item = entry.get(\"eid\")\n", + " citedby_count = entry.get(\"citedby-count\", \"0\")\n", + "\n", + " if eid_item:\n", + " eiddict.update({eid: citedby_count})\n", + " sys.stdout.write(\".\")\n", + " sys.stdout.flush()\n", + "\n", + " return eiddict, failed" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## first, load in the old file\n", + "I'm loading in the 2019 file, and then computing all the metrics needed for the main paragraph. To do that, I also need to pull in a file that has the IC for each investigator" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [], + "source": [ + "df_2019 = pd.read_csv('2019_complete.csv')\n", + "n_papes = df_2019.DOI.shape[0] \n", + "all_cites = df_2019['Cited-By Count'].sum() \n", + "citations = df_2019['Cited-By Count'].tolist() \n", + "h_index = compute_h_index(citations)\n", + "#Here i bring in the IC information\n", + "df_inv_ic = pd.read_csv('investigator_ics.csv')\n", + "df_inv_ic['PI'] = df_inv_ic['Author Name'].str.extract(r'(\\s\\S+$)')\n", + "df_inv_ic['PI'] = df_inv_ic['PI'].str.strip()\n", + "\n", + "df_2019['PI'] = df_2019['SearchedAuthor']\n", + "df_2019.PI.fillna(df_2019['PI'], inplace=True)\n", + "df_2019.replace('Faith Berman', 'Berman', inplace=True)\n", + "df_2019.replace('Mcfarland', 'McFarland', inplace=True)\n", + "df_2019 = df_2019.merge(df_inv_ic[['PI', 'IC']].drop_duplicates(), on='PI', how='left', )\n", + "\n", + "\n", + "gb_s = df_2019.groupby('IC').size()\n", + "nimh = gb_s[4]\n", + "ninds = gb_s[5]\n", + "other = gb_s[0] + gb_s[1] + gb_s[2] + gb_s[3] " + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [], + "source": [ + "nimh_2019 = df_2019[df_2019.IC=='NIMH'].EID.tolist()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Paragraph below checks out. Now time to add in the new papers. First, we figure out which papers are the new ones from the results returned from the scopus_search and update_citation_counts scripts" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Since its inception in 2000 until August 2019, a total of 1196 peer-reviewed publications from intramural investigators have used data acquired in the FMRIF core facility. The total is distributed among 681 papers from NIMH, 337 papers from NINDS, and 149 from the other institutes. These papers have been cited a total of 128887 times for a combined h-index of 175. In other words, 175 papers using the FMRIF have been cited at least 175 times.\n" + ] + } + ], + "source": [ + "print(f\"Since its inception in 2000 until August 2019, a total of {n_papes} peer-reviewed publications from \\\n", + "intramural investigators have used data acquired in the FMRIF core facility. The total is distributed among \\\n", + "{nimh} papers from NIMH, {ninds} papers from NINDS, and {other} from the other institutes. These papers \\\n", + "have been cited a total of {all_cites} times for a combined h-index of {h_index}. In other words, {h_index} \\\n", + "papers using the FMRIF have been cited at least {h_index} times.\")" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [], + "source": [ + "df_2020 = pd.read_csv('output_file.csv') \n", + "df_2020 = df_2020[~df_2020['EID'].isin(df_2019.EID.tolist())]\n", + "df_2020.rename(columns={'PI':'Searched PI',\n", + " 'Authors' : 'Authors (scrambled)'}, inplace=True)\n", + "df_2020['year'] = df_2020.Date.apply(lambda x: x[0:4])\n", + "df_2020 = df_2020[df_2020.year.isin(['2019', '2020'])]\n", + "df_2020 = df_2020.drop('year', axis=1)\n", + "df_2020.to_csv('2020_new_papers.csv', index=False) # new papers to mark" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Update citation counts from last year's report" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [], + "source": [ + "df_2019_updated = pd.read_csv('2019_complete_update_2020.csv') #results of update_citation_counts\n", + "df_2019_updated.rename(columns={'PI':'Searched PI',\n", + " 'Authors' : 'Authors (scrambled)'}, inplace=True)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### get new papers" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [], + "source": [ + "df_newpapers = pd.read_csv('New Publications from FMRIF Investigators Aug 2020 - 2020_new_papers.csv') #googledoc results\n", + "df_newpapers = df_newpapers[df_newpapers['FMRIF?']=='Y']\n", + "df_newpapers.drop('FMRIF?', inplace=True, axis=1)" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [], + "source": [ + "df_2020_report_papers = pd.concat([df_2019_updated, df_newpapers])" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [], + "source": [ + "n_papes = df_2020_report_papers.DOI.shape[0]\n", + "all_cites = df_2020_report_papers['Cited-By Count'].sum()\n", + "citations = df_2020_report_papers['Cited-By Count'].tolist()\n", + "h_index = compute_h_index(citations)\n", + "#Here i bring in the IC information\n", + "df_inv_ic = pd.read_csv('investigator_ics.csv')\n", + "df_inv_ic['PI'] = df_inv_ic['Author Name'].str.extract(r'(\\s\\S+$)')\n", + "df_inv_ic['PI'] = df_inv_ic['PI'].str.strip()\n", + "\n", + "df_2020_report_papers['PI'] = df_2020_report_papers['Searched PI']\n", + "df_2020_report_papers.PI.fillna(df_2020_report_papers['PI'], inplace=True)\n", + "df_2020_report_papers.replace('Faith Berman', 'Berman', inplace=True)\n", + "df_2020_report_papers.replace('Mcfarland', 'McFarland', inplace=True)\n", + "df_2020_report_papers = df_2020_report_papers.merge(df_inv_ic[['PI', 'IC']].drop_duplicates(), on='PI', how='left', )\n", + "\n", + "\n", + "gb_s = df_2020_report_papers.groupby('IC').size()\n", + "nimh = gb_s[4]\n", + "ninds = gb_s[5]\n", + "other = gb_s[0] + gb_s[1] + gb_s[2] + gb_s[3] " + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Since its inception in 2000 until August 2020, a total of 1222 peer-reviewed publications from intramural investigators have used data acquired in the FMRIF core facility. The total is distributed among 700 papers from NIMH, 345 papers from NINDS, and 148 from the other institutes. These papers have been cited a total of 140641 times for a combined h-index of 185. In other words, 185 papers using the FMRIF have been cited at least 185 times.\n" + ] + } + ], + "source": [ + "print(f\"Since its inception in 2000 until August 2020, a total of {n_papes} peer-reviewed publications from \\\n", + "intramural investigators have used data acquired in the FMRIF core facility. The total is distributed among \\\n", + "{nimh} papers from NIMH, {ninds} papers from NINDS, and {other} from the other institutes. These papers \\\n", + "have been cited a total of {all_cites} times for a combined h-index of {h_index}. In other words, {h_index} \\\n", + "papers using the FMRIF have been cited at least {h_index} times.\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.7.3" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} From 02b6e4c1bb15f7b87ef267261f64b228d1a6dd81 Mon Sep 17 00:00:00 2001 From: Travis Riddle Date: Tue, 29 Sep 2020 10:59:44 -0400 Subject: [PATCH 06/10] add data files --- data/complete/2019_complete.csv | 1197 ++++++++++++++++ data/complete/2020_complete.csv | 1223 +++++++++++++++++ data/interim/2019_complete_update_2020.csv | 1196 ++++++++++++++++ data/interim/2020_new_papers.csv | 619 +++++++++ ...vestigators Aug 2020 - 2020_new_papers.csv | 518 +++++++ data/interim/output_file.csv | 1223 +++++++++++++++++ data/raw/investigator_ics.csv | 86 ++ 7 files changed, 6062 insertions(+) create mode 100644 data/complete/2019_complete.csv create mode 100644 data/complete/2020_complete.csv create mode 100644 data/interim/2019_complete_update_2020.csv create mode 100644 data/interim/2020_new_papers.csv create mode 100644 data/interim/New Publications from FMRIF Investigators Aug 2020 - 2020_new_papers.csv create mode 100644 data/interim/output_file.csv create mode 100644 data/raw/investigator_ics.csv diff --git a/data/complete/2019_complete.csv b/data/complete/2019_complete.csv new file mode 100644 index 0000000..6c2951b --- /dev/null +++ b/data/complete/2019_complete.csv @@ -0,0 +1,1197 @@ +(scrambled) Authors,Abstract Link,Authors,Cited-By Count,Cited-By Link,DOI,Date,EID,Funding Agency,Page Range,PubMed ID,Scopus ID,Scopus Link,SearchedAuthor,Source Title,Title,Type +Marcie L. King;Iris I.A. Groen;Chris I. Baker;Dwight J. Kravitz;Adam Steel,https://api.elsevier.com/content/abstract/scopus_id/85065390290,,0,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85065390290&origin=inward,10.1016/j.neuroimage.2019.04.079,2019-08-15,2-s2.0-85065390290,,368-382,31054350.0,85065390290,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85065390290&origin=inward,Baker,NeuroImage,Similarity judgments and cortical visual responses reflect different properties of object and scene categories in naturalistic images,Article +Chris I. Baker;Adam Steel;Charlotte J. Stagg;Edward H. Silson,https://api.elsevier.com/content/abstract/scopus_id/85059851109,,0,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85059851109&origin=inward,10.1016/j.neuroimage.2019.01.009,2019-04-01,2-s2.0-85059851109,,95-105,30630080.0,85059851109,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85059851109&origin=inward,Baker,NeuroImage,Differential impact of reward and punishment on functional connectivity after skill learning,Article +Cibu Thomas;Aaron Trefler;Gang Chen;Chris I. Baker;Adam Steel,https://api.elsevier.com/content/abstract/scopus_id/85059115445,,0,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85059115445&origin=inward,10.1016/j.neuroimage.2018.12.038,2019-03-01,2-s2.0-85059115445,,524-538,30578926.0,85059115445,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85059115445&origin=inward,Baker,NeuroImage,Finding the baby in the bath water – evidence for task-specific changes in resting state functional connectivity evoked by training,Article +Adrian W. Gilmore;Alexis Kidder;Chris I. Baker;Sarah E. Kalinowski;Edward H. Silson;Alex Martin;Adam Steel,https://api.elsevier.com/content/abstract/scopus_id/85060371320,,1,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85060371320&origin=inward,10.1523/JNEUROSCI.1219-18.2018,2019-01-23,2-s2.0-85060371320,,705-717,30504281.0,85060371320,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85060371320&origin=inward,Baker,Journal of Neuroscience,A posterior–anterior distinction between scene perception and scene construction in human medial parietal cortex,Article +Annie W.Y. Chan;Paul F. Pasquina;Viktoria Elkis;Chris I. Baker;Jack W. Tsao;Lindsay Hussey-Anderson;Sarah Griffin;Emily Bilger;Sharon Weeks,https://api.elsevier.com/content/abstract/scopus_id/85067362998,,0,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85067362998&origin=inward,10.1016/j.nicl.2019.101882,2019-01-01,2-s2.0-85067362998,,,31226622.0,85067362998,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85067362998&origin=inward,Baker,NeuroImage: Clinical,Visual responsiveness in sensorimotor cortex is increased following amputation and reduced after mirror therapy,Article +Peter A. Bandettini;Salvatore Torrisi;Monique Ernst;Jeffrey Yen-Ting Liu;Gang Chen;Chris I. Baker;Richard Reynolds;Nicholas Balderston;Daniel Glen;Christian Grillon;Joseph Leshin,https://api.elsevier.com/content/abstract/scopus_id/85052626935,,3,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85052626935&origin=inward,10.1016/j.neuroimage.2018.03.071,2018-07-15,2-s2.0-85052626935,,100-110,29621615.0,85052626935,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85052626935&origin=inward,Baker,NeuroImage,Statistical power comparisons at 3T and 7T with a GO / NOGO task,Article +Chris I. Baker;Iris I.A. Groen,https://api.elsevier.com/content/abstract/scopus_id/85058693165,,0,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85058693165&origin=inward,10.1016/j.neuron.2018.12.014,2019-01-02,2-s2.0-85058693165,,8-10,30605658.0,85058693165,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85058693165&origin=inward,Baker,Neuron,Scenes in the Human Brain: Comparing 2D versus 3D Representations,Short Survey +Javier Gonzalez-Castillo;Andrew Hall;Peter A. Bandettini;Sean Marrett;Peter J. Molfese;Elisha P. Merriam;Yuhui Chai;Daniel A. Handwerker,https://api.elsevier.com/content/abstract/scopus_id/85064646526,,0,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85064646526&origin=inward,10.1016/j.neuroimage.2019.04.048,2019-08-15,2-s2.0-85064646526,,13-23,31015027.0,85064646526,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85064646526&origin=inward,Bandettini,NeuroImage,Visual temporal frequency preference shows a distinct cortical architecture using fMRI,Article +Peter A. Bandettini;Jiajia Yang;Gang Chen;Peter J. Molfese;Laurentius Huber;David C. Jangraw;Yoshimichi Ejima;Jinglong Wu;Yinghua Yu;Daniel A. Handwerker,https://api.elsevier.com/content/abstract/scopus_id/85065887483,,0,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85065887483&origin=inward,10.1126/sciadv.aav9053,2019-05-15,2-s2.0-85065887483,JSPS,,31106273.0,85065887483,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85065887483&origin=inward,Bandettini,Science Advances,Layer-specific activation of sensory input and predictive feedback in the human primary somatosensory cortex,Article +Peter A. Bandettini;Hua Xie;Javier Gonzalez-Castillo;Vince D. Calhoun;Sunanda Mitra;Daniel A. Handwerker;Charles Y. Zheng,https://api.elsevier.com/content/abstract/scopus_id/85059153793,,1,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85059153793&origin=inward,10.1016/j.neuroimage.2018.12.037,2019-03-01,2-s2.0-85059153793,,502-514,30576850.0,85059153793,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85059153793&origin=inward,Bandettini,NeuroImage,Efficacy of different dynamic functional connectivity methods to capture cognitively relevant information,Article +Jong Hwan Lee;Peter A. Bandettini;Hyun Chul Kim,https://api.elsevier.com/content/abstract/scopus_id/85057456558,,1,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85057456558&origin=inward,10.1016/j.neuroimage.2018.10.054,2019-02-01,2-s2.0-85057456558,,607-627,30366076.0,85057456558,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85057456558&origin=inward,Bandettini,NeuroImage,Deep neural network predicts emotional responses of the human brain from functional magnetic resonance imaging,Article +Şükrü Barış Demiral;Clara R. Freeman;Peter Bandettini;Corinde E. Wiers;Gene Jack Wang;Joelle Sarlls;Amna Zehra;Helene Benveniste;Ehsan Shokri-Kojori;Dardo Tomasi;Gregg Miller;Nora D. Volkow;Hedok Lee;Silvina Horovitz;Kenneth Ke;Elsa Lindgren;Veronica Ramirez;Tansha Srivastava,https://api.elsevier.com/content/abstract/scopus_id/85055328485,,1,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85055328485&origin=inward,10.1016/j.neuroimage.2018.10.043,2019-01-15,2-s2.0-85055328485,,263-273,30342236.0,85055328485,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85055328485&origin=inward,Bandettini,NeuroImage,Apparent diffusion coefficient changes in human brain during sleep – Does it inform on the existence of a glymphatic system?,Article +Javier Gonzalez-Castillo;César Caballero-Gaudes;Stefano Moia;Peter A. Bandettini,https://api.elsevier.com/content/abstract/scopus_id/85053871149,,0,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85053871149&origin=inward,10.1007/978-3-030-00931-1_36,2018-01-01,2-s2.0-85053871149,,311-319,,85053871149,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85053871149&origin=inward,Bandettini,Lecture Notes in Computer Science (including subseries Lecture Notes in Artificial Intelligence and Lecture Notes in Bioinformatics),Quantitative deconvolution of fmri data with multi-echo sparse paradigm free mapping,Conference Paper +Jakub R. Kaczmarzyk;Patrick McClure;Peter Bandettini;Francisco Pereira;John A. Lee;Dylan Nielson;Satrajit S. Ghosh;Charles Y. Zheng,https://api.elsevier.com/content/abstract/scopus_id/85064820043,,0,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85064820043&origin=inward,,2018-01-01,2-s2.0-85064820043,,4093-4103,,85064820043,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85064820043&origin=inward,Bandettini,Advances in Neural Information Processing Systems,Distributed weight consolidation: A brain segmentation case study,Conference Paper +Alexandru V. Avram;Peter J. Basser;Joelle E. Sarlls,https://api.elsevier.com/content/abstract/scopus_id/85055324723,,2,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85055324723&origin=inward,10.1016/j.neuroimage.2018.10.030,2019-01-15,2-s2.0-85055324723,,255-262,30326294.0,85055324723,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85055324723&origin=inward,Basser,NeuroImage,Measuring non-parametric distributions of intravoxel mean diffusivities using a clinical MRI scanner,Article +Yan Zhang;Stefano Marenco;Jun Shen;Jan Willem van der Veen;Dwight Dickinson;Karen F. Berman;Ryan Kelly;Christian Meyer;Daniel R. Weinberger,https://api.elsevier.com/content/abstract/scopus_id/85050669547,,0,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85050669547&origin=inward,10.1038/s41386-018-0134-5,2018-10-01,2-s2.0-85050669547,,2285-2291,30050047.0,85050669547,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85050669547&origin=inward,Berman,Neuropsychopharmacology,Role of gamma-amino-butyric acid in the dorsal anterior cingulate in age-associated changes in cognition,Article +Qiang Chen;Archana Venkataraman;Aaron L. Goldman;Sayan Ghosal;William Ulrich;Karen F. Berman;Venkata S. Mattay;Daniel R. Weinberger,https://api.elsevier.com/content/abstract/scopus_id/85068327144,,0,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85068327144&origin=inward,10.1117/12.2511220,2019-01-01,2-s2.0-85068327144,OER,,,85068327144,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85068327144&origin=inward,Berman,Progress in Biomedical Optics and Imaging - Proceedings of SPIE,A generative-predictive framework to capture altered brain activity in fMRI and its association with genetic risk: Application to Schizophrenia,Conference Paper +Peter van Gelderen;Jeff H. Duyn,https://api.elsevier.com/content/abstract/scopus_id/85053556025,,0,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85053556025&origin=inward,10.1002/mrm.27398,2019-01-01,2-s2.0-85053556025,,628-638,30230605.0,85053556025,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85053556025&origin=inward,Duyn,Magnetic Resonance in Medicine,White matter intercompartmental water exchange rates determined from detailed modeling of the myelin sheath,Article +Matthew K. Schindler;Peter van Gelderen;Pascal Sati;Jeff H. Duyn;Jacco A. de Zwart;Jiaen Liu;Daniel S. Reich,https://api.elsevier.com/content/abstract/scopus_id/85049795779,,0,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85049795779&origin=inward,10.1016/j.neuroimage.2018.07.011,2018-11-01,2-s2.0-85049795779,,292-300,29981905.0,85049795779,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85049795779&origin=inward,Duyn,NeuroImage,Impulse response timing differences in BOLD and CBV weighted fMRI,Article +Davis P. Argersinger;Russell R. Lonser;Sanhita Sinharay;Codrin Lungu;Mark Hallett;Howard J. Federoff;Debra J. Ehrlich;Gretchen Scott;Kareem A. Zaghloul;Krystof S. Bankiewicz;Peter Herscovitch;Tianxia Wu;Dima A. Hammoud;John D. Heiss,https://api.elsevier.com/content/abstract/scopus_id/85066470261,,0,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85066470261&origin=inward,10.1002/mds.27724,2019-01-01,2-s2.0-85066470261,,,,85066470261,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85066470261&origin=inward,Hallett,Movement Disorders,Trial of magnetic resonance–guided putaminal gene therapy for advanced Parkinson's disease,Article +Rezvan Ameli;Steven A. Epstein;Carine W. Maurer;Stephen Sinclair;Geanna Capitan;Mark Hallett;Silvina G. Horovitz;Gaurang S. Limachia;Kathrin Lafave,https://api.elsevier.com/content/abstract/scopus_id/85056323152,,3,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85056323152&origin=inward,10.1212/WNL.0000000000006514,2018-11-13,2-s2.0-85056323152,NIH,E1870-E1879,30305450.0,85056323152,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85056323152&origin=inward,Hallett,Neurology,Article gray matter differences in patients with functional movement disorders,Article +Mary Kay Floeter;Michael G. Clark;Laura E. Danielian;Devin Bageac;Rachel Smallwood Shoukry;Caleb J. Huang,https://api.elsevier.com/content/abstract/scopus_id/85054736833,,3,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85054736833&origin=inward,10.1080/21678421.2018.1517180,2018-10-02,2-s2.0-85054736833,,562-569,30299161.0,85054736833,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85054736833&origin=inward,Hallett,Amyotrophic Lateral Sclerosis and Frontotemporal Degeneration,Loss of functional connectivity is an early imaging marker in primary lateral sclerosis,Article +Maria Kryza-Lacombe;Melissa A. Brotman;Daniel S. Pine;Jillian Lee Wiggins;Richard C. Reynolds;Kenneth Towbin;Ellen Leibenluft,https://api.elsevier.com/content/abstract/scopus_id/85063696578,,0,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85063696578&origin=inward,10.1111/bdi.12768,2019-06-01,2-s2.0-85063696578,NIMH,309-320,30851221.0,85063696578,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85063696578&origin=inward,Leibenluft,Bipolar Disorders,Neural mechanisms of face emotion processing in youths and adults with bipolar disorder,Article +Katharina Kircanski;Elizabeth Moroney;Kenneth E. Towbin;Alexandra Roule;Gretchen Perhamus;Joel Stoddard;Roxann Roberson-Nay;Jennifer Y. Yi;Richard C. Reynolds;Argyris Stringaris;Laura Donahue;Ellen Leibenluft;Melissa A. Brotman;Laura Machlin;Daniel S. Pine;Wan Ling Tseng;Christen M. Deveney;John M. Hettema;Derek Hsu;Anna E. Frackman,https://api.elsevier.com/content/abstract/scopus_id/85060043984,,1,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85060043984&origin=inward,10.1176/appi.ajp.2018.18040491,2019-01-01,2-s2.0-85060043984,,67-76,30336704.0,85060043984,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85060043984&origin=inward,Leibenluft,American Journal of Psychiatry,Brain mechanisms of attention orienting following frustration: Associations with irritability and age in youths,Article +Johanna M. Jarcho;Brent I. Rappaport;Ellen Leibenluft;Daniel S. Pine;Ashley R. Smith;Eric E. Nelson,https://api.elsevier.com/content/abstract/scopus_id/85056722440,,2,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85056722440&origin=inward,10.1089/cap.2017.0142,2018-11-01,2-s2.0-85056722440,,646-654,29792726.0,85056722440,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85056722440&origin=inward,Leibenluft,Journal of Child and Adolescent Psychopharmacology,I like them...will they like me? Evidence for the role of the ventrolateral prefrontal cortex during mismatched social appraisals in anxious youth,Article +Stephen J. Gotts;Adrian W. Gilmore;Shawn C. Milleville;Sarah E. Kalinowski;Alex Martin,https://api.elsevier.com/content/abstract/scopus_id/85059839456,,1,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85059839456&origin=inward,10.1016/j.neuropsychologia.2018.12.023,2019-02-18,2-s2.0-85059839456,,31-43,30610842.0,85059839456,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85059839456&origin=inward,Martin,Neuropsychologia,Identifying task-general effects of stimulus familiarity in the parietal memory network,Article +Alex Martin;Christine E. Watson;Stephen J. Gotts;Laurel J. Buxbaum,https://api.elsevier.com/content/abstract/scopus_id/85059397375,,1,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85059397375&origin=inward,10.1016/j.nicl.2018.08.033,2019-01-01,2-s2.0-85059397375,,,30612063.0,85059397375,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85059397375&origin=inward,Martin,NeuroImage: Clinical,Bilateral functional connectivity at rest predicts apraxic symptoms after left hemisphere stroke,Article +Alex Martin;Gregory L. Wallace;Jason Crutcher,https://api.elsevier.com/content/abstract/scopus_id/85055425406,,0,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85055425406&origin=inward,10.1002/aur.1969,2018-08-01,2-s2.0-85055425406,,1175-1186,30365251.0,85055425406,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85055425406&origin=inward,Martin,Autism Research,Dissociations in the neural substrates of language and social functioning in autism spectrum disorder,Article +Avniel Singh Ghuman;Alex Martin,https://api.elsevier.com/content/abstract/scopus_id/85065538990,,0,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85065538990&origin=inward,10.1016/j.tics.2019.04.004,2019-07-01,2-s2.0-85065538990,,534-536,31103440.0,85065538990,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85065538990&origin=inward,Martin,Trends in Cognitive Sciences,Dynamic Neural Representations: An Inferential Challenge for fMRI,Short Survey +Elisha P. Merriam;David J. Heeger;Zvi N. Roth,https://api.elsevier.com/content/abstract/scopus_id/85054133925,,1,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85054133925&origin=inward,10.7554/eLife.37241,2018-08-14,2-s2.0-85054133925,NIH,,30106372.0,85054133925,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85054133925&origin=inward,Merriam,eLife,Stimulus vignetting and orientation selectivity in human visual cortex,Article +Marisa Carrasco;David J. Heeger;Elisha P. Merriam;Laura Dugué,https://api.elsevier.com/content/abstract/scopus_id/85053080665,,9,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85053080665&origin=inward,10.1093/cercor/bhx140,2018-01-01,2-s2.0-85053080665,,2375-2390,28981585.0,85053080665,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85053080665&origin=inward,Merriam,Cerebral Cortex,Specific visual subregions of TPJ mediate reorienting of spatial attention,Article +Samantha J. Fede;Jisoo Lee;Jeesun Jung;Katrin Charlet;Christine Muench;Hui Sun;Reza Momenan;Audrey Luo;Falk W. Lohoff;Daniel B. Rosoff,https://api.elsevier.com/content/abstract/scopus_id/85066163873,,0,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85066163873&origin=inward,10.1093/alcalc/agz032,2019-05-01,2-s2.0-85066163873,,209-215,31008507.0,85066163873,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85066163873&origin=inward,Momenan,"Alcohol and alcoholism (Oxford, Oxfordshire)",Lack of Association Between Serotonin Transporter Gene (SLC6A4) Promoter Methylation and Amygdala Response During Negative Emotion Processing in Individuals With Alcohol Dependence,Article +Julia E. Swan;Joshua Gowin;Matthew E. Sloan;Reza Momenan;Vijay A. Ramchandani,https://api.elsevier.com/content/abstract/scopus_id/85056848429,,2,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85056848429&origin=inward,10.1007/s00213-018-5113-3,2019-02-14,2-s2.0-85056848429,,775-785,30456539.0,85056848429,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85056848429&origin=inward,Momenan,Psychopharmacology,The relationship between delay discounting and alcohol dependence in individuals with and without comorbid psychopathology,Article +Albert Batalla;Janice Bunn;Rocio Martin-Santos;Deborah Yurgelun-Todd;Scott Mackey;Nicholas B. Allen;Chiang Shan R. Li;Maartje Luijten;Valentina Lorenzetti;Reza Momenan;John J. Foxe;Betty Jo Salmeron;Patricia Conrod;Nelly Alia-Klein;Lianne Schmaal;Zsuzsika Sjoerds;Bader Chaarani;Elisabeth Caparelli;Sara Blaine;Anna E. Goudriaan;Philip Spechler;Edythe London;Mary M. Heitzeg;Godfrey Pearlson;Gunter Schumann;Samantha Brooks;Elliot A. Stein;Alain Dagher;Marc Etienne Rousseau;Martin P. Paulus;David C. Glahn;Sylvane Desrivieres;Ozlem Korucuoglu;Nicholas Allgaier;Anne Uhlmann;Alan Evans;Murat Yücel;Hugh Garavan;Sarah Feldstein-Ewing;Ruth Van Holst;Sheng Zhang;Dick Veltman;Janna Cousijn;Robert Hester;Sarah Whittle;Angelica Morales;Rita Z. Goldstein;Nadia Solowij;Paul M. Thompson;Yann Ying Chye;Derrek P. Hibar;Catherine Orr;Kent Hutchison;Margaret J. Wright;Susan Tapert;April May;Renée Schluter;Dan J. Stein;Neda Jahanshad;Rajita Sinha,https://api.elsevier.com/content/abstract/scopus_id/85061044348,,4,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85061044348&origin=inward,10.1176/appi.ajp.2018.17040415,2019-02-01,2-s2.0-85061044348,,119-128,30336705.0,85061044348,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85061044348&origin=inward,Momenan,American Journal of Psychiatry,Mega-analysis of gray matter volume in substance dependence: General and substance-specific regional effects,Article +Samantha J. Fede;Sarah F. Dean;Erica N. Grodin;Reza Momenan;Nancy Diazgranados,https://api.elsevier.com/content/abstract/scopus_id/85063233336,,0,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85063233336&origin=inward,10.1016/j.nicl.2019.101782,2019-01-01,2-s2.0-85063233336,,,30921611.0,85063233336,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85063233336&origin=inward,Momenan,NeuroImage: Clinical,Resting state connectivity best predicts alcohol use severity in moderate to heavy alcohol users,Article +Jeesun Jung;Melanie Schwandt;Christine Muench;Carlos R. Cortes;Reza Momenan;Falk W. Lohoff,https://api.elsevier.com/content/abstract/scopus_id/85049883924,,0,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85049883924&origin=inward,10.1038/s41398-018-0184-9,2018-12-01,2-s2.0-85049883924,,,30006604.0,85049883924,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85049883924&origin=inward,Momenan,Translational Psychiatry,The major depressive disorder GWAS-supported variant rs10514299 in TMEM161B-MEF2C predicts putamen activation during reward processing in alcohol dependence,Article +Kelsey Sundby;Grace M. Brennan;Erica N. Grodin;Lauren Sussman;Reza Momenan;Markus Heilig;Nancy Diazgranados,https://api.elsevier.com/content/abstract/scopus_id/85057151554,,5,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85057151554&origin=inward,10.1016/j.bpsc.2018.06.009,2018-12-01,2-s2.0-85057151554,NIAAA,1022-1031,30143454.0,85057151554,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85057151554&origin=inward,Momenan,Biological Psychiatry: Cognitive Neuroscience and Neuroimaging,Neural Correlates of Compulsive Alcohol Seeking in Heavy Drinkers,Article +Maura L. Furey;Jessica L. Reed;Jennifer W. Evans;Allison C. Nugent;Carlos A. Zarate;Joanna E. Szczepanik,https://api.elsevier.com/content/abstract/scopus_id/85062038500,,1,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85062038500&origin=inward,10.1016/j.bpsc.2019.01.005,2019-07-01,2-s2.0-85062038500,,610-618,,85062038500,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85062038500&origin=inward,Nugent,Biological Psychiatry: Cognitive Neuroscience and Neuroimaging,Effects of Ketamine on Brain Activity During Emotional Processing: Differential Findings in Depressed Versus Healthy Control Participants,Article +Jessica R. Gilbert;Allison C. Nugent;Carlos A. Zarate;Kathleen E. Wills,https://api.elsevier.com/content/abstract/scopus_id/85058137370,,2,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85058137370&origin=inward,10.1016/j.pscychresns.2018.09.001,2019-01-30,2-s2.0-85058137370,,64-66,30551012.0,85058137370,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85058137370&origin=inward,Nugent,Psychiatry Research - Neuroimaging,Synaptic potentiation and rapid antidepressant response to ketamine in treatment-resistant major depression: A replication study,Article +Jennifer W. Evans;Sam L. Snider;Dipavo Banerjee;Cristan Farmer;Allison C. Nugent;Carlos A. Zarate,https://api.elsevier.com/content/abstract/scopus_id/85067390070,,0,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85067390070&origin=inward,10.1002/hbm.24679,2019-01-01,2-s2.0-85067390070,,,,85067390070,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85067390070&origin=inward,Nugent,Human Brain Mapping,Multimodal imaging reveals a complex pattern of dysfunction in corticolimbic pathways in major depressive disorder,Article +Elizabeth D. Ballard;Carl W. Lejuez;Jessica L. Reed;Jennifer W. Evans;Allison C. Nugent;Carlos A. Zarate;Joanna E. Szczepanik,https://api.elsevier.com/content/abstract/scopus_id/85064911728,,0,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85064911728&origin=inward,10.1007/s11682-019-00084-w,2019-01-01,2-s2.0-85064911728,,,,85064911728,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85064911728&origin=inward,Nugent,Brain Imaging and Behavior,Mapping anticipatory anhedonia: an fMRI study,Article +Julia S. Yarrington;Elizabeth D. Ballard;Jessica L. Reed;Jennifer W. Evans;Joanna Szczepanik;Matthew K. Nock;Daniel P. Dickstein;Allison C. Nugent;Carlos A. Zarate,https://api.elsevier.com/content/abstract/scopus_id/85061584307,,0,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85061584307&origin=inward,10.1111/sltb.12543,2019-01-01,2-s2.0-85061584307,,,,85061584307,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85061584307&origin=inward,Nugent,Suicide and Life-Threatening Behavior,Functional Imaging of the Implicit Association of the Self With Life and Death,Article +Jessica Gill;Paul J. Carlson;Alicja Lerner;Wayne C. Drevets;Allison C. Nugent;Inbal Reuveni;Meena Vythilingam;Dennis S. Charney;Alexander Neumeister;Omer Bonne,https://api.elsevier.com/content/abstract/scopus_id/85054428567,,0,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85054428567&origin=inward,10.1038/s41398-018-0257-9,2018-12-01,2-s2.0-85054428567,,,30287828.0,85054428567,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85054428567&origin=inward,Nugent,Translational Psychiatry,Altered cerebral benzodiazepine receptor binding in post-traumatic stress disorder,Article +Joanna Szczepanik;Lawrence Park;Maura Furey;Marc S. Lener;Cristan Farmer;Allison C. Nugent;Carlos A. Zarate;Jessica Ellis,https://api.elsevier.com/content/abstract/scopus_id/85057790880,,5,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85057790880&origin=inward,10.1093/ijnp/pyy051,2018-09-01,2-s2.0-85057790880,,10-18,30184133.0,85057790880,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85057790880&origin=inward,Nugent,International Journal of Neuropsychopharmacology,Neurophysiological Changes Associated with Antidepressant Response to Ketamine Not Observed in a Negative Trial of Scopolamine in Major Depressive Disorder,Article +Julia S. Yarrington;Jessica R. Gilbert;Allison C. Nugent;Carlos A. Zarate;Kathleen E. Wills,https://api.elsevier.com/content/abstract/scopus_id/85055321060,,2,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85055321060&origin=inward,10.1093/ijnp/pyy041,2018-01-01,2-s2.0-85055321060,,740-747,29668918.0,85055321060,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85055321060&origin=inward,Nugent,International Journal of Neuropsychopharmacology,Glutamatergic signaling drives ketamine-mediated response in depression: Evidence from dynamic causal modeling,Article +Maura L. Furey;Jessica L. Reed;Jennifer W. Evans;Allison C. Nugent;Carlos A. Zarate;Joanna E. Szczepanik,https://api.elsevier.com/content/abstract/scopus_id/85049802328,,4,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85049802328&origin=inward,10.1016/j.nicl.2018.07.006,2018-01-01,2-s2.0-85049802328,,92-101,30094160.0,85049802328,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85049802328&origin=inward,Nugent,NeuroImage: Clinical,Ketamine normalizes brain activity during emotionally valenced attentional processing in depression,Article +M. Okan Irfanoglu;Carlo Pierpaoli;Amritha Nayak;Joelle Sarlls,https://api.elsevier.com/content/abstract/scopus_id/85056086505,,0,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85056086505&origin=inward,10.1002/mrm.27577,2019-04-01,2-s2.0-85056086505,,2774-2787,30394561.0,85056086505,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85056086505&origin=inward,Pierpaoli,Magnetic Resonance in Medicine,Evaluating corrections for Eddy-currents and other EPI distortions in diffusion MRI: methodology and a dataset for benchmarking,Article +David G. Weissman;Daniel S. Pine;Jessica L. Jenness;Alexandra M. Rodman;Katie A. McLaughlin,https://api.elsevier.com/content/abstract/scopus_id/85068373371,,0,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85068373371&origin=inward,10.1016/j.biopsych.2019.04.033,2019-01-01,2-s2.0-85068373371,NARSAD,,,85068373371,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85068373371&origin=inward,Pine,Biological Psychiatry,Neurobiological Markers of Resilience to Depression Following Childhood Maltreatment: The Role of Neural Circuits Supporting the Cognitive Control of Emotion,Article +Ilan Wald;Gad Lubin;Adva Segal;Eyal Fruchter;Ariel Ben Yehuda;Daniel S. Pine;Yair Bar-Haim;Keren Ginat,https://api.elsevier.com/content/abstract/scopus_id/85063626687,,0,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85063626687&origin=inward,10.1017/S0033291719000539,2019-01-01,2-s2.0-85063626687,,,,85063626687,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85063626687&origin=inward,Pine,Psychological Medicine,Changes in the dynamic network structure of PTSD symptoms pre-to-post combat,Article +Natania A. Crane;Katie L. Bessette;Kristy A. Skerrett;Daniel S. Pine;Lisanne M. Jenkins;Jonathan P. Stange;Yi Shin Chang;Jon Kar Zubieta;Scott A. Langenecker;Samantha D. Corwin;Víctor G. Patrón;Alessandra M. Passarotti,https://api.elsevier.com/content/abstract/scopus_id/85051920438,,0,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85051920438&origin=inward,10.1016/j.jad.2018.07.082,2018-12-01,2-s2.0-85051920438,,371-380,30145507.0,85051920438,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85051920438&origin=inward,Pine,Journal of Affective Disorders,Differential engagement of cognitive control regions and subgenual cingulate based upon presence or absence of comorbid anxiety with depression,Article +Wen Ming Luh;Peter A. Bandettini;Monique Ernst;Daniel S. Pine;Dana Rosen;Brenda E. Benson;Sophia Frangou;Prantik Kundu;Ellen Leibenluft,https://api.elsevier.com/content/abstract/scopus_id/85051138382,,1,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85051138382&origin=inward,10.1523/JNEUROSCI.1864-17.2018,2018-04-04,2-s2.0-85051138382,,3559-3570,29487126.0,85051138382,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85051138382&origin=inward,Pine,Journal of Neuroscience,The integration of functional brain activity from adolescence to adulthood,Article +Judith Rapoport;Diane Broadnax;Adam Thomas;Siyuan Liu;Dale Zhou;Rebecca Berman;Xueping Zhou;Peter Gochman,https://api.elsevier.com/content/abstract/scopus_id/85057850353,,0,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85057850353&origin=inward,10.1016/j.schres.2018.07.023,2018-12-01,2-s2.0-85057850353,,431-432,30029830.0,85057850353,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85057850353&origin=inward,Rapoport,Schizophrenia Research,7 T MRI reveals hippocampal structural abnormalities associated with memory intrusions in childhood-onset schizophrenia,Letter +Martina Absinta;Daniel S. Reich,https://api.elsevier.com/content/abstract/scopus_id/85060215290,,1,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85060215290&origin=inward,10.1177/1352458518794082,2019-03-01,2-s2.0-85060215290,,330-331,,85060215290,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85060215290&origin=inward,Reich,Multiple Sclerosis Journal,Imaging of meningeal inflammation should become part of the routine MRI protocol – Yes,Article +Atef Badji;Virginie Callot;Govind Nair;Masaaki Hori;Russell Ouellette;Jan Hillert;Josefina Maranzano;Maria A. Rocca;Caterina Mainero;Dominique Eden;Sara M. Dupont;Yasuhiko Tachibana;Anne Kerbrat;Constantina Andrada Treaba;Benjamin De Leener;Julien Cohen-Adad;Jean Pelletier;Timothy M. Shepherd;Jason Talbott;Charley Gros;Jennifer Lefeuvre;Tobias Granberg;Rohit Bakshi;Kouhei Kamiya;Sridar Narayanan;Marios Yiannakas;Seth A. Smith;Erik Charlson;Shahamat Tauhid;Henitsoa Rasoanandrianina;Leszek Stawiarz;Hugh Kearney;Lydia Chougar;Paola Valsasina;Gilles Edan;Massimo Filippi;Bertrand Audoin;Ren Zhuoquiong;Pierre Labauge;Ferran Prados;Jean Christophe Brisset;Olga Ciccarelli;Yaou Liu;Daniel S. Reich;Elise Bannier,https://api.elsevier.com/content/abstract/scopus_id/85062529087,,2,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85062529087&origin=inward,10.1093/brain/awy352,2019-03-01,2-s2.0-85062529087,ARSEP,633-646,30715195.0,85062529087,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85062529087&origin=inward,Reich,Brain,Spatial distribution of multiple sclerosis lesions in the cervical spinal cord,Article +Peter A. Calabresi;Jonghye Woo;Jiwon Oh;Pascal Sati;Aaron Carass;Jerry L. Prince;Dzung L. Pham;Blake E. Dewey;Daniel S. Reich;Can Zhao,https://api.elsevier.com/content/abstract/scopus_id/85054053751,,0,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85054053751&origin=inward,10.1007/978-3-030-00928-1_12,2018-01-01,2-s2.0-85054053751,NINDS,100-108,,85054053751,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85054053751&origin=inward,Reich,Lecture Notes in Computer Science (including subseries Lecture Notes in Artificial Intelligence and Lecture Notes in Bioinformatics),A deep learning based anti-aliasing self super-resolution algorithm for MRI,Conference Paper +Peter A. Calabresi;Sinyeob Ahn;R. Todd Constable;William D. Rooney;Daniel Pelletier;Jiwon Oh;Nico Papinutto;John Grinstead;Govind Nair;Katherine Powers;Russell Shinohara;Nancy L. Sicotte;Rohit Bakshi;Ian Tagge;Daniel L. Schwartz;Daniel S. Reich;Roland G. Henry,https://api.elsevier.com/content/abstract/scopus_id/85060152881,,0,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85060152881&origin=inward,10.1002/jmri.26652,2019-01-01,2-s2.0-85060152881,,,,85060152881,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85060152881&origin=inward,Reich,Journal of Magnetic Resonance Imaging,Multisite reliability and repeatability of an advanced brain MRI protocol, +Daniel S. Pine;Argyris Stringaris;Ellen Leibenluft;Narun Pornpattananangkul,https://api.elsevier.com/content/abstract/scopus_id/85063004708,,2,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85063004708&origin=inward,10.1001/jamapsychiatry.2019.0020,2019-06-01,2-s2.0-85063004708,,624-633,30865236.0,85063004708,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85063004708&origin=inward,Stringaris,JAMA Psychiatry,Association between childhood anhedonia and alterations in large-scale resting-state networks and task-evoked activation,Article +Koen Bolhuis;Ryan L. Muetzel;Tonya White;Henning Tiemeier;Manon H.J. Hillegers;Steven A. Kushner;James J. Hudziak;Argyris Stringaris;Vincent W.V. Jaddoe,https://api.elsevier.com/content/abstract/scopus_id/85051521885,,2,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85051521885&origin=inward,10.1016/j.biopsych.2018.07.005,2019-02-15,2-s2.0-85051521885,,336-344,30119874.0,85051521885,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85051521885&origin=inward,Stringaris,Biological Psychiatry,Structural Brain Connectivity in Childhood Disruptive Behavior Problems: A Multidimensional Approach,Article +Hervé Lemaitre;Eleni Tzavara;Sarah Rodehacke;Andreas Heinz;Patricia Conrod;Robert Whelan;Yvonne Grimmer;Rüdiger Brühl;Charbel Massaad;Tobias Banaschewski;Gunter Schumann;Michael N. Smolka;Henrik Walter;Jani Penttilä;Argyris Stringaris;Frauke Nees;Tahmine Fadai;Gareth J. Barker;Arun L.W. Bokde;Hugh Garavan;Maren Struve;Marie Laure Paillère Martinot;Ruben Miranda;Eric Artiges;Dimitri Papadopoulos-Orfanos;Betteke M. Van Noort;Christian Büchel;Vincent Frouin;Robert Goodman;Uli Bromberg;Juergen Gallinat;Tomas Paus;Jean Luc Martinot;Hélène Vulser;Penny Gowland;Viola Kappel;Sylvane Desrivières;Herta Flor;Anna Cattrell;Luise Poustka,https://api.elsevier.com/content/abstract/scopus_id/85057593778,,0,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85057593778&origin=inward,10.1176/appi.ajp.2018.17070825,2018-12-01,2-s2.0-85057593778,,1255-1264,30111185.0,85057593778,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85057593778&origin=inward,Stringaris,American Journal of Psychiatry,Early variations in white matter microstructure and depression outcome in adolescents with subthreshold depression,Article +Melissa A. Brotman;Ellen Leibenluft;Pedro M. Pan;Daniel S. Pine;Ariela Kaiser;George A. Buzzell;Pablo Vidal-Ribas;Liana Meffert;Selina Wolke;Georgia O'Callaghan;Argyris Stringaris;Hanna Keren,https://api.elsevier.com/content/abstract/scopus_id/85056342442,,10,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85056342442&origin=inward,10.1176/appi.ajp.2018.17101124,2018-11-01,2-s2.0-85056342442,,1111-1120,29921146.0,85056342442,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85056342442&origin=inward,Stringaris,American Journal of Psychiatry,Reward processing in depression: A conceptual and meta-analytic review across fMRI and EEG studies,Article +Dimitri Papadopoulos Orfanos;Nora C. Vetter;Andreas Heinz;Frida Bayard;Bernd Ittermann;Patricia Conrod;Robert Whelan;Yvonne Grimmer;Gunter Schumann;Tobias Banaschewski;Betteke van Noort;Rita Almeida;Michael N. Smolka;Henrik Walter;Herta Flor;Charlotte Nymberg Thunell;Jani Penttilä;Argyris Stringaris;Gareth Barker;Frauke Nees;Tahmine Fadai;Arun L.W. Bokde;Hugh Garavan;Maren Struve;Marie Laure Paillère Martinot;Predrag Petrovic;Sylvane Desrivières;Tomáš Paus;Christian Büchel;Uli Bromberg;Jean Luc Martinot;Penny Gowland;Luise Poustka;Viola Kappel;Vincent Frouin;Christoph Abé;Erin Burke Quinlan,https://api.elsevier.com/content/abstract/scopus_id/85052304815,,1,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85052304815&origin=inward,10.1038/s41380-018-0202-6,2018-01-01,2-s2.0-85052304815,,,,85052304815,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85052304815&origin=inward,Stringaris,Molecular Psychiatry,Distinct brain structure and behavior related to ADHD and conduct disorder traits, +Leigh N. Sepeta;William D. Gaillard;Rachel Rolinski;Shubhi Agrawal;Sara K. Inati;William H. Theodore;Alison Austermuehle;Kareem A. Zaghloul;Edythe Wiggs,https://api.elsevier.com/content/abstract/scopus_id/85061441395,,0,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85061441395&origin=inward,10.1111/epi.14666,2019-03-01,2-s2.0-85061441395,,560-570,30740700.0,85061441395,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85061441395&origin=inward,Theodore,Epilepsia,Functional MRI and direct cortical stimulation: Prediction of postoperative language decline,Article +Madison M. Berl;Leigh N. Sepeta;William D. Gaillard;Gina Norato;Eric J. Emery;Chelsea L. Black;Ashley N. Zachery;Kareem Zaghloul;Sara K. Inati;William H. Theodore;Xiaozhen You;Sierra C Germeyan;Eleanor J. Fanto;Edythe Wiggs,https://api.elsevier.com/content/abstract/scopus_id/85061500598,,0,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85061500598&origin=inward,10.1111/epi.14656,2019-03-01,2-s2.0-85061500598,,527-538,30740666.0,85061500598,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85061500598&origin=inward,Theodore,Epilepsia,fMRI prediction of naming change after adult temporal lobe epilepsy surgery: Activation matters,Article +Geena Ianni;Leslie G. Ungerleider;David Pitcher,https://api.elsevier.com/content/abstract/scopus_id/85066625037,,0,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85066625037&origin=inward,10.1038/s41598-019-44663-9,2019-12-01,2-s2.0-85066625037,,,31160680.0,85066625037,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85066625037&origin=inward,Ungerleider,Scientific Reports,"A functional dissociation of face-, body- and scene-selective brain areas based on their response to moving and static stimuli",Article +Zaid N. Safiullah;Leslie G. Ungerleider;Valentinos Zachariou,https://api.elsevier.com/content/abstract/scopus_id/85052691396,,1,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85052691396&origin=inward,10.1162/jocn_a_01288,2017-01-01,2-s2.0-85052691396,,1499-1516,29877768.0,85052691396,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85052691396&origin=inward,Ungerleider,Journal of Cognitive Neuroscience,The fusiform and occipital face areas can process a nonface category equivalently to faces,Article +Selene Schintu;Sarah Shomstein;Zaynah M. Alam;Eric M. Wassermann;Michael Freedberg,https://api.elsevier.com/content/abstract/scopus_id/85055890342,,0,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85055890342&origin=inward,10.1016/j.cortex.2018.09.021,2018-12-01,2-s2.0-85055890342,,279-286,30399479.0,85055890342,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85055890342&origin=inward,Wassermann,Cortex,Left-shifting prism adaptation boosts reward-based learning,Article +,https://api.elsevier.com/content/abstract/scopus_id/85042290887,Luca Massacesi;Niloufar Sadeghi;Giovanna Carlucci;Bernard Dachy;Roberta Scotti;Martina Absinta;Alessandro Barilaro;Daniel S. Reich;Matteo Grammatico;Domenico Prisco;Pascal Sati;Vittorio Martinelli;Gaetano Perrotta;Massimo Filippi;Giacomo Emmi;Luisa Vuolo;Anna Maria Repice;Lorenzo Emmi;Gregorio Spagni;Pietro Maggi,18,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85042290887&origin=inward,10.1002/ana.25146,2018-02-01,2-s2.0-85042290887,,283-294,29328521.0,85042290887,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85042290887&origin=inward,Reich,Annals of Neurology,Central vein sign differentiates Multiple Sclerosis from central nervous system inflammatory vasculopathies,Article +,https://api.elsevier.com/content/abstract/scopus_id/85042380945,Carlo Pierpaoli;Cibu Thomas;Neda Sadeghi;Joelle Sarlls;Chris I. Baker;Amrita Nayak;Aaron Trefler,6,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85042380945&origin=inward,10.1016/j.neuroimage.2018.02.026,2018-06-01,2-s2.0-85042380945,,25-34,29458189.0,85042380945,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85042380945&origin=inward,Baker,NeuroImage,Impact of time-of-day on diffusivity measures of brain tissue derived from diffusion tensor imaging,Article +,https://api.elsevier.com/content/abstract/scopus_id/85043684245,D. S. Reich;T. Kober;E. S. Beck;B. Dewey;I. C. Cortese;V. Sethi;P. Sati;P. Bhargava;G. Nair,8,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85043684245&origin=inward,10.3174/ajnr.A5534,2018-03-01,2-s2.0-85043684245,,459-466,29439120.0,85043684245,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85043684245&origin=inward,Cortese,American Journal of Neuroradiology,Improved visualization of cortical lesions in multiple sclerosis using 7T MP2RAGE,Article +,https://api.elsevier.com/content/abstract/scopus_id/85044366429,Lawrence T. Park;Carlos A. Zarate;Joanna Szczepanik;Nancy Brutsché;Jennifer W. Evans;Allison C. Nugent,11,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85044366429&origin=inward,10.1016/j.biopsych.2018.01.027,2018-10-15,2-s2.0-85044366429,NARSAD,582-590,29580569.0,85044366429,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85044366429&origin=inward,Nugent,Biological Psychiatry,Default Mode Connectivity in Major Depressive Disorder Measured Up to 10 Days After Ketamine Administration,Article +,https://api.elsevier.com/content/abstract/scopus_id/85045255547,Gunnar Carlsson;Javier Gonzalez-Castillo;Allan L. Reiss;Manish Saggar;Gary Glover;Peter A. Bandettini;Olaf Sporns,11,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85045255547&origin=inward,10.1038/s41467-018-03664-4,2018-12-01,2-s2.0-85045255547,CMP,,29643350.0,85045255547,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85045255547&origin=inward,Bandettini,Nature Communications,Towards a new approach to reveal dynamical organization of the brain using topological data analysis,Article +,https://api.elsevier.com/content/abstract/scopus_id/85042269593,Daniel S. Reich;Andrew J. Solomon;Martina Absinta;Daniel Ontaneda;Pascal Sati;Richard Watts,9,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85042269593&origin=inward,10.1177/1352458517726383,2018-05-01,2-s2.0-85042269593,,750-757,,85042269593,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85042269593&origin=inward,Reich,Multiple Sclerosis Journal,Diagnostic performance of central vein sign for multiple sclerosis with a simplified three-lesion algorithm,Article +,https://api.elsevier.com/content/abstract/scopus_id/85033229158,Daniel S. Reich;Shila Azodi;Irene Cortese;Joan Ohayon;Steven Jacobson;Emily Charlip;B. Jeanne Billioux;Chevaz Thomas;Ashley Vellucci;Govind Nair;Yoshimi Enose-Akahata;Jenifer Dwyer,4,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85033229158&origin=inward,10.1002/ana.25072,2017-11-01,2-s2.0-85033229158,,719-728,29024167.0,85033229158,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85033229158&origin=inward,Cortese,Annals of Neurology,Imaging spinal cord atrophy in progressive myelopathies: HTLV-I-associated neurological disease (HAM/TSP) and multiple sclerosis (MS),Article +,https://api.elsevier.com/content/abstract/scopus_id/85049867380,M. Absinta;D. S. Reich;A. Fechner;P. Sati;M. K. Schindler;G. Nair,4,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85049867380&origin=inward,10.3174/ajnr.A5660,2018-07-01,2-s2.0-85049867380,,1233-1238,29724768.0,85049867380,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85049867380&origin=inward,Reich,American Journal of Neuroradiology,Identification of chronic active multiple sclerosis lesions on 3T MRI,Article +,https://api.elsevier.com/content/abstract/scopus_id/85032791586,Monica D. Rosenberg;Javier Gonzalez-Castillo;David C. Jangraw;Merage Ghane;Puja Panwar;Peter A. Bandettini;Daniel A. Handwerker,8,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85032791586&origin=inward,10.1016/j.neuroimage.2017.10.019,2018-02-01,2-s2.0-85032791586,,99-109,29031531.0,85032791586,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85032791586&origin=inward,Bandettini,NeuroImage,A functional connectivity-based neuromarker of sustained attention generalizes to predict recall in a reading task,Article +,https://api.elsevier.com/content/abstract/scopus_id/85039994457,Lorie Shora;Judith L. Rapoport;Xueping Zhou;Dede Greenstein;Alex Martin;Peter Gochman;Rebecca A. Berman;Francois M. Lalonde;Siyuan Liu;Liv S. Clasen;Anna E. Ordóñez;Deanna M. Barch;Rebecca E. Watsky;Stephen J. Gotts;Harrison M. McAdams;Nitin Gogtay,2,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85039994457&origin=inward,10.1016/j.schres.2018.01.003,2018-07-01,2-s2.0-85039994457,,219-225,,85039994457,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85039994457&origin=inward,Martin,Schizophrenia Research,Attenuated resting-state functional connectivity in patients with childhood- and adult-onset schizophrenia,Article +,https://api.elsevier.com/content/abstract/scopus_id/85049149728,Francois Lalonde;S. Lalith Talagala;Dan Rettmann;Vinai Roopchansingh;Joelle E. Sarlls;Ajit Shankaranarayanan,1,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85049149728&origin=inward,10.1371/journal.pone.0199372,2018-06-01,2-s2.0-85049149728,NIMH,,29953459.0,85049149728,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85049149728&origin=inward,Talagala,PLoS ONE,Effectiveness of navigator-based prospective motion correction in mprage data acquired at 3T,Article +,https://api.elsevier.com/content/abstract/scopus_id/85030184023,Shruti Japee;Nicole Mlynaryk;Leslie G. Ungerleider;Xilin Zhang,3,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85030184023&origin=inward,10.1016/j.neuroimage.2017.09.050,2017-12-01,2-s2.0-85030184023,,231-243,28951352.0,85030184023,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85030184023&origin=inward,Ungerleider,NeuroImage,Attentional selection of multiple objects in the human visual system,Article +,https://api.elsevier.com/content/abstract/scopus_id/85038221196,Gang Chen;Javier Gonzalez-Castillo;David C. Jangraw;Maria Guidi;Benedikt A. Poser;Dimo Ivanov;Sean Marrett;Andrew Hall;Jozien Goense;Peter A. Bandettini;Laurentius Huber;Carsten Stüber;Daniel A. Handwerker,31,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85038221196&origin=inward,10.1016/j.neuron.2017.11.005,2017-12-20,2-s2.0-85038221196,PEOPLE,1253-1263.e7,29224727.0,85038221196,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85038221196&origin=inward,Bandettini,Neuron,High-Resolution CBV-fMRI Allows Mapping of Laminar Activity and Connectivity of Cortical Input and Output in Human M1,Article +,https://api.elsevier.com/content/abstract/scopus_id/67649135107,W. Kyle Simmons;Chris I. Baker;Nikolaus Kriegeskorte;Patrick S. Bellgowan,1424,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=67649135107&origin=inward,10.1038/nn.2303,2009-01-01,2-s2.0-67649135107,,535-540,19396166.0,67649135107,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=67649135107&origin=inward,Baker,Nature Neuroscience,Circular analysis in systems neuroscience: The dangers of double dipping,Article +,https://api.elsevier.com/content/abstract/scopus_id/79956306362,Cynthia S. Peng;Chris I. Baker;Dwight J. Kravitz,149,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79956306362&origin=inward,10.1523/JNEUROSCI.4588-10.2011,2011-05-18,2-s2.0-79956306362,,7322-7333,21593316.0,79956306362,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79956306362&origin=inward,Baker,Journal of Neuroscience,Real-world scene representations in high-level visual cortex: It's the spaces more than the places,Article +,https://api.elsevier.com/content/abstract/scopus_id/78349249010,Chris I. Baker;Nikolaus Kriegeskorte;Dwight J. Kravitz,101,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=78349249010&origin=inward,10.1093/cercor/bhq042,2010-12-01,2-s2.0-78349249010,,2916-2925,20351021.0,78349249010,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=78349249010&origin=inward,Baker,Cerebral Cortex,High-level visual object representations are constrained by position,Article +,https://api.elsevier.com/content/abstract/scopus_id/84875135931,Assaf Harel;Chris I. Baker;Dwight J. Kravitz,73,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84875135931&origin=inward,10.1093/cercor/bhs091,2013-04-01,2-s2.0-84875135931,,947-957,22473894.0,84875135931,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84875135931&origin=inward,Baker,Cerebral Cortex,Deconstructing visual scenes in cortex: Gradients of object and spatial layout information,Article +,https://api.elsevier.com/content/abstract/scopus_id/84880919127,Chris I. Baker;Dwight J. Kravitz;Sue Hyun Lee,74,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84880919127&origin=inward,10.1038/nn.3452,2013-08-01,2-s2.0-84880919127,,997-999,23817547.0,84880919127,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84880919127&origin=inward,Baker,Nature Neuroscience,Goal-dependent dissociation of visual and prefrontal cortices during working memory,Article +,https://api.elsevier.com/content/abstract/scopus_id/84896301173,Assaf Harel;Chris I. Baker;Dwight J. Kravitz,68,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84896301173&origin=inward,10.1073/pnas.1312567111,2014-03-11,2-s2.0-84896301173,,,24567402.0,84896301173,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84896301173&origin=inward,Baker,Proceedings of the National Academy of Sciences of the United States of America,Task context impacts visual object processing differentially across the cortex,Article +,https://api.elsevier.com/content/abstract/scopus_id/84857030698,Chris I. Baker;Dwight J. Kravitz;Sue Hyun Lee,68,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84857030698&origin=inward,10.1016/j.neuroimage.2011.10.055,2012-02-15,2-s2.0-84857030698,,4064-4073,22040738.0,84857030698,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84857030698&origin=inward,Baker,NeuroImage,Disentangling visual imagery and perception of real-world objects,Article +,https://api.elsevier.com/content/abstract/scopus_id/77950189801,Annie W Y Chan;Dwight J. Kravitz;Chris I. Baker;Sandra Truong;Joseph Arizpe,50,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77950189801&origin=inward,10.1038/nn.2502,2010-04-01,2-s2.0-77950189801,,417-418,20208528.0,77950189801,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77950189801&origin=inward,Baker,Nature Neuroscience,Cortical representations of bodies and faces are strongest in commonly experienced configurations,Article +,https://api.elsevier.com/content/abstract/scopus_id/84906662244,Cibu Thomas;Caroline E. Robertson;Alex Martin;Dwight J. Kravitz;Chris I. Baker;Simon Baron-Cohen;Gregory L. Wallace,42,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84906662244&origin=inward,10.1093/brain/awu189,2014-01-01,2-s2.0-84906662244,NIMH,2588-2599,25060095.0,84906662244,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84906662244&origin=inward,Martin,Brain,Global motion perception deficits in autism are reflected as early as primary visual cortex,Article +,https://api.elsevier.com/content/abstract/scopus_id/84940426288,Richard Craig Reynolds;Annie Wai Yiu Chan;Edward Harry Silson;Dwight Jacob Kravitz;Chris Ian Baker,43,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84940426288&origin=inward,10.1523/JNEUROSCI.0137-15.2015,2015-01-01,2-s2.0-84940426288,,11921-11935,26311774.0,84940426288,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84940426288&origin=inward,Baker,Journal of Neuroscience,A retinotopic basis for the division of high-level scene processing between lateral and ventral human occipitotemporal cortex,Article +,https://api.elsevier.com/content/abstract/scopus_id/84891657349,Assaf Harel;Chris I. Baker;Dwight Kravitz,27,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84891657349&origin=inward,10.3389/fnhum.2013.00885,2013-12-27,2-s2.0-84891657349,,,,84891657349,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84891657349&origin=inward,Baker,Frontiers in Human Neuroscience,Beyond perceptual expertise: Revisiting the neural substrates of expert object recognition,Review +,https://api.elsevier.com/content/abstract/scopus_id/84921908336,Chris I. Baker;Annie W.Y. Chan,22,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84921908336&origin=inward,10.1523/JNEUROSCI.3621-14.2015,2015-01-01,2-s2.0-84921908336,,1468-1480,25632124.0,84921908336,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84921908336&origin=inward,Baker,Journal of Neuroscience,Seeing is not feeling: Posterior parietal but not somatosensory cortex engagement during touch observation,Article +,https://api.elsevier.com/content/abstract/scopus_id/84992162473,Edward H. Silson;Chris I. Baker;Iris I.A. Groen;Dwight J. Kravitz,19,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84992162473&origin=inward,10.1167/16.6.14,2016-01-01,2-s2.0-84992162473,,,27105060.0,84992162473,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84992162473&origin=inward,Baker,Journal of Vision,"Evaluating the correspondence between face-, scene-, and object-selectivity and retinotopic organization within lateral occipitotemporal cortex",Article +,https://api.elsevier.com/content/abstract/scopus_id/84961777771,Carlo Pierpaoli;Cibu Thomas;Neda Sadeghi;Chris I. Baker;Aaron Trefler;Adam G. Thomas,17,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84961777771&origin=inward,10.1016/j.neuroimage.2016.02.034,2016-06-01,2-s2.0-84961777771,NICHD,41-52,26921714.0,84961777771,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84961777771&origin=inward,Thomas,NeuroImage,Impact of time-of-day on brain morphometric measures derived from T1-weighted magnetic resonance imaging,Article +,https://api.elsevier.com/content/abstract/scopus_id/84983801250,Edward H. Silson;Chris I. Baker;Adam D. Steel,18,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84983801250&origin=inward,10.3389/fnhum.2016.00412,2016-08-18,2-s2.0-84983801250,,17,,84983801250,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84983801250&origin=inward,Baker,Frontiers in Human Neuroscience,Scene-selectivity and retinotopy in medial parietal cortex,Article +,https://api.elsevier.com/content/abstract/scopus_id/84924560199,Chris Baker;Hans P. Op de Beeck;Dwight Kravitz;Annelies Baeck,11,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84924560199&origin=inward,10.1016/j.neuroimage.2015.01.060,2015-05-01,2-s2.0-84924560199,,321-328,25665965.0,84924560199,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84924560199&origin=inward,Baker,NeuroImage,Influence of lexical status and orthographic similarity on the multi-voxel response of the visual word form area,Article +,https://api.elsevier.com/content/abstract/scopus_id/84993994703,Edward H. Silson;Chris I. Baker;Charlotte J. Stagg;Adam Steel,9,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84993994703&origin=inward,10.1038/srep36056,2016-10-27,2-s2.0-84993994703,,,27786302.0,84993994703,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84993994703&origin=inward,Baker,Scientific Reports,The impact of reward and punishment on skill learning depends on task demands,Article +,https://api.elsevier.com/content/abstract/scopus_id/57649158932,Tyler B. Jones;Peter A. Bandettini;Rasmus M. Birn;Kevin Murphy;Daniel A. Handwerker,1308,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=57649158932&origin=inward,10.1016/j.neuroimage.2008.09.036,2009-02-01,2-s2.0-57649158932,,893-905,18976716.0,57649158932,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=57649158932&origin=inward,Bandettini,NeuroImage,The impact of global signal regression on resting state correlations: Are anti-correlated networks introduced?,Article +,https://api.elsevier.com/content/abstract/scopus_id/33644870032,Rainer Goebel;Nikolaus Kriegeskorte;Peter Bandettini,1044,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33644870032&origin=inward,10.1073/pnas.0600244103,2006-03-07,2-s2.0-33644870032,,3863-3868,16537458.0,33644870032,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33644870032&origin=inward,Bandettini,Proceedings of the National Academy of Sciences of the United States of America,Information-based functional brain mapping,Article +,https://api.elsevier.com/content/abstract/scopus_id/33746852686,Peter A. Bandettini;Rasmus M. Birn;Jason B. Diamond;Monica A. Smith,793,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33746852686&origin=inward,10.1016/j.neuroimage.2006.02.048,2006-07-15,2-s2.0-33746852686,,1536-1548,16632379.0,33746852686,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33746852686&origin=inward,Bandettini,NeuroImage,Separating respiratory-variation-related fluctuations from neuronal-activity-related fluctuations in fMRI,Article +,https://api.elsevier.com/content/abstract/scopus_id/57649196582,Marieke Mur;Hossein Esteky;Peter A. Bandettini;Jerzy Bodurka;Douglas A. Ruff;Roozbeh Kiani;Nikolaus Kriegeskorte;Keiji Tanaka,520,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=57649196582&origin=inward,10.1016/j.neuron.2008.10.043,2008-12-26,2-s2.0-57649196582,,1126-1141,19109916.0,57649196582,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=57649196582&origin=inward,Bandettini,Neuron,Matching Categorical Object Representations in Inferior Temporal Cortex of Man and Monkey,Article +,https://api.elsevier.com/content/abstract/scopus_id/40649083494,Peter A. Bandettini;Tyler B. Jones;Rasmus M. Birn;Monica A. Smith,274,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=40649083494&origin=inward,10.1016/j.neuroimage.2007.11.059,2008-04-01,2-s2.0-40649083494,,644-654,18234517.0,40649083494,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=40649083494&origin=inward,Bandettini,NeuroImage,The respiration response function: The temporal dynamics of fMRI signal fluctuations related to changes in respiration,Article +,https://api.elsevier.com/content/abstract/scopus_id/84880332316,Kevin Murphy;Rasmus M. Birn;Peter A. Bandettini,271,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84880332316&origin=inward,10.1016/j.neuroimage.2013.04.001,2013-10-15,2-s2.0-84880332316,,349-359,23571418.0,84880332316,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84880332316&origin=inward,Bandettini,NeuroImage,Resting-state fMRI confounds and cleanup,Article +,https://api.elsevier.com/content/abstract/scopus_id/63349109274,Peter A. Bandettini;Marieke Mur;Nikolaus Kriegeskorte,221,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=63349109274&origin=inward,10.1093/scan/nsn044,2009-04-03,2-s2.0-63349109274,,101-109,19151374.0,63349109274,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=63349109274&origin=inward,Bandettini,Social Cognitive and Affective Neuroscience,Revealing representational content with pattern-information fMRI - An introductory guide,Article +,https://api.elsevier.com/content/abstract/scopus_id/77955307443,Peter A. Bandettini;Masaya Misaki;Nikolaus Kriegeskorte;Youn Kim,235,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77955307443&origin=inward,10.1016/j.neuroimage.2010.05.051,2010-10-01,2-s2.0-77955307443,,103-118,20580933.0,77955307443,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77955307443&origin=inward,Bandettini,NeuroImage,Comparison of multivariate classifiers and response normalizations for pattern-information fMRI,Article +,https://api.elsevier.com/content/abstract/scopus_id/44949194744,Kevin Murphy;Rasmus M. Birn;Peter A. Bandettini,201,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=44949194744&origin=inward,10.1002/hbm.20577,2008-07-01,2-s2.0-44949194744,,740-750,18438886.0,44949194744,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=44949194744&origin=inward,Bandettini,Human Brain Mapping,The effect of respiration variations on independent component analysis results of resting state functional connectivity,Article +,https://api.elsevier.com/content/abstract/scopus_id/0034816846,Peter A. Bandettini;Rasmus M. Birn;Ziad S. Saad,167,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0034816846&origin=inward,10.1006/nimg.2001.0873,2001-01-01,2-s2.0-0034816846,,817-826,11554800.0,34816846,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0034816846&origin=inward,Bandettini,NeuroImage,Spatial heterogeneity of the nonlinear dynamics in the FMRI BOLD response,Article +,https://api.elsevier.com/content/abstract/scopus_id/34548840105,Kevin Murphy;Jerzy Bodurka;Peter A. Bandettini,180,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34548840105&origin=inward,10.1016/j.neuroimage.2006.09.032,2007-01-15,2-s2.0-34548840105,,565-574,17126038.0,34548840105,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34548840105&origin=inward,Bandettini,NeuroImage,How long to scan? The relationship between fMRI temporal signal to noise ratio and necessary scan duration,Article +,https://api.elsevier.com/content/abstract/scopus_id/84866507939,Vinai Roopchansingh;Javier Gonzalez-Castillo;Daniel A. Handwerker;Peter A. Bandettini,189,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84866507939&origin=inward,10.1016/j.neuroimage.2012.06.078,2012-11-15,2-s2.0-84866507939,,1712-1719,22796990.0,84866507939,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84866507939&origin=inward,Bandettini,NeuroImage,Periodic changes in fMRI connectivity,Article +,https://api.elsevier.com/content/abstract/scopus_id/0034025737,Peter A. Bandettini;Robert W. Cox,151,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0034025737&origin=inward,10.1002/(SICI)1522-2594(200004)43:4<540::AID-MRM8>3.0.CO;2-R,2000-04-18,2-s2.0-0034025737,,540-548,10748429.0,34025737,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0034025737&origin=inward,Bandettini,Magnetic Resonance in Medicine,Event-related fMRI contrast when using constant interstimulus interval: Theory and experiment,Article +,https://api.elsevier.com/content/abstract/scopus_id/0036322924,Peter A. Bandettini;Rasmus M. Birn;Robert W. Cox,151,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0036322924&origin=inward,10.1006/nimg.2001.0964,2002-01-01,2-s2.0-0036322924,,252-264,,36322924,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0036322924&origin=inward,Bandettini,NeuroImage,Detection versus estimation in event-related fMRI: Choosing the optimal stimulus timing,Article +,https://api.elsevier.com/content/abstract/scopus_id/0036267186,Peter A. Bandettini;Jerzy Bodurka,142,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0036267186&origin=inward,10.1002/mrm.10159,2002-06-13,2-s2.0-0036267186,,1052-1058,12111950.0,36267186,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0036267186&origin=inward,Bandettini,Magnetic Resonance in Medicine,"Toward direct mapping of neuronal activity: MRI detection of ultraweak, transient magnetic field changes",Article +,https://api.elsevier.com/content/abstract/scopus_id/63449097461,Peter A. Bandettini,152,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=63449097461&origin=inward,10.1111/j.1749-6632.2009.04420.x,2009-01-01,2-s2.0-63449097461,,260-293,19338512.0,63449097461,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=63449097461&origin=inward,Bandettini,Annals of the New York Academy of Sciences,What's new in neuroimaging methods?,Article +,https://api.elsevier.com/content/abstract/scopus_id/35448999574,Nikolaus Kriegeskorte;Peter Bandettini,155,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=35448999574&origin=inward,10.1016/j.neuroimage.2007.02.022,2007-12-01,2-s2.0-35448999574,,649-662,17804260.0,35448999574,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=35448999574&origin=inward,Bandettini,NeuroImage,"Analyzing for information, not activation, to exploit high-resolution fMRI",Note +,https://api.elsevier.com/content/abstract/scopus_id/84859451115,Javier Gonzalez-Castillo;Souheil J. Inati;Ziad S. Saad;Noah Brenowitz;Peter A. Bandettini;Daniel A. Handwerker,144,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84859451115&origin=inward,10.1073/pnas.1121049109,2012-04-03,2-s2.0-84859451115,,5487-5492,22431587.0,84859451115,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84859451115&origin=inward,Bandettini,Proceedings of the National Academy of Sciences of the United States of America,"Whole-brain, time-locked activation with simple tasks revealed using massive averaging and model-free analysis",Article +,https://api.elsevier.com/content/abstract/scopus_id/84857738843,Souheil J. Inati;Peter A. Bandettini;Wen Ming Luh;Jennifer W. Evans;Prantik Kundu,163,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84857738843&origin=inward,10.1016/j.neuroimage.2011.12.028,2012-04-15,2-s2.0-84857738843,,1759-1770,22209809.0,84857738843,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84857738843&origin=inward,Bandettini,NeuroImage,Differentiating BOLD and non-BOLD signals in fMRI time series using multi-echo EPI,Article +,https://api.elsevier.com/content/abstract/scopus_id/71849089178,Peter Bandettini;Nikolaus Kriegeskorte;Rhodri Cusack,118,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=71849089178&origin=inward,10.1016/j.neuroimage.2009.09.059,2010-02-01,2-s2.0-71849089178,,1965-1976,19800408.0,71849089178,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=71849089178&origin=inward,Bandettini,NeuroImage,How does an fMRI voxel sample the neuronal activity pattern: Compact-kernel or complex spatiotemporal filter?,Note +,https://api.elsevier.com/content/abstract/scopus_id/20444420898,Peter A. Bandettini;Hanh T. Nguyen;David C. Knight,121,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=20444420898&origin=inward,10.1016/j.neuroimage.2005.03.020,2005-07-15,2-s2.0-20444420898,,1193-1200,15961053.0,20444420898,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=20444420898&origin=inward,Bandettini,NeuroImage,The role of the human amygdala in the production of conditioned fear responses,Article +,https://api.elsevier.com/content/abstract/scopus_id/0033937960,James S. Hyde;B. Douglas Ward;Wen Ming Luh;Peter A. Bandettini;Eric C. Wong,110,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0033937960&origin=inward,10.1002/1522-2594(200007)44:1<137::AID-MRM20>3.0.CO;2-R,2000-07-18,2-s2.0-0033937960,,137-143,10893532.0,33937960,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0033937960&origin=inward,Bandettini,Magnetic Resonance in Medicine,Comparison of simultaneously measured perfusion and bold signal increases during brain activation with T1-based tissue identification,Article +,https://api.elsevier.com/content/abstract/scopus_id/7444229260,Peter A. Bandettini;Rasmus M. Birn;Robert W. Cox,112,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=7444229260&origin=inward,10.1016/j.neuroimage.2004.07.039,2004-11-01,2-s2.0-7444229260,,1046-1058,15528105.0,7444229260,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=7444229260&origin=inward,Bandettini,NeuroImage,Experimental designs and processing strategies for fMRI studies involving overt verbal responses,Article +,https://api.elsevier.com/content/abstract/scopus_id/0036939697,Peter A. Bandettini;James C. Patterson;Leslie G. Ungerleider,98,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0036939697&origin=inward,10.1006/nimg.2002.1306,2002-01-01,2-s2.0-0036939697,,1797-1806,12498753.0,36939697,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0036939697&origin=inward,Ungerleider,NeuroImage,Task-independent functional brain activity correlation with skin conductance changes: An fMRI study,Article +,https://api.elsevier.com/content/abstract/scopus_id/34548813221,J. Bodurka;P. A. Bandettini;N. Petridou;K. Murphy;F. Ye,98,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34548813221&origin=inward,10.1016/j.neuroimage.2006.09.039,2007-01-15,2-s2.0-34548813221,,542-549,17101280.0,34548813221,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34548813221&origin=inward,Bandettini,NeuroImage,Mapping the MRI voxel volume in which thermal noise matches physiological noise-Implications for fMRI,Article +,https://api.elsevier.com/content/abstract/scopus_id/67651051881,Kevin Murphy;Rasmus M. Birn;Daniel A. Handwerker;Peter A. Bandettini,89,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=67651051881&origin=inward,10.1016/j.neuroimage.2009.05.030,2009-09-01,2-s2.0-67651051881,,1092-1104,19460443.0,67651051881,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=67651051881&origin=inward,Bandettini,NeuroImage,fMRI in the presence of task-correlated breathing variations,Article +,https://api.elsevier.com/content/abstract/scopus_id/0037417820,Z. S. Saad;P. S.F. Bellgowan;P. A. Bandettini,82,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0037417820&origin=inward,10.1073/pnas.0337747100,2003-02-04,2-s2.0-0037417820,,1415-1419,12552093.0,37417820,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0037417820&origin=inward,Bandettini,Proceedings of the National Academy of Sciences of the United States of America,"Understanding neural system dynamics through task modulation and measurement of functional MRI amplitude, latency, and width",Article +,https://api.elsevier.com/content/abstract/scopus_id/34548862403,Peter A. Bandettini;Joseph E. Dunsmoor;David C. Knight,79,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34548862403&origin=inward,10.1037/0735-7044.121.4.635,2007-08-01,2-s2.0-34548862403,,635-642,17663589.0,34548862403,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34548862403&origin=inward,Bandettini,Behavioral Neuroscience,Impact of Continuous Versus Intermittent CS-UCS Pairing on Human Brain Activation During Pavlovian Fear Conditioning,Article +,https://api.elsevier.com/content/abstract/scopus_id/0345598028,Peter A. Bandettini;Hanh T. Nguyen;David C. Knight,76,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0345598028&origin=inward,10.1073/pnas.2535780100,2003-12-09,2-s2.0-0345598028,,15280-15283,14657356.0,345598028,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0345598028&origin=inward,Bandettini,Proceedings of the National Academy of Sciences of the United States of America,Expression of conditional fear with and without awareness,Article +,https://api.elsevier.com/content/abstract/scopus_id/40649102903,Peter A. Bandettini;Joseph E. Dunsmoor;David C. Knight,74,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=40649102903&origin=inward,10.1016/j.neuroimage.2007.11.042,2008-04-01,2-s2.0-40649102903,,811-817,18203622.0,40649102903,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=40649102903&origin=inward,Bandettini,NeuroImage,Neural correlates of unconditioned response diminution during Pavlovian conditioning,Article +,https://api.elsevier.com/content/abstract/scopus_id/84885024283,Edward T. Bullmore;Petra E. Vértes;Souheil J. Inati;Ziad S. Saad;Valerie Voon;Peter A. Bandettini;Yulia Worbe;Prantik Kundu;Noah D. Brenowitz,100,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84885024283&origin=inward,10.1073/pnas.1301725110,2013-10-01,2-s2.0-84885024283,,16187-16192,24038744.0,84885024283,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84885024283&origin=inward,Bandettini,Proceedings of the National Academy of Sciences of the United States of America,Integrated strategy for improving functional connectivity mapping using multiecho fMRI,Article +,https://api.elsevier.com/content/abstract/scopus_id/68049112343,Alex Martin;Ziad S. Saad;Douglas A. Ruff;Peter A. Bandettini;Sean Marrett;Adam G. Thomas,69,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=68049112343&origin=inward,10.1016/j.neuroimage.2009.05.097,2009-10-15,2-s2.0-68049112343,,117-125,19520171.0,68049112343,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=68049112343&origin=inward,Thomas,NeuroImage,Functional but not structural changes associated with learning: An exploration of longitudinal Voxel-Based Morphometry (VBM),Article +,https://api.elsevier.com/content/abstract/scopus_id/33750449651,Natalia Petridou;Murray Loew;Dietmar Plenz;Jerzy Bodurka;Afonso C. Silva;Peter A. Bandettini,71,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33750449651&origin=inward,10.1073/pnas.0603219103,2006-10-24,2-s2.0-33750449651,,16015-16020,17038505.0,33750449651,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33750449651&origin=inward,Bandettini,Proceedings of the National Academy of Sciences of the United States of America,Direct magnetic resonance detection of neuronal electrical activity,Article +,https://api.elsevier.com/content/abstract/scopus_id/26044450303,N. Petridou;P. A. Bandettini;J. Bodurka,67,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=26044450303&origin=inward,10.1007/BF03166956,2005-01-01,2-s2.0-26044450303,,65-88,,26044450303,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=26044450303&origin=inward,Bandettini,Applied Magnetic Resonance,"Direct detection of neuronal activity with MRI: Fantasy, possibility, or reality?",Review +,https://api.elsevier.com/content/abstract/scopus_id/0034873064,P. A. Bandettini;L. G. Ungerleider,65,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0034873064&origin=inward,10.1038/nn0901-864,2001-09-12,2-s2.0-0034873064,,864-866,11528412.0,34873064,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0034873064&origin=inward,Bandettini,Nature Neuroscience,From neuron to BOLD: New connections,Short Survey +,https://api.elsevier.com/content/abstract/scopus_id/34247099877,Gian Domenico Iannetti;Irene Tracey;Jerzy Bodurka;Carlo A. Porro;Peter A. Bandettini;Marta Maieron,67,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34247099877&origin=inward,10.1523/JNEUROSCI.3910-06.2007,2007-04-11,2-s2.0-34247099877,,4182-4190,17428996.0,34247099877,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34247099877&origin=inward,Bandettini,Journal of Neuroscience,Functional responses in the human spinal cord during willed motor actions: Evidence for side- and rate-dependent activity,Article +,https://api.elsevier.com/content/abstract/scopus_id/60149087776,Peter A. Bandettini;Najah S. Waters;David C. Knight,70,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=60149087776&origin=inward,10.1016/j.neuroimage.2008.11.015,2009-03-01,2-s2.0-60149087776,,208-214,19100329.0,60149087776,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=60149087776&origin=inward,Bandettini,NeuroImage,Neural substrates of explicit and implicit fear memory,Article +,https://api.elsevier.com/content/abstract/scopus_id/0038100597,Peter A. Bandettini;Kristina M. Ropella;Edgar A. DeYoe;Ziad S. Saad,60,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0038100597&origin=inward,10.1016/S1053-8119(03)00016-8,2003-05-01,2-s2.0-0038100597,,132-144,12781733.0,38100597,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0038100597&origin=inward,Bandettini,NeuroImage,The spatial extent of the BOLD response,Article +,https://api.elsevier.com/content/abstract/scopus_id/84862978455,Peter A. Bandettini;Mark D'Esposito;Javier Gonzalez-Castillo;Daniel A. Handwerker,66,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84862978455&origin=inward,10.1016/j.neuroimage.2012.02.015,2012-08-15,2-s2.0-84862978455,,1017-1023,22366081.0,84862978455,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84862978455&origin=inward,Bandettini,NeuroImage,The continuing challenge of understanding and modeling hemodynamic variation in fMRI,Review +,https://api.elsevier.com/content/abstract/scopus_id/84890516699,F. Xavier Castellanos;Zhi Yang;Lili Jiang;Ting Xu;Xi Nian Zuo;Peter A. Bandettini;Michael P. Milham;Daniel A. Handwerker;Catie Chang,72,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84890516699&origin=inward,10.1016/j.neuroimage.2013.10.039,2014-04-01,2-s2.0-84890516699,,45-56,24287438.0,84890516699,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84890516699&origin=inward,Bandettini,NeuroImage,Connectivity trajectory across lifespan differentiates the precuneus from the default network,Article +,https://api.elsevier.com/content/abstract/scopus_id/84937242922,Colin W. Hoy;Javier Gonzalez-Castillo;Ziad S. Saad;Laura C. Buchanan;Peter A. Bandettini;Meghan E. Robinson;Daniel A. Handwerker,89,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84937242922&origin=inward,10.1073/pnas.1501242112,2015-07-14,2-s2.0-84937242922,NIH,8762-8767,26124112.0,84937242922,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84937242922&origin=inward,Bandettini,Proceedings of the National Academy of Sciences of the United States of America,"Tracking ongoing cognition in individuals using brief, whole-brain functional connectivity patterns",Article +,https://api.elsevier.com/content/abstract/scopus_id/33748451366,Peter A. Bandettini;Hanh T. Nguyen;David C. Knight,53,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33748451366&origin=inward,10.3758/CABN.6.2.157,2006-06-01,2-s2.0-33748451366,,157-162,17007236.0,33748451366,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33748451366&origin=inward,Bandettini,"Cognitive, Affective and Behavioral Neuroscience",The role of awareness in delay and trace fear conditioning in humans,Article +,https://api.elsevier.com/content/abstract/scopus_id/78650931643,J. Bodurka;P. A. Bandettini;J. Gonzalez-Castillo;V. Roopchansingh,58,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=78650931643&origin=inward,10.1016/j.neuroimage.2010.11.020,2011-02-14,2-s2.0-78650931643,,2764-2778,21073963.0,78650931643,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=78650931643&origin=inward,Bandettini,NeuroImage,Physiological noise effects on the flip angle selection in BOLD fMRI,Article +,https://api.elsevier.com/content/abstract/scopus_id/77955934165,Marieke Mur;Peter A. Bandettini;Jerzy Bodurka;Douglas A. Ruff;Nikolaus Kriegeskorte,49,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77955934165&origin=inward,10.1093/cercor/bhp272,2010-09-01,2-s2.0-77955934165,,2027-2042,20051364.0,77955934165,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77955934165&origin=inward,Bandettini,Cerebral Cortex,"Face-identity change activation outside the face system: ""Release from adaptation"" may not always indicate neuronal selectivity",Article +,https://api.elsevier.com/content/abstract/scopus_id/84905043991,Javier Gonzalez-Castillo;Colin Weir Hoy;Ziad S. Saad;Laura C. Buchanan;Peter A. Bandettini;Meghan E. Robinson;Daniel A. Handwerker,64,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84905043991&origin=inward,10.3389/fnins.2014.00138,2014-01-01,2-s2.0-84905043991,,,,84905043991,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84905043991&origin=inward,Bandettini,Frontiers in Neuroscience,The spatial structure of resting state connectivity stability on the scale of minutes,Article +,https://api.elsevier.com/content/abstract/scopus_id/47949117197,Peter A. Bandettini;Tyler B. Jones;Rasmus M. Birn,47,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=47949117197&origin=inward,10.1016/j.neuroimage.2008.05.019,2008-08-15,2-s2.0-47949117197,,582-590,18583155.0,47949117197,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=47949117197&origin=inward,Bandettini,NeuroImage,Integration of motion correction and physiological noise regression in fMRI,Article +,https://api.elsevier.com/content/abstract/scopus_id/22044456021,Peter A. Bandettini;Rasmus M. Birn,46,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=22044456021&origin=inward,10.1016/j.neuroimage.2005.03.040,2005-08-01,2-s2.0-22044456021,,70-82,15914032.0,22044456021,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=22044456021&origin=inward,Bandettini,NeuroImage,"The effect of stimulus duty cycle and ""off"" duration on BOLD response linearity",Article +,https://api.elsevier.com/content/abstract/scopus_id/14744290317,F. Q. Ye;P. A. Bandettini;Keith S. St. Lawrence;J. A. Frank,42,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=14744290317&origin=inward,10.1002/mrm.20396,2005-03-01,2-s2.0-14744290317,,735-738,15723412.0,14744290317,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=14744290317&origin=inward,Bandettini,Magnetic Resonance in Medicine,Noise reduction in multi-slice arterial spin tagging imaging,Article +,https://api.elsevier.com/content/abstract/scopus_id/84862858651,Peter De Weerd;Marieke Mur;Peter A. Bandettini;Jerzy Bodurka;Douglas A. Ruff;Nikolaus Kriegeskorte,40,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84862858651&origin=inward,10.1523/JNEUROSCI.2334-11.2012,2012-06-20,2-s2.0-84862858651,,8649-8662,22723705.0,84862858651,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84862858651&origin=inward,Bandettini,Journal of Neuroscience,"Categorical, yet graded-single-image activation profiles of human category-selective cortical regions",Article +,https://api.elsevier.com/content/abstract/scopus_id/70349972745,Peter A. Bandettini;Margaret K. King;Najah S. Waters;David C. Knight,36,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=70349972745&origin=inward,10.1016/j.neuroimage.2009.07.012,2010-01-01,2-s2.0-70349972745,,843-848,19616105.0,70349972745,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=70349972745&origin=inward,Bandettini,NeuroImage,Learning-related diminution of unconditioned SCR and fMRI signal responses,Article +,https://api.elsevier.com/content/abstract/scopus_id/84878784896,Rainer Goebel;Marieke Mur;Mirjam Meys;Jerzy Bodurka;Peter A. Bandettini;Nikolaus Kriegeskorte,45,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84878784896&origin=inward,10.3389/fpsyg.2013.00128,2013-01-01,2-s2.0-84878784896,MRC,,,84878784896,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84878784896&origin=inward,Bandettini,Frontiers in Psychology,Human object-similarity judgments reflect and transcend the primate-IT object representation,Article +,https://api.elsevier.com/content/abstract/scopus_id/35448983424,Nikolaus Kriegeskorte;Peter Bandettini,32,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=35448983424&origin=inward,10.1016/j.neuroimage.2007.06.030,2007-12-01,2-s2.0-35448983424,,666-668,17976583.0,35448983424,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=35448983424&origin=inward,Bandettini,NeuroImage,Combining the tools: Activation- and information-based fMRI analysis,Note +,https://api.elsevier.com/content/abstract/scopus_id/84955575520,Heidi Johansen-Berg;Thomas E. Nichols;Shannon H. Kolind;Helen Dawes;Andrea Dennis;Charlotte J. Stagg;Nancy B. Rawlings;Mark Jenkinson;Lucy Matthews;Peter A. Bandettini;Martyn Morris;Sean Foxley;Adam G. Thomas,34,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84955575520&origin=inward,10.1016/j.neuroimage.2015.10.090,2016-05-01,2-s2.0-84955575520,,162-170,26654786.0,84955575520,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84955575520&origin=inward,Thomas,NeuroImage,Multi-modal characterization of rapid anterior hippocampal volume increase associated with aerobic exercise,Article +,https://api.elsevier.com/content/abstract/scopus_id/84857946258,Nathan Dankner;Alex Martin;Gregory L. Wallace;Peter A. Bandettini;Masaya Misaki,24,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84857946258&origin=inward,10.1016/j.neuroimage.2012.01.120,2012-04-15,2-s2.0-84857946258,,1890-1901,22326986.0,84857946258,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84857946258&origin=inward,Martin,NeuroImage,Characteristic cortical thickness patterns in adolescents with autism spectrum disorders: Interactions with age and intellectual ability revealed by canonical correlation analysis,Article +,https://api.elsevier.com/content/abstract/scopus_id/84903954873,Gang Chen;Colin W. Hoy;Georg Northoff;Zhi Yang;Ting Xu;Xi Nian Zuo;Peter A. Bandettini;Yong Xu;Daniel A. Handwerker,26,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84903954873&origin=inward,10.1038/srep05549,2014-07-03,2-s2.0-84903954873,,,24989351.0,84903954873,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84903954873&origin=inward,Bandettini,Scientific Reports,Brain network informed subject community detection in early-onset schizophrenia,Article +,https://api.elsevier.com/content/abstract/scopus_id/84910022208,Prantik Kundu;Jennifer W. Evans;Silvina G. Horovitz;Peter A. Bandettini,26,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84910022208&origin=inward,10.1016/j.neuroimage.2014.10.051,2015-01-05,2-s2.0-84910022208,,189-197,25449746.0,84910022208,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84910022208&origin=inward,Bandettini,NeuroImage,Separating slow BOLD from non-BOLD baseline drifts using multi-echo fMRI,Article +,https://api.elsevier.com/content/abstract/scopus_id/84872973394,Tie Qiang Li;Wen Ming Luh;S. Lalith Talagala;Peter A. Bandettini,26,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84872973394&origin=inward,10.1002/mrm.24266,2013-02-01,2-s2.0-84872973394,,402-410,22488568.0,84872973394,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84872973394&origin=inward,Talagala,Magnetic Resonance in Medicine,Pseudo-continuous arterial spin labeling at 7 T for human brain: Estimation and correction for off-resonance effects using a Prescan,Article +,https://api.elsevier.com/content/abstract/scopus_id/76449106575,Peter A. Bandettini,20,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=76449106575&origin=inward,10.1142/S0219635209002186,2009-09-01,2-s2.0-76449106575,,371-403,19938211.0,76449106575,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=76449106575&origin=inward,Bandettini,Journal of Integrative Neuroscience,Seven topics in functional magnetic resonance imaging,Review +,https://api.elsevier.com/content/abstract/scopus_id/84965097479,Greig I. De Zubicaray;F. Xavier Castellanos;Zhi Yang;Margaret J. Wright;Ian Hickie;Clare Kelly;R. Cameron Craddock;Xi Nian Zuo;Katie L. McMahon;Peter A. Bandettini;Michael P. Milham,27,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84965097479&origin=inward,10.1093/cercor/bhw027,2016-05-01,2-s2.0-84965097479,NIH,2341-2352,26891986.0,84965097479,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84965097479&origin=inward,Bandettini,Cerebral Cortex,Genetic and Environmental Contributions to Functional Connectivity Architecture of the Human Brain,Article +,https://api.elsevier.com/content/abstract/scopus_id/85027128247,Peter A. Bandettini;Javier Gonzalez-Castillo,23,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85027128247&origin=inward,10.1016/j.neuroimage.2017.08.006,2018-10-15,2-s2.0-85027128247,,526-533,28780401.0,85027128247,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85027128247&origin=inward,Bandettini,NeuroImage,Task-based dynamic functional connectivity: Recent findings and open questions,Review +,https://api.elsevier.com/content/abstract/scopus_id/84903538597,Javier Gonzalez-Castillo;Georg Northoff;Zirui Huang;Zhi Yang;Rui Dai;Peter Bandettini,12,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84903538597&origin=inward,10.1016/j.neuroimage.2014.05.034,2014-10-01,2-s2.0-84903538597,,80-92,24844742.0,84903538597,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84903538597&origin=inward,Bandettini,NeuroImage,Using fMRI to decode true thoughts independent of intention to conceal,Article +,https://api.elsevier.com/content/abstract/scopus_id/57549102118,Jerzy Bodurka;Nikolaus Kriegeskorte;Peter Bandettini,10,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=57549102118&origin=inward,10.1002/ima.20166,2008-12-17,2-s2.0-57549102118,,345-349,,57549102118,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=57549102118&origin=inward,Bandettini,International Journal of Imaging Systems and Technology,Artifactual time-course correlations in echo-planar fMRI with implications for studies of brain function,Article +,https://api.elsevier.com/content/abstract/scopus_id/84871027595,Javier Gonzalez-Castillo;Carlton Chu;Kristen N. Duthie;Ziad S. Saad;Wen Ming Luh;Peter A. Bandettini,9,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84871027595&origin=inward,10.1016/j.neuroimage.2012.10.076,2013-02-15,2-s2.0-84871027595,,163-174,23128074.0,84871027595,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84871027595&origin=inward,Bandettini,NeuroImage,Effects of image contrast on functional MRI image registration,Article +,https://api.elsevier.com/content/abstract/scopus_id/84930180212,Peter A. Bandettini;Paula Wu;Daniel A. Handwerker;Ronald M. Harper,9,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84930180212&origin=inward,10.1038/jcbfm.2015.20,2015-01-01,2-s2.0-84930180212,,1024-1032,25712496.0,84930180212,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84930180212&origin=inward,Bandettini,Journal of Cerebral Blood Flow and Metabolism,Effects of thoracic pressure changes on MRI signals in the brain,Article +,https://api.elsevier.com/content/abstract/scopus_id/84959440808,Colin W. Hoy;Javier Gonzalez-Castillo;Souheil J. Inati;Robert W. Cox;Ziad S. Saad;Vinai Roopchansingh;Peter A. Bandettini;Daniel A. Handwerker,8,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84959440808&origin=inward,10.1093/cercor/bhu148,2015-01-01,2-s2.0-84959440808,,4667-4677,25405938.0,84959440808,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84959440808&origin=inward,Bandettini,Cerebral Cortex,"Task dependence, tissue specificity, and spatial distribution of widespread activations in large single-subject functional MRI datasets at 7T",Article +,https://api.elsevier.com/content/abstract/scopus_id/85007356582,Maria Guidi;Benedikt A. Poser;Dimo Ivanov;Sean Marrett;Kâmil Uludağ;Peter A. Bandettini;Laurentius Huber;Daniel A. Handwerker,16,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85007356582&origin=inward,10.1016/j.neuroimage.2016.11.039,2018-01-01,2-s2.0-85007356582,PEOPLE,131-143,27867088.0,85007356582,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85007356582&origin=inward,Bandettini,NeuroImage,Techniques for blood volume fMRI with VASO: From low-resolution mapping towards sub-millimeter layer-dependent applications,Article +,https://api.elsevier.com/content/abstract/scopus_id/80051970198,Peter A. Bandettini;John Ashburner;Carlton Chu;Daniel A. Handwerker,6,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=80051970198&origin=inward,10.1109/PRNI.2011.11,2011-08-29,2-s2.0-80051970198,,41-44,,80051970198,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=80051970198&origin=inward,Bandettini,"Proceedings - International Workshop on Pattern Recognition in NeuroImaging, PRNI 2011",Measuring the consistency of global functional connectivity using kernel regression methods,Conference Paper +,https://api.elsevier.com/content/abstract/scopus_id/46949096201,Peter A. Bandettini;August S. Tuan;Geoffrey M. Boynton;Rasmus M. Birn,6,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=46949096201&origin=inward,10.1002/ima.20144,2008-07-16,2-s2.0-46949096201,,17-28,,46949096201,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=46949096201&origin=inward,Bandettini,International Journal of Imaging Systems and Technology,Differential transient MEG and fMRI responses to visual stimulation onset rate,Article +,https://api.elsevier.com/content/abstract/scopus_id/84981186502,Javier Gonzalez-Castillo;David C. Jangraw;John A. Derbyshire;Valentinos Zachariou;Souheil Inati;Cesar Caballero-Gaudes;Vinai Roopchansingh;Laura C. Buchanan;Puja Panwar;Peter A. Bandettini;Daniel A. Handwerker,12,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84981186502&origin=inward,10.1016/j.neuroimage.2016.07.049,2016-11-01,2-s2.0-84981186502,,452-468,27475290.0,84981186502,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84981186502&origin=inward,Bandettini,NeuroImage,"Evaluation of multi-echo ICA denoising for task based fMRI studies: Block designs, rapid event-related designs, and cardiac-gated fMRI",Article +,https://api.elsevier.com/content/abstract/scopus_id/84872258736,Peter A. Bandettini;Wen Ming Luh;Masaya Misaki,4,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84872258736&origin=inward,10.1016/j.neuroimage.2012.10.069,2013-02-01,2-s2.0-84872258736,,623-633,23128073.0,84872258736,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84872258736&origin=inward,Bandettini,NeuroImage,Accurate decoding of sub-TR timing differences in stimulations of sub-voxel regions from multi-voxel response patterns,Article +,https://api.elsevier.com/content/abstract/scopus_id/85007106979,Peter A. Bandettini;Gang Chen;Thomas E. Nichols;Javier Gonzalez-Castillo,5,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85007106979&origin=inward,10.1016/j.neuroimage.2016.10.024,2017-07-01,2-s2.0-85007106979,,206-218,27773827.0,85007106979,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85007106979&origin=inward,Bandettini,NeuroImage,Variance decomposition for single-subject task-based fMRI activity estimates across many sessions,Article +,https://api.elsevier.com/content/abstract/scopus_id/85031756535,Shella Keilholz;Gustavo Deco;Cesar Caballero-Gaudes;Vince Calhoun;Peter Bandettini,14,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85031756535&origin=inward,10.1089/brain.2017.0543,2017-10-01,2-s2.0-85031756535,,465-481,28874061.0,85031756535,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85031756535&origin=inward,Bandettini,Brain Connectivity,"Time-Resolved Resting-State Functional Magnetic Resonance Imaging Analysis: Current Status, Challenges, and New Directions",Review +,https://api.elsevier.com/content/abstract/scopus_id/84899413629,Peter A. Bandettini;Xuchu Weng;Paula Wu;Zhi Yang,3,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84899413629&origin=inward,10.1142/S0219635214500010,2014-01-01,2-s2.0-84899413629,NIH,1-17,24738536.0,84899413629,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84899413629&origin=inward,Bandettini,Journal of Integrative Neuroscience,Cerebellum engages in automation of verb-generation skill,Article +,https://api.elsevier.com/content/abstract/scopus_id/84878327205,Javier Gonzalez-Castillo;Paul Guillod;Peter A. Bandettini;Prantik Kundu;Masaya Misaki,0,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84878327205&origin=inward,10.1117/12.2012737,2013-06-03,2-s2.0-84878327205,,,,84878327205,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84878327205&origin=inward,Bandettini,Progress in Biomedical Optics and Imaging - Proceedings of SPIE,"Characterizing and utilizing fMRI fluctuations, patterns, and dynamics",Conference Paper +,https://api.elsevier.com/content/abstract/scopus_id/84960849135,Carlo Pierpaoli;Cibu Thomas;Alan S. Barnett;Evren Özarslan;Alexandru V. Avram;M. Okan Irfanoglu;Elizabeth Hutchinson;Peter J. Basser;Joelle E. Sarlls,19,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84960849135&origin=inward,10.1016/j.neuroimage.2015.11.027,2016-02-15,2-s2.0-84960849135,NIH,422-434,26584864.0,84960849135,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84960849135&origin=inward,Pierpaoli,NeuroImage,Clinical feasibility of using mean apparent propagator (MAP) MRI to characterize brain tissue microstructure,Article +,https://api.elsevier.com/content/abstract/scopus_id/84973530104,Michal E. Komlosh;Uri Nevo;Lynne A. Holtzclaw;Peter J. Basser;Dan Benjamini,22,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84973530104&origin=inward,10.1016/j.neuroimage.2016.04.052,2016-07-15,2-s2.0-84973530104,,333-344,27126002.0,84973530104,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84973530104&origin=inward,Basser,NeuroImage,White matter microstructure from nonparametric axon diameter distribution mapping,Article +,https://api.elsevier.com/content/abstract/scopus_id/84949256230,Carlo Pierpaoli;John M. Ollinger;Terrence R. Oakes;Peter J. Basser;Ping Hong Yeh;Cheng Guan Koay;Gerard Riedy;M. Okan Irfanoğlu,0,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84949256230&origin=inward,10.1016/j.neuroimage.2015.11.046,2016-02-01,2-s2.0-84949256230,,151-163,26638985.0,84949256230,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84949256230&origin=inward,Pierpaoli,NeuroImage,Tract Orientation and Angular Dispersion Deviation Indicator (TOADDI): A framework for single-subject analysis in diffusion tensor imaging,Article +,https://api.elsevier.com/content/abstract/scopus_id/0036869232,Peter J. Basser;Derek K. Jones,977,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0036869232&origin=inward,10.1002/nbm.783,2002-11-01,2-s2.0-0036869232,,456-467,12489095.0,36869232,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0036869232&origin=inward,Basser,NMR in Biomedicine,"Diffusion-tensor MRI: Theory, experimental design and data analysis - A technical review",Review +,https://api.elsevier.com/content/abstract/scopus_id/0034973970,Carlo Pierpaoli;Alan Barnett;Sinisa Pajevic;Robert Chen;Peter Basser;Anette Virta;La Roy Penix,706,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0034973970&origin=inward,10.1006/nimg.2001.0765,2001-01-01,2-s2.0-0034973970,NICHD,1174-1185,11352623.0,34973970,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0034973970&origin=inward,Pierpaoli,NeuroImage,Water diffusion changes in wallerian degeneration and their dependence on white matter architecture,Article +,https://api.elsevier.com/content/abstract/scopus_id/18244400115,Carlo Pierpaoli;Lin Ching Chang;Derek K. Jones,371,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=18244400115&origin=inward,10.1002/mrm.20426,2005-05-01,2-s2.0-18244400115,,1088-1095,15844157.0,18244400115,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=18244400115&origin=inward,Pierpaoli,Magnetic Resonance in Medicine,RESTORE: Robust estimation of tensors by outlier rejection,Article +,https://api.elsevier.com/content/abstract/scopus_id/0345742636,P. J. Basser;S. Marenco;C. Pierpaoli;Gustavo Kunde Rohde;A. S. Barnett,340,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0345742636&origin=inward,10.1002/mrm.10677,2004-01-01,2-s2.0-0345742636,,103-114,14705050.0,345742636,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0345742636&origin=inward,Basser,Magnetic Resonance in Medicine,Comprehensive Approach for Correction of Motion and Distortion in Diffusion-Weighted MRI,Article +,https://api.elsevier.com/content/abstract/scopus_id/84915758306,David A. Leopold;Carlo Pierpaoli;Cibu Thomas;Pooja Modi;Frank Q. Ye;Kadharbatcha S. Saleem;M. Okan Irfanoglu,261,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84915758306&origin=inward,10.1073/pnas.1405672111,2014-11-18,2-s2.0-84915758306,,16574-16579,25368179.0,84915758306,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84915758306&origin=inward,Pierpaoli,Proceedings of the National Academy of Sciences of the United States of America,Anatomical accuracy of brain connections derived from diffusion MRI tractography is inherently limited,Article +,https://api.elsevier.com/content/abstract/scopus_id/0041702764,Peter J. Basser;Sinisa Pajevic,121,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0041702764&origin=inward,10.1016/S1090-7807(02)00178-7,2003-03-01,2-s2.0-0041702764,,1-14,12660106.0,41702764,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0041702764&origin=inward,Basser,Journal of Magnetic Resonance,Parametric and non-parametric statistical analysis of DT-MRI data,Article +,https://api.elsevier.com/content/abstract/scopus_id/18244362334,Carlo Pierpaoli;Derek K. Jones,112,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=18244362334&origin=inward,10.1002/mrm.20466,2005-05-01,2-s2.0-18244362334,,1143-1149,15844149.0,18244362334,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=18244362334&origin=inward,Pierpaoli,Magnetic Resonance in Medicine,Confidence mapping in diffusion tensor magnetic resonance imaging tractography using a bootstrap approach,Article +,https://api.elsevier.com/content/abstract/scopus_id/84877006595,Carlo Pierpaoli;Michal E. Komlosh;Evren Özarslan;Timothy M. Shepherd;Peter J. Basser;Cheng Guan Koay;M. Okan Irfanoǧlu,121,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84877006595&origin=inward,10.1016/j.neuroimage.2013.04.016,2013-09-01,2-s2.0-84877006595,,16-32,23587694.0,84877006595,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84877006595&origin=inward,Pierpaoli,NeuroImage,Mean apparent propagator (MAP) MRI: A novel diffusion imaging method for mapping tissue microstructure,Article +,https://api.elsevier.com/content/abstract/scopus_id/84859091395,Carlo Pierpaoli;Lindsay Walker;Joelle Sarlls;Stefano Marenco;M. Okan Irfanoglu,99,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84859091395&origin=inward,10.1016/j.neuroimage.2012.02.054,2012-05-15,2-s2.0-84859091395,,275-288,22401760.0,84859091395,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84859091395&origin=inward,Pierpaoli,NeuroImage,Effects of image distortions originating from susceptibility variations and concomitant fields on diffusion MRI tractography results,Article +,https://api.elsevier.com/content/abstract/scopus_id/84865661488,Carlo Pierpaoli;Lindsay Walker;Lin Ching Chang,66,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84865661488&origin=inward,10.1002/mrm.24173,2012-11-01,2-s2.0-84865661488,,1654-1663,22287298.0,84865661488,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84865661488&origin=inward,Pierpaoli,Magnetic Resonance in Medicine,Informed RESTORE: A method for robust estimation of diffusion tensor from low redundancy datasets in the presence of physiological noise artifacts,Article +,https://api.elsevier.com/content/abstract/scopus_id/41849083445,P. J. Basser;Michal E. Komlosh;R. Z. Freidlin;M. J. Lizak;F. Horkay,53,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=41849083445&origin=inward,10.1002/mrm.21528,2008-04-01,2-s2.0-41849083445,,803-809,18383293.0,41849083445,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=41849083445&origin=inward,Basser,Magnetic Resonance in Medicine,Observation of microscopic diffusion anisotropy in the spinal cord using double-pulsed gradient spin echo MRI,Article +,https://api.elsevier.com/content/abstract/scopus_id/33750978683,Peter J. Basser;Sinisa Pajevic,52,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33750978683&origin=inward,10.1016/j.sigpro.2006.02.050,2007-02-01,2-s2.0-33750978683,,220-236,,33750978683,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33750978683&origin=inward,Basser,Signal Processing,Spectral decomposition of a 4th-order covariance tensor: Applications to diffusion tensor MRI,Article +,https://api.elsevier.com/content/abstract/scopus_id/84869093751,Carlo Pierpaoli;Susan Swedo;Lindsay Walker;Marta Gozzi;Babak Behseta;Audrey Thurm;Rhoshel Lenroot,55,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84869093751&origin=inward,10.1016/j.biopsych.2012.08.001,2012-12-15,2-s2.0-84869093751,,1043-1051,22906515.0,84869093751,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84869093751&origin=inward,Thurm,Biological Psychiatry,Diffusion tensor imaging in young children with autism: Biological effects and potential confounds,Article +,https://api.elsevier.com/content/abstract/scopus_id/28444469213,Carlo Pierpaoli;Sungheon Kim;Gloria Chi-Fishman;Alan S. Barnett,51,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=28444469213&origin=inward,10.1002/mrm.20676,2005-12-01,2-s2.0-28444469213,,1387-1396,16265644.0,28444469213,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=28444469213&origin=inward,Pierpaoli,Magnetic Resonance in Medicine,Dependence on diffusion time of apparent diffusion tensor of ex vivo calf tongue and heart,Article +,https://api.elsevier.com/content/abstract/scopus_id/78649646790,Carlo Pierpaoli;Lindsay Walker;Lin Ching Chang;Ragini Verma;Nik Sharma;Leonardo Cohen;Cheng Guan Koay,45,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=78649646790&origin=inward,10.1016/j.neuroimage.2010.08.048,2011-01-15,2-s2.0-78649646790,,1168-1177,20804850.0,78649646790,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=78649646790&origin=inward,Cohen,NeuroImage,Effects of physiological noise in population analysis of diffusion tensor MRI data,Article +,https://api.elsevier.com/content/abstract/scopus_id/20444494054,Carlo Pierpaoli;Peter J. Basser;Gustavo K. Rohde;Alan S. Barnett,39,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=20444494054&origin=inward,10.1016/j.neuroimage.2005.02.023,2005-07-01,2-s2.0-20444494054,,673-684,15955477.0,20444494054,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=20444494054&origin=inward,Basser,NeuroImage,Estimating intensity variance due to noise in registered images: Applications to diffusion tensor MRI,Article +,https://api.elsevier.com/content/abstract/scopus_id/84920153111,Carlo Pierpaoli;Amritha Nayak;Pooja Modi;Joelle Sarlls;Elizabeth B. Hutchinson;M. Okan Irfanoglu,48,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84920153111&origin=inward,10.1016/j.neuroimage.2014.11.042,2015-02-01,2-s2.0-84920153111,,284-299,25433212.0,84920153111,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84920153111&origin=inward,Pierpaoli,NeuroImage,DR-BUDDI (Diffeomorphic Registration for Blip-Up blip-Down Diffusion Imaging) method for correcting echo planar imaging distortions,Article +,https://api.elsevier.com/content/abstract/scopus_id/84867460313,Evren Özarslan;Alexandru V. Avram;Peter J. Basser;Joelle E. Sarlls,39,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84867460313&origin=inward,10.1016/j.neuroimage.2012.08.048,2013-01-01,2-s2.0-84867460313,,229-239,22939872.0,84867460313,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84867460313&origin=inward,Basser,NeuroImage,In vivo detection of microscopic anisotropy using quadruple pulsed-field gradient (qPFG) diffusion MRI on a clinical scanner,Article +,https://api.elsevier.com/content/abstract/scopus_id/35648946356,Michal E. Komlosh;Lin Ching Chang;Raisa Z. Freidlin;Evren Özarslan;Derek K. Jones;Peter J. Basser;Cheng Guan Koay,18,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=35648946356&origin=inward,10.1109/TMI.2007.907294,2007-11-01,2-s2.0-35648946356,NICHD,1576-1584,18041272.0,35648946356,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=35648946356&origin=inward,Basser,IEEE Transactions on Medical Imaging,Parsimonious model selection for tissue segmentation and classification applications: A study using simulated and experimental DTI data,Article +,https://api.elsevier.com/content/abstract/scopus_id/84883753710,Carlo Pierpaoli;Amritha Nayak;Lindsay Walker;Michael Curry;Nicholas Lange,21,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84883753710&origin=inward,10.1002/hbm.22081,2013-10-01,2-s2.0-84883753710,NICHD,2439-2454,22461391.0,84883753710,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84883753710&origin=inward,Pierpaoli,Human Brain Mapping,A framework for the analysis of phantom data in multicenter diffusion tensor imaging studies,Article +,https://api.elsevier.com/content/abstract/scopus_id/49049110253,Carlo Pierpaoli;Joelle E. Sarlls,14,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=49049110253&origin=inward,10.1002/mrm.21639,2008-08-01,2-s2.0-49049110253,,270-276,18666119.0,49049110253,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=49049110253&origin=inward,Pierpaoli,Magnetic Resonance in Medicine,Diffusion-weighted radial fast spin-echo for high-resolution diffusion tensor imaging at 3T,Article +,https://api.elsevier.com/content/abstract/scopus_id/67651017508,Carlo Pierpaoli;Joelle E. Sarlls,12,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=67651017508&origin=inward,10.1016/j.neuroimage.2009.05.098,2009-10-01,2-s2.0-67651017508,,1244-1251,19520170.0,67651017508,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=67651017508&origin=inward,Pierpaoli,NeuroImage,In vivo diffusion tensor imaging of the human optic chiasm at sub-millimeter resolution,Article +,https://api.elsevier.com/content/abstract/scopus_id/84903650018,Carlo Pierpaoli;Lindsay Walker;Emilie A. Steffen-Smith;Joanna H. Shih;Katherine E. Warren;Robyn S. Bent;Joelle E. Sarlls,8,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84903650018&origin=inward,10.1155/2014/647356,2014-01-01,2-s2.0-84903650018,,,25006580.0,84903650018,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84903650018&origin=inward,Pierpaoli,BioMed Research International,Diffusion tensor histogram analysis of pediatric diffuse intrinsic pontine glioma,Article +,https://api.elsevier.com/content/abstract/scopus_id/84909638626,Carlo Pierpaoli;Amritha Nayak;Pooja Modi;Joelle Sarlls;Andrew Knutsen;M. Okan Irfanoglu,4,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84909638626&origin=inward,10.1007/978-3-319-10404-1_28,2014-01-01,2-s2.0-84909638626,,218-226,25333121.0,84909638626,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84909638626&origin=inward,Pierpaoli,Lecture Notes in Computer Science (including subseries Lecture Notes in Artificial Intelligence and Lecture Notes in Bioinformatics),DR-BUDDI: Diffeomorphic registration for blip up-down diffusion imaging,Conference Paper +,https://api.elsevier.com/content/abstract/scopus_id/84906978503,Carlo Pierpaoli;Amritha Nayak;Pooja Modi;Joelle Sarlls;Andrew Knutsen;M. Okan Irfanoglu,0,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84906978503&origin=inward,,2014-01-01,2-s2.0-84906978503,,218-226,,84906978503,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84906978503&origin=inward,Pierpaoli,Lecture Notes in Computer Science (including subseries Lecture Notes in Artificial Intelligence and Lecture Notes in Bioinformatics),Dr-BUDDI: Diffeomorphic registration for blip up-down diffusion imaging,Article +,https://api.elsevier.com/content/abstract/scopus_id/36248937190,Michal E. Komlosh;Peter J. Basser;Raisa Z. Freidlin;Murray H. Loew,0,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=36248937190&origin=inward,10.1117/12.708312,2007-11-23,2-s2.0-36248937190,,,,36248937190,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=36248937190&origin=inward,Basser,Progress in Biomedical Optics and Imaging - Proceedings of SPIE,Parsimonious model selection for tissue classification: A DTI study of zebrafish,Conference Paper +,https://api.elsevier.com/content/abstract/scopus_id/0035154055,D. R. Weinberger;K. F. Berman;P. D. Kohn;A. Meyer-Lindenberg;J. B. Polin;M. F. Egan;J. L. Holt,395,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0035154055&origin=inward,10.1176/appi.ajp.158.11.1809,2001-11-24,2-s2.0-0035154055,,1809-1817,11691686.0,35154055,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0035154055&origin=inward,Berman,American Journal of Psychiatry,Evidence for abnormal cortical functional connectivity during working memory in schizophrenia,Article +,https://api.elsevier.com/content/abstract/scopus_id/16344390356,Andreas S. Meyer-Lindenberg;Rosanna K. Olsen;Philip D. Kohn;Daniel R. Weinberger;Karen Faith Berman;Timothy Brown;Michael F. Egan,398,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=16344390356&origin=inward,10.1001/archpsyc.62.4.379,2005-04-01,2-s2.0-16344390356,,379-386,15809405.0,16344390356,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=16344390356&origin=inward,Berman,Archives of General Psychiatry,Regionally specific disturbance of dorsolateral prefrontal-hippocampal functional connectivity in schizophrenia,Article +,https://api.elsevier.com/content/abstract/scopus_id/33847771238,Jean Claude Dreher;David Rubinow;Karen Faith Berman;Peter J. Schmidt;Daniella Furman;Philip Kohn,307,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33847771238&origin=inward,10.1073/pnas.0605569104,2007-02-13,2-s2.0-33847771238,,2465-2470,17267613.0,33847771238,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33847771238&origin=inward,Schmidt,Proceedings of the National Academy of Sciences of the United States of America,Menstrual cycle phase modulates reward-related neural function in women,Article +,https://api.elsevier.com/content/abstract/scopus_id/33745698871,Carolyn B. Mervis;Andreas Meyer-Lindenberg;Karen Faith Berman,286,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33745698871&origin=inward,10.1038/nrn1906,2006-05-01,2-s2.0-33745698871,NICHD,380-393,16760918.0,33745698871,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33745698871&origin=inward,Faith Berman,Nature Reviews Neuroscience,Neural mechanisms in Williams syndrome: A unique window to genetic influences on cognition and behaviour,Review +,https://api.elsevier.com/content/abstract/scopus_id/23044456645,Karen E. Munoz;Venkata S. Mattay;Karen Faith Berman;Carolyn B. Mervis;Andreas Meyer-Lindenberg;Colleen A. Morris;Ahmad R. Hariri,268,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=23044456645&origin=inward,10.1038/nn1494,2005-08-01,2-s2.0-23044456645,,991-993,16007084.0,23044456645,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=23044456645&origin=inward,Berman,Nature Neuroscience,Neural correlates of genetically abnormal social cognition in Williams syndrome,Article +,https://api.elsevier.com/content/abstract/scopus_id/18544391151,Bradley R. Buchsbaum;Stephanie Greer;Wei Li Chang;Karen Faith Berman,276,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=18544391151&origin=inward,10.1002/hbm.20128,2005-05-01,2-s2.0-18544391151,,35-45,15846821.0,18544391151,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=18544391151&origin=inward,Berman,Human Brain Mapping,Meta-analysis of neuroimaging studies of the Wisconsin Card-Sorting Task and component processes,Conference Paper +,https://api.elsevier.com/content/abstract/scopus_id/58849166796,Jean Claude Dreher;Bhaskar Kolachana;Daniel R. Weinberger;Karen Faith Berman;Philip Kohn,255,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=58849166796&origin=inward,10.1073/pnas.0805517106,2009-01-13,2-s2.0-58849166796,,617-622,19104049.0,58849166796,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=58849166796&origin=inward,Berman,Proceedings of the National Academy of Sciences of the United States of America,Variation in dopamine genes influences responsivity of the human reward system,Article +,https://api.elsevier.com/content/abstract/scopus_id/4444331998,Rosanna K. Olsen;Karen Faith Berman;Carolyn B. Mervis;Andreas Meyer-Lindenberg;Colleen A. Morris;J. Shane Kippenhan;Philip Kohn,241,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=4444331998&origin=inward,10.1016/j.neuron.2004.08.014,2004-09-02,2-s2.0-4444331998,,623-631,15339645.0,4444331998,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=4444331998&origin=inward,Berman,Neuron,Neural basis of genetically determined visuospatial construction deficit in Williams syndrome,Article +,https://api.elsevier.com/content/abstract/scopus_id/27844556998,Bradley R. Buchsbaum;Rosanna K. Olsen;Paul Koch;Karen Faith Berman,179,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=27844556998&origin=inward,10.1016/j.neuron.2005.09.029,2005-11-23,2-s2.0-27844556998,,687-697,16301183.0,27844556998,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=27844556998&origin=inward,Berman,Neuron,Human dorsal and ventral auditory streams subserve rehearsal-based and echoic processes during verbal working memory,Article +,https://api.elsevier.com/content/abstract/scopus_id/79551658486,Juliana Baldo;Gregory Hickok;Bradley R. Buchsbaum;Karen F. Berman;Kayoko Okada;Mark D'Esposito;Nina Dronkers,159,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79551658486&origin=inward,10.1016/j.bandl.2010.12.001,2011-12-01,2-s2.0-79551658486,,119-128,21256582.0,79551658486,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79551658486&origin=inward,Berman,Brain and Language,"Conduction aphasia, sensory-motor integration, and phonological short-term memory - An aggregate analysis of lesion and fMRI data",Article +,https://api.elsevier.com/content/abstract/scopus_id/33644918886,Jean Claude Dreher;Karen Faith Berman;Philip Kohn,132,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33644918886&origin=inward,10.1093/cercor/bhj004,2006-04-01,2-s2.0-33644918886,,561-573,16033924.0,33644918886,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33644918886&origin=inward,Berman,Cerebral Cortex,Neural coding of distinct statistical properties of reward information in humans,Article +,https://api.elsevier.com/content/abstract/scopus_id/0037195076,Jean Claude Dreher;Karen Faith Berman,127,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0037195076&origin=inward,10.1073/pnas.222193299,2002-10-29,2-s2.0-0037195076,,14595-14600,12391312.0,37195076,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0037195076&origin=inward,Berman,Proceedings of the National Academy of Sciences of the United States of America,Fractionating the neural substrate of cognitive control processes,Article +,https://api.elsevier.com/content/abstract/scopus_id/54449089027,Jean Claude Dreher;Karen Faith Berman;Andreas Meyer-Lindenberg;Philip Kohn,113,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=54449089027&origin=inward,10.1073/pnas.0802127105,2008-09-30,2-s2.0-54449089027,,15106-15111,18794529.0,54449089027,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=54449089027&origin=inward,Berman,Proceedings of the National Academy of Sciences of the United States of America,Age-related changes in midbrain dopaminergic regulation of the human reward system,Article +,https://api.elsevier.com/content/abstract/scopus_id/22144453872,Colleen A. Morris;Saumitra Das;Venkata S. Mattay;Daniel R. Weinberger;Sonya Steele;Shane Kippenhan;Karen Faith Berman;Carolyn B. Mervis;Andreas Meyer-Lindenberg;Paul Koch;Stefano Marenco;Deepak Sarpal;Philip Kohn,107,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=22144453872&origin=inward,10.1172/JCI24892,2005-07-01,2-s2.0-22144453872,,1888-1895,15951840.0,22144453872,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=22144453872&origin=inward,Berman,Journal of Clinical Investigation,"Functional, structural, and metabolic abnormalities of the hippocampal formation in Williams syndrome",Article +,https://api.elsevier.com/content/abstract/scopus_id/23944487203,Rosanna K. Olsen;Karen Faith Berman;Carolyn B. Mervis;Andreas Meyer-Lindenberg;Colleen A. Morris;J. Shane Kippenhan;Philip Kohn,101,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=23944487203&origin=inward,10.1523/JNEUROSCI.1722-05.2005,2005-08-24,2-s2.0-23944487203,,7840-7846,16120786.0,23944487203,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=23944487203&origin=inward,Berman,Journal of Neuroscience,Genetic contributions to human gyrification: Sulcal morphometry in Williams syndrome,Article +,https://api.elsevier.com/content/abstract/scopus_id/35448967833,Carlo Pierpaoli;Daniel R. Weinberger;Karen Faith Berman;Samuel Grodofsky;Michael A. Siuta;Wei Li Chang;Carolyn B. Mervis;Andreas Meyer-Lindenberg;Stefano Marenco;Colleen A. Morris;J. Shane Kippenhan;Philip Kohn,70,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=35448967833&origin=inward,10.1073/pnas.0704311104,2007-09-18,2-s2.0-35448967833,,15117-15122,17827280.0,35448967833,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=35448967833&origin=inward,Pierpaoli,Proceedings of the National Academy of Sciences of the United States of America,Genetic contributions to white matter architecture revealed by diffusion tensor imaging in Williams syndrome,Article +,https://api.elsevier.com/content/abstract/scopus_id/16244380802,Rosanna K. Olsen;Bradley R. Buchsbaum;Paul F. Koch;Karen Faith Berman;J. Shane Kippenhan;Philip Kohn,63,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=16244380802&origin=inward,10.1016/j.neuroimage.2004.08.025,2005-01-15,2-s2.0-16244380802,,444-454,15627586.0,16244380802,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=16244380802&origin=inward,Berman,NeuroImage,"Reading, hearing, and the planum temporale",Article +,https://api.elsevier.com/content/abstract/scopus_id/84864659715,Ozlem Goker-Alpan;Joie Davis;Emerson D. Maniwang;Edythe Wiggs;Angela Ianni;Catherine Groden;Grisel Lopez;Ellen Sidransky;Karen F. Berman;Philip D. Kohn;Daniel P. Eisenberg;Brett Cropp;Joseph C. Masdeu;Molly C. Chapman,45,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84864659715&origin=inward,10.1093/brain/aws174,2012-01-01,2-s2.0-84864659715,,2440-2448,,84864659715,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84864659715&origin=inward,Berman,Brain,The neurobiology of glucocerebrosidase-associated parkinsonism: A positron emission tomography study of dopamine synthesis and regional cerebral blood flow,Article +,https://api.elsevier.com/content/abstract/scopus_id/58149176754,Bradley R. Buchsbaum;Philip D. Kohn;Karen Faith Berman;Carolyn B. Mervis;Andreas Meyer-Lindenberg;Colleen A. Morris;J. Shane Kippenhan;Deepak Sarpal,37,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=58149176754&origin=inward,10.1093/cercor/bhn004,2008-10-01,2-s2.0-58149176754,,2402-2409,18308711.0,58149176754,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=58149176754&origin=inward,Berman,Cerebral Cortex,A genetic model for understanding higher order visual processing: Functional interactions of the ventral visual stream in williams syndrome,Article +,https://api.elsevier.com/content/abstract/scopus_id/84874773299,David R. Rubinow;Karen F. Berman;Shau Ming Wei;Philip D. Kohn;Erica B. Baller;Peter J. Schmidt;Gabriela Alarcón,35,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84874773299&origin=inward,10.1176/appi.ajp.2012.12030385,2013-03-01,2-s2.0-84874773299,,305-314,,84874773299,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84874773299&origin=inward,Schmidt,American Journal of Psychiatry,Abnormalities of dorsolateral prefrontal function in women with premenstrual dysphoric disorder: A multimodal neuroimaging study,Article +,https://api.elsevier.com/content/abstract/scopus_id/84859465051,Colleen A. Morris;Karen Faith Berman;Carolyn B. Mervis;Andreas Meyer-Lindenberg;Stefano Marenco;Mbemba Jabbi;J. Shane Kippenhan;Philip Kohn,35,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84859465051&origin=inward,10.1073/pnas.1114774109,2012-04-03,2-s2.0-84859465051,,,22411788.0,84859465051,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84859465051&origin=inward,Berman,Proceedings of the National Academy of Sciences of the United States of America,"The Williams syndrome chromosome 7q11.23 hemideletion confers hypersocial, anxious personality coupled with altered insula structure and function",Article +,https://api.elsevier.com/content/abstract/scopus_id/75449118703,Venkata S. Mattay;Karen Faith Berman;Karen E. Muñoz;Carolyn B. Mervis;Andreas Meyer-Lindenberg;Colleen A. Morris;Ahmad R. Hariri,30,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=75449118703&origin=inward,10.1016/j.neuroimage.2009.11.069,2010-03-01,2-s2.0-75449118703,,340-346,20004252.0,75449118703,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=75449118703&origin=inward,Berman,NeuroImage,Abnormalities in neural processing of emotional stimuli in Williams syndrome vary according to social vs. non-social content,Article +,https://api.elsevier.com/content/abstract/scopus_id/84865530442,Bhaskar Kolachana;Karen F. Berman;Venkata S. Mattay;Matthew Emery;Daniel R. Weinberger;Shane Kippenhan;Brita Elvevåg;Joseph C. Masdeu;Fabio Sambataro;Lisa M. Nichols;Philip Kohn,33,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84865530442&origin=inward,10.1001/archgenpsychiatry.2011.1893,2012-08-01,2-s2.0-84865530442,,804-813,22868934.0,84865530442,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84865530442&origin=inward,Berman,Archives of General Psychiatry,Interactive effect of apolipoprotein E genotype and age on hippocampal activation during memory processing in healthy adults,Article +,https://api.elsevier.com/content/abstract/scopus_id/77956222262,Daniel Paul Eisenberg;Mbemba Jabbi;Karen Faith Berman,21,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77956222262&origin=inward,10.1016/j.neuroimage.2010.02.070,2010-11-01,2-s2.0-77956222262,,857-869,20206275.0,77956222262,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77956222262&origin=inward,Berman,NeuroImage,Bridging the gene-behavior divide through neuroimaging deletion syndromes: Velocardiofacial (22q11.2 Deletion) and Williams (7q11.23 Deletion) syndromes,Review +,https://api.elsevier.com/content/abstract/scopus_id/84964316597,Karen F. Berman;Joseph C. Masdeu;Josep Dalmau,27,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84964316597&origin=inward,10.1016/j.tins.2016.02.006,2016-05-01,2-s2.0-84964316597,,300-310,,84964316597,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84964316597&origin=inward,Berman,Trends in Neurosciences,NMDA Receptor Internalization by Autoantibodies: A Reversible Mechanism Underlying Psychosis?,Review +,https://api.elsevier.com/content/abstract/scopus_id/78650789664,Bradley R. Buchsbaum;Aarthi Padmanabhan;Karen Faith Berman,21,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=78650789664&origin=inward,10.1162/jocn.2010.21496,2011-04-01,2-s2.0-78650789664,,978-991,20350181.0,78650789664,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=78650789664&origin=inward,Berman,Journal of Cognitive Neuroscience,The neural substrates of recognition memory for verbal information: Spanning the divide between short- and long-term memory,Article +,https://api.elsevier.com/content/abstract/scopus_id/73849130620,Daniel Paul Eisenberg;Bhaskar Kolachana;Dylan Wint;Philip D. Kohn;Daniel R. Weinberger;Karen Faith Berman;José Apud;Andreas Meyer-Lindenberg;Deepak Sarpal,18,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=73849130620&origin=inward,10.1016/j.biopsych.2009.08.039,2010-02-01,2-s2.0-73849130620,,287-290,19892319.0,73849130620,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=73849130620&origin=inward,Berman,Biological Psychiatry,Catechol-O-Methyltransferase Valine158Methionine Genotype and Resting Regional Cerebral Blood Flow in Medication-Free Patients with Schizophrenia,Article +,https://api.elsevier.com/content/abstract/scopus_id/84878223109,B. Kolachana;D. R. Weinberger;K. F. Berman;P. D. Kohn;D. P. Eisenberg;A. M. Ianni;S. M. Wei;J. Apud,18,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84878223109&origin=inward,10.1038/mp.2012.187,2013-06-01,2-s2.0-84878223109,,713-720,23319002.0,84878223109,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84878223109&origin=inward,Berman,Molecular Psychiatry,Brain-derived neurotrophic factor (BDNF) Val66Met polymorphism differentially predicts hippocampal function in medication-free patients with schizophrenia,Article +,https://api.elsevier.com/content/abstract/scopus_id/84879623565,Qiang Chen;Hongjun Song;Emer L. Feighery;Bai Lu;Karen F. Berman;Michael G. White;Venkata S. Mattay;Daniel R. Weinberger;Guo Li Ming;David A.A. Baranger;Joseph H. Callicott,18,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84879623565&origin=inward,10.1172/JCI67510,2013-07-01,2-s2.0-84879623565,NIMH,2961-2964,23921125.0,84879623565,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84879623565&origin=inward,Berman,Journal of Clinical Investigation,DISC1 and SLC12A2 interaction affects human hippocampal function and connectivity,Article +,https://api.elsevier.com/content/abstract/scopus_id/84902159877,Bhaskar Kolachana;Bin Xie;Joey W. Trampush;Kristin L. Bigos;Gianluca Ursini;Thomas M. Hyde;Ryota Hashimoto;Karen F. Berman;Hun Ki Lim;Joseph H. Callicott;Ningping Feng;Dan Rujescu;Graham L. Baum;Joo Heon Shin;Richard E. Straub;Masatoshi Takeda;Yuan Gao;Daniel R. Weinberger;Dwight Dickinson;Joel E. Kleinman,20,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84902159877&origin=inward,10.1001/jamapsychiatry.2014.157,2014-01-01,2-s2.0-84902159877,NIMH,647-656,24718902.0,84902159877,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84902159877&origin=inward,Berman,JAMA Psychiatry,"Differential effects of common variants in SCN2A on general cognitive ability, brain physiology, and messenger RNA expression in schizophrenia cases and control individuals",Article +,https://api.elsevier.com/content/abstract/scopus_id/84860113976,Jean Claude Dreher;Daniel R. Weinberger;Karen Faith Berman;Jose Apud;Paul Koch;Philip Kohn,19,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84860113976&origin=inward,10.1016/j.biopsych.2012.01.002,2012-05-15,2-s2.0-84860113976,,890-897,22341369.0,84860113976,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84860113976&origin=inward,Berman,Biological Psychiatry,Common and differential pathophysiological features accompany comparable cognitive impairments in medication-free patients with schizophrenia and in healthy aging subjects,Article +,https://api.elsevier.com/content/abstract/scopus_id/84861131741,Jonathan S. Kippenhan;Bhaskar S. Kolachana;Karen F. Berman;Shau Ming Wei;Philip D. Kohn;Daniel P. Eisenberg;Daniel R. Weinberger,18,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84861131741&origin=inward,10.1523/JNEUROSCI.5375-11.2012,2012-05-16,2-s2.0-84861131741,,7074-7081,22593075.0,84861131741,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84861131741&origin=inward,Berman,Journal of Neuroscience,Brain-derived neurotrophic factor Val 66 met polymorphism affects resting regional cerebral blood flow and functional connectivity differentially in women versus men,Article +,https://api.elsevier.com/content/abstract/scopus_id/84936804404,Qiang Chen;Angela Ianni;Karen F. Berman;Philip D. Kohn;Frederick W. Carver;Christopher Coutlee;Tiffany Nash;Brett Cropp;Mbemba Jabbi;Richard Coppola;J. Shane Kippenhan;Tom Holroyd;Stephen E. Robinson,16,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84936804404&origin=inward,10.1093/cercor/bht427,2015-01-01,2-s2.0-84936804404,NIH,1878-1888,24464944.0,84936804404,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84936804404&origin=inward,Berman,Cerebral Cortex,Convergent BOLD and Beta-Band Activity in Superior Temporal Sulcus and Frontolimbic Circuitry Underpins Human Emotion Cognition,Article +,https://api.elsevier.com/content/abstract/scopus_id/64849086835,Rosanna K. Olsen;Shruti Japee;Ziad S. Saad;Karen Faith Berman;Carolyn B. Mervis;Andreas Meyer-Lindenberg;Colleen A. Morris;J. Shane Kippenhan;Philip Kohn,12,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=64849086835&origin=inward,10.1093/brain/awn362,2009-01-01,2-s2.0-64849086835,,635-644,19255058.0,64849086835,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=64849086835&origin=inward,Berman,Brain,Retinotopically defined primary visual cortex in Williams syndrome,Article +,https://api.elsevier.com/content/abstract/scopus_id/84961629620,Qiang Chen;Thomas E. Nichols;Karen F. Berman;Venkata S. Mattay;Daniel R. Weinberger;Roberta Rasetti;Joseph H. Callicott;Yunxia Tong,14,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84961629620&origin=inward,10.1371/journal.pone.0151391,2016-03-01,2-s2.0-84961629620,MRC,,26974435.0,84961629620,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84961629620&origin=inward,Berman,PLoS ONE,Seeking optimal region-of-interest (ROI) single-value summary measures for fMRI studies in imaging genetics,Article +,https://api.elsevier.com/content/abstract/scopus_id/84991010759,B. Kolachana;D. R. Weinberger;K. F. Berman;D. Dickinson;P. Kohn;N. Turner;Q. Chen;V. Mattay;M. White;M. Jabbi;J. S. Kippenhan,13,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84991010759&origin=inward,10.1038/tp.2015.98,2015-08-25,2-s2.0-84991010759,,,26285132.0,84991010759,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84991010759&origin=inward,Berman,Translational Psychiatry,Variation in the Williams syndrome GTF2I gene and anxiety proneness interactively affect prefrontal cortical response to aversive stimuli,Article +,https://api.elsevier.com/content/abstract/scopus_id/84965123814,Katherine DeJong;Alan S. Barnett;Jun Shen;Jose A. Apud;Susan Kuo;Karen F. Berman;Daniel R. Weinberger;Stefano Marenco;Jan Willem Van Der Veen;Christian Meyer;Dwight Dickinson,15,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84965123814&origin=inward,10.1176/appi.ajp.2015.15020190,2016-05-01,2-s2.0-84965123814,,527-534,26806873.0,84965123814,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84965123814&origin=inward,Berman,American Journal of Psychiatry,Prefrontal GABA levels measured with magnetic resonance spectroscopy in patients with psychosis and unaffected siblings,Conference Paper +,https://api.elsevier.com/content/abstract/scopus_id/85011105698,Alan Barnett;Ricardo A. Pizarro;Karen F. Berman;Venkata S. Mattay;Daniel R. Weinberger;Herve Lemaitre;Ena Xiao;Aaron L. Goldman;Beth A. Verchinski;Joseph H. Callicott;Xi Cheng;Qian Luo,18,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85011105698&origin=inward,10.3389/fninf.2016.00052,2016-12-19,2-s2.0-85011105698,,,,85011105698,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85011105698&origin=inward,Berman,Frontiers in Neuroinformatics,Automated quality assessment of structural magnetic resonance brain images based on a supervised machine learning algorithm,Article +,https://api.elsevier.com/content/abstract/scopus_id/85017509522,B. Kolachana;P. J. Schmidt;K. F. Berman;S. M. Wei;P. D. Kohn;S. J. Soldin;D. R. Rubinow;E. B. Baller;J. S. Kippenhan,11,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85017509522&origin=inward,10.1038/mp.2017.72,2017-04-18,2-s2.0-85017509522,,,28416813.0,85017509522,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85017509522&origin=inward,Schmidt,Molecular Psychiatry,Brain-derived neurotrophic factor Val 66 Met genotype and ovarian steroids interactively modulate working memory-related hippocampal function in women: a multimodal neuroimaging study, +,https://api.elsevier.com/content/abstract/scopus_id/84964596780,Michael D. Gregory;Karen F. Berman;Venkata S. Mattay;Daniel R. Weinberger;Dwight Dickinson;J. Shane Kippenhan;Jessica Carrasco,13,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84964596780&origin=inward,10.1016/j.cub.2016.03.021,2016-05-23,2-s2.0-84964596780,,1301-1305,27133866.0,84964596780,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84964596780&origin=inward,Berman,Current Biology,Regional variations in brain gyrification are associated with general cognitive ability in humans,Article +,https://api.elsevier.com/content/abstract/scopus_id/84871299789,A. Ianni;D. Rubinstein;F. W. Carver;T. Nash;K. F. Berman;P. Kohn;T. Holroyd;R. Coppola;J. Shane Kippenhan;S. E. Robinson;M. Jabbi;J. C. Masdeu,6,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84871299789&origin=inward,10.1038/mp.2012.12,2013-01-01,2-s2.0-84871299789,,4-6,22411228.0,84871299789,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84871299789&origin=inward,Berman,Molecular Psychiatry,"Midbrain presynaptic dopamine tone predicts sustained and transient neural response to emotional salience in humans: fMRI, MEG and FDOPA PET",Letter +,https://api.elsevier.com/content/abstract/scopus_id/84880799337,Qiang Chen;Heather Decot;Sophia C. Magalona;Karen F. Berman;Venkata S. Mattay;Daniel R. Weinberger;Jingshan Chen;Roberta Rasetti;Ian Gold;Joseph H. Callicott;José A. Apud,6,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84880799337&origin=inward,10.1007/s40263-013-0082-x,2013-08-01,2-s2.0-84880799337,,663-673,,84880799337,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84880799337&origin=inward,Berman,CNS Drugs,"Effect of tolcapone on brain activity during a variable attentional control task: A double-blind, placebo-controlled, counter-balanced trial in healthy volunteers",Review +,https://api.elsevier.com/content/abstract/scopus_id/84961391858,Michael D. Gregory;Bhaskar Kolachana;Karen F. Berman;Philip D. Kohn;Angela M. Ianni;Catherine E. Hegarty;Daniel P. Eisenberg;Joseph C. Masdeu,6,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84961391858&origin=inward,10.1038/npp.2016.31,2016-08-01,2-s2.0-84961391858,,2303-2308,26924680.0,84961391858,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84961391858&origin=inward,Berman,Neuropsychopharmacology,Common variation in the DOPA decarboxylase (DDC) gene and human striatal DDC activity in vivo,Article +,https://api.elsevier.com/content/abstract/scopus_id/85025842379,Michael D. Gregory;Qiang Chen;Karen F. Berman;Philip D. Kohn;Venkata S. Mattay;Daniel P. Eisenberg;Daniel R. Weinberger;Ziad S. Saad;Dwight Dickinson;J. Shane Kippenhan,8,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85025842379&origin=inward,10.1038/s41598-017-06587-0,2017-12-01,2-s2.0-85025842379,,,28740249.0,85025842379,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85025842379&origin=inward,Berman,Scientific Reports,Neanderthal-Derived Genetic Variation Shapes Modern Human Cranium and Brain,Article +,https://api.elsevier.com/content/abstract/scopus_id/84878226412,B. Kolachana;D. R. Weinberger;K. F. Berman;P. D. Kohn;D. P. Eisenberg;A. M. Ianni;S. M. Wei;J. Apud,3,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84878226412&origin=inward,10.1038/mp.2013.53,2013-06-01,2-s2.0-84878226412,,631,23698315.0,84878226412,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84878226412&origin=inward,Berman,Molecular Psychiatry,Hippocampal dysfunction in schizophrenia: Association with brain-derived neurotrophic factor genotype,Note +,https://api.elsevier.com/content/abstract/scopus_id/85017375448,Jun Shen;Karen F. Berman;Jan Willem van der Veen;Stefano Marenco,6,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85017375448&origin=inward,10.1002/nbm.3725,2017-08-01,2-s2.0-85017375448,,,28370463.0,85017375448,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85017375448&origin=inward,Berman,NMR in Biomedicine,Retrospective correction of frequency drift in spectral editing: The GABA editing example,Article +,https://api.elsevier.com/content/abstract/scopus_id/84892776847,D. Sarpal;Karen F. Berman;D. P. Wint;C. A. Morris;C. B. Mervis;J. A. Butman;A. Meyer-Lindenberg;J. C. Masdeu,3,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84892776847&origin=inward,10.3174/ajnr.A3641,2014-01-01,2-s2.0-84892776847,NINDS,90-94,23868161.0,84892776847,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84892776847&origin=inward,Berman,American Journal of Neuroradiology,Intracranial arteries in individuals with the elastin gene hemideletion of Williams syndrome,Article +,https://api.elsevier.com/content/abstract/scopus_id/84893435489,Daniel Paul Eisenberg;Karen F. Berman,0,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84893435489&origin=inward,10.1016/j.biopsych.2013.12.011,2014-03-01,2-s2.0-84893435489,,346-347,24507568.0,84893435489,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84893435489&origin=inward,Berman,Biological Psychiatry,Catechol-O-methyltransferase and genetic variation under hemizygosity,Note +,https://api.elsevier.com/content/abstract/scopus_id/44949188705,Marguerite E. Reid;Kenneth E. Towbin;David S. Kosson;Elizabeth C. Finger;R. J.R. Blair;Courtney Sims;Ellen Leibenluft;Abigail A. Marsh;Derek G.V. Mitchell;Daniel S. Pine,462,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=44949188705&origin=inward,10.1176/appi.ajp.2007.07071145,2008-01-01,2-s2.0-44949188705,,712-720,18281412.0,44949188705,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=44949188705&origin=inward,Leibenluft,American Journal of Psychiatry,Reduced amygdala response to fearful expressions in children and adolescents with callous-unemotional traits and disruptive behavior disorders,Article +,https://api.elsevier.com/content/abstract/scopus_id/33846995991,A. Zametkin;M. Vythilingam;W. C. Drevets;E. E. Nelson;D. G.V. Mitchell;B. W. Smith;J. Morton;K. S. Blair;L. Pessoa;R. J.R. Blair;D. Fridberg;A. Martin;D. S. Pine;D. Sturman,240,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33846995991&origin=inward,10.1016/j.neuroimage.2006.11.048,2007-03-01,2-s2.0-33846995991,,430-440,17239620.0,33846995991,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33846995991&origin=inward,Pine,NeuroImage,Modulation of emotion by cognition and cognition by emotion,Article +,https://api.elsevier.com/content/abstract/scopus_id/43149088492,Marguerite E. Reid;Gang Chen;Kenneth E. Towbin;David S. Kosson;Elizabeth C. Finger;James R. Blair;Salima Budhani;Courtney Sims;Ellen Leibenluft;Abigail A. Marsh;Derek G. Mitchell;Daniel S. Pine,207,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=43149088492&origin=inward,10.1001/archpsyc.65.5.586,2008-05-01,2-s2.0-43149088492,,586-594,18458210.0,43149088492,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=43149088492&origin=inward,Leibenluft,Archives of General Psychiatry,Abnormal ventromedial prefrontal cortex function in children with psychopathic traits during reversal learning,Article +,https://api.elsevier.com/content/abstract/scopus_id/33646470423,Thalia Wheatley;Alex Martin;R. James R. Blair;Rebecca Richell;Marina Nakic;Qian Luo,120,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33646470423&origin=inward,10.1016/j.neuroimage.2005.11.005,2006-05-01,2-s2.0-33646470423,,1449-1457,16418007.0,33646470423,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33646470423&origin=inward,Martin,NeuroImage,The neural basis of implicit moral attitude-An IAT study using event-related fMRI,Article +,https://api.elsevier.com/content/abstract/scopus_id/33750952524,Wayne C. Drevets;Daniel C. Pine;Karina Blair;Matthew Jones;James R. Blair;John Morton;Krystal Mondillo;Abigail A. Marsh;Meena Vythilingam,107,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33750952524&origin=inward,10.1523/JNEUROSCI.1640-06.2006,2006-11-01,2-s2.0-33750952524,,11379-11386,17079666.0,33750952524,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33750952524&origin=inward,Pine,Journal of Neuroscience,"Choosing the lesser of two evils, the better of two goods: Specifying the roles of ventromedial prefrontal cortex and dorsal anterior cingulate in object choice",Article +,https://api.elsevier.com/content/abstract/scopus_id/77955084298,R. J.R. Blair,114,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77955084298&origin=inward,10.1348/000712609X418480,2010-08-01,2-s2.0-77955084298,,383-399,19321035.0,77955084298,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77955084298&origin=inward,Blair,British Journal of Psychology,"Psychopathy, frustration, and reactive aggression: The role of ventromedial prefrontal cortex",Article +,https://api.elsevier.com/content/abstract/scopus_id/84880573200,Katherine A. Fowler;Ilana T.N. Jurkowitz;Elizabeth C. Finger;Jean Decety;R. J.R. Blair;Christopher J. Adalio;Abigail A. Marsh;Julia C. Schechter;Daniel S. Pine,122,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84880573200&origin=inward,10.1111/jcpp.12063,2013-08-01,2-s2.0-84880573200,,900-910,23488588.0,84880573200,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84880573200&origin=inward,Pine,Journal of Child Psychology and Psychiatry and Allied Disciplines,Empathic responsiveness in amygdala and anterior cingulate cortex in youths with psychopathic traits,Article +,https://api.elsevier.com/content/abstract/scopus_id/33846180689,M. Nakic;D. G.V. Mitchell;R. J.R. Blair;N. Kamel;D. Fridberg;D. S. Pine,99,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33846180689&origin=inward,10.1016/j.neuroimage.2006.10.012,2007-02-01,2-s2.0-33846180689,,1299-1309,17161627.0,33846180689,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33846180689&origin=inward,Pine,NeuroImage,The impact of processing load on emotion,Article +,https://api.elsevier.com/content/abstract/scopus_id/56349088838,Michael G. Hardin;Monique Ernst;R. James R. Blair;Sandra Jazbec;Bruce W. Smith;Derek G.V. Mitchell;Daniel Fridberg,95,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=56349088838&origin=inward,10.1016/j.neuroimage.2008.08.016,2009-01-15,2-s2.0-56349088838,,600-609,18804540.0,56349088838,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=56349088838&origin=inward,Blair,NeuroImage,"Neural substrates of reward magnitude, probability, and risk during a wheel of fortune decision-making task",Article +,https://api.elsevier.com/content/abstract/scopus_id/33846811290,D. S. Pine;R. J.R. Blair;A. A. Marsh;S. Budhani,80,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33846811290&origin=inward,10.1016/j.neuroimage.2006.08.060,2007-02-15,2-s2.0-33846811290,,1754-1765,17188518.0,33846811290,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33846811290&origin=inward,Pine,NeuroImage,Neural correlates of response reversal: Considering acquisition,Article +,https://api.elsevier.com/content/abstract/scopus_id/33745437135,Sarah Busis;R. James R. Blair;Bruce W. Smith;Marina Nakic;Meena Vythilingam,80,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33745437135&origin=inward,10.1016/j.neuroimage.2006.02.022,2006-07-15,2-s2.0-33745437135,,1752-1761,16647271.0,33745437135,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33745437135&origin=inward,Blair,NeuroImage,The impact of affect and frequency on lexical decision: The role of the amygdala and inferior frontal cortex,Article +,https://api.elsevier.com/content/abstract/scopus_id/82455212996,Katherine A. Fowler;Elizabeth C. Finger;Ilana T N Jurkowitz;Henry H. Yu;Abigail A. Marsh;R. J R Blair;Julia C. Schechter;Daniel S. Pine,84,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=82455212996&origin=inward,10.1016/j.pscychresns.2011.07.008,2011-12-30,2-s2.0-82455212996,,279-286,22047730.0,82455212996,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=82455212996&origin=inward,Pine,Psychiatry Research - Neuroimaging,Reduced amygdala-orbitofrontal connectivity during moral judgments in youths with disruptive behavior disorders and psychopathic traits,Article +,https://api.elsevier.com/content/abstract/scopus_id/84863908499,Daniel S. Pine;Katherine A. Fowler;Stephen Sinclair;R. James R Blair;Stuart F. White;Kayla Pope;Abigail A. Marsh;Julia C. Schechter;Christopher Adalio,90,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84863908499&origin=inward,10.1176/appi.ajp.2012.11081270,2012-07-01,2-s2.0-84863908499,,750-758,22456823.0,84863908499,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84863908499&origin=inward,Pine,American Journal of Psychiatry,Reduced amygdala response in youths with disruptive behavior disorders and psychopathic traits: Decreased emotional response versus increased top-down attention to nonemotional features,Article +,https://api.elsevier.com/content/abstract/scopus_id/65449173956,Niveen Soliman;R. J.R. Blair;Matthew M. Jones;Abigail A. Marsh;Karina S. Blair,72,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=65449173956&origin=inward,10.1162/jocn.2009.21052,2009-04-01,2-s2.0-65449173956,,713-724,18578604.0,65449173956,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=65449173956&origin=inward,Blair,Journal of Cognitive Neuroscience,Dominance and submission: The ventrolateral prefrontal cortex and responses to status cues,Article +,https://api.elsevier.com/content/abstract/scopus_id/84874768960,Katherine A. Fowler;Stephen Sinclair;R. James R. Blair;Sarah J. Brislin;Stuart F. White;Kayla Pope;W. Craig Williams;Daniel S. Pine,71,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84874768960&origin=inward,10.1176/appi.ajp.2012.12060840,2013-03-01,2-s2.0-84874768960,,315-323,,84874768960,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84874768960&origin=inward,Pine,American Journal of Psychiatry,Disrupted expected value and prediction error signaling in Youths with disruptive behavior disorders during a passive avoidance task,Article +,https://api.elsevier.com/content/abstract/scopus_id/40849087841,K. Mondillo;M. Vythilingam;D. G.V. Mitchell;R. J.R. Blair;Q. Luo;E. C. Finger,65,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=40849087841&origin=inward,10.1016/j.neuroimage.2007.08.002,2008-04-01,2-s2.0-40849087841,,859-868,18234519.0,40849087841,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=40849087841&origin=inward,Blair,NeuroImage,The interference of operant task performance by emotional distracters: An antagonistic relationship between the amygdala and frontoparietal cortices,Article +,https://api.elsevier.com/content/abstract/scopus_id/33748864036,Elizabeth C. Finger;James R. Blair;Niveen Kamel;Abigail A. Marsh;Derek G.V. Mitchell,58,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33748864036&origin=inward,10.1016/j.neuroimage.2006.06.011,2006-10-15,2-s2.0-33748864036,,414-421,16891125.0,33748864036,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33748864036&origin=inward,Blair,NeuroImage,Caught in the act: The impact of audience on the neural response to morally and socially inappropriate behavior,Article +,https://api.elsevier.com/content/abstract/scopus_id/84896491377,Stephen Sinclair;Alex Martin;R. James R. Blair;Briana Robustelli;Soonjo Hwang;Stuart F. White;Gregory L. Wallace,60,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84896491377&origin=inward,10.1016/j.jaac.2013.12.008,2014-01-01,2-s2.0-84896491377,NIH,,24655655.0,84896491377,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84896491377&origin=inward,Martin,Journal of the American Academy of Child and Adolescent Psychiatry,Cortical and subcortical abnormalities in youths with conduct disorder and elevated callous-unemotional traits,Article +,https://api.elsevier.com/content/abstract/scopus_id/84865177635,Katherine Fowler;Stephen Sinclair;Fernanda Tovar-Moll;Daniel Pine;Catherine Majestic;Karina Simone Blair;Elizabeth Carrie Finger;Abigail Marsh;Iordanis Evangelou;Karan Gupta;Courtney Sims;Kayla Pope;Robert James Blair;Marguerite Reid Schneider,54,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84865177635&origin=inward,10.1016/j.pscychresns.2011.11.002,2012-06-30,2-s2.0-84865177635,,239-244,22819939.0,84865177635,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84865177635&origin=inward,Pine,Psychiatry Research - Neuroimaging,Impaired functional but preserved structural connectivity in limbic white matter tracts in youth with conduct disorder or oppositional defiant disorder plus psychopathic traits,Article +,https://api.elsevier.com/content/abstract/scopus_id/33947284907,Sarah Busis;R. J.R. Blair;Abigail A. Marsh;Karina S. Blair;Meena Vythilingam,49,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33947284907&origin=inward,10.1016/j.neuroimage.2006.11.044,2007-04-01,2-s2.0-33947284907,,979-988,17292631.0,33947284907,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33947284907&origin=inward,Blair,NeuroImage,Response options and expectations of reward in decision-making: The differential roles of dorsal and rostral anterior cingulate cortex,Article +,https://api.elsevier.com/content/abstract/scopus_id/31844440020,Z. S. Saad;M. Vythilingam;G. Chen;M. Nakic;R. J.R. Blair;D. S. Pine;D. S. Kosson;S. Budhani,40,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=31844440020&origin=inward,10.1016/j.neuroimage.2005.07.060,2006-02-15,2-s2.0-31844440020,,1161-1172,16387514.0,31844440020,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=31844440020&origin=inward,Pine,NeuroImage,The role of the amygdala and rostral anterior cingulate in encoding expected outcomes during learning,Article +,https://api.elsevier.com/content/abstract/scopus_id/78650626347,Marguerite E. Reid;Megan N. Kozak;R. J.R. Blair;Daniel M. Wegner;Henry H. Yu;Abigail A. Marsh,31,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=78650626347&origin=inward,10.1093/scan/nsq004,2010-12-01,2-s2.0-78650626347,,392-403,20150343.0,78650626347,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=78650626347&origin=inward,Blair,Social Cognitive and Affective Neuroscience,The neural substrates of action identification,Article +,https://api.elsevier.com/content/abstract/scopus_id/69749103853,Karanvir Gupta;Gang Chen;Shelley B. Avny;Elizabeth C. Finger;R. James R. Blair;Tomasz Kasprzycki;Qian Luo;Derek G.V. Mitchell,37,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=69749103853&origin=inward,10.1523/JNEUROSCI.0963-09.2009,,2-s2.0-69749103853,,10827-10834,19726640.0,69749103853,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=69749103853&origin=inward,Blair,Journal of Neuroscience,"Adapting to dynamic stimulus-response values: Differential contributions of inferior frontal, dorsomedial, and dorsolateral regions of prefrontal cortex to decision making",Article +,https://api.elsevier.com/content/abstract/scopus_id/84898046836,Sarah J. Brislin;Stephen Sinclair;Stuart F. White;James R. Blair,33,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84898046836&origin=inward,10.1002/hbm.22316,2014-01-01,2-s2.0-84898046836,NIH,2137-2147,23868733.0,84898046836,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84898046836&origin=inward,Blair,Human Brain Mapping,Punishing unfairness: Rewarding or the organization of a reactively aggressive response?,Article +,https://api.elsevier.com/content/abstract/scopus_id/84868131048,K. Mondillo;P. Ng;M. Vythilingam;D. S. Charney;D. E. McCaffrey;C. C. Wu;R. J.R. Blair;S. L. Crowe;K. S. Blair;M. Scaramozza;D. S. Pine,37,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84868131048&origin=inward,10.1017/S0033291712000840,2013-01-01,2-s2.0-84868131048,,85-95,22571775.0,84868131048,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84868131048&origin=inward,Pine,Psychological Medicine,Cognitive control of attention is differentially affected in trauma-exposed individuals with and without post-traumatic stress disorder,Article +,https://api.elsevier.com/content/abstract/scopus_id/54849405917,Matthew Jones;R. J.R. Blair;Derek G.V. Mitchell;Elizabeth C. Finger,32,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=54849405917&origin=inward,10.1016/j.neuroimage.2008.08.021,2008-12-01,2-s2.0-54849405917,,748-755,18793731.0,54849405917,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=54849405917&origin=inward,Blair,NeuroImage,Dissociable roles of medial orbitofrontal cortex in human operant extinction learning,Article +,https://api.elsevier.com/content/abstract/scopus_id/36849000840,R. A. Rhodes;D. S. Pine;R. J R Blair;D. G V Mitchell,29,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=36849000840&origin=inward,10.1016/j.bbr.2007.08.034,2008-02-11,2-s2.0-36849000840,,80-87,17950474.0,36849000840,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=36849000840&origin=inward,Pine,Behavioural Brain Research,The contribution of ventrolateral and dorsolateral prefrontal cortex to response reversal,Article +,https://api.elsevier.com/content/abstract/scopus_id/35148862140,Derek Mitchell;R. James R. Blair;Matthew Jones;Krystal Mondillo;Qian Luo;Meena Vythilingam,28,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=35148862140&origin=inward,10.1016/j.neuroimage.2007.07.051,2007-11-15,2-s2.0-35148862140,,631-639,17889565.0,35148862140,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=35148862140&origin=inward,Blair,NeuroImage,Common regions of dorsal anterior cingulate and prefrontal-parietal cortices provide attentional control of distracters varying in emotionality and visibility,Article +,https://api.elsevier.com/content/abstract/scopus_id/84872915251,Stephen Sinclair;R. James R Blair;Sarah J. Brislin;Harma Meffert;Stuart F. White,27,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84872915251&origin=inward,10.1521/pedi.2013.27.1.99,2013-01-31,2-s2.0-84872915251,,99-112,23342960.0,84872915251,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84872915251&origin=inward,Blair,Journal of Personality Disorders,Callous-unemotional traits modulate the neural response associated with punishing another individual during social exchange: A preliminary investigation,Article +,https://api.elsevier.com/content/abstract/scopus_id/84863959324,Katherine A. Fowler;Stephen Sinclair;Sarah J. Brislin;R. James Blair;Stuart F. White;Kayla Pope;W. Craig Williams;Karina S. Blair;Daniel S. Pine,29,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84863959324&origin=inward,10.1017/S0954579412000569,2012-08-01,2-s2.0-84863959324,,1105-1116,22781874.0,84863959324,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84863959324&origin=inward,Pine,Development and Psychopathology,Reduced activity within the dorsal endogenous orienting of attention network to fearful expressions in youth with disruptive behavior disorders and psychopathic traits,Article +,https://api.elsevier.com/content/abstract/scopus_id/84877081144,Madeline Jacobs;Stephanie Odenheimer;R. J.R. Blair;Cindy Teng;Marcela Otero;Karina S. Blair;Daniel S. Pine,21,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84877081144&origin=inward,10.1016/j.neuroimage.2013.03.063,2013-09-01,2-s2.0-84877081144,,103-110,23567883.0,84877081144,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84877081144&origin=inward,Pine,NeuroImage,Dissociable roles of ventromedial prefrontal cortex (vmPFC) and rostral anterior cingulate cortex (rACC) in value representation and optimistic bias,Article +,https://api.elsevier.com/content/abstract/scopus_id/84898813425,Katherine A. Fowler;Stephen Sinclair;R. James Blair;Catherine M. Majestic;Stuart F. White;Julia C. Schechter;Daniel S. Pine,27,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84898813425&origin=inward,10.1016/j.jaac.2013.12.023,2014-01-01,2-s2.0-84898813425,,579-588.e9,24745957.0,84898813425,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84898813425&origin=inward,Pine,Journal of the American Academy of Child and Adolescent Psychiatry,Disrupted expected value signaling in youth with disruptive behavior disorders to environmental reinforcers,Article +,https://api.elsevier.com/content/abstract/scopus_id/84876293348,Katherine A. Fowler;Stephen Sinclair;R. James R Blair;Sarah Brislin;Stuart F. White;Kayla Pope,24,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84876293348&origin=inward,10.1111/j.1469-7610.2012.02603.x,2013-05-01,2-s2.0-84876293348,,575-581,22934662.0,84876293348,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84876293348&origin=inward,Blair,Journal of Child Psychology and Psychiatry and Allied Disciplines,"The relationship between large cavum septum pellucidum and antisocial behavior, callous-unemotional traits and psychopathy in adolescents",Article +,https://api.elsevier.com/content/abstract/scopus_id/84887081359,Alex Martin;Dionne S. Coker-Appiah;R. J.R. Blair;Stuart F. White;Jiongjong Yang;Roberta Clanton,23,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84887081359&origin=inward,10.1080/17470919.2013.839480,2013-11-01,2-s2.0-84887081359,,621-630,24066700.0,84887081359,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84887081359&origin=inward,Martin,Social Neuroscience,Looming animate and inanimate threats: The response of the amygdala and periaqueductal gray,Article +,https://api.elsevier.com/content/abstract/scopus_id/84907427850,Michael Rufer;Chantal Martin-Soelch;Thomas Schulte-Vels;Gregor Hasler;Thomas Zeffiro;Ulrich Schnyder;Matthis Schick;Ruth O'Gorman;Christoph Mueller-Pfeiffer;Lars Michels;James R. Blair,21,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84907427850&origin=inward,10.1016/j.nicl.2013.08.009,2013-01-01,2-s2.0-84907427850,,531-538,,84907427850,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84907427850&origin=inward,Blair,NeuroImage: Clinical,Atypical visual processing in posttraumatic stress disorder,Article +,https://api.elsevier.com/content/abstract/scopus_id/84926469280,Sarah J. Brislin;James R. Blair;Stuart F. White;Harma Meffert,14,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84926469280&origin=inward,10.1093/scan/nsu085,2013-01-01,2-s2.0-84926469280,,537-544,24939872.0,84926469280,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84926469280&origin=inward,Blair,Social Cognitive and Affective Neuroscience,Prediction errors to emotional expressions: The roles of the amygdala in social referencing,Article +,https://api.elsevier.com/content/abstract/scopus_id/84903149862,Michael J. Roy;James R. Blair;Albert A. Rizzo;Michelle E. Costanzo,17,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84903149862&origin=inward,10.3233/978-1-61499-401-5-61,2014-01-01,2-s2.0-84903149862,,61-65,,84903149862,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84903149862&origin=inward,Blair,Studies in Health Technology and Informatics,Compelling evidence that exposure therapy for PTSD normalizes brain function,Article +,https://api.elsevier.com/content/abstract/scopus_id/84944675838,Stephen Sinclair;Zachary T. Nolan;Soonjo Hwang;R. J.R. Blair;Stuart F. White;W. Craig Williams,9,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84944675838&origin=inward,10.1016/j.nicl.2015.10.005,2015-01-01,2-s2.0-84944675838,,545-554,26640766.0,84944675838,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84944675838&origin=inward,Blair,NeuroImage: Clinical,Executive attention control and emotional responding in attention-deficit/hyperactivity disorder - A functional MRI study,Article +,https://api.elsevier.com/content/abstract/scopus_id/84933679505,Laura Blanken;Harma Meffert;Stuart F. White;James R. Blair;Karina S. Blair,8,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84933679505&origin=inward,10.3389/fnhum.2013.00046,2013-02-05,2-s2.0-84933679505,,,,84933679505,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84933679505&origin=inward,Blair,Frontiers in Human Neuroscience,The influence of valence and decision difficulty on selfreferential processing,Article +,https://api.elsevier.com/content/abstract/scopus_id/84863897254,R. J.R. Blair,7,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84863897254&origin=inward,10.1176/appi.ajp.2012.12030396,2012-07-01,2-s2.0-84863897254,,684-687,22760187.0,84863897254,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84863897254&origin=inward,Blair,American Journal of Psychiatry,Cortical thinning and functional connectivity in psychopathy,Editorial +,https://api.elsevier.com/content/abstract/scopus_id/84933673781,Alex Martin;Zachary T. Nolan;Jiongjiong Yang;Stuart F. White;James R. Blair;Christopher Adalio,4,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84933673781&origin=inward,10.3389/fnhum.2014.00714,2014-09-11,2-s2.0-84933673781,,,,84933673781,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84933673781&origin=inward,Martin,Frontiers in Human Neuroscience,The amygdala's response to face and emotional information and potential category-specific modulation of temporal cortex as a function of emotion,Article +,https://api.elsevier.com/content/abstract/scopus_id/77955067280,R. J R Blair,2,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77955067280&origin=inward,10.1348/000712610X512122,2010-08-01,2-s2.0-77955067280,,407-410,20594400.0,77955067280,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77955067280&origin=inward,Blair,British Journal of Psychology,"Reactive aggression and functional, not neural, specificity",Article +,https://api.elsevier.com/content/abstract/scopus_id/84958581839,Gang Chen;Zachary T. Nolan;Soonjo Hwang;Harma Meffert;James R. Blair,0,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84958581839&origin=inward,10.1016/j.dib.2016.02.011,2016-06-01,2-s2.0-84958581839,,66-70,,84958581839,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84958581839&origin=inward,Blair,Data in Brief,BOLD data representing activation and connectivity for rare no-go versus frequent go cues, +,https://api.elsevier.com/content/abstract/scopus_id/14544293518,Stephen Fromm;Allen Braun;David Poeppel;Anthony Boemio,332,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=14544293518&origin=inward,10.1038/nn1409,2005-03-01,2-s2.0-14544293518,,389-395,15723061.0,14544293518,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=14544293518&origin=inward,Blair,Nature Neuroscience,Hierarchical and asymmetric temporal sensitivity in human auditory cortices,Article +,https://api.elsevier.com/content/abstract/scopus_id/16244371035,Stefan Kemeny;Grace Park;Jiang Xu;Allen Braun;Carol Frattali,269,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=16244371035&origin=inward,10.1016/j.neuroimage.2004.12.013,2005-04-15,2-s2.0-16244371035,,1002-1015,15809000.0,16244371035,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=16244371035&origin=inward,Blair,NeuroImage,"Language in context: Emergent features of word, sentence, and narrative comprehension",Article +,https://api.elsevier.com/content/abstract/scopus_id/45949108217,Charles J. Limb;Allen R. Braun,284,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=45949108217&origin=inward,10.1371/journal.pone.0001679,2008-02-27,2-s2.0-45949108217,,,18301756.0,45949108217,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=45949108217&origin=inward,Blair,PLoS ONE,Neural substrates of spontaneous musical performance: An fMRI study of jazz improvisation,Article +,https://api.elsevier.com/content/abstract/scopus_id/73949084794,Allen R. Braun;Patrick J. Gannon;Jiang Xu;Karen Emmorey;Jason F. Smith,139,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=73949084794&origin=inward,10.1073/pnas.0909197106,2009-12-08,2-s2.0-73949084794,,20664-20669,19923436.0,73949084794,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=73949084794&origin=inward,Blair,Proceedings of the National Academy of Sciences of the United States of America,Symbolic gestures and spoken language are processed by a common neural system,Article +,https://api.elsevier.com/content/abstract/scopus_id/33747593338,Alex Martin;Allen R. Braun;Jonathan B. Fritz;Marco A. Lopes;Ricardo Gil-Da-Costa;Monica Mũoz,101,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33747593338&origin=inward,10.1038/nn1741,2006-08-01,2-s2.0-33747593338,,1064-1070,16862150.0,33747593338,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33747593338&origin=inward,Martin,Nature Neuroscience,Species-specific calls activate homologs of Broca's and Wernicke's areas in the macaque,Article +,https://api.elsevier.com/content/abstract/scopus_id/77952037980,Allen R. Braun;Randall H. Pursley;John A. Butman;Jeffrey M. Solomon;Rasmus M. Birn;Whitney Anne Postman-Caucheteux;Joe McArdle;Dante Picchioni,101,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77952037980&origin=inward,10.1162/jocn.2009.21261,2010-06-01,2-s2.0-77952037980,,1299-1318,19413476.0,77952037980,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77952037980&origin=inward,Martin,Journal of Cognitive Neuroscience,Single-trial fMRI shows contralesional activity linked to overt naming errors in chronic aphasic patients,Article +,https://api.elsevier.com/content/abstract/scopus_id/1842609633,A. R. Braun;S. J. Fromm;F. T. Husain;B. Horwitz;M. A. Tagamets,69,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=1842609633&origin=inward,10.1016/j.neuroimage.2003.11.012,2004-04-01,2-s2.0-1842609633,,1701-1720,15050592.0,1842609633,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=1842609633&origin=inward,Horwitz,NeuroImage,Relating neuronal dynamics for auditory object processing to neuroimaging activity: A computational modeling and an fMRI study,Article +,https://api.elsevier.com/content/abstract/scopus_id/84870804382,Allen R. Braun;Daniel A. Rizik-Baer;Siyuan Liu;Katherine E. Swett;Michael G. Erkkinen;Ho Ming Chow;Yisheng Xu;Michael W. Eagle,79,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84870804382&origin=inward,10.1038/srep00834,2012-12-14,2-s2.0-84870804382,,,23155479.0,84870804382,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84870804382&origin=inward,Horwitz,Scientific Reports,Neural correlates of lyrical improvisation: An fMRI study of freestyle rap,Article +,https://api.elsevier.com/content/abstract/scopus_id/14744281224,Stefan Kemeny;Frank Q. Ye;Rasmus Birn;Allen R. Braun,67,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=14744281224&origin=inward,10.1002/hbm.20078,2005-03-01,2-s2.0-14744281224,,173-183,15486986.0,14744281224,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=14744281224&origin=inward,Horwitz,Human Brain Mapping,Comparison of continuous overt speech fMRI using BOLD and arterial spin labeling,Article +,https://api.elsevier.com/content/abstract/scopus_id/84879298616,Jeff H. Duyn;Allen R. Braun;Walter S. Carr;Nate Coddington;Silvina G. Horovitz;Masaki Fukunaga;Ho Ming Chow;Thomas J. Balkin;Yisheng Xu;Dante Picchioni,60,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84879298616&origin=inward,10.1073/pnas.1217691110,2013-06-18,2-s2.0-84879298616,,10300-10305,23733938.0,84879298616,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84879298616&origin=inward,Duyn,Proceedings of the National Academy of Sciences of the United States of America,Rhythmic alternating patterns of brain activity distinguish rapid eye movement sleep from other states of consciousness,Article +,https://api.elsevier.com/content/abstract/scopus_id/33646337862,Barry Horwitz;Allen R. Braun;Randall H. Pursley;Stephen J. Fromm;Lara A. Hosey;Fatima T. Husain,44,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33646337862&origin=inward,10.1002/hbm.20207,2006-08-01,2-s2.0-33646337862,,636-651,16281285.0,33646337862,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33646337862&origin=inward,Horwitz,Human Brain Mapping,Neural bases of categorization of simple speech and nonspeech sounds,Article +,https://api.elsevier.com/content/abstract/scopus_id/33644898132,Stefan Kemeny;Jiang Xu;Allen R. Braun;Grace H. Park;Lara A. Hosey;Carla M. Wettig,45,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33644898132&origin=inward,10.1093/cercor/bhj006,2006-04-01,2-s2.0-33644898132,,587-595,16049190.0,33644898132,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33644898132&origin=inward,Horwitz,Cerebral Cortex,Temporal dissociation of early lexical access and articulation using a delayed naming task - An fMRI study,Article +,https://api.elsevier.com/content/abstract/scopus_id/70349969798,Jiang Xu;Allen Braun;Karen Emmorey;Patrick Gannon;Susan Goldin-Meadow,42,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=70349969798&origin=inward,10.1016/j.neuroimage.2009.08.001,2010-01-01,2-s2.0-70349969798,,994-1005,19679192.0,70349969798,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=70349969798&origin=inward,Horwitz,NeuroImage,CNS activation and regional connectivity during pantomime observation: No engagement of the mirror neuron system for deaf signers,Article +,https://api.elsevier.com/content/abstract/scopus_id/77955945045,Joseph J. McArdle;Robin J. Schafer;Jed A. Meltzer;Allen R. Braun,40,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77955945045&origin=inward,10.1093/cercor/bhp249,2010-08-01,2-s2.0-77955945045,,1853-1864,19920058.0,77955945045,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77955945045&origin=inward,Horwitz,Cerebral Cortex,"Neural aspects of sentence comprehension: Syntactic complexity, reversibility, and reanalysis",Article +,https://api.elsevier.com/content/abstract/scopus_id/0036303445,Barry Horwitz;Allen R. Braun;Vladimir Nechaev;Stephen Fromm;Rihana Williams;Andrei Sevostianov,36,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0036303445&origin=inward,10.1002/hbm.10037,2002-07-18,2-s2.0-0036303445,,168-175,12112770.0,36303445,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0036303445&origin=inward,Horwitz,Human Brain Mapping,fMRI study comparing names versus pictures of objects,Article +,https://api.elsevier.com/content/abstract/scopus_id/33645730628,Stefan Kemeny;Sherin Rouhani;Allen R. Braun;Charles J. Limb;Eric B. Ortigoza,34,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33645730628&origin=inward,10.1002/ar.a.20298,2006-04-01,2-s2.0-33645730628,,382-389,16550585.0,33645730628,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33645730628&origin=inward,Horwitz,"Anatomical Record - Part A Discoveries in Molecular, Cellular, and Evolutionary Biology",Left hemispheric lateralization of brain activity during passive rhythm perception in musicians,Article +,https://api.elsevier.com/content/abstract/scopus_id/79251616988,Jeff H. Duyn;Allen R. Braun;Jed A. Meltzer;Silvina G. Horovitz;Masaki Fukunaga;Dante Picchioni;Thomas J. Balkin;Walter S. Carr,35,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79251616988&origin=inward,10.1016/j.brainres.2010.12.035,2011-02-16,2-s2.0-79251616988,,63-72,21168395.0,79251616988,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79251616988&origin=inward,Duyn,Brain Research,Infraslow EEG oscillations organize large-scale cortical-subcortical interactions during sleep: A combined EEG/fMRI study,Article +,https://api.elsevier.com/content/abstract/scopus_id/67449119154,Joseph J. McArdle;Whitney A. Postman-Caucheteux;Jed A. Meltzer;Allen R. Braun,31,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=67449119154&origin=inward,10.1016/j.neuroimage.2009.04.089,2009-08-15,2-s2.0-67449119154,,745-755,19427907.0,67449119154,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=67449119154&origin=inward,Duyn,NeuroImage,Strategies for longitudinal neuroimaging studies of overt language production,Article +,https://api.elsevier.com/content/abstract/scopus_id/0035987996,Barry Horwitz;Vladimir Nechaev;Stephen Fromm;Allen Braun;Andrei Sevostianov,31,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0035987996&origin=inward,10.1080/00207450290025671,2002-01-01,2-s2.0-0035987996,,587-606,12325392.0,35987996,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0035987996&origin=inward,Horwitz,International Journal of Neuroscience,Effect of attention on central auditory processing: An fMRI study,Article +,https://api.elsevier.com/content/abstract/scopus_id/58149199141,S. Kemeny;P. Hauser;M. Boutla;A. Braun;D. Bavelier;M. Mukherjee;A. J. Newman,28,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=58149199141&origin=inward,10.1093/cercor/bhm248,2008-10-01,2-s2.0-58149199141,,2263-2274,18245041.0,58149199141,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=58149199141&origin=inward,Horwitz,Cerebral Cortex,"Encoding, rehearsal, and recall in signers and speakers: Shared network but differential engagement",Article +,https://api.elsevier.com/content/abstract/scopus_id/84900857907,Allen R. Braun;Jessica Carson;Miranda Baxter;Nuria Y. AbdulSabur;Siyuan Liu;Ho Ming Chow;Yisheng Xu,26,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84900857907&origin=inward,10.1016/j.cortex.2014.01.017,2014-01-01,2-s2.0-84900857907,,107-127,24845161.0,84900857907,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84900857907&origin=inward,Horwitz,Cortex,Neural correlates and network connectivity underlying narrative production and comprehension: A combined fMRI and PET study,Article +,https://api.elsevier.com/content/abstract/scopus_id/77953516605,Jose L. Contreras-Vidal;Rasmus Birn;Bruce A. Swett;Allen Braun,19,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77953516605&origin=inward,10.1152/jn.00449.2009,2010-06-01,2-s2.0-77953516605,,3366-3377,20375250.0,77953516605,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77953516605&origin=inward,Horwitz,Journal of Neurophysiology,Neural substrates of graphomotor sequence learning: A combined fMRI and kinematic study,Article +,https://api.elsevier.com/content/abstract/scopus_id/79953737154,Karen Emmorey;Jiang Xu;Allen Braun,15,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79953737154&origin=inward,10.1016/j.bandl.2010.10.003,2011-04-01,2-s2.0-79953737154,,34-38,21094525.0,79953737154,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79953737154&origin=inward,Horwitz,Brain and Language,Neural responses to meaningless pseudosigns: Evidence for sign-based phonetic processing in superior temporal cortex,Article +,https://api.elsevier.com/content/abstract/scopus_id/84877838200,Allen R. Braun;Beth Solomon;Jed A. Meltzer;Jennifer Ryder;Suraji Wagage,14,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84877838200&origin=inward,10.1016/j.neuropsychologia.2013.03.007,2013-06-01,2-s2.0-84877838200,,1248-1259,23566891.0,84877838200,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84877838200&origin=inward,Horwitz,Neuropsychologia,Adaptive significance of right hemisphere activation in aphasic language comprehension,Article +,https://api.elsevier.com/content/abstract/scopus_id/84907500432,Allen R. Braun;Nuria Y. AbdulSabur;Siyuan Liu;Ho Ming Chow;Govind S. Mattay;Yisheng Xu;Yunxia Tong,13,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84907500432&origin=inward,10.1016/j.neuroimage.2014.09.013,2014-12-01,2-s2.0-84907500432,,33-47,25225001.0,84907500432,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84907500432&origin=inward,Horwitz,NeuroImage,Denoising the speaking brain: Toward a robust technique for correcting artifact-contaminated fMRI data under severe motion,Article +,https://api.elsevier.com/content/abstract/scopus_id/67349168707,Barry Horwitz;Debra J. Patkin;Allen R. Braun;Hung Thai-Van;Fatima T. Husain,9,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=67349168707&origin=inward,10.1016/j.brainres.2009.04.034,2009-06-18,2-s2.0-67349168707,,140-150,19397900.0,67349168707,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=67349168707&origin=inward,Horwitz,Brain Research,Distinguishing the processing of gestures from signs in deaf individuals: An fMRI study,Article +,https://api.elsevier.com/content/abstract/scopus_id/84933674816,Stefan Kemeny;Jiang Xu;Allen R. Braun;Vladimir Nechaev;Joseph J. McArdle;Bruce Swett;Michelle E. Costanzo,8,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84933674816&origin=inward,10.3389/fnhum.2013.00293,2013-06-03,2-s2.0-84933674816,,,,84933674816,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84933674816&origin=inward,Horwitz,Frontiers in Human Neuroscience,Spatial and temporal features of superordinate semantic processing studied with fMRI and EEG,Article +,https://api.elsevier.com/content/abstract/scopus_id/84891871099,Jeffrey Solomon;Siyuan Liu;Yasmeen Faroqi-Shah;Therese Kling;Allen Braun;Grace Park,8,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84891871099&origin=inward,10.1080/02687038.2013.853023,2014-01-01,2-s2.0-84891871099,,258-277,,84891871099,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84891871099&origin=inward,Horwitz,Aphasiology,Lesion analysis of language production deficits in aphasia,Article +,https://api.elsevier.com/content/abstract/scopus_id/84925061170,Allen R. Braun;Siyuan Liu;Ho Ming Chow;Yisheng Xu;Raymond A. Mar;Suraji Wagage,9,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84925061170&origin=inward,10.1002/hbm.22718,2015-04-01,2-s2.0-84925061170,,1494-1505,25545633.0,84925061170,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84925061170&origin=inward,Horwitz,Human Brain Mapping,Personal experience with narrated events modulates functional connectivity within visual and motor systems during story comprehension,Article +,https://api.elsevier.com/content/abstract/scopus_id/58149528283,Stefan Kemeny;Barry Horwitz;Allen R. Braun;Jiang Xu;Antonio Ulloa;Fatima T. Husain,5,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=58149528283&origin=inward,10.1142/S021963520800199X,2008-12-01,2-s2.0-58149528283,,501-527,19132798.0,58149528283,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=58149528283&origin=inward,Horwitz,Journal of Integrative Neuroscience,Neural mechanisms of auditory discrimination of long-duration tonal patterns: A neural modeling and FMRI study,Article +,https://api.elsevier.com/content/abstract/scopus_id/84928121502,Ron K.O. Chu;Allen R. Braun;Jed A. Meltzer,8,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84928121502&origin=inward,10.1016/j.nicl.2015.03.019,2015-01-01,2-s2.0-84928121502,,157-169,26106540.0,84928121502,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84928121502&origin=inward,Horwitz,NeuroImage: Clinical,MEG-based detection and localization of perilesional dysfunction in chronic stroke,Article +,https://api.elsevier.com/content/abstract/scopus_id/0037378803,Niels Birbaumer;Silke Anders;Martin Lotze;Christoph Braun;Leonardo G. Cohen,409,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0037378803&origin=inward,10.1093/brain/awg079,2003-04-01,2-s2.0-0037378803,,866-872,12615644.0,37378803,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0037378803&origin=inward,Cohen,Brain,Motor learning elicited by voluntary drive,Article +,https://api.elsevier.com/content/abstract/scopus_id/41249093155,Andrea Caria;Niels Birbaumer;Michael A. Dimyan;Surjo Soekadar;Ethan Buch;Jurgen Mellinger;Christoph Braun;Leonardo G. Cohen;Cornelia Weber;Tyler Ard;Alissa Fourkas,355,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=41249093155&origin=inward,10.1161/STROKEAHA.107.505313,2008-01-01,2-s2.0-41249093155,,910-917,18258825.0,41249093155,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=41249093155&origin=inward,Cohen,Stroke,Think to move: A neuromagnetic brain-computer interface (BCI) system for chronic stroke,Article +,https://api.elsevier.com/content/abstract/scopus_id/0141870057,Adriana B. Conforto;Mark Hallett;Konrad J. Werhahn;Leonardo G. Cohen;Nadja Kadom,202,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0141870057&origin=inward,10.1002/ana.10686,2003-10-01,2-s2.0-0141870057,,464-472,14520658.0,141870057,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0141870057&origin=inward,Hallett,Annals of Neurology,Contribution of the ipsilateral motor cortex to recovery after chronic stroke,Article +,https://api.elsevier.com/content/abstract/scopus_id/0034072443,Babak Boroojerdi;Fortunato Battaglia;Ilka Immisch;Khalaf O. Bushara;Leonardo G. Cohen;Brian Corwell;Wolf Muellbacher,168,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0034072443&origin=inward,,2000-05-01,2-s2.0-0034072443,,529-534,10847602.0,34072443,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0034072443&origin=inward,Cohen,Cerebral Cortex,Enhanced excitability of the human visual cortex induced by short-term light deprivation,Article +,https://api.elsevier.com/content/abstract/scopus_id/8144223995,Joan Ohayon;Alessandro Tessitore;Joseph Frank;Lumy Sawaki;Henry McFarland;Leonardo G. Cohen;Katrin Morgen;Nadja Kadom;Roland Martin,87,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=8144223995&origin=inward,10.1093/brain/awh266,2004-01-01,2-s2.0-8144223995,,2506-2517,15456705.0,8144223995,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=8144223995&origin=inward,McFarland,Brain,Training-dependent plasticity in patients with multiple sclerosis,Article +,https://api.elsevier.com/content/abstract/scopus_id/24944493256,Takashi Hanakawa;Carolyn W.H. Wu;Zaneb Yaseen;Peter Van Gelderen;Leonardo G. Cohen,75,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=24944493256&origin=inward,10.1016/j.neuroimage.2005.05.055,2005-10-01,2-s2.0-24944493256,,872-884,16084740.0,24944493256,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=24944493256&origin=inward,Cohen,NeuroImage,Enduring representational plasticity after somatosensory stimulation,Article +,https://api.elsevier.com/content/abstract/scopus_id/35548961930,L. G. Cohen;S. Tanaka;H. C. Tanabe;M. A. Perez;D. T. Willingham;S. P. Wise;N. Sadato,83,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=35548961930&origin=inward,10.1016/j.cub.2007.09.058,2007-11-06,2-s2.0-35548961930,,1896-1902,17964167.0,35548961930,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=35548961930&origin=inward,Cohen,Current Biology,Neural Substrates of Intermanual Transfer of a Newly Acquired Motor Skill,Article +,https://api.elsevier.com/content/abstract/scopus_id/69249147388,Herta Flor;Leonardo G. Cohen;Michael Schaefer;Benjamin Xu,77,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=69249147388&origin=inward,10.1002/hbm.20701,2009-09-15,2-s2.0-69249147388,,2722-2730,19172650.0,69249147388,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=69249147388&origin=inward,Cohen,Human Brain Mapping,Effects of different viewing perspectives on somatosensory activations during observation of touch,Article +,https://api.elsevier.com/content/abstract/scopus_id/84857227822,Niels Birbaumer;Amirali Modir Shanechi;Ethan R. Buch;Alissa D. Fourkas;Leonardo G. Cohen;Cornelia Weber,76,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84857227822&origin=inward,10.1093/brain/awr331,2012-01-01,2-s2.0-84857227822,,596-614,,84857227822,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84857227822&origin=inward,Cohen,Brain,Parietofrontal integrity determines neural modulation associated with grasping imagery after stroke,Article +,https://api.elsevier.com/content/abstract/scopus_id/0037307528,R. J. Kaethner;L. G. Cohen;M. Erb;H. Topka;W. Grodd;M. Lotze,62,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0037307528&origin=inward,10.1016/s1388-2457(02)00380-2,2003-02-01,2-s2.0-0037307528,,306-312,12559238.0,37307528,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0037307528&origin=inward,Cohen,Clinical Neurophysiology,Comparison of representational maps using functional magnetic resonance imaging and transcranial magnetic stimulation,Article +,https://api.elsevier.com/content/abstract/scopus_id/33747389805,Bruce Dobkin;Timea Hodics;Leonardo G. Cohen;Benjamin Xu;Joseph Hidler,42,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33747389805&origin=inward,10.1016/j.jneumeth.2006.01.016,2006-09-15,2-s2.0-33747389805,,300-307,16490258.0,33747389805,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33747389805&origin=inward,Cohen,Journal of Neuroscience Methods,MR compatible force sensing system for real-time monitoring of wrist moments during fMRI testing,Article +,https://api.elsevier.com/content/abstract/scopus_id/84891823186,Nitzan Censor;Silvina G. Horovitz;Leonardo G. Cohen,32,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84891823186&origin=inward,10.1016/j.neuron.2013.10.042,2014-01-08,2-s2.0-84891823186,,69-76,24411732.0,84891823186,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84891823186&origin=inward,Cohen,Neuron,Interference with Existing Memories Alters Offline Intrinsic Functional Brain Connectivity,Article +,https://api.elsevier.com/content/abstract/scopus_id/32244437609,E. Gut;L. G. Cohen;B. Kardatzki;Martin Lotze;W. Grodd;F. A. Rodden;P. W. Schönle,25,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=32244437609&origin=inward,10.1177/1545968305282919,2006-03-01,2-s2.0-32244437609,,14-23,16467275.0,32244437609,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=32244437609&origin=inward,Cohen,Neurorehabilitation and Neural Repair,Neuroimaging patterns associated with motor control in traumatic brain injury,Article +,https://api.elsevier.com/content/abstract/scopus_id/84862857617,Sunbin Song;Nikhil Sharma;Leonardo G. Cohen;Ethan R. Buch,27,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84862857617&origin=inward,10.1093/cercor/bhr247,2012-07-01,2-s2.0-84862857617,,1671-1677,21914632.0,84862857617,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84862857617&origin=inward,Cohen,Cerebral Cortex,White matter microstructural correlates of superior long-term skill gained implicitly under randomized practice,Article +,https://api.elsevier.com/content/abstract/scopus_id/84969262338,Adrian G. Guggisberg;Ethan R. Buch;Armin Schnider;Leonardo G. Cohen;Sviatlana Rizk;Pierre Nicolo,22,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84969262338&origin=inward,10.1212/WNL.0000000000002675,2016-05-17,2-s2.0-84969262338,,1924-1925,27164664.0,84969262338,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84969262338&origin=inward,Cohen,Neurology,Predicting motor improvement after stroke with clinical assessment and diffusion tensor imaging,Short Survey +,https://api.elsevier.com/content/abstract/scopus_id/84978113405,Surjo R. Soekadar;Marcos Fortunato De Barros Filho;Niels Birbaumer;Sonja Cornelsen;Sook Lei Liew;Mohit Rana;Leonardo G. Cohen;Ranganatha Sitaram,28,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84978113405&origin=inward,10.1177/1545968315619699,2016-08-01,2-s2.0-84978113405,,671-675,26671217.0,84978113405,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84978113405&origin=inward,Cohen,Neurorehabilitation and Neural Repair,Improving Motor Corticothalamic Communication after Stroke Using Real-Time fMRI Connectivity-Based Neurofeedback,Article +,https://api.elsevier.com/content/abstract/scopus_id/84982947783,Barry Horwitz;Marco Sandrini;John A. Butman;Oluwole Awosika;Leonardo G. Cohen;Benjamin Xu;Wen Tung Wang;Jason F. Smith;Joelle E. Sarlls,11,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84982947783&origin=inward,10.1002/hbm.23236,2016-09-01,2-s2.0-84982947783,,3236-3249,27144466.0,84982947783,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84982947783&origin=inward,Horwitz,Human Brain Mapping,PreSMA stimulation changes task-free functional connectivity in the fronto-basal-ganglia that correlates with response inhibition efficiency,Article +,https://api.elsevier.com/content/abstract/scopus_id/84914693457,Bruno B. Averbeck;Eran Dayan;Janne M. Hamann;Leonardo G. Cohen,10,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84914693457&origin=inward,10.1523/JNEUROSCI.3141-14.2014,2014-12-03,2-s2.0-84914693457,NIH,16433-16441,25471581.0,84914693457,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84914693457&origin=inward,Cohen,Journal of Neuroscience,Brain structural substrates of reward dependence during behavioral performance,Article +,https://api.elsevier.com/content/abstract/scopus_id/84933511306,Eran Dayan;Sunbin Song;Stephen J. Gotts;Leonardo G. Cohen,9,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84933511306&origin=inward,10.1162/jocn_a_00796,2015-08-29,2-s2.0-84933511306,NIH,1503-1512,25761004.0,84933511306,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84933511306&origin=inward,Cohen,Journal of Cognitive Neuroscience,Practice structure improves unconscious transitional memories by increasing synchrony in a premotor network,Article +,https://api.elsevier.com/content/abstract/scopus_id/84988418840,Nitzan Censor;Karim Nader;Ethan R. Buch;Leonardo G. Cohen,9,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84988418840&origin=inward,10.1093/cercor/bhv180,2016-09-01,2-s2.0-84988418840,,3828-3837,26271110.0,84988418840,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84988418840&origin=inward,Cohen,Cerebral Cortex,Altered human memory modification in the presence of normal consolidation,Article +,https://api.elsevier.com/content/abstract/scopus_id/84911456053,Friedhelm C. Hummel;Eran Dayan;Janne M. Hamann;Leonardo G. Cohen,8,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84911456053&origin=inward,10.1002/hbm.22594,2014-01-01,2-s2.0-84911456053,NIH,5921-5931,25078102.0,84911456053,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84911456053&origin=inward,Cohen,Human Brain Mapping,Baseline frontostriatal-limbic connectivity predicts reward-based memory formation,Article +,https://api.elsevier.com/content/abstract/scopus_id/84985946996,Ethan R. Buch;Eran Dayan;Ryan M. Thompson;Leonardo G. Cohen,0,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84985946996&origin=inward,10.1016/j.clinph.2016.08.011,2016-10-01,2-s2.0-84985946996,,3341-3342,27614003.0,84985946996,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84985946996&origin=inward,Cohen,Clinical Neurophysiology,3D-printed head models for navigated non-invasive brain stimulation,Letter +,https://api.elsevier.com/content/abstract/scopus_id/84989636431,Mark Hallett;Lewis Sudarsky;Leonardo G. Cohen,0,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84989636431&origin=inward,10.1002/mds.870020311,1987-01-01,2-s2.0-84989636431,,224-225,,84989636431,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84989636431&origin=inward,Cohen,Movement Disorders,"A single family with writer's cramp, essential tremor, and primary writing tremor",Erratum +,https://api.elsevier.com/content/abstract/scopus_id/33846877408,Wayne C. Drevets;Toni Tumonis;Noah Meyers;Jun Shen;Gregor Hasler;Jan Willem Van Der Veen,475,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33846877408&origin=inward,10.1001/archpsyc.64.2.193,2007-02-01,2-s2.0-33846877408,,193-200,17283286.0,33846877408,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33846877408&origin=inward,Cohen,Archives of General Psychiatry,Reduced prefrontal glutamate/glutamine and γ-aminobutyric acid levels in major depression determined using proton magnetic resonance spectroscopy,Article +,https://api.elsevier.com/content/abstract/scopus_id/78149330930,Wayne C. Drevets;Stephen J. Fromm;Arne Öhman;Teresa A. Victor;Maura L. Furey,234,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=78149330930&origin=inward,10.1001/archgenpsychiatry.2010.144,2010-11-01,2-s2.0-78149330930,,1128-1138,21041614.0,78149330930,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=78149330930&origin=inward,Cohen,Archives of General Psychiatry,Relationship between amygdala responses to masked faces and mood state and treatment in major depressive disorder,Article +,https://api.elsevier.com/content/abstract/scopus_id/3543136066,Wayne C. Drevets;Earle E. Bain;David A. Luckenbaugh;Alexander Neumeister;Omer Bonne;Dennis S. Charney;Peter Herscovitch;Allison C. Nugent;Markus Schwarz;Tracy Waldeck;Marilla Geraci,212,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=3543136066&origin=inward,10.1001/archpsyc.61.8.765,2004-08-01,2-s2.0-3543136066,,765-773,15289275.0,3543136066,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=3543136066&origin=inward,Nugent,Archives of General Psychiatry,Neural and behavioral responses to tryptophan depletion in unmedicated patients with remitted major depressive disorder and controls,Article +,https://api.elsevier.com/content/abstract/scopus_id/84899930958,Iryna Fedko;Peter T. Fox;Christopher R.K. Ching;Sven Cichon;Ian J. Deary;Rita M. Cantor;Anouk den Braber;Janita Bralten;Rali Dimitrova;Giuseppe Delvecchio;Thomas Espeseth;Derrek P. Hibar;Henry J. Bockholt;Han G. Brunner;Juan R. Bustillo;Giovanni Coppola;Paul M. Thompson;Eva Maria Frey;Greig I. de Zubicaray;Susanne Erk;Katja Appel;Rachel M. Brouwer;Jesen Fagerness;Ravindranath Duggirala;Nicola J. Armstrong;Carrie E. Bearden;Randy L. Buckner;Mark E. Bastin;Simon E. Fisher;Ian J. Bowman;Vincent Frouin;Jason L. Stein;Dara M. Cannon;Dorret I. Boomsma;Michael Czisch;David G. Brohawn;Eco J.C. de Geus;Andrea Christoforou;Benjamin Aribisala;Jan Buitelaar;Hongwei Dong;Lieuwe de Haan;Tom Booth;Danai Dima;Sophia Frangou;Vince D. Calhoun;Hugh Garavan;M. Mallar Chakravarty;Erlend Bøen;Elisabeth B. Binder;Liana G. Apostolova;Miguel E. Renteria;Randy L. Gollub;Thomas D. Dyer;Ørjan Bergmann;Gary Donohoe;Barbara Franke;Scott Fears;Torbjørn Elvsåshagen;Gianpiero L. Cavalleri;Benedicto Crespo-Facorro;Vincent P. Clark;Stefan Ehrlich;Margaret J. Wright;Ingrid Agartz;Nancy C. Andreasen;Saud Alhusaini;Tatiana Foroud;Laura Almasy;Roberto Toro;Sarah E. Medland;Martin Alda;Kathryn Alpert;Patricia Conrod;Jorge Almeida;Joanne E. Curran;Beata Godlewska;Catherine Bois;Chantal Depondt;Sudheer Giddaluru;Neda Jahanshad;Gunter Schumann;Michael Bauer;Kiki D. Chang;Thomas Frodl;Nicholas G. Martin;Hans J. Grabe;John Blangero;Kazima Bulayeva;Carl Johan Ekman;Ole A. Andreassen;Guillén Fernández;Melanie A. Carless;Clyde Francks;Srdjan Djurovic;Alejandro Arias Vasquez;Louise Emsell;David C. Glahn;Xavier Caseras;Rita Z. Goldstein,275,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84899930958&origin=inward,10.1007/s11682-013-9269-5,2014-01-01,2-s2.0-84899930958,,153-182,24399358.0,84899930958,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84899930958&origin=inward,Nugent,Brain Imaging and Behavior,The ENIGMA Consortium: Large-scale collaborative analyses of neuroimaging and genetic data,Article +,https://api.elsevier.com/content/abstract/scopus_id/16844385523,Wayne C. Drevets;Earle E. Bain;David A. Luckenbaugh;Alexander Neumeister;Omer Bonne;Dennis S. Charney;Allison C. Nugent;Suzanne Wood;Theresa Young,200,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=16844385523&origin=inward,10.1016/j.biopsych.2005.01.016,2005-04-15,2-s2.0-16844385523,,935-937,15820716.0,16844385523,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=16844385523&origin=inward,Nugent,Biological Psychiatry,"Reduced hippocampal volume in unmedicated, remitted patients with major depression versus control subjects",Article +,https://api.elsevier.com/content/abstract/scopus_id/34748836926,Wayne C. Drevets;Husseini K. Manji;Masanori Ichise;Dara M. Cannon;Jacqueline M. Klaver;Dennis S. Charney;Denise Rollis;Shilpa K. Gandhi,170,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34748836926&origin=inward,10.1016/j.biopsych.2007.03.016,2007-10-15,2-s2.0-34748836926,,870-877,17678634.0,34748836926,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34748836926&origin=inward,Nugent,Biological Psychiatry,Elevated Serotonin Transporter Binding in Major Depressive Disorder Assessed Using Positron Emission Tomography and [11C]DASB; Comparison with Bipolar Disorder,Article +,https://api.elsevier.com/content/abstract/scopus_id/33645131763,Wayne C. Drevets;Linda Mah;Earle E. Bain;Carlos A. Zarate;Joseph L. Price;Dara M. Cannon;Sean Marrett;Allison C. Nugent;Michael P. Milham;Daniel S. Pine,154,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33645131763&origin=inward,10.1016/j.neuroimage.2005.09.029,2006-04-01,2-s2.0-33645131763,,485-497,16256376.0,33645131763,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33645131763&origin=inward,Nugent,NeuroImage,Cortical abnormalities in bipolar disorder investigated with MRI and voxel-based morphometry,Article +,https://api.elsevier.com/content/abstract/scopus_id/48749096220,Wayne C. Drevets;Barbara J. Sahakian;Luke Clark;Guy B. Williams;Maura L. Furey;Joana V. Taylor Tavares,136,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=48749096220&origin=inward,10.1016/j.neuroimage.2008.05.049,2008-09-01,2-s2.0-48749096220,IICN,1118-1126,18586109.0,48749096220,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=48749096220&origin=inward,Nugent,NeuroImage,Neural basis of abnormal response to negative feedback in unmedicated mood disorders,Article +,https://api.elsevier.com/content/abstract/scopus_id/33748290041,Wayne C. Drevets;David A. Luckenbaugh;Alexander Neumeister;Omer Bonne;Dennis S. Charney;Peter Herscovitch;Allison C. Nugent;Markus Schwarz;David Goldman;Xian Zhang Hu,123,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33748290041&origin=inward,10.1001/archpsyc.63.9.978,2006-09-11,2-s2.0-33748290041,,978-986,16953000.0,33748290041,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33748290041&origin=inward,Nugent,Archives of General Psychiatry,Differential effects of 5-HTTLPR genotypes on the behavioral and neural responses to tryptophan depletion in patients with major depression and controls,Article +,https://api.elsevier.com/content/abstract/scopus_id/33746218062,Wayne C. Drevets;Stephen J. Fromm;Husseini K. Manji;Masanori Ichise;Dara M. Cannon;Jacqueline M. Klaver;Dennis S. Charney;Denise Rollis;Shilpa K. Gandhi;Allison C. Nugent,124,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33746218062&origin=inward,10.1016/j.biopsych.2006.05.005,2006-08-01,2-s2.0-33746218062,,207-217,16875929.0,33746218062,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33746218062&origin=inward,Nugent,Biological Psychiatry,Serotonin Transporter Binding in Bipolar Disorder Assessed using [11C]DASB and Positron Emission Tomography,Article +,https://api.elsevier.com/content/abstract/scopus_id/79958139969,Wayne C. Drevets;Elisabeth A. Murray;Steven P. Wise,111,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79958139969&origin=inward,10.1016/j.biopsych.2010.09.041,2011-06-15,2-s2.0-79958139969,,,21111403.0,79958139969,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79958139969&origin=inward,Murray,Biological Psychiatry,Localization of dysfunction in major depressive disorder: Prefrontal cortex and amygdala,Review +,https://api.elsevier.com/content/abstract/scopus_id/78650929772,Wayne C. Drevets;Carlos A. Zarate;Giacomo Salvadore;David A. Luckenbaugh;Alexander Neumeister;Herve Lemaitre;Dara M. Cannon;Ruth Tinsley;Allison C. Nugent,88,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=78650929772&origin=inward,10.1016/j.neuroimage.2010.11.011,2011-02-14,2-s2.0-78650929772,,2643-2651,21073959.0,78650929772,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=78650929772&origin=inward,Nugent,NeuroImage,Prefrontal cortical abnormalities in currently depressed versus currently remitted patients with major depressive disorder,Article +,https://api.elsevier.com/content/abstract/scopus_id/79151474290,Wayne C. Drevets;Wendy Bogers;Earle E. Bain;Carlos A. Zarate;Fritz Henn;Jonathan B. Savitz;Jonathan P. Roiser;Alexander Neumeister;Husseini K. Manji;Dennis S. Charney;Dara M. Cannon;Sean Marrett;Allison C. Nugent,92,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79151474290&origin=inward,10.1016/j.biopsych.2010.09.027,2011-02-15,2-s2.0-79151474290,,336-343,21094939.0,79151474290,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79151474290&origin=inward,Nugent,Biological Psychiatry,Habenula volume in bipolar disorder and major depressive disorder: A high-resolution magnetic resonance imaging study,Article +,https://api.elsevier.com/content/abstract/scopus_id/29044439012,Wayne C. Drevets;Toni Tumonis;Earle E. Bain;Jun Shen;Gregor Hasler;Alexander Neumeister;Dennis S. Charney;Jan Willem Van Der Veen,88,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=29044439012&origin=inward,10.1016/j.biopsych.2005.05.017,2005-12-15,2-s2.0-29044439012,,969-973,16043137.0,29044439012,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=29044439012&origin=inward,Nugent,Biological Psychiatry,Normal prefrontal gamma-aminobutyric acid levels in remitted depressed subjects determined by proton magnetic resonance spectroscopy,Article +,https://api.elsevier.com/content/abstract/scopus_id/68049127793,Wayne C. Drevets;Barbara J. Sahakian;S. Lalith Talagala;Jamey Levy;Gregor Hasler;Jonathan P. Roiser;Stephen J. Fromm;Fritz A. Henn;Allison C. Nugent,79,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=68049127793&origin=inward,10.1016/j.biopsych.2009.05.002,2009-09-01,2-s2.0-68049127793,,441-450,19539268.0,68049127793,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=68049127793&origin=inward,Nugent,Biological Psychiatry,The Effects of Tryptophan Depletion on Neural Responses to Emotional Words in Remitted Depression,Article +,https://api.elsevier.com/content/abstract/scopus_id/33746310877,Wayne C. Drevets;David A. Luckenbaugh;Alexander Neumeister;Omer Bonne;Shannan Henry;Dennis S. Charney;Inna Belfer;Peter Herscovitch;David Goldman,73,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33746310877&origin=inward,10.1038/sj.npp.1301010,2006-08-09,2-s2.0-33746310877,,1750-1756,16407897.0,33746310877,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33746310877&origin=inward,Nugent,Neuropsychopharmacology,Effects of a α2C-adrenoreceptor gene polymorphism on neural responses to facial expressions in depression,Article +,https://api.elsevier.com/content/abstract/scopus_id/73749084524,Wayne C. Drevets;Wendy Bogers;Earle E. Bain;David A. Luckenbaugh;Jonathan Savitz;Alice Liu;Husseini K. Manji;Dennis S. Charney;Rebecca Sills;Dara M. Cannon;Sean Marrett;Carlos Zarate;Allison C. Nugent;Joseph L. Price,69,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=73749084524&origin=inward,10.1016/j.neuroimage.2009.11.025,2010-02-15,2-s2.0-73749084524,,2966-2976,19931399.0,73749084524,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=73749084524&origin=inward,Nugent,NeuroImage,Amygdala volume in depressed patients with bipolar disorder assessed using high resolution 3T MRI: The impact of medication,Article +,https://api.elsevier.com/content/abstract/scopus_id/33745712727,Wayne C. Drevets;William C. Eckelman;Shilpa Gandhi;Richard E. Carson;Joan Williams;Dara M. Cannon;Denise Rollis;Michele Drevets;Gerardo Solorio;Dale O. Kiesewetter;Allison C. Nugent,69,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33745712727&origin=inward,10.1001/archpsyc.63.7.741,2006-07-12,2-s2.0-33745712727,,741-747,16818863.0,33745712727,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33745712727&origin=inward,Nugent,Archives of General Psychiatry,Reduced muscarinic type 2 receptor binding in subjects with bipolar disorder,Article +,https://api.elsevier.com/content/abstract/scopus_id/62349134479,Wayne C. Drevets;Summer A. Peck;Dara M. Cannon;Jacqueline M. Klaver;Kristine Erickson;Denise Rallis-Voak,64,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=62349134479&origin=inward,10.1038/npp.2008.194,2009-04-01,2-s2.0-62349134479,,1277-1287,18946469.0,62349134479,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=62349134479&origin=inward,Nugent,Neuropsychopharmacology,Dopamine type-1 receptor binding in major depressive disorder assessed using positron emission tomography and [11C]NNC-112,Article +,https://api.elsevier.com/content/abstract/scopus_id/13444278544,Wayne C. Drevets;Earle Bain;Richard E. Carson;Alexander Neumeister;Omer Bonne;David A. Luckenbaugh;William Eckelman;Dennis S. Charney;Peter Herscovitch;Allison C. Nugent;Meena Vythilingam,55,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=13444278544&origin=inward,10.1176/appi.ajp.162.2.383,2005-02-01,2-s2.0-13444278544,,383-385,15677606.0,13444278544,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=13444278544&origin=inward,Nugent,American Journal of Psychiatry,No change in serotonin type 1A receptor binding in patients with posttraumatic stress disorder,Article +,https://api.elsevier.com/content/abstract/scopus_id/77958001705,Maura L. Furey;Elana M. Hoffman;Ashish Khanna;Wayne C. Drevets,66,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77958001705&origin=inward,10.1038/npp.2010.131,2010-11-01,2-s2.0-77958001705,,2479-2488,20736989.0,77958001705,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77958001705&origin=inward,Nugent,Neuropsychopharmacology,Scopolamine produces larger antidepressant and antianxiety effects in women than in men,Article +,https://api.elsevier.com/content/abstract/scopus_id/62149122946,Daniel S. Pine;Monique Ernst;Gary Hazlett;Steven M. Southwick;Wayne Drevets;Dennis S. Charney;Eric E. Nelson;Matthew Scaramozza;Tracy Waldeck;Meena Vythilingam,49,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=62149122946&origin=inward,10.1016/j.pscychresns.2008.06.008,2009-04-30,2-s2.0-62149122946,,75-77,19243926.0,62149122946,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=62149122946&origin=inward,Pine,Psychiatry Research - Neuroimaging,Reward circuitry in resilience to severe trauma: An fMRI investigation of resilient special forces soldiers,Article +,https://api.elsevier.com/content/abstract/scopus_id/79955549915,Wayne C. Drevets;Joanna Szczepanik;Richard E. Carson;Krystle Barhaghi;Allison Nugent;Peter Herscovitch;Chantal Martin-Soelch;Denise Rallis,56,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79955549915&origin=inward,10.1111/j.1460-9568.2011.07642.x,2011-05-01,2-s2.0-79955549915,,1706-1715,21453423.0,79955549915,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79955549915&origin=inward,Nugent,European Journal of Neuroscience,Lateralization and gender differences in the dopaminergic response to unpredictable reward in the human ventral striatum,Article +,https://api.elsevier.com/content/abstract/scopus_id/58149301402,Wayne C. Drevets;Daniel Pine;Jun Shen;Gregor Hasler;Jan Willem van der Veen;Marilla Geraci,38,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=58149301402&origin=inward,10.1016/j.biopsych.2008.06.023,2009-02-01,2-s2.0-58149301402,,273-275,18692172.0,58149301402,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=58149301402&origin=inward,Pine,Biological Psychiatry,Prefrontal Cortical Gamma-Aminobutyric Acid Levels in Panic Disorder Determined by Proton Magnetic Resonance Spectroscopy,Article +,https://api.elsevier.com/content/abstract/scopus_id/78650172495,Julian Francis Thayer;John James Sollers;Wayne Curtis Drevets;Earle Eugene Bain;Allison Carol Nugent,27,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=78650172495&origin=inward,10.1016/j.pscychresns.2010.08.013,2011-01-30,2-s2.0-78650172495,,1-8,21129936.0,78650172495,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=78650172495&origin=inward,Nugent,Psychiatry Research - Neuroimaging,Heart rate variability during motor and cognitive tasks in females with major depressive disorder,Article +,https://api.elsevier.com/content/abstract/scopus_id/84876454339,Wayne C. Drevets;Jeff H. Duyn;Peter van Gelderen;Maura L. Furey;Jacco A. de Zwart;J. Martijn Jansma,6,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84876454339&origin=inward,10.1016/j.jneumeth.2013.02.017,2013-05-15,2-s2.0-84876454339,NIH,190-195,23473798.0,84876454339,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84876454339&origin=inward,Duyn,Journal of Neuroscience Methods,In vivo evaluation of the effect of stimulus distribution on FIR statistical efficiency in event-related fMRI,Article +,https://api.elsevier.com/content/abstract/scopus_id/77953462218,Jeff H. Duyn;David A. Leopold;Marieke L. Schölvinck;Frank Q. Ye;Alexander Maier,465,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77953462218&origin=inward,10.1073/pnas.0913110107,2010-06-01,2-s2.0-77953462218,,10238-10243,20439733.0,77953462218,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77953462218&origin=inward,Duyn,Proceedings of the National Academy of Sciences of the United States of America,Neural basis of global resting-state fMRI activity,Article +,https://api.elsevier.com/content/abstract/scopus_id/77649257562,Richard D. Leapman;Dragan Maric;Jeff H. Duyn;Bing Yao;Jacco A. De Zwart;Jongho Lee;Tie Qiang Li;Maria A. Aronova;Hellmut Merkle;Masaki Fukunaga;Peter Van Gelderen;Guofeng Zhang;Karin Shmueli;John F. Schenck,224,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77649257562&origin=inward,10.1073/pnas.0911177107,2010-02-23,2-s2.0-77649257562,,3834-3839,20133720.0,77649257562,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77649257562&origin=inward,Duyn,Proceedings of the National Academy of Sciences of the United States of America,Layer-specific variation of iron content in cerebral cortex as a source of MRI contrast,Article +,https://api.elsevier.com/content/abstract/scopus_id/84875045497,Jeff H. Duyn;Xiao Liu,203,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84875045497&origin=inward,10.1073/pnas.1216856110,2013-03-12,2-s2.0-84875045497,,4392-4397,23440216.0,84875045497,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84875045497&origin=inward,Duyn,Proceedings of the National Academy of Sciences of the United States of America,Time-varying functional network information extracted from brief instances of spontaneous brain activity,Article +,https://api.elsevier.com/content/abstract/scopus_id/77950456760,Jeff H. Duyn;Jongho Lee;Hellmut Merkle;Masaki Fukunaga;Peter Van Gelderen;Karin Shmueli;Afonso C. Silva,163,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77950456760&origin=inward,10.1073/pnas.0910222107,2010-03-16,2-s2.0-77950456760,,5130-5135,20202922.0,77950456760,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77950456760&origin=inward,Duyn,Proceedings of the National Academy of Sciences of the United States of America,Sensitivity of MRI resonance frequency to the orientation of brain tissue microstructure,Article +,https://api.elsevier.com/content/abstract/scopus_id/84874541551,Jeff H. Duyn;Zhongming Liu;Xiao Liu;Michael C. Chen;Catie Chang,153,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84874541551&origin=inward,10.1016/j.neuroimage.2013.01.049,2013-05-05,2-s2.0-84874541551,,227-236,23376790.0,84874541551,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84874541551&origin=inward,Duyn,NeuroImage,EEG correlates of time-varying BOLD functional connectivity,Article +,https://api.elsevier.com/content/abstract/scopus_id/84871829601,Jeff H. Duyn;Martin Walter;Gary H. Glover;Hans Jochen Heinze;Coraline D. Metzger;Catie Chang,123,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84871829601&origin=inward,10.1016/j.neuroimage.2012.11.038,2013-03-01,2-s2.0-84871829601,,93-104,23246859.0,84871829601,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84871829601&origin=inward,Duyn,NeuroImage,Association between heart rate variability and fluctuations in resting-state functional connectivity,Article +,https://api.elsevier.com/content/abstract/scopus_id/77950544458,Jacco A. de Zwart;Zhongming Liu;Jeff H. Duyn;Masaki Fukunaga,90,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77950544458&origin=inward,10.1016/j.neuroimage.2010.01.092,2010-05-01,2-s2.0-77950544458,,102-111,20123024.0,77950544458,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77950544458&origin=inward,Duyn,NeuroImage,Large-scale spontaneous fluctuations and correlations in brain electrical activity observed with magnetoencephalography,Article +,https://api.elsevier.com/content/abstract/scopus_id/84877044901,Daniel S. Reich;Jeff H. Duyn;Jacco A. De Zwart;Hellmut Merkle;Peter van Gelderen;Afonso C. Silva;Pascal Sati,100,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84877044901&origin=inward,10.1016/j.neuroimage.2013.03.005,2013-08-15,2-s2.0-84877044901,,268-278,23528924.0,84877044901,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84877044901&origin=inward,Reich,NeuroImage,Micro-compartment specific T2* relaxation in the brain,Article +,https://api.elsevier.com/content/abstract/scopus_id/84255175912,Daniel S. Reich;Jeff H. Duyn;Jacco A. De Zwart;Jongho Lee;Peter Van Gelderen;Pascal Sati,65,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84255175912&origin=inward,10.1002/mrm.22990,2012-01-01,2-s2.0-84255175912,,110-117,21630352.0,84255175912,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84255175912&origin=inward,Reich,Magnetic Resonance in Medicine,Nonexponential T 2* decay in white matter,Article +,https://api.elsevier.com/content/abstract/scopus_id/84855435144,Jeff H. Duyn;Li Wei Kuo;Peter van Gelderen;Zhongming Liu;Jacco A. de Zwart,52,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84855435144&origin=inward,10.1016/j.neuroimage.2011.10.042,2012-02-01,2-s2.0-84855435144,,2073-2087,22036675.0,84855435144,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84855435144&origin=inward,Duyn,NeuroImage,Statistical feature extraction for artifact removal from concurrent fMRI-EEG recordings,Article +,https://api.elsevier.com/content/abstract/scopus_id/84889605075,Jeff H. Duyn;Xiao Liu;Catie Chang,55,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84889605075&origin=inward,10.3389/fnsys.2013.00101,2013-12-04,2-s2.0-84889605075,,,,84889605075,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84889605075&origin=inward,Duyn,Frontiers in Systems Neuroscience,Decomposition of spontaneous brain activity into distinct fMRI co-activation patterns,Article +,https://api.elsevier.com/content/abstract/scopus_id/84866060086,Jeff H. Duyn;Bing Yao;Li Wei Kuo;Peter van Gelderen;Zhongming Liu;Jacco A. de Zwart,38,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84866060086&origin=inward,10.1016/j.neuroimage.2012.08.025,2012-11-15,2-s2.0-84866060086,,1060-1069,22986355.0,84866060086,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84866060086&origin=inward,Duyn,NeuroImage,Finding thalamic BOLD correlates to posterior alpha EEG,Article +,https://api.elsevier.com/content/abstract/scopus_id/84893446105,Jeff H. Duyn;Morgan L. Pixa;Allen R. Braun;Walter S. Carr;Silvina G. Horovitz;Masaki Fukunaga;Dante Picchioni,27,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84893446105&origin=inward,10.5665/sleep.3422,2014-02-01,2-s2.0-84893446105,,387-397,24497667.0,84893446105,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84893446105&origin=inward,Duyn,Sleep,Decreased connectivity between the thalamus and the neocortex during human nonrapid eye movement sleep,Article +,https://api.elsevier.com/content/abstract/scopus_id/84908425865,Jeff H. Duyn;Daniel K. Sodickson;Jacco A. De Zwart;Ryan Brown;Qi Duan;Natalia Gudino;Peter Van Gelderen,23,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84908425865&origin=inward,10.1118/1.4895823,2014-10-01,2-s2.0-84908425865,,,25281973.0,84908425865,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84908425865&origin=inward,Duyn,Medical Physics,Characterization of a dielectric phantom for high-field magnetic resonance imaging applications,Article +,https://api.elsevier.com/content/abstract/scopus_id/84954217985,Peter van Gelderen;Jeff H. Duyn;Xu Jiang,19,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84954217985&origin=inward,10.1016/j.neuroimage.2015.12.032,2016-03-01,2-s2.0-84954217985,,85-95,26724780.0,84954217985,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84954217985&origin=inward,Duyn,NeuroImage,Effects of magnetization transfer on T1 contrast in human brain white matter,Article +,https://api.elsevier.com/content/abstract/scopus_id/84882268901,Qi Duan;Peter van Gelderen;Jeff Duyn,13,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84882268901&origin=inward,10.1002/nbm.2920,2013-09-01,2-s2.0-84882268901,,1070-1078,23355474.0,84882268901,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84882268901&origin=inward,Duyn,NMR in Biomedicine,Improved Bloch-Siegert based B1 mapping by reducing off-resonance shift,Article +,https://api.elsevier.com/content/abstract/scopus_id/84945441349,Jeff H. Duyn;Peter Van Gelderen;Jacco A. De Zwart;Hendrik Mandelkow,14,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84945441349&origin=inward,10.1002/mrm.25524,2015-01-01,2-s2.0-84945441349,,1388-1396,25399830.0,84945441349,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84945441349&origin=inward,Duyn,Magnetic Resonance in Medicine,A torque balance measurement of anisotropy of the magnetic susceptibility in white matter,Article +,https://api.elsevier.com/content/abstract/scopus_id/78650936663,Jeff H. Duyn;Jongho Lee;Masaki Fukunaga,10,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=78650936663&origin=inward,10.1016/j.neuroimage.2010.10.071,2011-02-14,2-s2.0-78650936663,,2779-2788,21040793.0,78650936663,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=78650936663&origin=inward,Duyn,NeuroImage,Improving contrast to noise ratio of resonance frequency contrast images (phase images) using balanced steady-state free precession,Article +,https://api.elsevier.com/content/abstract/scopus_id/84964772093,Jeff H. Duyn;Jacco A. De Zwart;Hendrik Mandelkow,14,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84964772093&origin=inward,10.3389/fnhum.2016.00128,2016-03-31,2-s2.0-84964772093,,1-12,,84964772093,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84964772093&origin=inward,Duyn,Frontiers in Human Neuroscience,Linear discriminant analysis achieves high classification accuracy for the BOLD fMRI response to naturalistic movie stimuli,Article +,https://api.elsevier.com/content/abstract/scopus_id/84890933895,Jeff H. Duyn;Molly G. Bright;Kevin Murphy;Jacco A. de Zwart;Marta Bianciardi,12,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84890933895&origin=inward,10.1016/j.neuroimage.2013.10.055,2014-02-15,2-s2.0-84890933895,,287-296,24211818.0,84890933895,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84890933895&origin=inward,Duyn,NeuroImage,Early anti-correlated BOLD signal changes of physiologic origin,Article +,https://api.elsevier.com/content/abstract/scopus_id/84973444604,Jeff H. Duyn;John Schenck,31,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84973444604&origin=inward,10.1002/nbm.3546,2017-04-01,2-s2.0-84973444604,,,27240118.0,84973444604,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84973444604&origin=inward,Duyn,NMR in Biomedicine,Contributions to magnetic susceptibility of brain tissue,Review +,https://api.elsevier.com/content/abstract/scopus_id/84857243554,Qi Duan;Peter Van Gelderen;Jeff Duyn,7,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84857243554&origin=inward,10.1002/mrm.23278,2012-03-01,2-s2.0-84857243554,,601-608,22222623.0,84857243554,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84857243554&origin=inward,Duyn,Magnetic Resonance in Medicine,Tailored excitation using nonlinear B 0-shims,Article +,https://api.elsevier.com/content/abstract/scopus_id/84924815051,Daniel S. Reich;Jeff H. Duyn;Jacco A. De Zwart;Xiaozhen Li;Peter Van Gelderen;Pascal Sati,8,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84924815051&origin=inward,10.1016/j.nicl.2015.02.021,2015-01-01,2-s2.0-84924815051,KI,709-714,26594617.0,84924815051,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84924815051&origin=inward,Reich,NeuroImage: Clinical,Detection of demyelination in multiple sclerosis by analysis of T 2 ∗ relaxation at 7 T,Article +,https://api.elsevier.com/content/abstract/scopus_id/84885052576,Jeff H. Duyn;Zhongming Liu;Peter Van Gelderen;Jacco A. De Zwart,5,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84885052576&origin=inward,10.1007/s10548-013-0290-1,2013-10-01,2-s2.0-84885052576,,525-537,23660870.0,84885052576,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84885052576&origin=inward,Duyn,Brain Topography,Independent sources of spontaneous BOLD fluctuation along the visual pathway,Article +,https://api.elsevier.com/content/abstract/scopus_id/84939254120,Joan M. Ohayon;Bing Yao;Francesca Bagnato;Jeff Duyn;Fredric K. Cantor;Vasiliki N. Ikonomidou,8,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84939254120&origin=inward,10.1111/jon.12193,2015-01-01,2-s2.0-84939254120,,799-806,25657078.0,84939254120,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84939254120&origin=inward,Duyn,Journal of Neuroimaging,Heterogeneity of Multiple Sclerosis White Matter Lesions Detected With T2*-Weighted Imaging at 7.0 Tesla,Article +,https://api.elsevier.com/content/abstract/scopus_id/84974824221,Jeff H. Duyn;Qi Duan;Joe Murphy-Boesch;Natalia Gudino;Hellmut Merkle;Peter van Gelderen;Jacco A. de Zwart;Stephen J. Dodd,5,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84974824221&origin=inward,10.1002/mrm.25857,2016-07-01,2-s2.0-84974824221,,340-349,26256671.0,84974824221,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84974824221&origin=inward,Duyn,Magnetic Resonance in Medicine,Optically controlled switch-mode current-source amplifiers for on-coil implementation in high-field parallel transmission,Article +,https://api.elsevier.com/content/abstract/scopus_id/84977108816,Peter van Gelderen;Jeff H. Duyn;Xu Jiang,8,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84977108816&origin=inward,10.1002/mrm.26304,2017-06-01,2-s2.0-84977108816,,2174-2185,27342121.0,84977108816,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84977108816&origin=inward,Duyn,Magnetic Resonance in Medicine,Rapid measurement of brain macromolecular proton fraction with transient saturation transfer MRI,Article +,https://api.elsevier.com/content/abstract/scopus_id/84884541852,Jeff H. Duyn;Nancy D. Richert;Francesca Bagnato;Fernanda Tovar-Moll;Bibiana Bielekova;Natalie E. Cook;Vasiliki N. Ikonomidou;Alexander Vortmeyer,1,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84884541852&origin=inward,10.1177/1352458513498124,2013-01-01,2-s2.0-84884541852,,1539-1543,24062416.0,84884541852,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84884541852&origin=inward,Bielekova,Multiple Sclerosis Journal,Evolution of tumefactive lesions in multiple sclerosis: A 12-year study with serial imaging in a single patient,Article +,https://api.elsevier.com/content/abstract/scopus_id/84963818868,J. H. Duyn;K. Shmueli;P. van Gelderen;S. J. Dodd,1,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84963818868&origin=inward,10.1002/nbm.3525,2017-04-01,2-s2.0-84963818868,EPSRC,,27076394.0,84963818868,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84963818868&origin=inward,Duyn,NMR in Biomedicine,Investigating lipids as a source of chemical exchange-induced MRI frequency shifts,Article +,https://api.elsevier.com/content/abstract/scopus_id/84943277181,J. A. de Zwart;J. Duyn,0,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84943277181&origin=inward,10.1016/B978-0-12-397025-1.00009-9,2015-02-14,2-s2.0-84943277181,,89-96,,84943277181,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84943277181&origin=inward,Duyn,Brain Mapping: An Encyclopedic Reference,Evolution of Instrumentation for Functional Magnetic Resonance Imaging,Chapter +,https://api.elsevier.com/content/abstract/scopus_id/84948650823,Peter Keilman;Jeff H. Duyn;Jacco A. De Zwart;Yuxi Pang;Renxin Chu;Patrick J. Ledden;Peter Van Gelderen,0,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84948650823&origin=inward,10.1109/ISBI.2002.1029423,2002-01-01,2-s2.0-84948650823,,966-969,,84948650823,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84948650823&origin=inward,Duyn,Proceedings - International Symposium on Biomedical Imaging,Optimization of a high sensitivity MRI receive coil for parallel human brain imaging,Conference Paper +,https://api.elsevier.com/content/abstract/scopus_id/77952398184,Jeff H. Duyn;Jongho Lee;Hellmut Merkle;Masaki Fukunaga;Peter Van Gelderen;Karin Shmueli;Afonso C. Silva,0,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77952398184&origin=inward,10.1073/pnas.1003440107,2010-05-04,2-s2.0-77952398184,,8498,,77952398184,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77952398184&origin=inward,Duyn,Proceedings of the National Academy of Sciences of the United States of America,"Erratum: Sensitivity of MRI resonance frequency to the orientation of brain tissue microstructure (Proceedings National Academy Science USA (2010) 107, (5130-5135) DOI: 10.1073/pnas.0910222107)",Erratum +,https://api.elsevier.com/content/abstract/scopus_id/85011700174,Peter van Gelderen;Jeff H. Duyn;Xu Jiang,4,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85011700174&origin=inward,10.1002/mrm.26594,2017-11-01,2-s2.0-85011700174,,1950-1958,28150877.0,85011700174,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85011700174&origin=inward,Duyn,Magnetic Resonance in Medicine,Spectral characteristics of semisolid protons in human brain white matter at 7 T,Article +,https://api.elsevier.com/content/abstract/scopus_id/84872699821,Laura E. Danielian;Mary Kay Floeter;Justin Y. Kwan;Tianxia Wu;Avner Meoded,44,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84872699821&origin=inward,10.1016/j.nicl.2012.12.003,2013-01-28,2-s2.0-84872699821,,151-160,,84872699821,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84872699821&origin=inward,Duyn,NeuroImage: Clinical,Structural imaging differences and longitudinal changes in primary lateral sclerosis and amyotrophic lateral sclerosis,Article +,https://api.elsevier.com/content/abstract/scopus_id/85002411690,Bryan J. Traynor;Laura E. Braun;Laura E. Danielian;Devin Bageac;Mary Kay Floeter;Justin Y. Kwan,19,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85002411690&origin=inward,10.1016/j.nicl.2016.10.014,2016-01-01,2-s2.0-85002411690,,1035-1043,27995069.0,85002411690,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85002411690&origin=inward,Duyn,NeuroImage: Clinical,Longitudinal imaging in C9orf72 mutation carriers: Relationship to phenotype,Article +,https://api.elsevier.com/content/abstract/scopus_id/84907424554,Olivia Schanz;Rohan Katipally;Meredith P. Kim;Laura Danielian;Mary Kay Floeter;Tianxia Wu;Matthew Stephen;Avner Meoded;Edward D. Huey,15,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84907424554&origin=inward,10.1212/WNL.0000000000000693,2014-01-01,2-s2.0-84907424554,NINDS,620-627,25008395.0,84907424554,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84907424554&origin=inward,Duyn,Neurology,Impaired corticopontocerebellar tracts underlie pseudobulbar affect in motor neuron disorders,Article +,https://api.elsevier.com/content/abstract/scopus_id/84920842790,Olivia Schanz;Rohan Katipally;Arthur E. Morrissette;Mary Kay Floeter;Stephen J. Gotts;Avner Meoded,16,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84920842790&origin=inward,10.1016/j.nicl.2014.12.009,2015-01-01,2-s2.0-84920842790,,288-296,25610792.0,84920842790,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84920842790&origin=inward,Duyn,NeuroImage: Clinical,Cerebro-cerebellar connectivity is increased in primary lateral sclerosis,Article +,https://api.elsevier.com/content/abstract/scopus_id/85019030136,Laura E. Danielian;Saad Jbabdi;Karla L. Miller;Abhik Ray-Chaudhury;Agustin M. Cardenas;Devin Bageac;Hao Wei Wang;Mary Kay Floeter;Justin Y. Kwan;Sean Foxley;Robert C. Welsh;Joelle E. Sarlls;Zachary S. Gala,9,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85019030136&origin=inward,10.1016/j.nicl.2017.04.024,2017-01-01,2-s2.0-85019030136,,200-208,28529876.0,85019030136,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85019030136&origin=inward,Duyn,NeuroImage: Clinical,"Pathology of callosal damage in ALS: An ex-vivo, 7 T diffusion tensor MRI study",Article +,https://api.elsevier.com/content/abstract/scopus_id/2542597718,Judith L. Rapoport;Kiralee M. Hayashi;Deanna Greenstein;Jay N. Giedd;Tom F. Nugent;A. Catherine Vaituzis;Paul M. Thompson;Liv S. Clasen;David H. Herman;Leslie Lusk;Arthur W. Toga;Nitin Gogtay,3058,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=2542597718&origin=inward,10.1073/pnas.0402680101,2004-05-21,2-s2.0-2542597718,,8174-8179,15148381.0,2542597718,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=2542597718&origin=inward,Rapoport,Proceedings of the National Academy of Sciences of the United States of America,Dynamic mapping of human cortical development during childhood through early adulthood,Article +,https://api.elsevier.com/content/abstract/scopus_id/0037048693,Judith L. Rapoport;Alan C. Evans;Regina S. James;F. Xavier Castellanos;Jonathan D. Blumenthal;Deanna K. Greenstein;Jay N. Giedd;Alex Zijdenbos;Liv S. Clasen;Wendy Sharp;Neal O. Jeffries;Patti P. Lee;Christen L. Ebens;James M. Walter,1070,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0037048693&origin=inward,,2002-10-09,2-s2.0-0037048693,,1740-1748,12365958.0,37048693,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0037048693&origin=inward,Rapoport,Journal of the American Medical Association,Developmental trajectories of brain volume abnormalities in children and adolescents with attention-deficit/hyperactivity disorder,Article +,https://api.elsevier.com/content/abstract/scopus_id/56549127348,Matcheri Keshavan;Tomáš Paus;Jay N. Giedd,1168,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=56549127348&origin=inward,10.1038/nrn2513,2008-12-01,2-s2.0-56549127348,,947-957,19002191.0,56549127348,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=56549127348&origin=inward,Rapoport,Nature Reviews Neuroscience,Why do many psychiatric disorders emerge during adolescence?,Review +,https://api.elsevier.com/content/abstract/scopus_id/3042749798,Jay N. Giedd,945,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=3042749798&origin=inward,10.1196/annals.1308.009,2004-01-01,2-s2.0-3042749798,,77-85,15251877.0,3042749798,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=3042749798&origin=inward,Rapoport,Annals of the New York Academy of Sciences,Structural magnetic resonance imaging of the adolescent brain,Conference Paper +,https://api.elsevier.com/content/abstract/scopus_id/33645453807,N. Gogtay;J. Lerch;J. Giedd;L. Clasen;R. Lenroot;D. Greenstein;A. Evans;P. Shaw;J. Rapoport,933,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33645453807&origin=inward,10.1038/nature04513,2006-03-30,2-s2.0-33645453807,,676-679,16572172.0,33645453807,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33645453807&origin=inward,Shaw,Nature,Intellectual ability and cortical development in children and adolescents,Article +,https://api.elsevier.com/content/abstract/scopus_id/0034306447,Kathleen M. Thomas;B. J. Casey;Jay N. Giedd,902,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0034306447&origin=inward,10.1016/S0301-0511(00)00058-2,2000-01-01,2-s2.0-0034306447,,241-257,11035225.0,34306447,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0034306447&origin=inward,Shaw,Biological Psychology,Structural and functional brain development and its relation to cognitive development,Article +,https://api.elsevier.com/content/abstract/scopus_id/43649097736,Judith L. Rapoport;Nitin Gogtay;Alan Evans;Kristen Eckstrand;Deanna Greenstein;Liv Clasen;Philip Shaw;Jay N. Giedd;Steve P. Wise;Rhoshel Lenroot;Noor J. Kabani;Jason P. Lerch,908,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=43649097736&origin=inward,10.1523/JNEUROSCI.5309-07.2008,2008-04-02,2-s2.0-43649097736,,3586-3594,18385317.0,43649097736,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=43649097736&origin=inward,Shaw,Journal of Neuroscience,Neurodevelopmental trajectories of the human cerebral cortex,Article +,https://api.elsevier.com/content/abstract/scopus_id/33747885370,Rhoshel K. Lenroot;Jay N. Giedd,919,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33747885370&origin=inward,10.1016/j.neubiorev.2006.06.001,2006-09-01,2-s2.0-33747885370,,718-729,16887188.0,33747885370,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33747885370&origin=inward,Shaw,Neuroscience and Biobehavioral Reviews,Brain development in children and adolescents: Insights from anatomical magnetic resonance imaging,Review +,https://api.elsevier.com/content/abstract/scopus_id/0034624843,David MacDonald;Alan C. Evans;Paul M. Thompson;Jay N. Gledd;Roger P. Woods;Arthur W. Toga,655,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0034624843&origin=inward,10.1038/35004593,2000-03-09,2-s2.0-0034624843,,190-193,10724172.0,34624843,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0034624843&origin=inward,Shaw,Nature,Growth patterns in the developing brain detected by using continuum mechanical tensor maps,Article +,https://api.elsevier.com/content/abstract/scopus_id/34347240342,Jason Lerch;Alan C. Evans;Alex P. Zijdenbos;Jonathan D. Blumenthal;Deanna K. Greenstein;Jay N. Giedd;Paul M. Thompson;Rhoshel K. Lenroot;Liv S. Clasen;Gregory L. Wallace;Elizabeth Molloy Wells;Nitin Gogtay,669,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34347240342&origin=inward,10.1016/j.neuroimage.2007.03.053,2007-07-15,2-s2.0-34347240342,,1065-1073,17513132.0,34347240342,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34347240342&origin=inward,Shaw,NeuroImage,Sexual dimorphism of brain developmental trajectories during childhood and adolescence,Article +,https://api.elsevier.com/content/abstract/scopus_id/0037162380,E. H. Aylward;J. Munson;S. D. Friedman;D. Echelard;S. R. Dager;B. F. Sparks;D. W. Shaw;A. A. Artru;K. R. Maravilla;J. N. Giedd;G. Dawson,603,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0037162380&origin=inward,10.1212/WNL.59.2.184,2002-07-23,2-s2.0-0037162380,,184-192,12136055.0,37162380,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0037162380&origin=inward,Shaw,Neurology,Brain structural abnormalities in young children with autism spectrum disorder,Article +,https://api.elsevier.com/content/abstract/scopus_id/40749109804,Jay N. Giedd,437,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=40749109804&origin=inward,10.1016/j.jadohealth.2008.01.007,2008-04-01,2-s2.0-40749109804,,335-343,18346658.0,40749109804,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=40749109804&origin=inward,Shaw,Journal of Adolescent Health,The Teen Brain: Insights from Neuroimaging,Review +,https://api.elsevier.com/content/abstract/scopus_id/33744902596,Keith Worsley;Alan C. Evans;W. Philip Shaw;Deanna K. Greenstein;Rhoshel K. Lenroot;Jay Giedd;Jason P. Lerch,323,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33744902596&origin=inward,10.1016/j.neuroimage.2006.01.042,2006-07-01,2-s2.0-33744902596,,993-1003,16624590.0,33744902596,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33744902596&origin=inward,Shaw,NeuroImage,Mapping anatomical correlations across cerebral cortex (MACACC) using cortical thickness from MRI,Article +,https://api.elsevier.com/content/abstract/scopus_id/7044253600,Judith L. Rapoport;James Semple;Theo G.M. Van Erp;Kiralee M. Hayashi;Tyrone D. Cannon;Greig I. De Zubicaray;Andrew L. Janke;Elizabeth R. Sowell;David M. Doddrell;Yalin Wang;Jay N. Giedd;Paul M. Thompson;Stephen E. Rose;Arthur W. Toga;Nitin Gogtay,293,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=7044253600&origin=inward,10.1016/j.neuroimage.2004.07.071,2004-11-08,2-s2.0-7044253600,,,15501091.0,7044253600,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=7044253600&origin=inward,Rapoport,NeuroImage,"Mapping cortical change in Alzheimer's disease, brain development, and schizophrenia",Conference Paper +,https://api.elsevier.com/content/abstract/scopus_id/0034875926,Herman Van Engeland;Jan K. Buitelaar;Jay N. Giedd;Hilleke E. Hulshoff Pol;B. J. Casey;Sarah Durston,293,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0034875926&origin=inward,10.1097/00004583-200109000-00009,2001-01-01,2-s2.0-0034875926,,1012-1020,11556624.0,34875926,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0034875926&origin=inward,Rapoport,Journal of the American Academy of Child and Adolescent Psychiatry,Anatomical MRI of the developing human brain: What have we learned?,Article +,https://api.elsevier.com/content/abstract/scopus_id/3042606335,Catherine Vaituzis;Martin H. Teicher;Jay N. Giedd;Yutaka Ito;Susan L. Andersen;Nathalie L. Dumont,293,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=3042606335&origin=inward,10.1016/j.biopsych.2004.03.016,2004-07-15,2-s2.0-3042606335,,80-85,15231439.0,3042606335,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=3042606335&origin=inward,Rapoport,Biological Psychiatry,Childhood neglect is associated with reduced corpus callosum area,Article +,https://api.elsevier.com/content/abstract/scopus_id/79956325555,Francois Lalonde;Mike Stockman;Dede Greenstein;Liv Clasen;Jay N. Giedd;Armin Raznahan;Phillip Shaw;Gregory L. Wallace;Nitin Gogtay,317,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79956325555&origin=inward,10.1523/JNEUROSCI.0054-11.2011,2011-05-11,2-s2.0-79956325555,,7174-7177,21562281.0,79956325555,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79956325555&origin=inward,Raznahan,Journal of Neuroscience,How does your cortex grow?,Article +,https://api.elsevier.com/content/abstract/scopus_id/0034952122,Jonathan Blumenthal;F. Xavier Castellanos;Elizabeth Molloy;Jay N. Giedd,271,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0034952122&origin=inward,,2001-01-01,2-s2.0-0034952122,,33-49,11462751.0,34952122,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0034952122&origin=inward,Raznahan,Annals of the New York Academy of Sciences,Brain imaging of attention deficit/hyperactivity disorder,Review +,https://api.elsevier.com/content/abstract/scopus_id/43549089992,Andrew J. Fuligni;Jane D. Brown;Daniel Pine;Linda P. Spear;Adrian Angold;Greg T. Smith;Ronald E. Dahl;Michael Windle;Jay Giedd,248,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=43549089992&origin=inward,10.1542/peds.2007-2243C,2008-04-01,2-s2.0-43549089992,,,18381494.0,43549089992,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=43549089992&origin=inward,Pine,Pediatrics,Transitions into underage and problem drinking: Developmental processes and mechanisms between 10 and 15 years of age,Conference Paper +,https://api.elsevier.com/content/abstract/scopus_id/33750449331,Judith L. Rapoport;Kiralee M. Hayashi;Deanna Greenstein;Liv Clasen;Tom F. Nugent;Jay N. Giedd;Paul M. Thompson;Anna Ordonez;David H. Herman;Arthur W. Toga;Nitin Gogtay,250,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33750449331&origin=inward,10.1002/hipo.20193,2006-11-06,2-s2.0-33750449331,,664-672,16826559.0,33750449331,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33750449331&origin=inward,Rapoport,Hippocampus,Dynamic mapping of normal human hippocampal development,Article +,https://api.elsevier.com/content/abstract/scopus_id/72649104366,Rhoshel K. Lenroot;Jay N. Giedd,240,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=72649104366&origin=inward,10.1016/j.bandc.2009.10.008,2010-02-01,2-s2.0-72649104366,,46-55,19913969.0,72649104366,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=72649104366&origin=inward,Rapoport,Brain and Cognition,Sex differences in the adolescent brain,Review +,https://api.elsevier.com/content/abstract/scopus_id/0033950798,Judith L. Rapoport;Marjorie A. Garvey;Susan E. Swedo;Jay N. Giedd;Susan Perlmutter,196,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0033950798&origin=inward,10.1176/appi.ajp.157.2.281,2000-02-01,2-s2.0-0033950798,,281-283,10671403.0,33950798,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0033950798&origin=inward,Rapoport,American Journal of Psychiatry,MRI assessment of children with obsessive-compulsive disorder or tics associated with streptococcal infection,Article +,https://api.elsevier.com/content/abstract/scopus_id/58149340253,Alan C. Evans;James E. Schmitt;Sarah J. Ordaz;Jay N. Giedd;Rhoshel K. Lenroot;Michael C. Neale;Gregory L. Wallace;Kenneth S. Kendler;Jason P. Lerch,198,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=58149340253&origin=inward,10.1002/hbm.20494,2009-01-01,2-s2.0-58149340253,,163-174,18041741.0,58149340253,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=58149340253&origin=inward,Rapoport,Human Brain Mapping,Differences in genetic and environmental influences on the human cerebral cortex associated with development during childhood and adolescence,Article +,https://api.elsevier.com/content/abstract/scopus_id/34248324435,Judith L. Rapoport;Kristin N. Taylor;Alan Evans;Deanna Greenstein;A. Blythe Rose;Philip Shaw;Jens C. Pruessner;Liv Clasen;Jay N. Giedd;Jason P. Lerch,191,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34248324435&origin=inward,10.1016/S1474-4422(07)70106-0,2007-06-01,2-s2.0-34248324435,,494-500,17509484.0,34248324435,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34248324435&origin=inward,Shaw,Lancet Neurology,Cortical morphology in children and adolescents with different apolipoprotein E gene polymorphisms: an observational study,Article +,https://api.elsevier.com/content/abstract/scopus_id/70349962939,Henning Tiemeier;Deanna K. Greenstein;Ronald Pierson;Jay N. Giedd;Rhoshel K. Lenroot;Lan Tran,200,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=70349962939&origin=inward,10.1016/j.neuroimage.2009.08.016,2010-01-01,2-s2.0-70349962939,,63-70,19683586.0,70349962939,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=70349962939&origin=inward,Shaw,NeuroImage,Cerebellum development during childhood and adolescence: A longitudinal morphometric MRI study,Article +,https://api.elsevier.com/content/abstract/scopus_id/33745927160,Carole A. Samango-Sprouse;Dinggang Shen;Deborah Merke;Dede Greenstein;Elizabeth A. Molloy;Julia W. Tossell;Jonathan D. Blumenthal;George P. Chrousos;Sarah Ordaz;Jay N. Giedd;Liv S. Clasen;Gregory L. Wallace;Rhoshel Lenroot;Catherine Stayer;Christos Davatzikos,173,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33745927160&origin=inward,10.1016/j.mce.2006.04.016,2006-07-25,2-s2.0-33745927160,,154-162,16765510.0,33745927160,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33745927160&origin=inward,Shaw,Molecular and Cellular Endocrinology,Puberty-related influences on brain development,Article +,https://api.elsevier.com/content/abstract/scopus_id/68749110681,Robert W. Blum;Sara B. Johnson;Jay N. Giedd,191,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=68749110681&origin=inward,10.1016/j.jadohealth.2009.05.016,2009-09-01,2-s2.0-68749110681,,216-221,19699416.0,68749110681,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=68749110681&origin=inward,Shaw,Journal of Adolescent Health,Adolescent Maturity and the Brain: The Promise and Pitfalls of Neuroscience Research in Adolescent Health Policy,Review +,https://api.elsevier.com/content/abstract/scopus_id/67650308858,Samantha L. White;Mark J. Celano;Nancy R. Lee;Francois M. Lalonde;Jay N. Giedd;Rhoshel K. Lenroot;Gregory L. Wallace,173,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=67650308858&origin=inward,10.1097/CHI.0b013e31819f2715,2009-01-01,2-s2.0-67650308858,,465-470,19395901.0,67650308858,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=67650308858&origin=inward,Shaw,Journal of the American Academy of Child and Adolescent Psychiatry,Anatomical brain magnetic resonance imaging of typically developing children and adolescents,Article +,https://api.elsevier.com/content/abstract/scopus_id/79952727568,Mary Gilliam;Meaghan Malek;Alan Evans;Deanna Greenstein;Philip Shaw;Wendy Sharp;Judith Rapoport;Catherine Weddle;Jay Giedd;Maria Liverpool,168,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79952727568&origin=inward,10.1176/appi.ajp.2010.10030385,2011-02-01,2-s2.0-79952727568,,143-151,21159727.0,79952727568,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79952727568&origin=inward,Shaw,American Journal of Psychiatry,Cortical development in typically developing children with symptoms of hyperactivity and impulsivity: Support for a dimensional view of attention deficit hyperactivity disorder,Article +,https://api.elsevier.com/content/abstract/scopus_id/78049277844,Judith L. Rapoport;Dede Greenstein;Liv Clasen;Jay N. Giedd;Armin Raznahan;Reva Stidd;Yohan Lee;Robert Long;Nitin Gogtay;Anjene Addington,156,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=78049277844&origin=inward,10.1073/pnas.1006025107,2010-09-28,2-s2.0-78049277844,MRC,16988-16993,20841422.0,78049277844,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=78049277844&origin=inward,Raznahan,Proceedings of the National Academy of Sciences of the United States of America,Longitudinally mapping the influence of sex and androgen signaling on the dynamics of human cortical maturation in adolescence,Article +,https://api.elsevier.com/content/abstract/scopus_id/83255194563,Dede Greenstein;Michael Stockman;Nancy Lee;Liv Clasen;Jay N. Giedd;Armin Raznahan;Gregory L. Wallace;Phillip W. Shaw;Jason P. Lerch,150,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=83255194563&origin=inward,10.1016/j.neuron.2011.09.028,2011-12-08,2-s2.0-83255194563,,873-884,22153381.0,83255194563,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=83255194563&origin=inward,Raznahan,Neuron,Patterns of coordinated anatomical change in human cortical development: A longitudinal neuroimaging study of maturational coupling,Article +,https://api.elsevier.com/content/abstract/scopus_id/84873694011,Ed Bullmore;Aaron Alexander-Bloch;Jay Giedd;Armin Raznahan,160,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84873694011&origin=inward,10.1523/JNEUROSCI.3554-12.2013,2013-02-13,2-s2.0-84873694011,,2889-2899,23407947.0,84873694011,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84873694011&origin=inward,Raznahan,Journal of Neuroscience,The convergence of maturational change and structural covariance in human cortical networks,Article +,https://api.elsevier.com/content/abstract/scopus_id/84870818294,Edward T. Bullmore;Aaron F. Alexander-Bloch;Petra E. Vértes;Liv Clasen;Reva Stidd;François Lalonde;Judith Rapoport;Jay Giedd;Nitin Gogtay,152,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84870818294&origin=inward,10.1093/cercor/bhr388,2013-01-01,2-s2.0-84870818294,,127-138,22275481.0,84870818294,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84870818294&origin=inward,Rapoport,Cerebral Cortex,The anatomical distance of functional connections predicts brain network topology in health and schizophrenia,Article +,https://api.elsevier.com/content/abstract/scopus_id/10744225919,Wael Salameh;Alan Rogol;Bonnie Brinton;Melissa Aylstock;Huntingdon F. Willard;C. Alvin Paulsen;Terry Hassold;Dan Geschwind;John M. Graham;Judith G. Hall;Heino F.L. Meyer-Bahlburg;Niels E. Skakkebaek;Ronald S. Swerdloff;Kyle Boone;Jay Giedd;Felix De La Cruz;Adrian S. Dobs;Catherine Staessen;Joe Leigh Simpson;Carole Samango-Sprouse,130,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=10744225919&origin=inward,10.1097/01.GIM.0000095626.54201.D0,2003-11-01,2-s2.0-10744225919,,460-468,14614399.0,10744225919,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=10744225919&origin=inward,Rapoport,Genetics in Medicine,Klinefelter syndrome: Expanding the phenotype and identifying new research directions,Review +,https://api.elsevier.com/content/abstract/scopus_id/29844439581,Judith L. Rapoport;Yihong Sui;Rob Nicolson;Kiralee M. Hayashi;Peter Gochman;Yasaman Alaghband;Nitin Gogtay;Jay N. Giedd;Paul M. Thompson;Jonathan Blumenthal;Lauren E. McLemore;Arthur W. Toga;Jennifer A. Geaga;Christine N. Vidal,121,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=29844439581&origin=inward,10.1001/archpsyc.63.1.25,2006-01-01,2-s2.0-29844439581,,25-34,16389194.0,29844439581,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=29844439581&origin=inward,Rapoport,Archives of General Psychiatry,Dynamically spreading frontal and cingulate deficits mapped in adolescents with schizophrenia,Article +,https://api.elsevier.com/content/abstract/scopus_id/47649122268,R. K. Lenroot;S. Ordaz;G. L. Wallace;K. S. Kendler;J. E. Schmitt;J. P. Lerch;J. N. Giedd;K. N. Taylor;D. Greenstein;M. C. Neale;N. Kabani,125,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=47649122268&origin=inward,10.1093/cercor/bhm211,2008-08-01,2-s2.0-47649122268,,1737-1747,18234689.0,47649122268,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=47649122268&origin=inward,Rapoport,Cerebral Cortex,Identification of genetically mediated cortical networks: A multivariate study of pediatric twins and siblings,Article +,https://api.elsevier.com/content/abstract/scopus_id/33750395407,Jason Lerch;Peter Gochman;Liv Clasen;Deanna Greenstein;Philip Shaw;Judith Rapoport;Jay Giedd;Nitin Gogtay,112,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33750395407&origin=inward,10.1111/j.1469-7610.2006.01658.x,2006-11-01,2-s2.0-33750395407,,1003-1012,17073979.0,33750395407,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33750395407&origin=inward,Shaw,Journal of Child Psychology and Psychiatry and Allied Disciplines,Childhood onset schizophrenia: Cortical brain abnormalities as young adults,Article +,https://api.elsevier.com/content/abstract/scopus_id/33750413136,Michael A. Rosenthal;Elizabeth A. Molloy;Sarah Ordaz;Jay N. Giedd;J. Eric Schmitt;Essi Viding;Liv S. Clasen;Gregory L. Wallace;Michael C. Neale;Rhoshel Lenroot;Kenneth S. Kendler,114,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33750413136&origin=inward,10.1111/j.1469-7610.2006.01676.x,2006-11-01,2-s2.0-33750413136,,987-993,17073977.0,33750413136,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33750413136&origin=inward,Shaw,Journal of Child Psychology and Psychiatry and Allied Disciplines,A pediatric twin study of brain morphometry,Article +,https://api.elsevier.com/content/abstract/scopus_id/84893429469,Jon Pipitone;Mallar M. Chakravarty;Deanna Greenstein;Jay N. Giedd;Rebecca Berman;Armin Raznahan;Liv S. Clasen;Phillip W. Shaw;Jason P. Lerch,125,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84893429469&origin=inward,10.1073/pnas.1316911111,2014-01-28,2-s2.0-84893429469,,1592-1597,24474784.0,84893429469,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84893429469&origin=inward,Raznahan,Proceedings of the National Academy of Sciences of the United States of America,Longitudinal four-dimensional mapping of subcortical anatomy in human development,Article +,https://api.elsevier.com/content/abstract/scopus_id/84891314298,Francois Lalonde;Jay N. Giedd;Liv S. Clasen;Sarah Jayne Blakemore;Kathryn L. Mills,119,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84891314298&origin=inward,10.1093/scan/nss113,2014-01-01,2-s2.0-84891314298,NIH,123-131,23051898.0,84891314298,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84891314298&origin=inward,Raznahan,Social Cognitive and Affective Neuroscience,Developmental changes in the structure of the social brain in late childhood and adolescence,Article +,https://api.elsevier.com/content/abstract/scopus_id/33846914971,Carole A. Samango-Sprouse;Alan C. Evans;Jean E. Nelson;Julia W. Tossell;Jonathan D. Blumenthal;Jay N. Giedd;Liv S. Clasen;Rhoshel K. Lenroot;Gregory L. Wallace;Elizabeth Molloy Wells;Catherine Stayer;Jason P. Lerch,89,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33846914971&origin=inward,10.1542/peds.2005-2969,2007-01-01,2-s2.0-33846914971,,,17200249.0,33846914971,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33846914971&origin=inward,Raznahan,Pediatrics,XXY (Klinefelter syndrome): A pediatric quantitative brain magnetic resonance imaging case-control study,Article +,https://api.elsevier.com/content/abstract/scopus_id/0035092027,C. Gottschalk;J. N. Giedd;L. K. Jacobsen;T. R. Kosten;J. H. Krystal,87,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0035092027&origin=inward,10.1176/appi.ajp.158.3.486,2001-03-21,2-s2.0-0035092027,,486-489,11229995.0,35092027,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0035092027&origin=inward,Raznahan,American Journal of Psychiatry,Quantitative morphology of the caudate and putamen in patients with cocaine dependence,Article +,https://api.elsevier.com/content/abstract/scopus_id/0038697900,Deborah P. Merke;Margaret F. Keil;Jay N. Giedd;A. Catherine Vaituzis;Jeremy D. Fields;George P. Chrousos,86,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0038697900&origin=inward,10.1210/jc.2002-021730,2003-04-01,2-s2.0-0038697900,,1760-1765,12679470.0,38697900,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0038697900&origin=inward,Raznahan,Journal of Clinical Endocrinology and Metabolism,Children with classic congenital adrenal hyperplasia have decreased amygdala volume: Potential prenatal and postnatal hormonal effects,Article +,https://api.elsevier.com/content/abstract/scopus_id/62149117941,Stephen R. Dager;Seth D. Friedman;Geraldine Dawson;Sara Jane Webb;Bobbi Faun Sparks;Jay Giedd;Dennis W.W. Shaw,87,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=62149117941&origin=inward,10.1016/j.pscychresns.2008.06.001,2009-04-30,2-s2.0-62149117941,NICHD,61-67,19243924.0,62149117941,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=62149117941&origin=inward,Raznahan,Psychiatry Research - Neuroimaging,Cerebellar vermal volumes and behavioral correlates in children with autism spectrum disorder,Article +,https://api.elsevier.com/content/abstract/scopus_id/33746639780,Alan A. Artru;Jay N. Giedd;Seth D. Friedman;Stephen R. Dager;Geraldine Dawson;Bobbi F. Sparks;Dennis W.W. Shaw;Inbal Boger-Megiddo,73,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33746639780&origin=inward,10.1007/s10803-006-0121-2,2006-08-01,2-s2.0-33746639780,NICHD,733-739,16625438.0,33746639780,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33746639780&origin=inward,Raznahan,Journal of Autism and Developmental Disorders,Corpus callosum morphometrics in young children with autism spectrum disorder,Article +,https://api.elsevier.com/content/abstract/scopus_id/79951674630,Francois Lalonde;Michael Stockman;Nancy R. Lee;Jay N. Giedd;Aaron Alexander-Bloch;Rhoshel K. Lenroot;Gregory L. Wallace;Catherine Weddle;Maria Liverpool,76,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79951674630&origin=inward,10.1007/s11065-010-9151-9,2010-12-01,2-s2.0-79951674630,,349-361,21069466.0,79951674630,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79951674630&origin=inward,Raznahan,Neuropsychology Review,Anatomic magnetic resonance imaging of the developing child and adolescent brain and effects of genetic variation,Review +,https://api.elsevier.com/content/abstract/scopus_id/21044458995,E. A. Wiggs;Deborah P. Merke;Margaret F. Keil;Jay N. Giedd;Constantine A. Stratakis;A. Catherine Vaituzis;George P. Chrousos;Sarah L. Mehlinger;Stuart Holzer;Erin Rawson,74,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=21044458995&origin=inward,10.1210/jc.2004-2488,2005-05-01,2-s2.0-21044458995,,2531-2536,15741254.0,21044458995,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=21044458995&origin=inward,Raznahan,Journal of Clinical Endocrinology and Metabolism,Children experience cognitive decline despite reversal of brain atrophy one year after resolution of Cushing syndrome,Article +,https://api.elsevier.com/content/abstract/scopus_id/5744220126,Dinggang Shen;Hong Liu;Liv Clasen;Dengfeng Liu;Jay Giedd;Christos Davatzikos,67,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=5744220126&origin=inward,10.1016/j.neuroimage.2004.08.018,2004-10-01,2-s2.0-5744220126,,648-653,15488414.0,5744220126,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=5744220126&origin=inward,Raznahan,NeuroImage,Automated morphometric study of brain variation in XXY males,Article +,https://api.elsevier.com/content/abstract/scopus_id/33646366688,Alex Leow;Rob Nicolson;Judith L. Rapoport;Kiralee M. Hayashi;Elizabeth R. Sowell;Nitin Gogtay;Jay N. Giedd;Paul M. Thompson;Arthur W. Toga;Christine N. Vidal,65,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33646366688&origin=inward,10.1016/S0074-7742(05)67009-2,2005-12-01,2-s2.0-33646366688,,285-323,16291026.0,33646366688,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33646366688&origin=inward,Rapoport,International Review of Neurobiology,Structural MRI and Brain Development,Review +,https://api.elsevier.com/content/abstract/scopus_id/0033925811,Allan L. Reiss;Judith M. Rumsey;Jay N. Giedd;Anil J. Patwardhan;J. Eric Schmitt;Stephan Eliez,61,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0033925811&origin=inward,10.1111/1469-7610.00650,2000-01-01,2-s2.0-0033925811,,637-644,10946755.0,33925811,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0033925811&origin=inward,Rapoport,Journal of Child Psychology and Psychiatry and Allied Disciplines,Morphological alteration of temporal lobe gray matter in dyslexia: An MRI study,Article +,https://api.elsevier.com/content/abstract/scopus_id/2442677843,Julio Araque;Manuel F. Casanova;Jay Giedd;Judith M. Rumsey,61,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=2442677843&origin=inward,10.1177/088307380401900407,2004-01-01,2-s2.0-2442677843,,275-281,15163094.0,2442677843,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=2442677843&origin=inward,Rapoport,Journal of Child Neurology,Reduced brain size and gyrification in the brains of dyslexic patients,Article +,https://api.elsevier.com/content/abstract/scopus_id/35348991547,Lisa T. Eyler;William S. Kremen;Jay N. Giedd;J. Eric Schmitt;Michael C. Neale;Kenneth S. Kendler,66,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=35348991547&origin=inward,10.1375/twin.10.5.683,2007-10-01,2-s2.0-35348991547,,683-694,17903108.0,35348991547,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=35348991547&origin=inward,Rapoport,Twin Research and Human Genetics,Review of twin and family studies on neuroanatomic phenotypes and typical neurodevelopment,Review +,https://api.elsevier.com/content/abstract/scopus_id/79958107525,Seth Friedman;Jay N. Giedd;Stephen R. Dager;Geraldine Dawson;Matthew Bryan;Annette Estes;Bobbi F. Sparks;Dennis W.W. Shaw,73,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79958107525&origin=inward,10.1002/aur.193,2011-06-01,2-s2.0-79958107525,,212-220,21480545.0,79958107525,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79958107525&origin=inward,Rapoport,Autism Research,Basal ganglia morphometry and repetitive behavior in young children with autism spectrum disorder,Article +,https://api.elsevier.com/content/abstract/scopus_id/53849133096,Rhoshel K. Lenroot;Jay N. Giedd,67,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=53849133096&origin=inward,10.1017/S0954579408000552,2008-10-20,2-s2.0-53849133096,,1161-1175,18838036.0,53849133096,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=53849133096&origin=inward,Rapoport,Development and Psychopathology,The changing impact of genes and environment on brain development during childhood and adolescence: Initial findings from a neuroimaging study of pediatric twins,Article +,https://api.elsevier.com/content/abstract/scopus_id/67349203979,Aly Farag;Glenn Mannheim;Manuel F. Casanova;Ayman El-Baz;Judith M. Rumsey;Hossam Hassan;Rachid Fahmi;Andrew E. Switala;Jay Giedd;Meghan Mott,54,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=67349203979&origin=inward,10.1007/s10803-008-0681-4,2009-05-01,2-s2.0-67349203979,,751-764,19148739.0,67349203979,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=67349203979&origin=inward,Rapoport,Journal of Autism and Developmental Disorders,Reduced gyral window and corpus callosum size in autism: Possible macroscopic correlates of a minicolumnopathy,Article +,https://api.elsevier.com/content/abstract/scopus_id/34249795175,James Eric Schmitt;Michael C. Neale;Jay N. Giedd,52,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34249795175&origin=inward,10.1002/hbm.20403,2007-06-01,2-s2.0-34249795175,,474-481,17437295.0,34249795175,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34249795175&origin=inward,Rapoport,Human Brain Mapping,Structural brain magnetic resonance imaging of pediatric twins,Review +,https://api.elsevier.com/content/abstract/scopus_id/33846946830,Michael A. Rosenthal;Elizabeth A. Molloy;Jonathan D. Blumenthal;Sarah Ordaz;Jay N. Giedd;J. Eric Schmitt;Liv S. Clasen;Michael C. Neale;Gregory L. Wallace;Rhoshel Lenroot;Kenneth S. Kendler,50,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33846946830&origin=inward,10.1016/j.neuroimage.2006.04.232,2007-03-01,2-s2.0-33846946830,,70-82,17208460.0,33846946830,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33846946830&origin=inward,Rapoport,NeuroImage,A multivariate analysis of neuroanatomic relationships in a genetically informative pediatric sample,Article +,https://api.elsevier.com/content/abstract/scopus_id/0033920114,Jay N. Giedd,45,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0033920114&origin=inward,,2000-07-25,2-s2.0-0033920114,,31-34,10826658.0,33920114,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0033920114&origin=inward,Rapoport,Journal of Clinical Psychiatry,Bipolar disorder and attention-deficit/hyperactivity disorder in children and adolescents,Review +,https://api.elsevier.com/content/abstract/scopus_id/0036331288,Alex Zijdenbos;Jonathan D. Blumenthal;Elizabeth Molloy;Jay N. Giedd,51,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0036331288&origin=inward,10.1006/nimg.2002.1076,2002-01-01,2-s2.0-0036331288,,89-92,,36331288,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0036331288&origin=inward,Rapoport,NeuroImage,Motion artifact in magnetic resonance imaging: Implications for automated analysis,Article +,https://api.elsevier.com/content/abstract/scopus_id/48849100747,Francois Lalonde;Mark Celano;Julia Tossell;Anjene Addington;Jay N. Giedd;Philip Shaw;Rhoshel K. Lenroot;Nitin Gogtay;Samantha White,40,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=48849100747&origin=inward,,2008-11-19,2-s2.0-48849100747,,101-112,18497098.0,48849100747,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=48849100747&origin=inward,Shaw,Novartis Foundation Symposium,Trajectories of anatomic brain development as a phenotype,Conference Paper +,https://api.elsevier.com/content/abstract/scopus_id/73749084874,Francois Lalonde;Judith Ross;J. P. Lerch;Jay N. Giedd;Armin Raznahan;William Cutter;Eileen Daly;Gerard S. Conway;David H. Skuse;Dene Robertson;Declan D.G.M. Murphy,40,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=73749084874&origin=inward,10.1016/j.neuroimage.2009.11.057,2010-02-15,2-s2.0-73749084874,,2915-2923,19948228.0,73749084874,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=73749084874&origin=inward,Raznahan,NeuroImage,Cortical anatomy in human X monosomy,Article +,https://api.elsevier.com/content/abstract/scopus_id/73849105651,Nancy Raitano Lee;Rhoshel K. Lenroot;Jay N. Giedd,39,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=73849105651&origin=inward,10.1002/ddrr.86,2009-01-01,2-s2.0-73849105651,,318-327,,73849105651,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=73849105651&origin=inward,Raznahan,Developmental Disabilities Research Reviews,Effects of sex chromosome aneuploidies on brain development: Evidence from neuroimaging studies,Article +,https://api.elsevier.com/content/abstract/scopus_id/0036086106,Mark A. Eckert;Elizabeth A. Molloy;Christiana M. Leonard;Jay N. Giedd;Alex Zijdenbos;Jonathan Blumenthal,34,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0036086106&origin=inward,,2002-07-04,2-s2.0-0036086106,,749-755,12050086.0,36086106,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0036086106&origin=inward,Raznahan,Cerebral Cortex,The epigenesis of planum temporale asymmetry in twins,Article +,https://api.elsevier.com/content/abstract/scopus_id/67349236042,Sarah E. Ordaz;Alan C. Evans;Elizabeth C. Prom;Jay N. Giedd;J. Eric Schmitt;Rhoshel K. Lenroot;Michael C. Neale;Gregory L. Wallace;Kenneth S. Kendler;Jason P. Lerch,37,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=67349236042&origin=inward,10.1016/j.neuroimage.2008.06.039,2009-08-01,2-s2.0-67349236042,,56-64,18672072.0,67349236042,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=67349236042&origin=inward,Raznahan,NeuroImage,Variance decomposition of MRI-based covariance maps using genetically informative samples and structural equation modeling,Article +,https://api.elsevier.com/content/abstract/scopus_id/84859340821,Alex Martin;Jay N. Giedd;Philip Shaw;Armin Raznahan;Nancy Raitano Lee;Liv S. Clasen;Rhoshel K. Lenroot;Gregory L. Wallace,37,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84859340821&origin=inward,10.1523/JNEUROSCI.6214-11.2012,2012-04-04,2-s2.0-84859340821,,4856-4860,22492041.0,84859340821,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84859340821&origin=inward,Shaw,Journal of Neuroscience,Distinct cortical correlates of autistic versus antisocial traits in a longitudinal sample of typically developing youth,Article +,https://api.elsevier.com/content/abstract/scopus_id/66149108700,Jay N. Giedd;Francesca Happé;Gregory L. Wallace,30,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=66149108700&origin=inward,10.1098/rstb.2008.0330,2009-01-01,2-s2.0-66149108700,,1425-1432,19528026.0,66149108700,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=66149108700&origin=inward,Shaw,Philosophical Transactions of the Royal Society B: Biological Sciences,A case study of a multiply talented savant with an autism spectrum disorder: Neuropsychological functioning and brain morphometry,Article +,https://api.elsevier.com/content/abstract/scopus_id/70349995040,Andrew J. Fuligni;Jane D. Brown;Daniel Pine;Linda P. Spear;Adrian Angold;Greg T. Smith;Ronald E. Dahl;Michael Windle;Jay Giedd,31,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=70349995040&origin=inward,,2009-10-20,2-s2.0-70349995040,,30-40,,70349995040,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=70349995040&origin=inward,Pine,Alcohol Research and Health,Transitions into underage and problem drinking: Summary of developmental processes and mechanisms: Ages 10-15,Article +,https://api.elsevier.com/content/abstract/scopus_id/62849124525,G. L. Wallace;A. Addington;J. N. Giedd;A. Evans;P. Shaw;J. Rapoport,30,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=62849124525&origin=inward,10.1038/mp.2008.121,2009-04-01,2-s2.0-62849124525,,348-349,19308019.0,62849124525,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=62849124525&origin=inward,Shaw,Molecular Psychiatry,Effects of the Val158Met catechol-O-methyltransferase polymorphism on cortical structure in children and adolescents,Letter +,https://api.elsevier.com/content/abstract/scopus_id/84867076609,Jonathan D. Blumenthal;Jay N. Giedd;Nancy Raitano Lee;Katherine C. Lopez;Elizabeth I. Adeyemi;Liv S. Clasen;Gregory L. Wallace,31,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84867076609&origin=inward,10.1111/j.1469-7610.2012.02573.x,2012-10-01,2-s2.0-84867076609,,1072-1081,22827287.0,84867076609,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84867076609&origin=inward,Shaw,Journal of Child Psychology and Psychiatry and Allied Disciplines,Dosage effects of X and y chromosomes on language and social functioning in children with supernumerary sex chromosome aneuploidies: Implications for idiopathic language impairment and autism spectrum disorders,Article +,https://api.elsevier.com/content/abstract/scopus_id/84871442139,Alexis Hedrick;Liv Clasen;Deanna Greenstein;Jay N. Giedd;Armin Raznahan;Yohan Lee;Gregory L. Wallace,28,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84871442139&origin=inward,10.1002/aur.1256,2012-12-01,2-s2.0-84871442139,,434-439,23097380.0,84871442139,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84871442139&origin=inward,Raznahan,Autism Research,Autism Risk Gene MET Variation and Cortical Thickness in Typically Developing Children and Adolescents,Article +,https://api.elsevier.com/content/abstract/scopus_id/77949264840,Sarah E. Ordaz;Dede Greenstein;Liv Clasen;Jay N. Giedd;J. Eric Schmitt;Rhoshel K. Lenroot;Michael C. Neale;Gregory L. Wallace;Kenneth S. Kendler,24,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77949264840&origin=inward,10.1007/s10519-010-9332-6,2010-03-01,2-s2.0-77949264840,,114-124,20112130.0,77949264840,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77949264840&origin=inward,Raznahan,Behavior Genetics,A twin study of intracerebral volumetric relationships,Article +,https://api.elsevier.com/content/abstract/scopus_id/84871724113,Marta Gozzi;Susan E. Swedo;Sarah J. Spence;Jay N. Giedd;Armin Raznahan;Audrey Thurm;Allison Hanley;Rhoshel Lenroot,28,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84871724113&origin=inward,10.1016/j.nicl.2012.10.005,2013-01-07,2-s2.0-84871724113,,111-119,,84871724113,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84871724113&origin=inward,Raznahan,NeuroImage: Clinical,Mapping cortical anatomy in preschool aged children with autism using surface-based morphometry,Article +,https://api.elsevier.com/content/abstract/scopus_id/0141870005,Jay N. Giedd,20,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0141870005&origin=inward,10.1521/bumc.67.2.132.23445,2003-03-01,2-s2.0-0141870005,,132-142,14604098.0,141870005,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0141870005&origin=inward,Raznahan,Bulletin of the Menninger Clinic,The anatomy of mentalization: A view from developmental neuroimaging,Conference Paper +,https://api.elsevier.com/content/abstract/scopus_id/14544289969,Michael A. Rosenthal;Deborah P. Merke;A. Blythe Rose;Jay N. Giedd;A. Catherine Vaituzis;Jeremy D. Fields;Liv S. Clasen;Gregory L. Wallace,20,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=14544289969&origin=inward,10.1196/annals.1314.027,2004-01-01,2-s2.0-14544289969,,231-233,15677417.0,14544289969,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=14544289969&origin=inward,Raznahan,Annals of the New York Academy of Sciences,Effects of hormones and sex chromosomes on stress-influenced regions of the developing pediatric brain,Conference Paper +,https://api.elsevier.com/content/abstract/scopus_id/77949267592,James E. Schmitt;Jay N. Giedd;Nancy Raitano Lee;Rhoshel K. Lenroot;Liv S. Clasen;Michael C. Neale;Gregory L. Wallace;Elizabeth C. Prom-Wormley;Sarah E. Medland,20,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77949267592&origin=inward,10.1007/s10519-009-9329-1,2010-03-01,2-s2.0-77949267592,,125-134,20112131.0,77949267592,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77949267592&origin=inward,Raznahan,Behavior Genetics,A bivariate twin study of regional brain volumes and verbal and nonverbal intellectual skills during childhood and adolescence,Article +,https://api.elsevier.com/content/abstract/scopus_id/70349101247,Jay N. Giedd,20,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=70349101247&origin=inward,10.1016/j.jadohealth.2009.07.007,2009-10-01,2-s2.0-70349101247,,319-320,19766933.0,70349101247,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=70349101247&origin=inward,Raznahan,Journal of Adolescent Health,"Linking Adolescent Sleep, Brain Maturation, and Behavior",Editorial +,https://api.elsevier.com/content/abstract/scopus_id/0035002285,Allan L. Reiss;Chris D. White;Gary H. Glover;Jay N. Giedd;Anil J. Patwardhan;Donald C. Rojas;Ilana S. Warsofsky;Bradley S. Peterson;Stephan Eliez,18,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0035002285&origin=inward,10.1097/00004728-200105000-00020,2001-05-26,2-s2.0-0035002285,,452-457,11351198.0,35002285,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0035002285&origin=inward,Raznahan,Journal of Computer Assisted Tomography,Effects of image orientation on the comparability of pediatric brain volumes using three-dimensional MR data,Article +,https://api.elsevier.com/content/abstract/scopus_id/0035283391,Thomas R. Kosten;Leslie K. Jacobsen;Mary Jeanne Kreek;Jay N. Giedd;Christopher Gottschalk,17,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0035283391&origin=inward,10.1016/S0376-8716(00)00159-9,2001-03-01,2-s2.0-0035283391,,49-56,11173167.0,35283391,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0035283391&origin=inward,Raznahan,Drug and Alcohol Dependence,Quantitative medial temporal lobe brain morphology and hypothalamic-pituitary-adrenal axis function in cocaine dependence: A preliminary report,Article +,https://api.elsevier.com/content/abstract/scopus_id/32644444942,Louise M. Ryan;Jaroslaw Harezlak;Nicholas Lange;Jay N. Giedd,19,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=32644444942&origin=inward,10.1111/j.1541-0420.2005.00376.x,2005-12-01,2-s2.0-32644444942,,1037-1048,16401277.0,32644444942,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=32644444942&origin=inward,Raznahan,Biometrics,Individual and population penalized regression splines for accelerated longitudinal designs,Article +,https://api.elsevier.com/content/abstract/scopus_id/77249137696,Manuel F. Casanova;Judith M. Rumsey;Andrew E. Switala;Jay Giedd;Ayman S. El-Baz,15,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77249137696&origin=inward,10.1007/s10803-009-0817-1,2010-01-01,2-s2.0-77249137696,,21-29,19609661.0,77249137696,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77249137696&origin=inward,Raznahan,Journal of Autism and Developmental Disorders,Increased white matter gyral depth in dyslexia: Implications for corticocortical connectivity,Article +,https://api.elsevier.com/content/abstract/scopus_id/77950800300,R. K. Lenroot;G. L. Wallace;L. S. Clasen;J. E. Schmitt;J. N. Giedd;S. J. Ordaz;J. D. Blumenthal,14,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77950800300&origin=inward,10.1111/j.1601-183X.2009.00558.x,2010-04-01,2-s2.0-77950800300,,288-295,20100212.0,77950800300,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77950800300&origin=inward,Raznahan,"Genes, Brain and Behavior",Are there differences in brain morphometry between twins and unrelated singletons? A pediatric MRI study,Article +,https://api.elsevier.com/content/abstract/scopus_id/31144441383,Gregory C. Postel;David L. Garver;James D. Christensen;Manuel F. Cassanova;Jay Giedd;Judith M. Ramsey,11,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=31144441383&origin=inward,10.1177/08830738050200101401,2005-10-01,2-s2.0-31144441383,,842-847,16417884.0,31144441383,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=31144441383&origin=inward,Raznahan,Journal of Child Neurology,Magnetic resonance imaging study of brain asymmetries in dyslexic patients,Article +,https://api.elsevier.com/content/abstract/scopus_id/79952347304,Emily L. Williams;Ahmed Elnakib;Manuel F. Casanova;Ayman El-Baz;Judith M. Rumsey;Andrew E. Switala;Jay Giedd,13,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79952347304&origin=inward,10.2478/v10134-010-0017-8,2010-06-01,2-s2.0-79952347304,,124-130,,79952347304,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79952347304&origin=inward,Raznahan,Translational Neuroscience,Corpus callosum shape analysis with application to dyslexia,Article +,https://api.elsevier.com/content/abstract/scopus_id/84873427415,Jonathan D. Blumenthal;Eva H. Baker;Benjamin Wade;Jay N. Giedd;Nancy Raitano Lee;Liv S. Clasen;Rhoshel K. Lenroot,10,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84873427415&origin=inward,10.1016/j.nicl.2013.01.003,2013-02-12,2-s2.0-84873427415,,197-203,,84873427415,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84873427415&origin=inward,Raznahan,NeuroImage: Clinical,"Brain morphological abnormalities in 49,XXXXY syndrome: A pediatric magnetic resonance imaging study",Article +,https://api.elsevier.com/content/abstract/scopus_id/84865338870,Catherine Vaituzis;Francois Lalonde;Dede Greenstein;Ron Pierson;Henning Tiemeier;Liv Clasen;Jay N. Giedd;Armin Raznahan;Yohan Lee;Lan Tran;Susan Mackie,9,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84865338870&origin=inward,10.1002/aur.238,2012-04-01,2-s2.0-84865338870,,93-100,22359339.0,84865338870,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84865338870&origin=inward,Raznahan,Autism Research,Allelic variation within the putative autism spectrum disorder risk gene homeobox A1 and cerebellar maturation in typically developing children and adolescents,Article +,https://api.elsevier.com/content/abstract/scopus_id/84875380678,Francois Lalonde;Benjamin Wade;Liv Clasen;Jay N. Giedd;Katherine C. Lopez;Judith Rapoport;Anand Mattai,7,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84875380678&origin=inward,10.1016/j.pscychresns.2012.10.012,2013-04-30,2-s2.0-84875380678,,1-6,23453697.0,84875380678,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84875380678&origin=inward,Rapoport,Psychiatry Research - Neuroimaging,Quantitative morphology of the corpus callosum in obsessive-compulsive disorder,Article +,https://api.elsevier.com/content/abstract/scopus_id/0035019475,J. N. Giedd,6,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0035019475&origin=inward,10.1001/archpsyc.58.5.443,2001-01-01,2-s2.0-0035019475,,443-444,11343522.0,35019475,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0035019475&origin=inward,Rapoport,Archives of General Psychiatry,Neuroimaging of pediatric neuropsychiatric disorders: Is a picture really worth a thousand words?,Note +,https://api.elsevier.com/content/abstract/scopus_id/84875364569,Francois Lalonde;Michael Stockman;Michael Joseph McLaughlin;Jay Norman Giedd;Armin Raznahan;Benjamin Seavey Cutler Wade,5,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84875364569&origin=inward,10.1016/j.pscychresns.2012.05.004,2013-03-30,2-s2.0-84875364569,,221-225,23149042.0,84875364569,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84875364569&origin=inward,Raznahan,Psychiatry Research - Neuroimaging,Improved corpus callosum area measurements by analysis of adjoining parasagittal slices,Article +,https://api.elsevier.com/content/abstract/scopus_id/68749109390,Jay Giedd;Stacy S. Drury,0,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=68749109390&origin=inward,10.1097/CHI.0b013e3181a5e413,2009-01-01,2-s2.0-68749109390,,677-678,19542819.0,68749109390,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=68749109390&origin=inward,Raznahan,Journal of the American Academy of Child and Adolescent Psychiatry,In this issue/abstract thinking: Inside the adolescent brain,Article +,https://api.elsevier.com/content/abstract/scopus_id/37149022852,Nitin Gogtay,76,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=37149022852&origin=inward,10.1093/schbul/sbm103,2008-01-01,2-s2.0-37149022852,,30-36,17906336.0,37149022852,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=37149022852&origin=inward,Raznahan,Schizophrenia Bulletin,Cortical brain development in schizophrenia: Insights from neuroimaging studies in childhood-onset schizophrenia,Review +,https://api.elsevier.com/content/abstract/scopus_id/33750325819,Jordan Grafman;Jorge Moll;Frank Krueger;Matteo Pardini;Ricardo De Oliveira-Souza;Roland Zahn,484,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33750325819&origin=inward,10.1073/pnas.0604475103,2006-10-17,2-s2.0-33750325819,,15623-15628,17030808.0,33750325819,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33750325819&origin=inward,Raznahan,Proceedings of the National Academy of Sciences of the United States of America,Human fronto-mesolimbic networks guide decisions about charitable donation,Article +,https://api.elsevier.com/content/abstract/scopus_id/0037315630,Jordan Grafman;Jacqueline N. Wood,425,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0037315630&origin=inward,10.1038/nrn1033,2003-01-01,2-s2.0-0037315630,,139-147,12563285.0,37315630,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0037315630&origin=inward,Raznahan,Nature Reviews Neuroscience,Human prefrontal cortex: Processing and representational perspectives,Article +,https://api.elsevier.com/content/abstract/scopus_id/0036335669,Ricardo De Oliveira-Souza;Jordan Grafman;Jorge Moll;Ivanei E. Bramati,301,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0036335669&origin=inward,10.1006/nimg.2002.1118,2002-01-01,2-s2.0-0036335669,,696-703,,36335669,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0036335669&origin=inward,Raznahan,NeuroImage,Functional networks in emotional moral and nonmoral social judgments,Article +,https://api.elsevier.com/content/abstract/scopus_id/34547511134,Jordan Grafman;Jorge Moll;Frank Krueger;Griselda Garrido;Roland Zahn;Edward D. Huey,262,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34547511134&origin=inward,10.1073/pnas.0607061104,2007-04-10,2-s2.0-34547511134,,6430-6435,17404215.0,34547511134,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34547511134&origin=inward,Raznahan,Proceedings of the National Academy of Sciences of the United States of America,Social concepts are represented in the superior anterior temporal cortex,Article +,https://api.elsevier.com/content/abstract/scopus_id/38049112572,Jordan Grafman;Jorge Moll;Armin Heinecke;Maren Strenziok;Frank Krueger;Nikolaus Kriegeskorte;Roland Zahn;Kevin McCabe,204,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=38049112572&origin=inward,10.1073/pnas.0710103104,2007-12-11,2-s2.0-38049112572,,20084-20089,18056800.0,38049112572,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=38049112572&origin=inward,Raznahan,Proceedings of the National Academy of Sciences of the United States of America,Neural correlates of trust,Article +,https://api.elsevier.com/content/abstract/scopus_id/58449086165,Jordan Grafman;Mirella Paiva;Jorge Moll;Frank Krueger;Griselda Garrido;Roland Zahn;Edward D. Huey,180,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=58449086165&origin=inward,10.1093/cercor/bhn080,2009-02-01,2-s2.0-58449086165,,276-283,18502730.0,58449086165,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=58449086165&origin=inward,Raznahan,Cerebral Cortex,The neural basis of human social values: Evidence from functional MRI,Article +,https://api.elsevier.com/content/abstract/scopus_id/54049108530,P. F. Nichelli;E. D. Huey;F. Krueger;G. Zamboni;J. Grafman,152,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=54049108530&origin=inward,10.1212/01.wnl.0000324920.96835.95,2008-09-02,2-s2.0-54049108530,,736-742,18765649.0,54049108530,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=54049108530&origin=inward,Raznahan,Neurology,Apathy and disinhibition in frontotemporal dementia: Insights into their neural correlates,Article +,https://api.elsevier.com/content/abstract/scopus_id/34447525749,Jordan Grafman;Mirella L.M.F. Paiva;Jorge Moll;Griselda J. Garrido;Ricardo de Oliveira-Souza;Egas M.A. Caparelli-Daquer;Roland Zahn;Ivanei E. Bramati,140,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34447525749&origin=inward,10.1080/17470910701392024,2007-01-01,2-s2.0-34447525749,CNPq,336-352,18633822.0,34447525749,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34447525749&origin=inward,Raznahan,Social Neuroscience,The self as a moral agent: Linking the neural bases of social agency and moral sensitivity,Article +,https://api.elsevier.com/content/abstract/scopus_id/0036741224,Jordan Grafman;Jean Claude Dreher;Syed Omar Ali;Etienne Koechlin,129,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0036741224&origin=inward,10.1006/nimg.2002.1169,2002-01-01,2-s2.0-0036741224,,95-109,12482070.0,36741224,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0036741224&origin=inward,Raznahan,NeuroImage,The roles of timing and task order during task switching,Article +,https://api.elsevier.com/content/abstract/scopus_id/63849207252,Jordan Grafman;Dimitrios Kapogiannis;Frank Krueger;Giovanna Zamboni;Michael Su;Aron K. Barbey,135,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=63849207252&origin=inward,10.1073/pnas.0811717106,2009-03-24,2-s2.0-63849207252,,4876-4881,19273839.0,63849207252,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=63849207252&origin=inward,Raznahan,Proceedings of the National Academy of Sciences of the United States of America,Cognitive and neural foundations of religious belief,Article +,https://api.elsevier.com/content/abstract/scopus_id/0037379819,Jordan Grafman;Jean Claude Dreher,114,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0037379819&origin=inward,10.1093/cercor/13.4.329,2003-04-01,2-s2.0-0037379819,,329-339,12631562.0,37379819,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0037379819&origin=inward,Raznahan,Cerebral Cortex,Dissociating the roles of the rostral anterior cingulate and the lateral prefrontal cortices in performing two tasks simultaneously or successively,Article +,https://api.elsevier.com/content/abstract/scopus_id/0036428729,Jordan Grafman;Jean Claude Dreher,111,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0036428729&origin=inward,10.1046/j.1460-9568.2002.02212.x,2002-01-01,2-s2.0-0036428729,,1609-1619,12405975.0,36428729,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0036428729&origin=inward,Raznahan,European Journal of Neuroscience,The roles of the cerebellum and basal ganglia in timing and error prediction,Article +,https://api.elsevier.com/content/abstract/scopus_id/64849090602,Jordan Grafman;Jorge Moll;Michael Tierney;Vijeth Iyengar;Frank Krueger;Roland Zahn;Edward D. Huey,108,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=64849090602&origin=inward,10.1093/brain/awn343,2009-03-01,2-s2.0-64849090602,,604-616,19153155.0,64849090602,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=64849090602&origin=inward,Raznahan,Brain,Social conceptual impairments in frontotemporal lobar degeneration with right anterior temporal hypometabolism,Article +,https://api.elsevier.com/content/abstract/scopus_id/35148839423,Jordan Grafman;Linda Mah;Charlotte F. Manly;Kristine M. Knutson,96,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=35148839423&origin=inward,10.1002/hbm.20320,2007-10-01,2-s2.0-35148839423,,915-930,17133388.0,35148839423,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=35148839423&origin=inward,Raznahan,Human Brain Mapping,Neural correlates of automatic beliefs about gender and race,Article +,https://api.elsevier.com/content/abstract/scopus_id/28244480421,Jordan Grafman;Maria Vittoria Spampinato;Laurence Fiddick,67,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=28244480421&origin=inward,10.1016/j.neuroimage.2005.05.033,2005-12-01,2-s2.0-28244480421,,778-786,15994098.0,28244480421,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=28244480421&origin=inward,Raznahan,NeuroImage,Social contracts and precautions activate different neurological systems: An fMRI investigation of deontic reasoning,Article +,https://api.elsevier.com/content/abstract/scopus_id/0037130475,Jordan Grafman;Adrian Danek;Yves Burnod;Etienne Koechlin,63,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0037130475&origin=inward,10.1016/S0896-6273(02)00742-0,2002-07-18,2-s2.0-0037130475,,371-381,,37130475,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0037130475&origin=inward,Raznahan,Neuron,Medial prefrontal and subcortical mechanisms underlying the acquisition of motor and cognitive action sequences in humans,Article +,https://api.elsevier.com/content/abstract/scopus_id/34047224991,J. R. Murrell;M. A. Baraibar;B. Ghetti;R. Vidal;E. D. Huey;E. M. Wassermann;J. Grafman;A. G. Barbeito;P. Pietrini;S. Spina;J. C. Troncoso,62,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34047224991&origin=inward,10.1212/01.wnl.0000254460.31273.2d,2007-01-01,2-s2.0-34047224991,,820-827,17202431.0,34047224991,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34047224991&origin=inward,Wassermann,Neurology,Clinicopathologic features of frontotemporal dementia with Progranulin sequence variation,Article +,https://api.elsevier.com/content/abstract/scopus_id/33847043309,Jordan Grafman;Maria V. Spampinato;Jacqueline N. Wood;Kristine M. Knutson,56,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33847043309&origin=inward,10.1080/17470910600670603,2006-01-01,2-s2.0-33847043309,,25-40,17372621.0,33847043309,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33847043309&origin=inward,Wassermann,Social neuroscience,Politics on the brain: an FMRI investigation.,Article +,https://api.elsevier.com/content/abstract/scopus_id/34948857902,Jordan Grafman;Jorge Moll;Frank Krueger;Armin Heinecke;Roland Zahn,56,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34948857902&origin=inward,10.1093/cercor/bhl143,2007-10-01,2-s2.0-34948857902,,2346-2353,17190970.0,34948857902,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34948857902&origin=inward,Wassermann,Cerebral Cortex,Event frequency modulates the processing of daily life activities in human medial prefrontal cortex,Article +,https://api.elsevier.com/content/abstract/scopus_id/13844310732,Jordan Grafman;Jacqueline N. Wood;Kristine M. Knutson,51,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=13844310732&origin=inward,10.1016/j.neuroimage.2004.08.012,2004-01-01,2-s2.0-13844310732,,1299-1307,15589094.0,13844310732,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=13844310732&origin=inward,Wassermann,NeuroImage,Brain activation in processing temporal sequence: An fMRI study,Article +,https://api.elsevier.com/content/abstract/scopus_id/2442437936,Jordan Grafman;Vinod Goel;Milan Makale,54,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=2442437936&origin=inward,10.1162/089892904323057362,2004-05-01,2-s2.0-2442437936,,654-664,15165354.0,2442437936,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=2442437936&origin=inward,Wassermann,Journal of Cognitive Neuroscience,The hippocampal system mediates logical reasoning about familiar spatial environments,Article +,https://api.elsevier.com/content/abstract/scopus_id/0037440872,M. Makale;J. N. Wood;S. G. Romero;Jordan Grafman,42,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0037440872&origin=inward,10.1162/089892903321208178,2003-02-15,2-s2.0-0037440872,,236-248,12676061.0,37440872,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0037440872&origin=inward,Wassermann,Journal of Cognitive Neuroscience,Category-specific representations of social and nonsocial knowledge in the human prefrontal cortex,Article +,https://api.elsevier.com/content/abstract/scopus_id/0037472345,Paolo Nichelli;Jordan Grafman;Matthew Peterson;Charles M. Wharton;Gianpaolo Basso,38,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0037472345&origin=inward,10.1016/S0361-9230(02)00941-3,2003-01-30,2-s2.0-0037472345,,405-411,12507693.0,37472345,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0037472345&origin=inward,Wassermann,Brain Research Bulletin,Distributed neural systems for temporal production: A functional MRI study,Article +,https://api.elsevier.com/content/abstract/scopus_id/33750966722,Jordan Grafman;Jan Kassubek;John Butman;Adrian Danek;Karsten Henkel,39,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33750966722&origin=inward,10.1002/mds.21046,2006-10-01,2-s2.0-33750966722,,1728-1731,16874760.0,33750966722,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33750966722&origin=inward,Wassermann,Movement Disorders,Head of the caudate nucleus is most vulnerable in Chorea - Acanthocytosis: A voxel-based morphometry study,Article +,https://api.elsevier.com/content/abstract/scopus_id/13544274265,Jordan Grafman;Stephen G. Romero;Jacqueline N. Wood;Kristine M. Knutson,31,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=13544274265&origin=inward,10.1016/j.neuropsychologia.2004.11.011,2005-01-01,2-s2.0-13544274265,,249-259,15707909.0,13544274265,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=13544274265&origin=inward,Wassermann,Neuropsychologia,"Representation of attitudinal knowledge: Role of prefrontal cortex, amygdala and parahippocampal gyrus",Conference Paper +,https://api.elsevier.com/content/abstract/scopus_id/70249145763,Melanie Stollstorff;Vinod Goel;Jordan Grafman;Kris Knutson;Marina Nakic,31,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=70249145763&origin=inward,10.1016/j.neuropsychologia.2009.06.002,2009-11-01,2-s2.0-70249145763,,2790-2797,19523967.0,70249145763,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=70249145763&origin=inward,Wassermann,Neuropsychologia,A role for right ventrolateral prefrontal cortex in reasoning about indeterminate relations,Article +,https://api.elsevier.com/content/abstract/scopus_id/25444512196,Jordan Grafman;Jacqueline N. Wood;Kristine M. Knutson,29,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=25444512196&origin=inward,10.1093/cercor/bhh215,2005-08-01,2-s2.0-25444512196,,1155-1161,15563720.0,25444512196,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=25444512196&origin=inward,Wassermann,Cerebral Cortex,Psychological structure and neural correlates of event knowledge,Article +,https://api.elsevier.com/content/abstract/scopus_id/79960942747,Elke Van der meer;Jordan Grafman;Maren Strenziok;Gopikrishna Deshpande;Frank Krueger;Rhoshel K. Lenroot,32,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79960942747&origin=inward,10.1093/scan/nsq079,2011-10-01,2-s2.0-79960942747,,537-547,20934985.0,79960942747,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79960942747&origin=inward,Wassermann,Social Cognitive and Affective Neuroscience,Fronto-parietal regulation of media violence exposure in adolescents: A multi-method study,Article +,https://api.elsevier.com/content/abstract/scopus_id/49949115092,Jacqueline N. Wood;Jordan Grafman;Maria Vittoria Spampinato;Sinisa Pajevic;George H. Weiss;Frank Krueger;Matteo Pardini;Steffen Landgraf,30,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=49949115092&origin=inward,10.1097/WNR.0b013e328303fd85,2008-07-16,2-s2.0-49949115092,,1095-1099,18596607.0,49949115092,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=49949115092&origin=inward,Wassermann,NeuroReport,Integral calculus problem solving: An fMRI investigation,Article +,https://api.elsevier.com/content/abstract/scopus_id/76149120432,E. D. Huey;F. Krueger;K. M. Knutson;G. Zamboni;J. Grafman,28,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=76149120432&origin=inward,10.1159/000255141,2010-02-01,2-s2.0-76149120432,,88-96,20150729.0,76149120432,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=76149120432&origin=inward,Wassermann,Dementia and Geriatric Cognitive Disorders,Anosognosia for behavioral disturbances in frontotemporal dementia and corticobasal syndrome: A voxel-based morphometry study,Article +,https://api.elsevier.com/content/abstract/scopus_id/84905697935,Morris Hoffman;Frank Krueger;Henrik Walter;Jordan Grafman,28,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84905697935&origin=inward,10.1093/scan/nst092,2014-08-01,2-s2.0-84905697935,,1143-1149,23887810.0,84905697935,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84905697935&origin=inward,Wassermann,Social Cognitive and Affective Neuroscience,An fMRI investigation of the effects of belief in free will on third-party punishment,Article +,https://api.elsevier.com/content/abstract/scopus_id/45449089254,Jordan Grafman;Erin M. McClellan;Kristine M. Knutson,18,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=45449089254&origin=inward,10.1007/s00221-008-1352-6,2008-06-01,2-s2.0-45449089254,,187-198,18483724.0,45449089254,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=45449089254&origin=inward,Wassermann,Experimental Brain Research,Observing social gestures: An fMRI study,Article +,https://api.elsevier.com/content/abstract/scopus_id/78751679930,Kristine M. Knutson;Jordan Grafman;Maren Strenziok;Frank Krueger;Rhoshel K. Lenroot;Armin Heinecke;Elke van der Meer,17,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=78751679930&origin=inward,10.1093/scan/nsp036,2011-01-01,2-s2.0-78751679930,,2-11,19770220.0,78751679930,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=78751679930&origin=inward,Wassermann,Social Cognitive and Affective Neuroscience,Developmental effects of aggressive behavior in male adolescents assessed with structural and functional brain imaging,Article +,https://api.elsevier.com/content/abstract/scopus_id/68249110401,Jordan Grafman;Maria Vittoria Spampinato;Frank Krueger;Thomas Morland;Aron K. Barbey;Edward D. Huey,16,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=68249110401&origin=inward,10.1097/WNR.0b013e32832e7ea5,2009-08-05,2-s2.0-68249110401,,1093-1097,19590392.0,68249110401,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=68249110401&origin=inward,Wassermann,NeuroReport,The frontopolar cortex mediates event knowledge complexity: A parametric functional MRI study,Article +,https://api.elsevier.com/content/abstract/scopus_id/79959975905,Sarah Pulaski;Jordan Grafman;Deborah Clawson;Maren Strenziok;Frank Krueger;Giovanna Zamboni,14,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79959975905&origin=inward,10.1097/WNN.0b013e3182255a7c,2011-06-01,2-s2.0-79959975905,,59-67,21697710.0,79959975905,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79959975905&origin=inward,Wassermann,Cognitive and Behavioral Neurology,Regional brain atrophy and impaired decision making on the Balloon Analog Risk Task in behavioral variant frontotemporal dementia,Article +,https://api.elsevier.com/content/abstract/scopus_id/84907284993,Jordan Henry Grafman;Dimitrios Kapogiannis;Gopikrishna Deshpande;Matthew P. Thornburg;Frank Krueger,14,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84907284993&origin=inward,10.1089/brain.2013.0172,2014-02-01,2-s2.0-84907284993,,70-79,24279687.0,84907284993,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84907284993&origin=inward,Wassermann,Brain Connectivity,Brain networks shaping religious belief,Article +,https://api.elsevier.com/content/abstract/scopus_id/78649602256,Jordan Grafman;Giovanna Zamboni;Frank Krueger;Marta Gozzi,14,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=78649602256&origin=inward,10.1002/hbm.20976,2010-11-01,2-s2.0-78649602256,,1763-1771,20162603.0,78649602256,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=78649602256&origin=inward,Wassermann,Human Brain Mapping,Interest in politics modulates neural activity in the amygdala and ventral striatum,Article +,https://api.elsevier.com/content/abstract/scopus_id/28444499651,Jordan Grafman;Michael Tierney;Laura A. Bidwell;Jacqueline N. Wood,10,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=28444499651&origin=inward,10.1016/S0010-9452(08)70298-3,2005-01-01,2-s2.0-28444499651,,796-804,16350660.0,28444499651,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=28444499651&origin=inward,Wassermann,Cortex,Neural correlates of script event knowledge: A neuropsychological study following prefrontal injury,Article +,https://api.elsevier.com/content/abstract/scopus_id/84928686467,Jordan Grafman;Griselda Garrido;Jorge Moll;Roland Zahn,9,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84928686467&origin=inward,10.1093/scan/nst158,2014-01-01,2-s2.0-84928686467,,1676-1683,24106333.0,84928686467,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84928686467&origin=inward,Wassermann,Social Cognitive and Affective Neuroscience,Individual differences in posterior cortical volume correlate with proneness to pride and gratitude,Article +,https://api.elsevier.com/content/abstract/scopus_id/77952104766,Jordan Grafman;Maren Strenziok;Frank Krueger;Sarah J. Pulaski;Anne E. Openshaw;Giovanna Zamboni;Elke van der Meer,8,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77952104766&origin=inward,10.1016/j.jadohealth.2009.11.196,2010-06-01,2-s2.0-77952104766,,607-609,20472220.0,77952104766,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77952104766&origin=inward,Wassermann,Journal of Adolescent Health,Lower Lateral Orbitofrontal Cortex Density Associated With More Frequent Exposure to Television and Movie Violence in Male Adolescents,Article +,https://api.elsevier.com/content/abstract/scopus_id/84922760522,Jordan Grafman;Frank Krueger;Aron K. Barbey,5,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84922760522&origin=inward,10.1093/acprof:oso/9780195395518.003.0018,2011-09-22,2-s2.0-84922760522,,,,84922760522,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84922760522&origin=inward,Wassermann,Predictions in the Brain: Using Our Past to Generate a Future,Architecture of Counterfactual Thought in the Prefrontal Cortex,Chapter +,https://api.elsevier.com/content/abstract/scopus_id/84920616344,Ricardo De Oliveira-Souza;Jordan Grafman;Jorge Moll;Ivanei E. Bramati,0,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84920616344&origin=inward,10.4324/9780203496190,2013-01-01,2-s2.0-84920616344,,63-72,,84920616344,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84920616344&origin=inward,Wassermann,Social Neuroscience: Key Readings,Functional networks in emotional moral and nonmoral social judgments,Chapter +,https://api.elsevier.com/content/abstract/scopus_id/84920753092,Jordan Grafman,0,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84920753092&origin=inward,10.1093/acprof:oso/9780195177619.003.0011,2009-05-01,2-s2.0-84920753092,,,,84920753092,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84920753092&origin=inward,Wassermann,Neuroergonomics: The brain at work,Executive Functions,Chapter +,https://api.elsevier.com/content/abstract/scopus_id/78951492017,Gang Chen;Ruben P. Alvarez;Christian Grillon;Jerzy Bodurka;Raphael Kaplan,155,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=78951492017&origin=inward,10.1016/j.neuroimage.2010.11.057,2011-03-01,2-s2.0-78951492017,,389-400,21111828.0,78951492017,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=78951492017&origin=inward,Grillon,NeuroImage,Phasic and sustained fear in humans elicits distinct patterns of brain activity,Article +,https://api.elsevier.com/content/abstract/scopus_id/84857134559,Danielle R. Charney;Katherine Vytal;Christian Grillon;Cassie Overstreet;Oliver J. Robinson,90,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84857134559&origin=inward,10.1016/j.neuroimage.2011.11.096,2012-03-01,2-s2.0-84857134559,,523-529,22178453.0,84857134559,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84857134559&origin=inward,Grillon,NeuroImage,The adaptive threat bias in anxiety: Amygdala-dorsomedial prefrontal cortex coupling and aversive amplification,Article +,https://api.elsevier.com/content/abstract/scopus_id/84905921226,Richard C. Reynolds;Ruben P. Alvarez;Tori Espensen-Sturges;Christian Grillon;Shmuel Lissek;Daniel E. Bradford;Philip Burton,85,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84905921226&origin=inward,10.1093/scan/nst096,2014-01-01,2-s2.0-84905921226,NIMH,1134-1142,23748500.0,84905921226,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84905921226&origin=inward,Grillon,Social Cognitive and Affective Neuroscience,Neural substrates of classically conditioned fear-generalization in humans: A parametric fMRI study,Article +,https://api.elsevier.com/content/abstract/scopus_id/84874635488,Danielle R. Charney;Katherine Vytal;Christian Grillon;Cassie Overstreet;Oliver J. Robinson,47,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84874635488&origin=inward,10.1073/pnas.1213923110,2013-03-05,2-s2.0-84874635488,,4129-4133,23401511.0,84874635488,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84874635488&origin=inward,Grillon,Proceedings of the National Academy of Sciences of the United States of America,Stress increases aversive prediction error signal in the ventral striatum,Article +,https://api.elsevier.com/content/abstract/scopus_id/84920087047,Phillip Allen;Marissa Krimsky;Katherine Vytal;Christian Grillon;Oliver J. Robinson;Lynne Lieberman,46,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84920087047&origin=inward,10.1016/S2215-0366(14)70305-0,2014-01-01,2-s2.0-84920087047,,294-302,,84920087047,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84920087047&origin=inward,Grillon,The Lancet Psychiatry,The dorsal medial prefrontal (anterior cingulate) cortex-amygdala aversive amplification circuit in unmedicated generalised and social anxiety disorders: An observational study,Article +,https://api.elsevier.com/content/abstract/scopus_id/84964285132,Salvatore Torrisi;Monique Ernst;Elizabeth A. Hale;Christian Grillon;Nicholas Balderston,33,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84964285132&origin=inward,10.1146/annurev-clinpsy-032814-112753,2015-03-01,2-s2.0-84964285132,,361-377,25581237.0,84964285132,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84964285132&origin=inward,Grillon,Annual Review of Clinical Psychology,FMRI functional connectivity applied to adolescent neurodevelopment,Article +,https://api.elsevier.com/content/abstract/scopus_id/84906815839,Danielle R. Charney;Christian Grillon;Cassie Overstreet;Oliver J. Robinson;Katherine E. Vytal,29,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84906815839&origin=inward,10.1503/jpn.130145,2014-01-01,2-s2.0-84906815839,,321-329,24886788.0,84906815839,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84906815839&origin=inward,Grillon,Journal of Psychiatry and Neuroscience,Sustained anxiety increases amygdala-dorsomedial prefrontal coupling: A mechanism for maintaining an anxious state in healthy adults,Article +,https://api.elsevier.com/content/abstract/scopus_id/84942233711,Salvatore Torrisi;Monique Ernst;Katherine O'Connell;Nicholas Balderston;Christian Grillon;Andrew Davis;Richard Reynolds;Julie L. Fudge,32,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84942233711&origin=inward,10.1002/hbm.22899,2015-10-01,2-s2.0-84942233711,,4076-4088,26178381.0,84942233711,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84942233711&origin=inward,Grillon,Human Brain Mapping,Resting state connectivity of the bed nucleus of the stria terminalis at ultra-high field,Article +,https://api.elsevier.com/content/abstract/scopus_id/79954415976,Monique Ernst;Ruben P. Alvarez;Christian Grillon;Brian R. Cornwell;Shmuel Lissek;Raphael Kaplan,22,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79954415976&origin=inward,10.1016/j.neuropsychologia.2011.02.049,2011-04-01,2-s2.0-79954415976,,1363-1368,21376745.0,79954415976,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79954415976&origin=inward,Grillon,Neuropsychologia,Anxiety overrides the blocking effects of high perceptual load on amygdala reactivity to threat-related distractors,Article +,https://api.elsevier.com/content/abstract/scopus_id/84892446743,C. Overstreet;C. Grillon;B. R. Cornwell,8,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84892446743&origin=inward,10.1016/j.bbr.2013.12.031,2014-03-15,2-s2.0-84892446743,,258-264,24388977.0,84892446743,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84892446743&origin=inward,Grillon,Behavioural Brain Research,Spontaneous fast gamma activity in the septal hippocampal region correlates with spatial learning in humans,Article +,https://api.elsevier.com/content/abstract/scopus_id/85011629261,Monique Ernst;Elizabeth Lewis;Christian Grillon;Bruno Averbeck;Harma Meffert;Stuart F. White;Joseph Leshin;Cindy Teng;James R. Blair;Marilla Geraci;Karina S. Blair,13,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85011629261&origin=inward,10.1176/appi.ajp.2016.15111410,2017-02-01,2-s2.0-85011629261,,110-117,27631963.0,85011629261,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85011629261&origin=inward,Blair,American Journal of Psychiatry,Prediction error representation in individuals with generalized anxiety disorder during passive avoidance,Article +,https://api.elsevier.com/content/abstract/scopus_id/85006341547,Salvatore Torrisi;Camilla L. Nord;Monique Ernst;Christian Grillon;Nicholas L. Balderston;Jonathan P. Roiser,13,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85006341547&origin=inward,10.1016/j.neuroimage.2016.10.034,2017-02-15,2-s2.0-85006341547,,872-879,27780778.0,85006341547,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85006341547&origin=inward,Blair,NeuroImage,Resting state connectivity of the human habenula at ultra-high field,Article +,https://api.elsevier.com/content/abstract/scopus_id/84996843168,Salvatore Torrisi;Monique Ernst;Katherine O'Connell;Nicholas Balderston;Christian Grillon;Andrew Davis;Oliver Robinson,8,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84996843168&origin=inward,10.1093/scan/nsw088,2016-11-01,2-s2.0-84996843168,,1677-1686,27369069.0,84996843168,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84996843168&origin=inward,Blair,Social Cognitive and Affective Neuroscience,The neural basis of improved cognitive performance by threat of shock,Article +,https://api.elsevier.com/content/abstract/scopus_id/85021407223,Salvatore Torrisi;Monique Ernst;Elizabeth Hale;Christian Grillon;Nicholas L. Balderston;Abigail Hsiung;Frederick W. Carver;Richard Coppola;Tom Holroyd,4,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85021407223&origin=inward,10.7554/eLife.23608,2017-05-30,2-s2.0-85021407223,,,28555565.0,85021407223,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85021407223&origin=inward,Blair,eLife,Threat of shock increases excitability and connectivity of the intraparietal sulcus,Article +,https://api.elsevier.com/content/abstract/scopus_id/85017434759,Alexander J. Shackman;Salvatore Torrisi;Monique Ernst;Christian Grillon;Adam X. Gorka,10,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85017434759&origin=inward,10.1016/j.neuroimage.2017.03.007,2018-03-01,2-s2.0-85017434759,,392-402,28392491.0,85017434759,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85017434759&origin=inward,Blair,NeuroImage,Intrinsic functional connectivity of the central nucleus of the amygdala and bed nucleus of the stria terminalis,Article +,https://api.elsevier.com/content/abstract/scopus_id/85015218683,M. Otero;M. Ernst;C. Grillon;R. J.R. Blair;K. S. Blair;M. Geraci;D. S. Pine;C. Teng,2,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85015218683&origin=inward,10.1017/S0033291717000265,2017-07-01,2-s2.0-85015218683,NIMH,1806-1815,28290265.0,85015218683,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85015218683&origin=inward,Blair,Psychological medicine,"Reduced optimism and a heightened neural response to everyday worries are specific to generalized anxiety disorder, and not seen in social anxiety",Article +,https://api.elsevier.com/content/abstract/scopus_id/0037322777,Takashi Hanakawa;Keiichiro Toma;Michael A. Dimyan;Mark Hallett;Peter Van Gelderen;Ilka Immisch,397,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0037322777&origin=inward,10.1152/jn.00132.2002,2003-02-01,2-s2.0-0037322777,,989-1002,12574475.0,37322777,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0037322777&origin=inward,Hallett,Journal of Neurophysiology,Functional properties of brain areas associated with motor execution and imagery,Article +,https://api.elsevier.com/content/abstract/scopus_id/33244467864,Christian Gerloff;Takahiro Matsuoka;George F. Wittenberg;Kenji Ishii;Eric M. Wassermann;Khalaf Bushara;Alexandra Sailer;Mark Hallett;Daniel Waldvogel;Leonardo G. Cohen;Robert Chen,309,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33244467864&origin=inward,10.1093/brain/awh713,2006-01-01,2-s2.0-33244467864,,791-808,16364955.0,33244467864,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33244467864&origin=inward,Wassermann,Brain,Multimodal imaging of brain reorganization in motor areas of the contralesional hemisphere of well recovered patients after capsular stroke,Article +,https://api.elsevier.com/content/abstract/scopus_id/26044458489,Mark Hallett;Tao Wu,260,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=26044458489&origin=inward,10.1093/brain/awh569,2005-10-01,2-s2.0-26044458489,,2250-2259,15958505.0,26044458489,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=26044458489&origin=inward,Hallett,Brain,A functional MRI study of automatic movements in patients with Parkinson's disease,Article +,https://api.elsevier.com/content/abstract/scopus_id/33747885219,K. Kansaku;S. Bohlhalter;M. Hallett;G. Garraux;A. Goldfine;T. Hanakawa;R. Wurzman;S. Matteson,238,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33747885219&origin=inward,10.1093/brain/awl050,2006-01-01,2-s2.0-33747885219,,2029-2037,16520330.0,33747885219,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33747885219&origin=inward,Hallett,Brain,Neural correlates of tic generation in Tourette syndrome: An event-related functional MRI study,Article +,https://api.elsevier.com/content/abstract/scopus_id/54149106730,Takashi Hanakawa;Michael A. Dimyan;Mark Hallett,250,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=54149106730&origin=inward,10.1093/cercor/bhn036,2008-12-01,2-s2.0-54149106730,FOM,2775-2788,18359777.0,54149106730,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=54149106730&origin=inward,Hallett,Cerebral Cortex,"Motor planning, imagery, and execution in the distributed motor network: A time-course study with functional MRI",Article +,https://api.elsevier.com/content/abstract/scopus_id/0034739056,Mark Hallett;Daniel Waldvogel;Peter Van Gelderen;Ilka Immisch;Wolf Muellbacher;Ulf Ziemann,222,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0034739056&origin=inward,10.1038/35023171,2000-08-31,2-s2.0-0034739056,,995-998,10984053.0,34739056,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0034739056&origin=inward,Hallett,Nature,The relative metabolic demand of inhibition and excitation,Article +,https://api.elsevier.com/content/abstract/scopus_id/0035144735,Jordan Grafman;Mark Hallett;Khalafalla O. Bushara,233,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0035144735&origin=inward,,2001-01-01,2-s2.0-0035144735,,300-304,11150347.0,35144735,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0035144735&origin=inward,Hallett,Journal of Neuroscience,Neural correlates of auditory-visual stimulus onset asynchrony detection,Article +,https://api.elsevier.com/content/abstract/scopus_id/73549113279,Christina Brezing;Cecile Gallea;Mark Hallett;Valerie Voon;Raymond J. Dolan;Mathias Pessiglione;Hubert H. Fernandez,197,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=73549113279&origin=inward,10.1016/j.neuron.2009.12.027,2010-01-14,2-s2.0-73549113279,,135-142,20152119.0,73549113279,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=73549113279&origin=inward,Hallett,Neuron,Mechanisms Underlying Dopamine-Mediated Reward Bias in Compulsive Behaviors,Article +,https://api.elsevier.com/content/abstract/scopus_id/77951920955,Christina Brezing;Cecile Gallea;Rezvan Ameli;Karin Roelofs;Mark Hallett;Valerie Voon;W. Curt Lafrance,179,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77951920955&origin=inward,10.1093/brain/awq054,2010-01-01,2-s2.0-77951920955,,1526-1536,20371508.0,77951920955,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77951920955&origin=inward,Hallett,Brain,Emotional stimuli and motor conversion disorder,Article +,https://api.elsevier.com/content/abstract/scopus_id/1542720537,Mark Hallett;Kenji Kansaku;Tao Wu,170,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=1542720537&origin=inward,10.1152/jn.01052.2003,2004-04-01,2-s2.0-1542720537,,1690-1698,14645385.0,1542720537,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=1542720537&origin=inward,Hallett,Journal of Neurophysiology,How Self-Initiated Memorized Movements Become Automatic: A Functional MRI Study,Article +,https://api.elsevier.com/content/abstract/scopus_id/0037315153,Takashi Hanakawa;Keiichiro Toma;Kenji Kansaku;Khalafalla O. Bushara;Mark Hallett;Ilka Immisch,153,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0037315153&origin=inward,10.1038/nn993,2003-02-01,2-s2.0-0037315153,,190-195,12496761.0,37315153,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0037315153&origin=inward,Hallett,Nature Neuroscience,Neural correlates of cross-modal binding,Article +,https://api.elsevier.com/content/abstract/scopus_id/0036135109,Lucien M. Levy;Mark Hallett,146,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0036135109&origin=inward,10.1002/ana.10073,2002-01-12,2-s2.0-0036135109,,93-101,11782988.0,36135109,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0036135109&origin=inward,Hallett,Annals of Neurology,Impaired brain GABA in focal dystonia,Article +,https://api.elsevier.com/content/abstract/scopus_id/74949105990,V. Ekanayake;M. Hallett;N. Hattori;V. Voon;C. Gallea;M. Bruno,154,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=74949105990&origin=inward,10.1212/WNL.0b013e3181ca00e9,2010-01-01,2-s2.0-74949105990,,223-228,,74949105990,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=74949105990&origin=inward,Hallett,Neurology,The involuntary nature of conversion disorder,Article +,https://api.elsevier.com/content/abstract/scopus_id/72049085005,Marc N. Potenza;Christina Brezing;Cecile Gallea;Hubert Fernandez;Vindhya Ekanayake;Mark Hallett;Valerie Voon;Raymond J. Dolan;Brady Reynolds;Meliha Skaljic,136,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=72049085005&origin=inward,10.1007/s00213-009-1697-y,2010-01-01,2-s2.0-72049085005,,645-659,19838863.0,72049085005,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=72049085005&origin=inward,Hallett,Psychopharmacology,Impulsive choice and response in dopamine agonist-related impulse control behaviors,Article +,https://api.elsevier.com/content/abstract/scopus_id/2142714500,Takashi Hanakawa;Tao Wu;Kenji Kansaku;Mark Hallett;Andrew Bauer;Gaëtan Garraux,122,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=2142714500&origin=inward,10.1002/ana.20113,2004-05-01,2-s2.0-2142714500,,736-739,15122716.0,2142714500,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=2142714500&origin=inward,Hallett,Annals of Neurology,Changes in Brain Anatomy in Focal Hand Dystonia,Article +,https://api.elsevier.com/content/abstract/scopus_id/12744277987,Mark Hallett;Tao Wu,121,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=12744277987&origin=inward,10.1113/jphysiol.2004.076042,2005-01-15,2-s2.0-12744277987,,605-615,15513939.0,12744277987,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=12744277987&origin=inward,Hallett,Journal of Physiology,The influence of normal human ageing on automatic movements,Article +,https://api.elsevier.com/content/abstract/scopus_id/79957464908,Christina Brezing;Hubert Fernandez;Vindhya Ekanayake;Mkael Symmonds;Mark Hallett;Valerie Voon;Raymond J. Dolan;Jennifer Gao,125,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79957464908&origin=inward,10.1093/brain/awr080,2011-01-01,2-s2.0-79957464908,,1438-1446,,79957464908,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79957464908&origin=inward,Hallett,Brain,Dopamine agonists and risk: Impulse control disorders in Parkinson's; Disease,Article +,https://api.elsevier.com/content/abstract/scopus_id/46249083043,Mark Hallett;T. Wu,113,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=46249083043&origin=inward,10.1136/jnnp.2007.126599,2008-07-01,2-s2.0-46249083043,,760-766,18006652.0,46249083043,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=46249083043&origin=inward,Hallett,"Journal of Neurology, Neurosurgery and Psychiatry",Neural correlates of dual task performance in patients with Parkinson's disease,Article +,https://api.elsevier.com/content/abstract/scopus_id/30344470810,Takashi Hanakawa;Tao Wu;Kenji Kansaku;Mark Hallett;Daniel Waldvogel;Ilka Immisch;Esteban A. Fridman;Stephan Bohlhalter;Lewis Wheaton,101,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=30344470810&origin=inward,10.1016/j.neuroimage.2005.07.026,2006-01-15,2-s2.0-30344470810,,417-428,16154363.0,30344470810,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=30344470810&origin=inward,Hallett,NeuroImage,The role of the dorsal stream for gesture production,Article +,https://api.elsevier.com/content/abstract/scopus_id/0037461351,James M. Dambrosia;Fernando L. Pagan;Mark Hallett;John A. Butman,97,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0037461351&origin=inward,10.1212/01.WNL.0000065885.15875.0D,2003-04-22,2-s2.0-0037461351,,1344-1347,12707440.0,37461351,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0037461351&origin=inward,Hallett,Neurology,Evaluation of essential tremor with multi-voxel magnetic resonance spectroscopy,Article +,https://api.elsevier.com/content/abstract/scopus_id/0034867619,Daniel Waldvogel;Peter Van Gelderen;Ilka Immisch;Mark Hallett,83,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0034867619&origin=inward,10.1006/nimg.2001.0856,2001-01-01,2-s2.0-0034867619,,674-684,,34867619,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0034867619&origin=inward,Hallett,NeuroImage,The role of the medial wall and its anatomical variations for bimanual antiphase and in-phase movements,Article +,https://api.elsevier.com/content/abstract/scopus_id/78651321585,Nathaniel Miletta;Cecile Gallea;John Kakareka;Fatta B. Nahab;Mark Hallett;Jason Friedman;Randy Pursley;Prantik Kundu;Tom Pohida,88,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=78651321585&origin=inward,10.1093/cercor/bhq059,2011-01-01,2-s2.0-78651321585,,48-55,20378581.0,78651321585,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=78651321585&origin=inward,Hallett,Cerebral Cortex,The neural processes underlying self-agency,Article +,https://api.elsevier.com/content/abstract/scopus_id/17644375470,Takashi Hanakawa;Sachin Parikh;Michiko K. Bruno;Mark Hallett,70,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=17644375470&origin=inward,10.1152/jn.00784.2004,2005-05-01,2-s2.0-17644375470,,2950-2958,15625099.0,17644375470,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=17644375470&origin=inward,Hallett,Journal of Neurophysiology,Finger and face representations in the ipsilateral precentral motor areas in humans,Article +,https://api.elsevier.com/content/abstract/scopus_id/0036742170,Takashi Hanakawa;Keiichiro Toma;Benjamin Koshy;Holly Shill;Mark Hallett;Daniel Waldvogel;Tatsuya Mima;Ilka Immisch;Takahiro Matsuoka,58,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0036742170&origin=inward,10.1006/nimg.2002.1165,2002-01-01,2-s2.0-0036742170,,161-173,12482074.0,36742170,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0036742170&origin=inward,Hallett,NeuroImage,Generators of movement-related cortical potentials: fMRI-constrained EEG dipole source analysis,Article +,https://api.elsevier.com/content/abstract/scopus_id/51749110708,Mark Hallett;Piu Chan;Tao Wu,60,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=51749110708&origin=inward,10.1113/jphysiol.2008.153445,2008-09-19,2-s2.0-51749110708,,4295-4304,18617569.0,51749110708,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=51749110708&origin=inward,Hallett,Journal of Physiology,Modifications of the interactions in the motor networks when a movement becomes automatic,Article +,https://api.elsevier.com/content/abstract/scopus_id/66549096839,E. Fridman;S. Bohlhalter;M. Hallett;G. Garraux;N. Hattori;E. A. Shamim;L. Wheaton,56,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=66549096839&origin=inward,10.1093/cercor/bhn168,2009-06-01,2-s2.0-66549096839,,1256-1262,18796430.0,66549096839,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=66549096839&origin=inward,Hallett,Cerebral Cortex,Gesture subtype-dependent left lateralization of praxis planning: An event-related fMRI study,Article +,https://api.elsevier.com/content/abstract/scopus_id/83055194569,Gaurav Venkataraman;Mark Hallett;Brian D. Berman;Silvina G. Horovitz,56,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=83055194569&origin=inward,10.1016/j.neuroimage.2011.07.035,2012-01-16,2-s2.0-83055194569,,917-925,21803163.0,83055194569,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=83055194569&origin=inward,Hallett,NeuroImage,Self-modulation of primary motor cortex activity with motor and motor imagery tasks using real-time fMRI-based neurofeedback,Article +,https://api.elsevier.com/content/abstract/scopus_id/32044475419,Takashi Hanakawa;Andrew Goldfine;Mark Hallett;Gaëtan Garraux;Stephan Bohlhalter;Alicja Lerner,46,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=32044475419&origin=inward,10.1002/ana.20765,2006-02-01,2-s2.0-32044475419,,381-385,16437578.0,32044475419,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=32044475419&origin=inward,Hallett,Annals of Neurology,Increased midbrain gray matter in Tourette's syndrome,Article +,https://api.elsevier.com/content/abstract/scopus_id/20044382622,Tao Wu;Kenji Kansaku;Mark Hallett;Christopher McKinney;Gaëtan Garraux;Guido Nolte,44,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=20044382622&origin=inward,10.1523/JNEUROSCI.0340-05.2005,2005-06-01,2-s2.0-20044382622,,5290-5297,15930376.0,20044382622,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=20044382622&origin=inward,Hallett,Journal of Neuroscience,Shared brain areas but not functional connections controlling movement timing and order,Article +,https://api.elsevier.com/content/abstract/scopus_id/0033846858,K. Ishii;Mark Hallett;K. Bushara;A. E. Schulman;L. Maillard;D. Waldvogel,48,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0033846858&origin=inward,10.1212/WNL.55.3.377,2000-01-01,2-s2.0-0033846858,,377-383,10932271.0,33846858,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0033846858&origin=inward,Hallett,Neurology,"Mapping the basal ganglia: fMRI evidence for somatotopic representation of face, hand, and foot",Article +,https://api.elsevier.com/content/abstract/scopus_id/0034722689,Mark Hallett;Daniel Waldvogel;Peter Van Gelderen;Ilka Immisch;Christopher Pfeiffer,42,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0034722689&origin=inward,10.1097/00001756-200011270-00048,2000-11-27,2-s2.0-0034722689,,3843-3847,11117501.0,34722689,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0034722689&origin=inward,Hallett,NeuroReport,The variability of serial fMRI data: Correlation between a visual and a motor task,Article +,https://api.elsevier.com/content/abstract/scopus_id/84974186226,Jordan Fieldman;Alvaro Pascual-Leone;Norihiro Sadato;Mark Hallett;Leonardo G. Cohen,37,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84974186226&origin=inward,10.1017/S0140525X00034130,1994-01-01,2-s2.0-84974186226,,210,,84974186226,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84974186226&origin=inward,Hallett,Behavioral and Brain Sciences,Involvement of primary motor cortex in motor imagery and mental practice,Article +,https://api.elsevier.com/content/abstract/scopus_id/66149095129,Noriaki Hattori;Ziad S. Saad;Mark Hallett;Fatta B. Nahab,35,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=66149095129&origin=inward,10.1002/hbm.20638,2009-05-01,2-s2.0-66149095129,,1744-1751,18937281.0,66149095129,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=66149095129&origin=inward,Hallett,Human Brain Mapping,Contagious yawning and the frontal lobe: An fMRI study,Article +,https://api.elsevier.com/content/abstract/scopus_id/0343566427,Marie Pierre Deiber;Mark Hallett;Norihiro Sadato;Vicente Ibañez,30,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0343566427&origin=inward,10.1006/nimg.2000.0566,2000-01-01,2-s2.0-0343566427,,532-540,10806038.0,343566427,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0343566427&origin=inward,Hallett,NeuroImage,Gender difference in premotor activity during active tactile discrimination,Article +,https://api.elsevier.com/content/abstract/scopus_id/84861331638,Ryan D. Moore;Cecile Gallea;Silvina G. Horovitz;Mark Hallett,33,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84861331638&origin=inward,10.1016/j.neuroimage.2012.03.066,2012-07-16,2-s2.0-84861331638,,823-831,22484405.0,84861331638,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84861331638&origin=inward,Hallett,NeuroImage,Individuated finger control in focal hand dystonia: An fMRI study,Article +,https://api.elsevier.com/content/abstract/scopus_id/84911413373,Yanan Hou;Tao Wu;Mark Hallett;Piu Chan;Xuemin Wu,36,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84911413373&origin=inward,10.1002/hbm.22587,2014-01-01,2-s2.0-84911413373,,5815-5833,25045127.0,84911413373,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84911413373&origin=inward,Hallett,Human Brain Mapping,Frequency-dependent neural activity in Parkinson's disease,Article +,https://api.elsevier.com/content/abstract/scopus_id/33644798876,Mark Hallett;Semyon Slobounov;Tao Wu,29,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33644798876&origin=inward,10.1123/mcj.10.1.69,2006-01-01,2-s2.0-33644798876,,69-89,16571908.0,33644798876,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33644798876&origin=inward,Hallett,Motor Control,Neural basis subserving the detection of postural instability: An fMRI study,Article +,https://api.elsevier.com/content/abstract/scopus_id/84912001601,Thomas Neuberger;Brian Johnson;Semyon Slobounov;Mark Hallett;Michael Gay,46,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84912001601&origin=inward,10.1089/neu.2014.3415,2014-01-01,2-s2.0-84912001601,,1907-1913,25010992.0,84912001601,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84912001601&origin=inward,Hallett,Journal of Neurotrauma,Effects of subconcussive head trauma on the default mode network of the brain,Article +,https://api.elsevier.com/content/abstract/scopus_id/33645014385,Elena Slobounov;Hiroshi Shibasaki;Tao Wu;Semyon Slobounov;Mark Hallett;Karl Newell,29,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33645014385&origin=inward,10.1016/j.biopsycho.2005.10.005,2006-05-01,2-s2.0-33645014385,,188-197,16338048.0,33645014385,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33645014385&origin=inward,Hallett,Biological Psychology,Neural underpinning of postural responses to visual field motion,Article +,https://api.elsevier.com/content/abstract/scopus_id/40849130954,Takashi Hanakawa;Michael A. Dimyan;Mark Hallett,28,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=40849130954&origin=inward,10.1093/cercor/bhm129,2008-04-01,2-s2.0-40849130954,FOM,930-937,17652462.0,40849130954,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=40849130954&origin=inward,Hallett,Cerebral Cortex,The representation of blinking movement in cingulate motor areas: A functional magnetic resonance imaging study,Article +,https://api.elsevier.com/content/abstract/scopus_id/84911391886,Beth A. Belluscio;Mark Hallett;Silvina G. Horovitz;Jan Willem van der Veen;Sule Tinaz;Patrick Malone,30,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84911391886&origin=inward,10.1002/hbm.22588,2014-12-01,2-s2.0-84911391886,NIH,5834-5846,25044024.0,84911391886,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84911391886&origin=inward,Hallett,Human Brain Mapping,Role of the sensorimotor cortex in tourette syndrome using multimodal imaging,Article +,https://api.elsevier.com/content/abstract/scopus_id/84883677448,Peter Herscovitch;Brian D. Berman;Mark Hallett;Kristina Simonyan,30,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84883677448&origin=inward,10.1523/JNEUROSCI.0407-13.2013,2013-09-16,2-s2.0-84883677448,,14705-14714,24027271.0,84883677448,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84883677448&origin=inward,Hallett,Journal of Neuroscience,Abnormal striatal dopaminergic neurotransmission during rest and task production in spasmodic dysphonia,Article +,https://api.elsevier.com/content/abstract/scopus_id/64749114659,Masao Matsuhashi;Hiroshi Shibasaki;Tao Wu;Noriaki Hattori;Mark Hallett;Lewis Wheaton,22,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=64749114659&origin=inward,10.1152/jn.90249.2008,2009-03-01,2-s2.0-64749114659,,1267-1282,19109459.0,64749114659,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=64749114659&origin=inward,Hallett,Journal of Neurophysiology,Discrete parieto-frontal functional connectivity related to grasping,Article +,https://api.elsevier.com/content/abstract/scopus_id/83055188065,Mark Hallett;Brent Morel;Brian D. Berman;Silvina G. Horovitz,26,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=83055188065&origin=inward,10.1016/j.neuroimage.2011.08.050,2012-01-16,2-s2.0-83055188065,,1441-1450,21906689.0,83055188065,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=83055188065&origin=inward,Hallett,NeuroImage,Neural correlates of blink suppression and the buildup of a natural bodily urge,Article +,https://api.elsevier.com/content/abstract/scopus_id/33744951823,Takashi Hanakawa;Manabu Honda;Michael A. Dimyan;Mark Hallett;Giancarlo Zito,22,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33744951823&origin=inward,10.1007/s00221-005-0336-z,2006-07-01,2-s2.0-33744951823,FOM,275-282,16418844.0,33744951823,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33744951823&origin=inward,Hallett,Experimental Brain Research,Brain activity during visuomotor behavior triggered by arbitrary and spatially constrained cues: An fMRI study in humans,Article +,https://api.elsevier.com/content/abstract/scopus_id/2942561100,Takashi Hanakawa;Mark Hallett;Tao Wu;Kenji Kansaku,20,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=2942561100&origin=inward,10.1016/j.neuroimage.2004.02.006,2004-06-01,2-s2.0-2942561100,,904-911,15193621.0,2942561100,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=2942561100&origin=inward,Hallett,NeuroImage,A shared neural network for simple reaction time,Article +,https://api.elsevier.com/content/abstract/scopus_id/33947324029,Ari Johnson;Norihiro Sadato;Kenji Kansaku;Mark Hallett;Keiji Matsuda;Benjamin Carver,18,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33947324029&origin=inward,10.1007/s00221-006-0736-8,2007-04-01,2-s2.0-33947324029,,339-350,17051376.0,33947324029,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33947324029&origin=inward,Hallett,Experimental Brain Research,The role of the human ventral premotor cortex in counting successive stimuli,Article +,https://api.elsevier.com/content/abstract/scopus_id/84879769291,Muslimah Ali Najee-ullah;Cecile Gallea;Silvina G. Horovitz;Mark Hallett,19,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84879769291&origin=inward,10.1371/journal.pone.0067931,2013-07-02,2-s2.0-84879769291,,,23844132.0,84879769291,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84879769291&origin=inward,Hallett,PLoS ONE,Functional Anatomy of Writing with the Dominant Hand,Article +,https://api.elsevier.com/content/abstract/scopus_id/84925003407,Ana Carolina De Campos;Mark Hallett;Rainer Paine;Chi Chao Chao;Han Wang;Tianxia Wu;Sahana N. Kukke;Anke Ninija Karabanov,22,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84925003407&origin=inward,10.1093/cercor/bht230,2015-01-01,2-s2.0-84925003407,,365-373,23968834.0,84925003407,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84925003407&origin=inward,Hallett,Cerebral Cortex,Induction of motor associative plasticity in the posterior parietal cortex-primary motor network,Article +,https://api.elsevier.com/content/abstract/scopus_id/84886410404,Mark Hallett;Brian D. Berman;Silvina G. Horovitz,16,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84886410404&origin=inward,10.3389/fnhum.2013.00638,2013-10-10,2-s2.0-84886410404,,,,84886410404,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84886410404&origin=inward,Hallett,Frontiers in Human Neuroscience,Modulation of functionally localized right insular cortex activity using real-time fMRI-based neurofeedback,Article +,https://api.elsevier.com/content/abstract/scopus_id/78650227717,Priyantha Herath;Cecile Gallea;Silvina G. Horovitz;Mark Hallett;Jan Willem Van Der Veen,14,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=78650227717&origin=inward,10.1002/mds.23306,2010-12-15,2-s2.0-78650227717,,2800-2808,20979122.0,78650227717,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=78650227717&origin=inward,Hallett,Movement Disorders,In vivo neurochemistry of primary focal hand dystonia: A magnetic resonance spectroscopic neurometabolite profiling study at 3T,Article +,https://api.elsevier.com/content/abstract/scopus_id/84927698944,Yanan Hou;Tao Wu;Jiarong Zhang;Mark Hallett;Piu Chan,16,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84927698944&origin=inward,10.1002/hbm.22743,2015-05-01,2-s2.0-84927698944,NIH,1878-1891,25644527.0,84927698944,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84927698944&origin=inward,Hallett,Human Brain Mapping,Lateralization of brain activity pattern during unilateral movement in Parkinson's disease,Article +,https://api.elsevier.com/content/abstract/scopus_id/78349256624,Cecile Gallea;Ingo G. Meister;Henrik Foltys;Mark Hallett,14,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=78349256624&origin=inward,10.1093/cercor/bhq048,2010-12-01,2-s2.0-78349256624,,2996-3004,20356959.0,78349256624,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=78349256624&origin=inward,Hallett,Cerebral Cortex,How the brain handles temporally uncoupled bimanual movements,Article +,https://api.elsevier.com/content/abstract/scopus_id/84922359577,Peter Lauro;Sule Tinaz;Silvina G. Horovitz;Mark Hallett,14,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84922359577&origin=inward,10.1007/s00429-014-0981-8,2016-04-01,2-s2.0-84922359577,,1413-1425,25567420.0,84922359577,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84922359577&origin=inward,Hallett,Brain Structure and Function,Deficits in task-set maintenance and execution networks in Parkinson’s disease,Article +,https://api.elsevier.com/content/abstract/scopus_id/78650819014,Mark Hallett;Silvina G. Horovitz;Brian D. Berman,7,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=78650819014&origin=inward,10.1109/IEMBS.2010.5627170,2010-12-01,2-s2.0-78650819014,,4270-4273,21096645.0,78650819014,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=78650819014&origin=inward,Hallett,"2010 Annual International Conference of the IEEE Engineering in Medicine and Biology Society, EMBC'10",Real time BOLD functional MRI neuro-feedback affects functional connectivity,Conference Paper +,https://api.elsevier.com/content/abstract/scopus_id/84937726021,Katharine E. Alter;Nicholas Patronas;Ana Carolina de Campos;Mark Hallett;Diane Damiano;Sahana N. Kukke,7,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84937726021&origin=inward,10.1016/j.clinph.2014.11.002,2015-08-01,2-s2.0-84937726021,NIH,1589-1598,25499610.0,84937726021,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84937726021&origin=inward,Hallett,Clinical Neurophysiology,Cortical activation and inter-hemispheric sensorimotor coherence in individuals with arm dystonia due to childhood stroke,Article +,https://api.elsevier.com/content/abstract/scopus_id/84918505366,Sanjay Pandey;Debra L. Byler;Mark Hallett,1,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84918505366&origin=inward,10.1001/jamaneurol.2014.1077,2014-01-01,2-s2.0-84918505366,NIH,1574-1575,25347119.0,84918505366,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84918505366&origin=inward,Hallett,JAMA Neurology,Hemidystonia with one eye-of-the-tiger sign,Article +,https://api.elsevier.com/content/abstract/scopus_id/85018320139,Fatta B. Nahab;Carine Maurer;Qian Shen;Mark Hallett;Prantik Kundu,6,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85018320139&origin=inward,10.1371/journal.pone.0172502,2017-04-01,2-s2.0-85018320139,,,28448504.0,85018320139,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85018320139&origin=inward,Hallett,PLoS ONE,Impaired sense of agency in functional movement disorders: An fMRI study,Article +,https://api.elsevier.com/content/abstract/scopus_id/0035964792,J. V. Haxby;M. I. Gobbini;A. Ishai;J. L. Schouten;M. L. Furey;P. Pietrini,2180,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0035964792&origin=inward,10.1126/science.1063736,2001-09-28,2-s2.0-0035964792,,2425-2430,11577229.0,35964792,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0035964792&origin=inward,Hallett,Science,Distributed and overlapping representations of faces and objects in ventral temporal cortex,Article +,https://api.elsevier.com/content/abstract/scopus_id/0036150870,Elizabeth A. Hoffman;James V. Haxby;M. Ida Gobbini,791,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0036150870&origin=inward,10.1016/S0006-3223(01)01330-0,2002-01-01,2-s2.0-0036150870,,59-67,11801231.0,36150870,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0036150870&origin=inward,Hallett,Biological Psychiatry,Human neural systems for face recognition and social communication,Review +,https://api.elsevier.com/content/abstract/scopus_id/1842732156,Pietro Pietrini;Emiliano Ricciardi;M. Ida Gobbini;W. H.Carolyn Wu;Maura L. Furey;Leonardo Cohen;Mario Guazzelli;James V. Haxby,294,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=1842732156&origin=inward,10.1073/pnas.0400707101,2004-04-13,2-s2.0-1842732156,,5658-5663,15064396.0,1842732156,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=1842732156&origin=inward,Cohen,Proceedings of the National Academy of Sciences of the United States of America,Beyond sensory images: Object-based representation in the human ventral pathway,Article +,https://api.elsevier.com/content/abstract/scopus_id/4143076897,Tara Harrison;James V. Haxby;Ellen Leibenluft;M. Ida Gobbini,288,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=4143076897&origin=inward,10.1016/j.biopsych.2004.05.017,2004-08-15,2-s2.0-4143076897,,225-232,15312809.0,4143076897,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=4143076897&origin=inward,Leibenluft,Biological Psychiatry,Mothers' neural activation in response to pictures of their children and other children,Article +,https://api.elsevier.com/content/abstract/scopus_id/0034899091,Timothy M. Ellmore;Laurent Petit;Michael S. Beauchamp;John Ingeholm;James V. Haxby,226,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0034899091&origin=inward,10.1006/nimg.2001.0788,2001-01-01,2-s2.0-0034899091,,310-321,,34899091,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0034899091&origin=inward,Leibenluft,NeuroImage,A parametric fMRI study of overt and covert shifts of visuospatial attention,Article +,https://api.elsevier.com/content/abstract/scopus_id/3242736839,Neil Santiago;James V. Haxby;Ellen Leibenluft;M. Ida Gobbini,196,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=3242736839&origin=inward,10.1016/j.neuroimage.2004.03.049,2004-01-01,2-s2.0-3242736839,,1628-1635,15275919.0,3242736839,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=3242736839&origin=inward,Leibenluft,NeuroImage,Social and emotional attachment in the neural representation of faces,Article +,https://api.elsevier.com/content/abstract/scopus_id/32244444938,Kimmo Uutela;Riitta Hari;Topi Tanskanen;Michael S. Beauchamp;Sari Avikainen;Maura L. Furey;James V. Haxby,91,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=32244444938&origin=inward,10.1073/pnas.0510124103,2006-01-24,2-s2.0-32244444938,,1065-1070,16415158.0,32244444938,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=32244444938&origin=inward,Leibenluft,Proceedings of the National Academy of Sciences of the United States of America,Dissociation of face-selective cortical responses by attention,Article +,https://api.elsevier.com/content/abstract/scopus_id/0035148422,Annamaria Berardi;Raja Parasuraman;James V. Haxby,42,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0035148422&origin=inward,10.1080/036107301750046124,2001-01-01,2-s2.0-0035148422,,19-39,,35148422,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0035148422&origin=inward,Leibenluft,Experimental Aging Research,Overall vigilance and sustained attention decrements in healthy aging,Article +,https://api.elsevier.com/content/abstract/scopus_id/84883313318,Daniel Arteaga;Biyu J. He;Megan Wang,32,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84883313318&origin=inward,10.1073/pnas.1221945110,2013-08-27,2-s2.0-84883313318,NIH,,23942129.0,84883313318,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84883313318&origin=inward,Leibenluft,Proceedings of the National Academy of Sciences of the United States of America,Brain mechanisms for simple perception and bistable perception,Article +,https://api.elsevier.com/content/abstract/scopus_id/84929379416,Eric M. Wassermann;Zachary H. Douglas;Mark Hallett;Brian Maniscalco;Biyu J. He,19,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84929379416&origin=inward,10.1523/JNEUROSCI.4894-14.2015,2015-01-01,2-s2.0-84929379416,NSFC,7239-7255,25948272.0,84929379416,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84929379416&origin=inward,Hallett,Journal of Neuroscience,Modulating conscious movement intention by noninvasive brain stimulation and the underlying neural mechanisms,Article +,https://api.elsevier.com/content/abstract/scopus_id/0035882897,C. M. Adams;B. Knutson;G. W. Fong;D. Hommer,1253,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0035882897&origin=inward,,2001-01-01,2-s2.0-0035882897,,,11459880.0,35882897,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0035882897&origin=inward,Hommer,The Journal of neuroscience : the official journal of the Society for Neuroscience,Anticipation of increasing monetary reward selectively recruits nucleus accumbens.,Article +,https://api.elsevier.com/content/abstract/scopus_id/0035807944,Charles M. Adams;Daniel Hommer;Brian Knutson;Jerald L. Varner;Grace W. Fong,836,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0035807944&origin=inward,10.1097/00001756-200112040-00016,2001-12-04,2-s2.0-0035807944,,3683-3687,11726774.0,35807944,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0035807944&origin=inward,Hommer,NeuroReport,Dissociation of reward anticipation and outcome with event-related fMRI,Article +,https://api.elsevier.com/content/abstract/scopus_id/0033860711,Brian Knutson;Daniel Hommer;Andrew Westdorp;Erica Kaiser,693,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0033860711&origin=inward,10.1006/nimg.2000.0593,2000-01-01,2-s2.0-0033860711,,20-27,10875899.0,33860711,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0033860711&origin=inward,Hommer,NeuroImage,FMRI visualization of brain activity during a monetary incentive delay task,Article +,https://api.elsevier.com/content/abstract/scopus_id/1442275743,Daniel M. Caggiano;James M. Bjork;Brian Knutson;Daniel W. Hommer;Shannon M. Bennett;Grace W. Fong,377,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=1442275743&origin=inward,10.1523/JNEUROSCI.4862-03.2004,2004-02-25,2-s2.0-1442275743,,1793-1802,14985419.0,1442275743,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=1442275743&origin=inward,Hommer,Journal of Neuroscience,Incentive-Elicited Brain Activation in Adolescents: Similarities and Differences from Young Adults,Article +,https://api.elsevier.com/content/abstract/scopus_id/0035142459,R. Momenan;R. R. Rawlings;E. Kaiser;D. W. Hommer,236,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0035142459&origin=inward,10.1176/appi.ajp.158.2.198,2001-02-14,2-s2.0-0035142459,,198-204,11156801.0,35142459,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0035142459&origin=inward,Hommer,American Journal of Psychiatry,Evidence for a gender-related effect of alcoholism on brain volumes,Article +,https://api.elsevier.com/content/abstract/scopus_id/44649095315,James M. Bjork;Jodi M. Gilman;Daniel W. Hommer;Vijay A. Ramchandani;Megan B. Davis,134,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=44649095315&origin=inward,10.1523/JNEUROSCI.0086-08.2008,2008-04-30,2-s2.0-44649095315,,4583-4591,18448634.0,44649095315,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=44649095315&origin=inward,Hommer,Journal of Neuroscience,Why we like to drink: A functional magnetic resonance imaging study of the rewarding and anxiolytic effects of alcohol,Article +,https://api.elsevier.com/content/abstract/scopus_id/55349098780,Daniel W. Hommer;James M. Bjork;Ashley R. Smith,110,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=55349098780&origin=inward,10.1016/j.neuroimage.2008.06.035,2008-10-01,2-s2.0-55349098780,,1609-1621,18672069.0,55349098780,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=55349098780&origin=inward,Hommer,NeuroImage,Striatal sensitivity to reward deliveries and omissions in substance dependent patients,Article +,https://api.elsevier.com/content/abstract/scopus_id/0034965354,R. R. Rawlings;C. Harper;H. J. Machulla;A. Heinz;I. Agartz;R. F. Anton;G. Mundle;D. J. Drobes;R. Bares;S. Shoaf;K. Mann;A. Pfefferbaum;E. V. Sullivan;D. W. Hommer;R. Momenan;M. Reimold;M. S. George,87,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0034965354&origin=inward,,2001-06-27,2-s2.0-0034965354,,,11391058.0,34965354,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0034965354&origin=inward,Momenan,Alcoholism: Clinical and Experimental Research,Neuroimaging in alcoholism: Ethanol and brain damage,Conference Paper +,https://api.elsevier.com/content/abstract/scopus_id/47549110235,Brian Knutson;Daniel W. Hommer;James M. Bjork,85,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=47549110235&origin=inward,10.1111/j.1360-0443.2008.02250.x,2008-08-01,2-s2.0-47549110235,,1308-1319,18851716.0,47549110235,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=47549110235&origin=inward,Hommer,Addiction,Incentive-elicited striatal activation in adolescent children of alcoholics,Article +,https://api.elsevier.com/content/abstract/scopus_id/33845993627,Daniel W. Hommer;James M. Bjork,75,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33845993627&origin=inward,10.1016/j.bbr.2006.10.034,2007-02-12,2-s2.0-33845993627,,165-170,17140674.0,33845993627,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33845993627&origin=inward,Hommer,Behavioural Brain Research,Anticipating instrumentally obtained and passively-received rewards: A factorial fMRI investigation,Article +,https://api.elsevier.com/content/abstract/scopus_id/34548209896,Reza Momenan;David George;Jerzy Bodurka;Daniel W. Hommer;Jasmin B. Salloum;Vijay A. Ramchandani;Robert Rawlings,69,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34548209896&origin=inward,10.1111/j.1530-0277.2007.00447.x,2007-09-01,2-s2.0-34548209896,,1490-1504,17624997.0,34548209896,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34548209896&origin=inward,Momenan,Alcoholism: Clinical and Experimental Research,Blunted rostral anterior cingulate response during a simplified decoding task of negative emotional facial expressions in alcoholic patients,Article +,https://api.elsevier.com/content/abstract/scopus_id/62749093177,Reza Momenan;Daniel W. Hommer;James M. Bjork,74,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=62749093177&origin=inward,10.1016/j.biopsych.2008.11.023,2009-04-15,2-s2.0-62749093177,,710-713,19121516.0,62749093177,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=62749093177&origin=inward,Momenan,Biological Psychiatry,Delay Discounting Correlates with Proportional Lateral Frontal Cortex Volumes,Article +,https://api.elsevier.com/content/abstract/scopus_id/34247882872,Daniel W. Hommer;James M. Bjork;Ashley R. Smith;Cinnamon L. Danube,65,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34247882872&origin=inward,10.1523/JNEUROSCI.5469-06.2007,2007-05-02,2-s2.0-34247882872,,4839-4849,17475792.0,34247882872,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34247882872&origin=inward,Hommer,Journal of Neuroscience,Developmental differences in posterior mesofrontal cortex recruitment by risky rewards,Article +,https://api.elsevier.com/content/abstract/scopus_id/49349090929,Jodi M. Gilman;Daniel W. Hommer,68,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=49349090929&origin=inward,10.1111/j.1369-1600.2008.00111.x,2008-09-01,2-s2.0-49349090929,,423-434,18507736.0,49349090929,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=49349090929&origin=inward,Hommer,Addiction Biology,Modulation of brain response to emotional images by alcohol cues in alcohol-dependent patients,Article +,https://api.elsevier.com/content/abstract/scopus_id/77953210452,Gang Chen;Daniel W. Hommer;James M. Bjork;Ashley R. Smith,64,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77953210452&origin=inward,10.1111/j.1469-7610.2009.02201.x,2010-07-01,2-s2.0-77953210452,,827-837,20025620.0,77953210452,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77953210452&origin=inward,Hommer,Journal of Child Psychology and Psychiatry and Allied Disciplines,Incentive-elicited mesolimbic activation and externalizing symptomatology in adolescents,Article +,https://api.elsevier.com/content/abstract/scopus_id/0242668386,Charles M. Adams;Brian Knutson;Daniel W. Hommer;Jerald L. Varner;Shannon Bennett;Grace W. Fong,43,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0242668386&origin=inward,,2003-01-01,2-s2.0-0242668386,,476-478,12724180.0,242668386,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0242668386&origin=inward,Hommer,Annals of the New York Academy of Sciences,Amygdalar recruitment during anticipation of monetary rewards: An event-related fMRI study,Conference Paper +,https://api.elsevier.com/content/abstract/scopus_id/84872419562,Leah E. Steckler;Reza Momenan;Stefanie van Rafelghem;Michael J. Kerich;Ziad S. Saad;Daniel W. Hommer,42,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84872419562&origin=inward,10.1016/j.pscychresns.2012.05.003,2012-11-30,2-s2.0-84872419562,,101-111,23149031.0,84872419562,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84872419562&origin=inward,Momenan,Psychiatry Research - Neuroimaging,Effects of alcohol dependence on cortical thickness as determined by magnetic resonance imaging,Article +,https://api.elsevier.com/content/abstract/scopus_id/40649120997,Reza Momenan;Daniel W. Hommer;James M. Bjork;Ashley R. Smith,36,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=40649120997&origin=inward,10.1016/j.drugalcdep.2007.12.014,2008-05-01,2-s2.0-40649120997,,115-128,18295984.0,40649120997,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=40649120997&origin=inward,Momenan,Drug and Alcohol Dependence,Reduced posterior mesofrontal cortex activation by risky rewards in substance-dependent patients,Article +,https://api.elsevier.com/content/abstract/scopus_id/84864949308,Gang Chen;Daniel W. Hommer;James M. Bjork;Ashley R. Smith,34,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84864949308&origin=inward,10.1002/hbm.21351,2012-09-01,2-s2.0-84864949308,,2174-2188,22281932.0,84864949308,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84864949308&origin=inward,Hommer,Human Brain Mapping,"Mesolimbic recruitment by nondrug rewards in detoxified alcoholics: Effort anticipation, reward anticipation, and reward delivery",Article +,https://api.elsevier.com/content/abstract/scopus_id/0037455417,Reza Momenan;Susan Shoaf;Robert R. Rawlings;Daniel W. Hommer;Ingrid Agartz,25,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0037455417&origin=inward,10.1016/S0925-4927(02)00084-7,2003-01-20,2-s2.0-0037455417,,21-35,12589880.0,37455417,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0037455417&origin=inward,Momenan,Psychiatry Research - Neuroimaging,CSF monoamine metabolites and MRI brain volumes in alcohol dependence,Article +,https://api.elsevier.com/content/abstract/scopus_id/1542375978,Robert Rawlings;Reza Momenan;Daniel Hommer;Brian Knutson;Grace Fong,10,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=1542375978&origin=inward,10.1016/j.neuroimage.2003.10.038,2004-03-01,2-s2.0-1542375978,,965-972,15006663.0,1542375978,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=1542375978&origin=inward,Momenan,NeuroImage,Voxel-based homogeneity probability maps of gray matter in groups: Assessing the reliability of functional effects,Article +,https://api.elsevier.com/content/abstract/scopus_id/84892668864,Gang Chen;Daniel W. Hommer;Steven J. Grant;James M. Bjork,13,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84892668864&origin=inward,10.1038/npp.2013.232,2014-02-01,2-s2.0-84892668864,,595-604,23995581.0,84892668864,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84892668864&origin=inward,Hommer,Neuropsychopharmacology,Dietary tyrosine/phenylalanine depletion effects on behavioral and brain signatures of human motivational processing,Article +,https://api.elsevier.com/content/abstract/scopus_id/84876133622,Joshua D. McKellar;Reza Momenan;Lishu Zhang;David T. George;Mike Kerich;Robert R. Rawlings;Daniel W. Hommer;Melanie L. Schwandt,10,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84876133622&origin=inward,10.1111/j.1369-1600.2011.00381.x,2013-05-01,2-s2.0-84876133622,,537-547,21995346.0,84876133622,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84876133622&origin=inward,Momenan,Addiction Biology,Smaller right amygdala in Caucasian alcohol-dependent male patients with a history of intimate partner violence: A volumetric imaging study,Article +,https://api.elsevier.com/content/abstract/scopus_id/84859213871,Reza Momenan;Chun Hsin Chen;Daniel W. Hommer;Jonathan Walker;Markus Heilig;Robert Rawlings,12,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84859213871&origin=inward,10.1111/j.1530-0277.2011.01662.x,2012-04-01,2-s2.0-84859213871,,625-632,21995416.0,84859213871,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84859213871&origin=inward,Momenan,Alcoholism: Clinical and Experimental Research,Relationship Between Liver Function and Brain Shrinkage in Patients with Alcohol Dependence,Article +,https://api.elsevier.com/content/abstract/scopus_id/33645286187,Lawrence A. Woltz;Daniel E. Rio;Robert R. Rawlings;Daniel W. Hommer;Jasmin B. Salloum,4,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33645286187&origin=inward,10.1016/j.cmpb.2005.12.003,2006-04-01,2-s2.0-33645286187,,10-19,16530880.0,33645286187,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33645286187&origin=inward,Hommer,Computer Methods and Programs in Biomedicine,Single subject image analysis using the complex general linear model - An application to functional magnetic resonance imaging with multiple inputs,Article +,https://api.elsevier.com/content/abstract/scopus_id/67249123854,Daniel Hommer;Lawrence Woltz;Daniel Rio;Jodi Gilman;Robert Rawlings,1,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=67249123854&origin=inward,10.1117/12.811811,2009-06-22,2-s2.0-67249123854,,,,67249123854,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=67249123854&origin=inward,Hommer,Progress in Biomedical Optics and Imaging - Proceedings of SPIE,An application of the complex general linear model to analysis of FMRI single subjects multiple stimuli input data,Conference Paper +,https://api.elsevier.com/content/abstract/scopus_id/84880165844,Lawrence A. Woltz;Daniel E. Rio;Robert R. Rawlings;Daniel W. Hommer;Jodi Gilman,0,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84880165844&origin=inward,10.1155/2013/645043,2013-07-19,2-s2.0-84880165844,,,23840281.0,84880165844,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84880165844&origin=inward,Hommer,Computational and Mathematical Methods in Medicine,Development of the complex general linear model in the fourier domain: Application to fMRI multiple input-output evoked responses for single subjects,Article +,https://api.elsevier.com/content/abstract/scopus_id/84930438413,Barry Horwitz;Emily L. Coderre;Jason F. Smith;Walter J.B. Van Heuven,18,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84930438413&origin=inward,10.1017/S1366728915000188,2016-05-01,2-s2.0-84930438413,,471-488,,84930438413,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84930438413&origin=inward,Horwitz,Bilingualism,The functional overlap of executive control and language processing in bilinguals,Article +,https://api.elsevier.com/content/abstract/scopus_id/84866500865,Barry Horwitz;Debra J. Patkin;Allen R. Braun;Jieun Kim;Fatima T. Husain,8,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84866500865&origin=inward,10.1016/j.brainres.2012.08.029,2012-10-10,2-s2.0-84866500865,,24-35,22968047.0,84866500865,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84866500865&origin=inward,Horwitz,Brain Research,Dissociating neural correlates of meaningful emblems from meaningless gestures in deaf signers and hearing non-signers,Article +,https://api.elsevier.com/content/abstract/scopus_id/84954359433,Barry Horwitz;Frederick W. Carver;Richard Coppola;Tom Holroyd;Tyler Ard,1,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84954359433&origin=inward,10.1089/brain.2014.0296,2015-08-01,2-s2.0-84954359433,,336-348,25599264.0,84954359433,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84954359433&origin=inward,Horwitz,Brain Connectivity,Detecting Functional Connectivity during Audiovisual Integration with MEG: A Comparison of Connectivity Metrics,Article +,https://api.elsevier.com/content/abstract/scopus_id/84874962987,Ross Arena;Francesco S. Celi;Ping Yuan Wang;S. Lalith Talagala;Jeong W. Choi;Jie Zhuang;Robert S. Balaban;Dotti J. Tripodi;Joon Young Park;Qais A. Ali;Louise C. Strong;Ju Gyeong Kang;Paul M. Hwang;Wenzhe Ma;Cory U. Lago,61,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84874962987&origin=inward,10.1056/NEJMoa1214091,2013-03-14,2-s2.0-84874962987,,1027-1032,,84874962987,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84874962987&origin=inward,Talagala,New England Journal of Medicine,Increased oxidative metabolism in the Li-Fraumeni syndrome,Article +,https://api.elsevier.com/content/abstract/scopus_id/0036787435,Jordan Grafman;Alan P. Koretsky;Jeff Duyn;Peter Bandettini;Emmanuel L. Barbier;Sean Marrett;Peter Van Gelderen;Adrian Danek;Alexander Vortmeyer,119,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0036787435&origin=inward,10.1002/mrm.10255,2002-10-01,2-s2.0-0036787435,,735-738,12353293.0,36787435,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0036787435&origin=inward,Duyn,Magnetic Resonance in Medicine,Imaging cortical anatomy by high-resolution MR at 3.0T: Detection of the stripe of Gennari in visual area 17,Article +,https://api.elsevier.com/content/abstract/scopus_id/33745030267,Rebecca E. Hommer;Deborah T. Vinton;Lisa H. Berghorst;Stephen J. Fromm;Erin B. McClure;Ellen Leibenluft;Roxann Roberson-Nay;Brendan A. Rich;Daniel S. Pine,235,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33745030267&origin=inward,10.1073/pnas.0603246103,2006-06-06,2-s2.0-33745030267,,8900-8905,16735472.0,33745030267,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33745030267&origin=inward,Pine,Proceedings of the National Academy of Sciences of the United States of America,Limbic hyperactivation during processing of neutral facial expressions in children with bipolar disorder,Article +,https://api.elsevier.com/content/abstract/scopus_id/21744449188,Wayne C. Drevets;Dennis S. Charney;Daniel P. Dickstein;Ellen Leibenluft;Allison C. Nugent;Michael P. Milham;Daniel S. Pine,192,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=21744449188&origin=inward,10.1001/archpsyc.62.7.734,2005-07-01,2-s2.0-21744449188,,734-741,15997014.0,21744449188,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=21744449188&origin=inward,Nugent,Archives of General Psychiatry,Frontotemporal alterations in pediatric bipolar disorder: Results of a voxel-based morphometry study,Article +,https://api.elsevier.com/content/abstract/scopus_id/73949111386,Jessica R. Lunsford;Sarah E. Horsey;Laura A. Thomas;Stephen J. Fromm;Amanda E. Guyer;Michelle M. Reising;Ellen Leibenluft;Melissa A. Brotman;Kenneth Towbin;Brendan A. Rich;Daniel S. Pine,196,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=73949111386&origin=inward,10.1176/appi.ajp.2009.09010043,2010-01-01,2-s2.0-73949111386,,61-69,19917597.0,73949111386,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=73949111386&origin=inward,Pine,American Journal of Psychiatry,Amygdala activation during emotion processing of neutral faces in children with severe mood dysregulation versus ADHD or bipolar disorder,Article +,https://api.elsevier.com/content/abstract/scopus_id/37548998957,Lisa H. Berghorst;Stephen J. Fromm;Daniel P. Dickstein;Ellen Leibenluft;Melissa A. Brotman;Brendan A. Rich;Daniel S. Pine,97,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=37548998957&origin=inward,10.1111/j.1469-7610.2007.01819.x,2008-01-01,2-s2.0-37548998957,,88-96,18181882.0,37548998957,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=37548998957&origin=inward,Pine,Journal of Child Psychology and Psychiatry and Allied Disciplines,Neural connectivity in children with bipolar disorder: Impairment in the face emotion processing circuit,Article +,https://api.elsevier.com/content/abstract/scopus_id/35748984107,Deborah Vinton;Roxann Roberson-nay;Daniel P. Dickstein;Lisa Berghorst;Ellen Leibenluft;Brendan A. Rich;Daniel S. Pine,65,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=35748984107&origin=inward,10.1111/j.1399-5618.2007.00418.x,2007-11-01,2-s2.0-35748984107,,679-692,17988357.0,35748984107,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=35748984107&origin=inward,Pine,Bipolar Disorders,Neural activation during encoding of emotional faces in pediatric bipolar disorder,Article +,https://api.elsevier.com/content/abstract/scopus_id/84904821099,Gang Chen;Nancy E. Adleman;Robert W. Cox;Ziad S. Saad;Ellen Leibenluft,72,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84904821099&origin=inward,10.1016/j.neuroimage.2014.06.027,2014-10-01,2-s2.0-84904821099,NIH,571-588,24954281.0,84904821099,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84904821099&origin=inward,Leibenluft,NeuroImage,Applications of multivariate modeling to neuroimaging group analysis: A comprehensive alternative to univariate general linear model,Article +,https://api.elsevier.com/content/abstract/scopus_id/77954092726,Rebecca E. Hommer;Naomi M. Kenner;Jeanette A. Mumford;Martha Skup;Ellen Leibenluft;Russell A. Poldrack,58,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77954092726&origin=inward,10.1523/JNEUROSCI.1096-10.2010,2010-06-23,2-s2.0-77954092726,,8512-8518,20573898.0,77954092726,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77954092726&origin=inward,Leibenluft,Journal of Neuroscience,Inhibitory motor control in response stopping and response switching,Article +,https://api.elsevier.com/content/abstract/scopus_id/36749028840,Rebecca E. Hommer;Kenneth E. Towbin;Eric E. Nelson;Daniel P. Dickstein;Lisa Berghorst;Melissa A. Brotman;Ellen Leibenluft;Deborah T. Vinton;Brendan A. Rich;Daniel S. Pine,47,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=36749028840&origin=inward,10.1111/j.1399-5618.2007.00419.x,2007-12-01,2-s2.0-36749028840,,810-819,18076530.0,36749028840,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=36749028840&origin=inward,Pine,Bipolar Disorders,Brain systems underlying response flexibility in healthy and bipolar adolescents: An event-related fMRI study,Article +,https://api.elsevier.com/content/abstract/scopus_id/78049516789,Elizabeth C. Finger;Martha Skup;Daniel P. Dickstein;Ellen Leibenluft;James R. Blair;Daniel S. Pine,45,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=78049516789&origin=inward,10.1111/j.1399-5618.2010.00863.x,2010-11-01,2-s2.0-78049516789,,707-719,21040288.0,78049516789,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=78049516789&origin=inward,Pine,Bipolar Disorders,Altered neural function in pediatric bipolar disorder during reversal learning,Article +,https://api.elsevier.com/content/abstract/scopus_id/84885192759,Richard C. Reynolds;Christen M. Deveney;Megan E. Connolly;Pilyoung Kim;Brian L. Bones;Ellen Leibenluft;Catherine T. Haring;Daniel S. Pine,53,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84885192759&origin=inward,10.1176/appi.ajp.2013.12070917,2013-10-01,2-s2.0-84885192759,,1186-1194,,84885192759,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84885192759&origin=inward,Pine,American Journal of Psychiatry,Neural mechanisms of frustration in chronically irritable children,Article +,https://api.elsevier.com/content/abstract/scopus_id/80054867803,Daniel Dickstein;Daniel Pine;Nancy E. Adleman;R. James R. Blair;Reilly Kayser;Ellen Leibenluft,48,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=80054867803&origin=inward,10.1016/j.jaac.2011.07.011,2011-01-01,2-s2.0-80054867803,,1173-1185.e2,,80054867803,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=80054867803&origin=inward,Blair,Journal of the American Academy of Child and Adolescent Psychiatry,Neural correlates of reversal learning in severe mood dysregulation and pediatric bipolar disorder,Article +,https://api.elsevier.com/content/abstract/scopus_id/84857595862,Stephen J. Fromm;Julia G. Rutenberg;Christen M. Deveney;Ellen Leibenluft;Melissa A. Brotman;Aviva K. Olsavsky;Kenneth Towbin;Eli J. Muhrer;Daniel S. Pine,45,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84857595862&origin=inward,10.1016/j.jaac.2011.12.008,2012-03-01,2-s2.0-84857595862,,294-303,22365465.0,84857595862,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84857595862&origin=inward,Pine,Journal of the American Academy of Child and Adolescent Psychiatry,Amygdala hyperactivation during face emotion processing in unaffected youth at risk for bipolar disorder,Article +,https://api.elsevier.com/content/abstract/scopus_id/84862221668,Carlos A. Zarate;R. James R. Blair;Laura A. Thomas;Alexander M. Moscicki;Pilyoung Kim;Brooke H. Rosen;Ellen Leibenluft;Melissa A. Brotman;Daniel S. Pine,31,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84862221668&origin=inward,10.1176/appi.ajp.2012.11081245,2012-06-01,2-s2.0-84862221668,,642-649,,84862221668,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84862221668&origin=inward,Zarate,American Journal of Psychiatry,Differing amygdala responses to facial expressions in children and adults with bipolar disorder,Article +,https://api.elsevier.com/content/abstract/scopus_id/84867576031,Nancy E. Adleman;Reilly Kayser;Stephen J. Fromm;Varun Razdan;Daniel P. Dickstein;Melissa A. Brotman;Ellen Leibenluft;Daniel S. Pine,35,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84867576031&origin=inward,10.1111/j.1469-7610.2012.02568.x,2012-11-01,2-s2.0-84867576031,,1149-1156,22650379.0,84867576031,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84867576031&origin=inward,Pine,Journal of Child Psychology and Psychiatry and Allied Disciplines,Cross-sectional and longitudinal abnormalities in brain structure in children with severe mood dysregulation or bipolar disorder,Article +,https://api.elsevier.com/content/abstract/scopus_id/84878267180,Daniel S. Pine;Richard C. Reynolds;Nancy E. Adleman;Laura A. Thomas;R. J.R. Blair;Pilyoung Kim;Ellen Leibenluft;Kendra E. Hinton;Abigail A. Marsh;Brian L. Bones;Hannah S. Milch,29,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84878267180&origin=inward,10.1016/j.nicl.2013.04.007,2013-06-03,2-s2.0-84878267180,,637-645,,84878267180,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84878267180&origin=inward,Blair,NeuroImage: Clinical,Elevated amygdala responses to emotional faces in youths with chronic irritability or bipolar disorder,Article +,https://api.elsevier.com/content/abstract/scopus_id/84991214825,Allison H. Oakes;Richard C. Reynolds;Gang Chen;Nancy E. Adleman;Pilyoung Kim;Jillian Lee Wiggins;Ellen Leibenluft;Melissa A. Brotman;Daniel S. Pine,33,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84991214825&origin=inward,10.1176/appi.ajp.2015.15060833,2016-07-01,2-s2.0-84991214825,,722-730,26892942.0,84991214825,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84991214825&origin=inward,Pine,American Journal of Psychiatry,Neural correlates of irritability in disruptive mood dysregulation and bipolar disorders,Article +,https://api.elsevier.com/content/abstract/scopus_id/84862195360,Carlos A. Zarate;Stephen J. Fromm;Christen M. Deveney;Megan E. Connolly;Stephanie B. LeBourdais;Judah D. Weathers;Argyris Stringaris;Melissa A. Brotman;Ellen Leibenluft;Daniel S. Pine,28,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84862195360&origin=inward,10.1176/appi.ajp.2012.11081244,2012-06-01,2-s2.0-84862195360,,633-641,,84862195360,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84862195360&origin=inward,Stringaris,American Journal of Psychiatry,A developmental study of the neural circuitry mediating motor inhibition in bipolar disorder,Article +,https://api.elsevier.com/content/abstract/scopus_id/73649122016,Francis J. McMahon;Martha Skup;Xinmin Liu;Ellen Leibenluft;Melissa A. Brotman;Nirmala Akula,19,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=73649122016&origin=inward,10.1097/00004583-201001000-00007,2010-01-01,2-s2.0-73649122016,,33-41,20215924.0,73649122016,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=73649122016&origin=inward,Leibenluft,Journal of the American Academy of Child and Adolescent Psychiatry,A Genome-Wide Association Study of Amygdala Activation in Youths With and Without Bipolar Disorder,Article +,https://api.elsevier.com/content/abstract/scopus_id/84922827361,Richard C. Reynolds;Monique Ernst;Daniel P. Dickstein;Ellen Leibenluft;Melissa A. Brotman;Derek Hsu;Joel Stoddard;Daniel S. Pine,18,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84922827361&origin=inward,10.1016/j.pscychresns.2014.11.006,2015-01-01,2-s2.0-84922827361,NIH,120-125,25544024.0,84922827361,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84922827361&origin=inward,Pine,Psychiatry Research - Neuroimaging,Aberrant amygdala intrinsic functional connectivity distinguishes youths with bipolar disorder from those with severe mood dysregulation,Article +,https://api.elsevier.com/content/abstract/scopus_id/43049161272,Kenneth E. Towbin;Lisa Knopf;Jan Willem van der Veen;Daniel P. Dickstein;Ellen Leibenluft;Daniel S. Pine,14,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=43049161272&origin=inward,10.1016/j.pscychresns.2007.11.006,2008-05-30,2-s2.0-43049161272,,30-39,18403184.0,43049161272,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=43049161272&origin=inward,Pine,Psychiatry Research - Neuroimaging,Proton magnetic resonance spectroscopy in youth with severe mood dysregulation,Article +,https://api.elsevier.com/content/abstract/scopus_id/84899710852,C. M. Deveney;J. G. Rutenberg;D. S. Pine;S. J. Fromm;W. L. Tseng;A. K. Olsavsky;N. E. Adleman;E. Leibenluft;C. A. Zarate;E. J. Muhrer;M. A. Brotman,19,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84899710852&origin=inward,10.1017/S003329171300202X,2014-01-01,2-s2.0-84899710852,,1639-1651,23930595.0,84899710852,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84899710852&origin=inward,Zarate,Psychological Medicine,Fronto-limbic-striatal dysfunction in pediatric and adult patients with bipolar disorder: Impact of face emotion and attentional demands,Article +,https://api.elsevier.com/content/abstract/scopus_id/84925940729,Jennifer Y. Yi;Laura A. Thomas;Melissa A. Brotman;Christen M. Deveney;Ellen Leibenluft;Kendra E. Hinton;Daniel S. Pine,13,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84925940729&origin=inward,10.1111/bdi.12193,2014-01-01,2-s2.0-84925940729,,756-763,24617738.0,84925940729,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84925940729&origin=inward,Pine,Bipolar Disorders,Parametric modulation of neural activity during face emotion processing in unaffected youth at familial risk for bipolar disorder,Article +,https://api.elsevier.com/content/abstract/scopus_id/84876788858,Nancy E. Adleman;Melissa A. Brotman;Stephen J. Fromm;Brian L. Bones;Reilly R. Kayser;Carlos Zarate;Ellen Leibenluft;Aviva K. Olsavsky;Eli J. Muhrer;Daniel S. Pine,14,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84876788858&origin=inward,10.1016/j.pscychresns.2013.01.006,2013-05-30,2-s2.0-84876788858,,161-163,23541333.0,84876788858,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84876788858&origin=inward,Pine,Psychiatry Research - Neuroimaging,Abnormal fusiform activation during emotional-face encoding assessed with functional magnetic resonance imaging,Article +,https://api.elsevier.com/content/abstract/scopus_id/84920938450,B. L. Bones;R. R. Kayser;S. J. Fromm;W. L. Tseng;A. K. Olsavsky;E. Leibenluft;D. S. Pine;M. A. Brotman,18,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84920938450&origin=inward,10.1016/j.eurpsy.2014.05.004,2015-01-01,2-s2.0-84920938450,,94-98,25172156.0,84920938450,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84920938450&origin=inward,Pine,European Psychiatry,An fMRI study of emotional face encoding in youth at risk for bipolar disorder,Article +,https://api.elsevier.com/content/abstract/scopus_id/84938745618,Amit Anand;Melissa A. Cyders;Tom A. Hummer;Leslie A. Hulvershorn;Lauren Overhage;Allyson Dir;Peter Finn;Rena Fukunaga;Ellen Leibenluft;Joshua Brown,9,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84938745618&origin=inward,10.1016/j.pscychresns.2015.05.007,2015-08-30,2-s2.0-84938745618,,102-111,26071624.0,84938745618,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84938745618&origin=inward,Leibenluft,Psychiatry Research - Neuroimaging,Neural activation during risky decision-making in youth at high risk for substance use disorders,Article +,https://api.elsevier.com/content/abstract/scopus_id/78650158125,Martha Skup;Laura A. Thomas;Ellen Leibenluft;Sarah E. Jenkins;Julie M. Hall;Daniel S. Pine,6,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=78650158125&origin=inward,10.1111/j.1467-7687.2010.00967.x,2011-01-01,2-s2.0-78650158125,,148-161,21159096.0,78650158125,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=78650158125&origin=inward,Pine,Developmental Science,A developmental neuroimaging investigation of the change paradigm,Article +,https://api.elsevier.com/content/abstract/scopus_id/85011396226,Gang Chen;Kenneth E. Towbin;Pilyoung Kim;Laura Donahue;Ellen Leibenluft;Melissa A. Brotman;Jennifer Yi;Joel Stoddard;Wan Ling Tseng;Daniel S. Pine,11,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85011396226&origin=inward,10.1001/jamapsychiatry.2016.3282,2017-01-01,2-s2.0-85011396226,,95-103,27902832.0,85011396226,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85011396226&origin=inward,Pine,JAMA Psychiatry,Association of irritability and anxiety with the neural mechanisms of implicit face emotion processing in youths with psychopathology,Article +,https://api.elsevier.com/content/abstract/scopus_id/84996636665,Elizabeth R. Steuber;Sven C. Mueller;Nancy E. Adleman;Andrea L. Gold;Sara N. Lever;Stephen J. Fromm;Ellen Leibenluft;Melissa A. Brotman;Daniel S. Pine,11,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84996636665&origin=inward,10.1016/j.jaac.2016.08.008,2016-12-01,2-s2.0-84996636665,,1027-1037.e3,27871637.0,84996636665,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84996636665&origin=inward,Pine,Journal of the American Academy of Child and Adolescent Psychiatry,Comparing Brain Morphometry Across Multiple Childhood Psychiatric Disorders,Conference Paper +,https://api.elsevier.com/content/abstract/scopus_id/84928689508,Richard C. Reynolds;Nancy E. Adleman;Carlos A. Zarate;Laura A. Thomas;Kendra E. Hinton;Christen M. Deveney;Ellen Leibenluft;Melissa A. Brotman;Eli M. Muhrer;Daniel S. Pine,5,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84928689508&origin=inward,10.1093/scan/nsu014,2013-01-01,2-s2.0-84928689508,,1984-1992,24493839.0,84928689508,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84928689508&origin=inward,Zarate,Social Cognitive and Affective Neuroscience,Neural response during explicit and implicit face processing varies developmentally in bipolar disorder,Article +,https://api.elsevier.com/content/abstract/scopus_id/85006340167,Richard C. Reynolds;Gang Chen;Nancy E. Adleman;Pilyoung Kim;Jillian Lee Wiggins;Ellen Leibenluft;Melissa A. Brotman;Kenneth Towbin;Caroline G. Wambach;Daniel S. Pine,8,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85006340167&origin=inward,10.1016/j.jaac.2016.10.009,2017-01-01,2-s2.0-85006340167,,67-78,27993231.0,85006340167,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85006340167&origin=inward,Pine,Journal of the American Academy of Child and Adolescent Psychiatry,Neural Markers in Pediatric Bipolar Disorder and Familial Risk for Bipolar Disorder,Article +,https://api.elsevier.com/content/abstract/scopus_id/85016555669,Kenneth E. Towbin;Nancy E. Adleman;David Pagliaccio;Jillian Lee Wiggins;Ellen Leibenluft;Melissa A. Brotman;Susan Zhang;Alexa Curhan;Daniel S. Pine,4,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85016555669&origin=inward,10.1016/j.jaac.2017.02.008,2017-05-01,2-s2.0-85016555669,,426-435,28433092.0,85016555669,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85016555669&origin=inward,Pine,Journal of the American Academy of Child and Adolescent Psychiatry,Behavioral and Neural Sustained Attention Deficits in Disruptive Mood Dysregulation Disorder and Attention-Deficit/Hyperactivity Disorder,Article +,https://api.elsevier.com/content/abstract/scopus_id/84994291800,Carlos A. Zarate;Laura A. Thomas;Elizabeth Harkins;Ellen Leibenluft;Melissa A. Brotman;Joel Stoddard;Wan Ling Tseng;Daniel S. Pine,2,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84994291800&origin=inward,10.1016/j.pscychresns.2016.10.006,2016-12-30,2-s2.0-84994291800,,1-9,27814457.0,84994291800,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84994291800&origin=inward,Zarate,Psychiatry Research - Neuroimaging,Functional connectivity during masked and unmasked face emotion processing in bipolar disorder,Article +,https://api.elsevier.com/content/abstract/scopus_id/62749197293,Torrey M.J. Loucks;Mary Kay Kenney;Christy L. Ludlow;Soo Eun Chang,104,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=62749197293&origin=inward,10.1016/j.neuroimage.2009.01.066,2009-05-15,2-s2.0-62749197293,,201-212,19401143.0,62749197293,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=62749197293&origin=inward,Zarate,NeuroImage,Brain activation abnormalities during speech and non-speech in stuttering speakers,Article +,https://api.elsevier.com/content/abstract/scopus_id/23444462637,Christy L. Ludlow,91,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=23444462637&origin=inward,10.1016/j.resp.2005.04.015,2005-07-28,2-s2.0-23444462637,,205-222,15927543.0,23444462637,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=23444462637&origin=inward,Zarate,Respiratory Physiology and Neurobiology,Central nervous system control of the laryngeal muscles in humans,Article +,https://api.elsevier.com/content/abstract/scopus_id/34247222555,Christy L. Ludlow;Kristina Simonyan;Catherine L. Reynolds;Torrey M J Loucks;Christopher J. Poletto,80,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34247222555&origin=inward,10.1016/j.neuroimage.2007.01.049,2007-05-15,2-s2.0-34247222555,,131-143,17428683.0,34247222555,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34247222555&origin=inward,Zarate,NeuroImage,Human brain activation during phonation and exhalation: Common volitional control for two upper airway functions,Article +,https://api.elsevier.com/content/abstract/scopus_id/38849191142,Fernanda Tovar-Moll;Christy L. Ludlow;Michael R. Lewin-Smith;Mark Hallett;Kristina Simonyan;Alexander O. Vortmeyer;Victor F. Kalasinsky;Elisabeth J. Rushing;John Ostuni,84,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=38849191142&origin=inward,10.1093/brain/awm303,2008-01-01,2-s2.0-38849191142,,447-459,18083751.0,38849191142,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=38849191142&origin=inward,Hallett,Brain,Focal white matter changes in spasmodic dysphonia: A combined diffusion tensor imaging and neuropathological study,Article +,https://api.elsevier.com/content/abstract/scopus_id/77957842072,Christy L. Ludlow;Kristina Simonyan,77,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77957842072&origin=inward,10.1093/cercor/bhq023,2010-11-01,2-s2.0-77957842072,,2749-2759,20194686.0,77957842072,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77957842072&origin=inward,Hallett,Cerebral Cortex,Abnormal activation of the primary somatosensory cortex in spasmodic dysphonia: An fMRI Study,Article +,https://api.elsevier.com/content/abstract/scopus_id/34548862046,Christy L. Ludlow;Ziad S. Saad;Kristina Simonyan;Torrey M J Loucks;Christopher J. Poletto,58,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34548862046&origin=inward,10.1016/j.neuroimage.2007.05.021,2007-08-15,2-s2.0-34548862046,,401-409,17574873.0,34548862046,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34548862046&origin=inward,Hallett,NeuroImage,Functional neuroanatomy of human voluntary cough and sniff production,Article +,https://api.elsevier.com/content/abstract/scopus_id/67349243451,Christy L. Ludlow;Soo Eun Chang;Torrey M.J. Loucks;Christopher J. Poletto;Mary Kay Kenney,38,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=67349243451&origin=inward,10.1016/j.neuroimage.2009.03.032,2009-08-01,2-s2.0-67349243451,,314-325,19327400.0,67349243451,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=67349243451&origin=inward,Hallett,NeuroImage,Common neural substrates support speech and non-speech vocal tract gestures,Article +,https://api.elsevier.com/content/abstract/scopus_id/84858262181,Christy L. Ludlow;Kristina Simonyan,42,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84858262181&origin=inward,10.1093/cercor/bhr120,2012-02-01,2-s2.0-84858262181,,417-425,21666131.0,84858262181,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84858262181&origin=inward,Hallett,Cerebral Cortex,Abnormal structure-function relationship in spasmodic dysphonia,Article +,https://api.elsevier.com/content/abstract/scopus_id/0036712795,Christy L. Ludlow;Sally L. Gewalt;W. Scott Selbie,21,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0036712795&origin=inward,10.1121/1.1501586,2002-09-01,2-s2.0-0036712795,,1077-1090,12243156.0,36712795,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0036712795&origin=inward,Hallett,Journal of the Acoustical Society of America,Developing an anatomical model of the human laryngeal cartilages from magnetic resonance imaging,Article +,https://api.elsevier.com/content/abstract/scopus_id/77954534915,John Ostuni;Anna Synnestvedt;Christy L. Ludlow;Soo Eun Chang,16,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77954534915&origin=inward,10.1016/j.jneuroling.2008.11.004,2010-09-01,2-s2.0-77954534915,,455-469,,77954534915,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77954534915&origin=inward,Hallett,Journal of Neurolinguistics,Similarities in speech and white matter characteristics in idiopathic developmental stuttering and adult-onset stuttering,Article +,https://api.elsevier.com/content/abstract/scopus_id/30044437340,Richard Henson;Alex Martin;Kalanit Grill-Spector,1358,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=30044437340&origin=inward,10.1016/j.tics.2005.11.006,2006-01-01,2-s2.0-30044437340,,14-23,16321563.0,30044437340,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=30044437340&origin=inward,Martin,Trends in Cognitive Sciences,Repetition and the brain: Neural models of stimulus-specific effects,Review +,https://api.elsevier.com/content/abstract/scopus_id/33847072067,Alex Martin,942,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33847072067&origin=inward,10.1146/annurev.psych.57.102904.190143,2007-02-23,2-s2.0-33847072067,,25-45,16968210.0,33847072067,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33847072067&origin=inward,Martin,Annual Review of Psychology,The representation of object concepts in the brain,Article +,https://api.elsevier.com/content/abstract/scopus_id/0033778373,Alex Martin;Linda L. Chao,849,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0033778373&origin=inward,10.1006/nimg.2000.0635,2000-01-01,2-s2.0-0033778373,,478-484,10988041.0,33778373,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0033778373&origin=inward,Martin,NeuroImage,Representation of manipulable man-made objects in the dorsal stream,Article +,https://api.elsevier.com/content/abstract/scopus_id/0035312810,L. L. Chao;A. Martin,822,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0035312810&origin=inward,10.1016/S0959-4388(00)00196-3,2001-04-01,2-s2.0-0035312810,,194-201,11301239.0,35312810,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0035312810&origin=inward,Martin,Current Opinion in Neurobiology,Semantic memory and the brain: Structure and processes,Review +,https://api.elsevier.com/content/abstract/scopus_id/1542268973,Kathryn E. Lee;Michael S. Beauchamp;Alex Martin;Brenna D. Argall,457,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=1542268973&origin=inward,10.1016/S0896-6273(04)00070-4,2004-03-04,2-s2.0-1542268973,,809-823,15003179.0,1542268973,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=1542268973&origin=inward,Martin,Neuron,Integration of auditory and visual information about objects in superior temporal sulcus,Article +,https://api.elsevier.com/content/abstract/scopus_id/0037187721,Kathryn E. Lee;Michael S. Beauchamp;Alex Martin;James V. Haxby,381,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0037187721&origin=inward,10.1016/S0896-6273(02)00642-6,2002-03-28,2-s2.0-0037187721,,149-159,11931749.0,37187721,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0037187721&origin=inward,Martin,Neuron,Parallel visual motion processing streams for manipulable objects and human movements,Article +,https://api.elsevier.com/content/abstract/scopus_id/0142025001,Kathryn E. Lee;Michael S. Beauchamp;Alex Martin;James V. Haxby,326,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0142025001&origin=inward,10.1162/089892903770007380,2003-10-01,2-s2.0-0142025001,,991-1001,14614810.0,142025001,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0142025001&origin=inward,Martin,Journal of Cognitive Neuroscience,fMRI Responses to Video and Point-Light Displays of Moving Humans and Manipulable Objects,Article +,https://api.elsevier.com/content/abstract/scopus_id/7044264448,Jeff H. Duyn;Alex Martin;Michael S. Beauchamp;Jerzy Bodurka;Brenna D. Argall,337,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=7044264448&origin=inward,10.1038/nn1333,2004-11-01,2-s2.0-7044264448,,1190-1192,15475952.0,7044264448,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=7044264448&origin=inward,Duyn,Nature Neuroscience,Unraveling multisensory integration: Patchy organization within human STS multisensory cortex,Article +,https://api.elsevier.com/content/abstract/scopus_id/25144434898,W. Kyle Simmons;Alex Martin;Lawrence W. Barsalou,314,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=25144434898&origin=inward,10.1093/cercor/bhi038,2005-10-01,2-s2.0-25144434898,,1602-1608,15703257.0,25144434898,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=25144434898&origin=inward,Martin,Cerebral Cortex,Pictures of appetizing foods activate gustatory cortices for taste and reward,Article +,https://api.elsevier.com/content/abstract/scopus_id/20544448036,Michael S. Beauchamp,240,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=20544448036&origin=inward,10.1016/j.conb.2005.03.011,2005-01-01,2-s2.0-20544448036,,145-153,15831395.0,20544448036,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=20544448036&origin=inward,Martin,Current Opinion in Neurobiology,"See me, hear me, touch me: Multisensory integration in lateral occipital-temporal cortex",Review +,https://api.elsevier.com/content/abstract/scopus_id/34547436874,W. Kyle Simmons;Vimal Ramjee;Alex Martin;Lawrence W. Barsalou;Ken McRae;Michael S. Beauchamp,210,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34547436874&origin=inward,10.1016/j.neuropsychologia.2007.05.002,2007-08-03,2-s2.0-34547436874,,2802-2810,17575989.0,34547436874,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34547436874&origin=inward,Martin,Neuropsychologia,A common neural substrate for perceiving and knowing about color,Article +,https://api.elsevier.com/content/abstract/scopus_id/0033711374,Miranda Van Turennout;Alex Martin;Timothy Ellmore,186,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0033711374&origin=inward,10.1038/81873,2000-12-07,2-s2.0-0033711374,,1329-1334,11100155.0,33711374,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0033711374&origin=inward,Martin,Nature Neuroscience,Long-lasting cortical plasticity in the object naming system,Article +,https://api.elsevier.com/content/abstract/scopus_id/34547160845,Gioia A.L. Negri;Alex Martin;Raffaella I. Rumiati;Bradford Z. Mahon;Alfonso Caramazza;Shawn C. Milleville,192,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34547160845&origin=inward,10.1016/j.neuron.2007.07.011,2007-08-02,2-s2.0-34547160845,,507-520,17678861.0,34547160845,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34547160845&origin=inward,Martin,Neuron,Action-Related Properties Shape Object Representations in the Ventral Stream,Article +,https://api.elsevier.com/content/abstract/scopus_id/0038486607,Jill Weisberg;Alex Martin,174,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0038486607&origin=inward,10.1080/02643290342000005,2003-05-01,2-s2.0-0038486607,,575-587,,38486607,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0038486607&origin=inward,Martin,Cognitive Neuropsychology,Neural foundations for understanding social and mechanical concepts,Review +,https://api.elsevier.com/content/abstract/scopus_id/0036259085,Jill Weisberg;Alex Martin;Linda L. Chao,167,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0036259085&origin=inward,,2002-06-11,2-s2.0-0036259085,,545-551,11950772.0,36259085,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0036259085&origin=inward,Martin,Cerebral Cortex,Experience-dependent modulation of category-related cortical activity,Article +,https://api.elsevier.com/content/abstract/scopus_id/70349952389,Rachel Caravella;Lauren Kenworthy;Alex Martin;Tyler B. Jones;Laura Case;Rasmus M. Birn;Peter A. Bandettini,175,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=70349952389&origin=inward,10.1016/j.neuroimage.2009.07.036,2010-01-01,2-s2.0-70349952389,,1099-1107,19632335.0,70349952389,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=70349952389&origin=inward,Bandettini,NeuroImage,Neural systems supporting lexical search guided by letter and semantic category cues: A self-paced overt response fMRI study of verbal fluency,Article +,https://api.elsevier.com/content/abstract/scopus_id/21344455127,Michael S. Beauchamp,154,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=21344455127&origin=inward,10.1385/NI:03:02:93,2005-07-12,2-s2.0-21344455127,,93-113,15988040.0,21344455127,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=21344455127&origin=inward,Bandettini,Neuroinformatics,Statistical criteria in fMRI studies of multisensory integration,Article +,https://api.elsevier.com/content/abstract/scopus_id/84866396847,W. Kyle Simmons;Alex Martin;Robert W. Cox;Lydia A. Milbury;Gregory L. Wallace;Stephen J. Gotts,167,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84866396847&origin=inward,10.1093/brain/aws160,2012-01-01,2-s2.0-84866396847,,2711-2725,22791801.0,84866396847,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84866396847&origin=inward,Martin,Brain,Fractionation of social brain circuits in autism spectrum disorders,Article +,https://api.elsevier.com/content/abstract/scopus_id/33846977727,Miranda Van Turennout;Jill Weisberg;Alex Martin,144,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33846977727&origin=inward,10.1093/cercor/bhj176,2007-03-01,2-s2.0-33846977727,,513-521,16581980.0,33846977727,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33846977727&origin=inward,Martin,Cerebral Cortex,A neural system for learning about object function,Article +,https://api.elsevier.com/content/abstract/scopus_id/77949422404,W. Kyle Simmons;Alex Martin;Mark Reddish;Patrick S.F. Bellgowan,129,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77949422404&origin=inward,10.1093/cercor/bhp149,2010-04-01,2-s2.0-77949422404,,813-825,19620621.0,77949422404,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77949422404&origin=inward,Martin,Cerebral Cortex,The selectivity and functional connectivity of the anterior temporal lobes,Article +,https://api.elsevier.com/content/abstract/scopus_id/78649897373,Nathan Dankner;Lauren Kenworthy;Alex Martin;Jay N. Giedd;Gregory L. Wallace,144,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=78649897373&origin=inward,10.1093/brain/awq279,2010-12-01,2-s2.0-78649897373,,3745-3754,20926367.0,78649897373,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=78649897373&origin=inward,Martin,Brain,Age-related temporal and parietal cortical thinning in autism spectrum disorders,Article +,https://api.elsevier.com/content/abstract/scopus_id/34250325112,Thalia Wheatley;Alex Martin;Shawn C. Milleville,134,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34250325112&origin=inward,10.1111/j.1467-9280.2007.01923.x,2007-06-01,2-s2.0-34250325112,,469-474,17576256.0,34250325112,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34250325112&origin=inward,Martin,Psychological Science,Understanding animate agents: Distinct roles for the social network and mirror system: Research report,Article +,https://api.elsevier.com/content/abstract/scopus_id/33644901812,Jill Weisberg;Thalia Wheatley;Michael S. Beauchamp;Alex Martin,120,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33644901812&origin=inward,10.1162/089892905775008689,2005-12-01,2-s2.0-33644901812,,1871-1885,16356325.0,33644901812,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33644901812&origin=inward,Martin,Journal of Cognitive Neuroscience,Automatic priming of semantically related words reduces activity in the fusiform gyrus,Article +,https://api.elsevier.com/content/abstract/scopus_id/84887546061,Alex Martin;Robert W. Cox;Hang Joon Jo;Ziad S. Saad;Gregory L. Wallace;Stephen J. Gotts,133,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84887546061&origin=inward,10.3389/fnhum.2013.00356,2013-07-12,2-s2.0-84887546061,,,,84887546061,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84887546061&origin=inward,Martin,Frontiers in Human Neuroscience,The perils of global signal regression for group comparisons: A case study of Autism Spectrum Disorders,Article +,https://api.elsevier.com/content/abstract/scopus_id/32044472524,Ziad S. Saad;Michael S. Beauchamp;Brenna D. Argall,118,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=32044472524&origin=inward,10.1002/hbm.20158,2006-01-01,2-s2.0-32044472524,,14-27,16035046.0,32044472524,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=32044472524&origin=inward,Martin,Human Brain Mapping,Simplified intersubject averaging on the cortical surface using SUMA,Article +,https://api.elsevier.com/content/abstract/scopus_id/70349969868,Lauren Kenworthy;Alex Martin;Tyler B. Jones;Rasmus M. Birn;Shawn C. Milleville;Peter A. Bandettini;Laura K. Case,117,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=70349969868&origin=inward,10.1016/j.neuroimage.2009.07.051,2010-01-01,2-s2.0-70349969868,,401-414,19646533.0,70349969868,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=70349969868&origin=inward,Bandettini,NeuroImage,Sources of group differences in functional connectivity: An investigation applied to autism spectrum disorder,Article +,https://api.elsevier.com/content/abstract/scopus_id/70349423423,W. Kyle Simmons;Alex Martin,117,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=70349423423&origin=inward,10.1017/S1355617709990348,2009-01-01,2-s2.0-70349423423,,645-649,19631024.0,70349423423,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=70349423423&origin=inward,Martin,Journal of the International Neuropsychological Society,The anterior temporal lobes and the functional architecture of semantic memory,Review +,https://api.elsevier.com/content/abstract/scopus_id/0037382263,Miranda Van Turennout;Alex Martin;Lisa Bielamowicz,101,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0037382263&origin=inward,10.1093/cercor/13.4.381,2003-04-01,2-s2.0-0037382263,,381-391,12631567.0,37382263,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0037382263&origin=inward,Martin,Cerebral Cortex,Modulation of neural activity during object naming: Effects of time and practice,Article +,https://api.elsevier.com/content/abstract/scopus_id/34248593724,Michael S. Beauchamp;Alex Martin,103,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34248593724&origin=inward,10.1016/S0010-9452(08)70470-2,2007-01-01,2-s2.0-34248593724,,461-468,17533768.0,34248593724,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34248593724&origin=inward,Martin,Cortex,Grounding object concepts in perception and action: Evidence from fMRI studies of tools,Article +,https://api.elsevier.com/content/abstract/scopus_id/84883412265,Alex Martin;Robert W. Cox;Hang Joon Jo;Ziad S. Saad;Gregory L. Wallace;Stephen J. Gotts,121,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84883412265&origin=inward,10.1073/pnas.1302581110,2013-09-03,2-s2.0-84883412265,NIH,,23959883.0,84883412265,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84883412265&origin=inward,Martin,Proceedings of the National Academy of Sciences of the United States of America,Two distinct forms of functional lateralization in the human brain,Article +,https://api.elsevier.com/content/abstract/scopus_id/10644277895,Alex Martin;Marco Lopes;Richard E. Carson;Peter Herscovitch;Ricardo Gil-da-Costa;Marc D. Hauser;Allen Braun,92,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=10644277895&origin=inward,10.1073/pnas.0408077101,2004-12-14,2-s2.0-10644277895,,17516-17521,15583132.0,10644277895,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=10644277895&origin=inward,Martin,Proceedings of the National Academy of Sciences of the United States of America,Toward an evolutionary perspective on conceptual representation: Species-specific calls activate visual and affective processing systems in the macaque,Article +,https://api.elsevier.com/content/abstract/scopus_id/33749325994,Elizabeth A. Buffalo;Alex Martin;Patrick S.F. Bellgowan,85,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33749325994&origin=inward,10.1101/lm.251906,2006-10-09,2-s2.0-33749325994,,638-643,16980544.0,33749325994,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33749325994&origin=inward,Martin,Learning and Memory,Distinct roles for medial temporal lobe structures in memory for objects and their locations,Article +,https://api.elsevier.com/content/abstract/scopus_id/84864692538,Alex Martin;Stephen J. Gotts;Carson C. Chow,86,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84864692538&origin=inward,10.1080/17588928.2012.670617,2012-08-01,2-s2.0-84864692538,,227-237,,84864692538,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84864692538&origin=inward,Martin,Cognitive Neuroscience,Repetition priming and repetition suppression: A case for enhanced efficiency through neural synchronization,Article +,https://api.elsevier.com/content/abstract/scopus_id/31844449196,Alex Martin;Patrick S.F. Bellgowan;Peter Van Gelderen;Jerzy Bodurka;Peter A. Bandettini,63,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=31844449196&origin=inward,10.1016/j.neuroimage.2005.08.042,2006-02-15,2-s2.0-31844449196,,1244-1251,16242347.0,31844449196,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=31844449196&origin=inward,Bandettini,NeuroImage,Improved BOLD detection in the medial temporal region using parallel imaging and voxel volume reduction,Article +,https://api.elsevier.com/content/abstract/scopus_id/0037879576,Laurent Petit;Michael S. Beauchamp,62,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0037879576&origin=inward,10.1152/jn.00988.2002,2003-05-01,2-s2.0-0037879576,,2516-2527,12611944.0,37879576,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0037879576&origin=inward,Bandettini,Journal of Neurophysiology,Neural basis of visually guided head movements studied with fMRI,Article +,https://api.elsevier.com/content/abstract/scopus_id/84878872023,Nathan Dankner;Lauren Kenworthy;Alex Martin;Briana Robustelli;Jay N. Giedd;Gregory L. Wallace,68,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84878872023&origin=inward,10.1093/brain/awt106,2013-01-01,2-s2.0-84878872023,,1956-1967,,84878872023,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84878872023&origin=inward,Martin,Brain,"Increased gyrification, but comparable surface area in adolescents with autism spectrum disorders",Article +,https://api.elsevier.com/content/abstract/scopus_id/0037703784,Alfonso Caramazza;Alex Martin,47,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0037703784&origin=inward,10.1080/02643290342000050,2003-05-01,2-s2.0-0037703784,,195-212,,37703784,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0037703784&origin=inward,Martin,Cognitive Neuropsychology,Neuropsychological and neuroimaging perspectives on conceptual knowledge: An introduction,Review +,https://api.elsevier.com/content/abstract/scopus_id/79953048045,Avniel Singh Ghuman;Alex Martin;Jonathan R. McDaniel,40,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79953048045&origin=inward,10.1016/j.neuroimage.2011.01.046,2011-05-01,2-s2.0-79953048045,,69-77,21256967.0,79953048045,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79953048045&origin=inward,Martin,NeuroImage,A wavelet-based method for measuring the oscillatory dynamics of resting-state functional connectivity in MEG,Article +,https://api.elsevier.com/content/abstract/scopus_id/0033957387,Alex Martin;Linda L. Chao;Leslie G. Ungerleider;Alumit Ishai;James V. Haxby,36,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0033957387&origin=inward,10.1016/S1364-6613(99)01423-0,2000-01-01,2-s2.0-0033957387,,3-4,,33957387,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0033957387&origin=inward,Ungerleider,Trends in Cognitive Sciences,Object-form topology in the ventral temporal lobe: Response to I. Gauthier (2000),Short Survey +,https://api.elsevier.com/content/abstract/scopus_id/84857320551,W. K. Simmons;Alex Martin,38,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84857320551&origin=inward,10.1093/scan/nsr018,2012-04-01,2-s2.0-84857320551,,467-475,21586527.0,84857320551,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84857320551&origin=inward,Martin,Social Cognitive and Affective Neuroscience,Spontaneous resting-state BOLD fluctuations reveal persistent domain-specific neural networks,Article +,https://api.elsevier.com/content/abstract/scopus_id/33845873303,W. Kyle Simmons;Alex Martin;Patrick S.F. Bellgowan,32,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33845873303&origin=inward,10.1038/nn0107-4,2007-01-01,2-s2.0-33845873303,,4-5,17189941.0,33845873303,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33845873303&origin=inward,Martin,Nature Neuroscience,Measuring selectivity in fMRI data [2],Letter +,https://api.elsevier.com/content/abstract/scopus_id/67649628233,Elizabeth A. Buffalo;Alex Martin;Jerzy Bodurka;Patrick S.F. Bellgowan,29,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=67649628233&origin=inward,10.1101/lm.1357309,2009-07-01,2-s2.0-67649628233,,433-438,19553381.0,67649628233,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=67649628233&origin=inward,Martin,Learning and Memory,Lateralized spatial and object memory encoding in entorhinal and perirhinal cortices,Article +,https://api.elsevier.com/content/abstract/scopus_id/0037308617,Michael S. Beauchamp,25,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0037308617&origin=inward,10.1002/mrm.10345,2003-02-01,2-s2.0-0037308617,,376-380,12541259.0,37308617,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0037308617&origin=inward,Martin,Magnetic Resonance in Medicine,Detection of eye movements from fMRI data,Article +,https://api.elsevier.com/content/abstract/scopus_id/79951843292,Alex Martin;Stephen J. Gotts;Frederick W. Carver;Jessica R. Gilbert,25,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79951843292&origin=inward,10.3389/fnhum.2010.00030,2010-01-01,2-s2.0-79951843292,,,,79951843292,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79951843292&origin=inward,Martin,Frontiers in Human Neuroscience,Object repetition leads to local increases in the temporal coordination of neural responses,Article +,https://api.elsevier.com/content/abstract/scopus_id/84930179650,Nathan Dankner;Ian W. Eisenberg;Lauren Kenworthy;Alex Martin;Briana Robustelli;Jay N. Giedd;Gregory L. Wallace,37,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84930179650&origin=inward,10.1016/j.jaac.2015.03.007,2015-01-01,2-s2.0-84930179650,NIH,464-469,26004661.0,84930179650,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84930179650&origin=inward,Martin,Journal of the American Academy of Child and Adolescent Psychiatry,Longitudinal cortical development during adolescence and young adulthood in autism spectrum disorder: Increased cortical thinning but comparable surface area changes,Article +,https://api.elsevier.com/content/abstract/scopus_id/84948674649,Lauren Kenworthy;Alex Martin;Mark Plitta;Gregory L. Wallace;Kelly Anne Barnes,32,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84948674649&origin=inward,10.1073/pnas.1510098112,2015-12-01,2-s2.0-84948674649,,E6699-E6706,26627261.0,84948674649,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84948674649&origin=inward,Martin,Proceedings of the National Academy of Sciences of the United States of America,Resting-state functional connectivity predicts longitudinal change in autistic traits and adaptive functioning in autism,Article +,https://api.elsevier.com/content/abstract/scopus_id/33646033141,Alex Martin,22,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33646033141&origin=inward,10.1016/j.neuron.2006.04.004,2006-04-20,2-s2.0-33646033141,,173-175,16630825.0,33646033141,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33646033141&origin=inward,Martin,Neuron,Shades of Déjerine-Forging a Causal Link between the Visual Word Form Area and Reading,Short Survey +,https://api.elsevier.com/content/abstract/scopus_id/84869027003,Alex Martin;Robert W. Cox;Hang Joon Jo;Ziad S. Saad;Stephen J. Gotts,13,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84869027003&origin=inward,10.1371/journal.pone.0048847,2012-11-08,2-s2.0-84869027003,,,23144995.0,84869027003,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84869027003&origin=inward,Martin,PLoS ONE,Quantifying Agreement between Anatomical and Functional Interhemispheric Correspondences in the Resting Brain,Article +,https://api.elsevier.com/content/abstract/scopus_id/78651470188,Alex Martin;Stephen J. Gotts;Patrick S.F. Bellgowan;Shawn C. Milleville,13,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=78651470188&origin=inward,10.1093/cercor/bhq113,2011-02-01,2-s2.0-78651470188,,477-491,20562319.0,78651470188,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=78651470188&origin=inward,Martin,Cerebral Cortex,Broad and narrow conceptual tuning in the human frontal lobes,Article +,https://api.elsevier.com/content/abstract/scopus_id/84864701276,Alex Martin;Stephen J. Gotts;Carson C. Chow,17,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84864701276&origin=inward,10.1080/17588928.2012.697054,2012-08-01,2-s2.0-84864701276,,250-259,,84864701276,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84864701276&origin=inward,Martin,Cognitive Neuroscience,Repetition priming and repetition suppression: Multiple mechanisms in need of testing,Editorial +,https://api.elsevier.com/content/abstract/scopus_id/84857745398,Alex Martin;Kelly Anne Barnes;W. Dale Stevens,9,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84857745398&origin=inward,10.1073/pnas.1200329109,2012-02-28,2-s2.0-84857745398,,3201-3202,22343289.0,84857745398,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84857745398&origin=inward,Martin,Proceedings of the National Academy of Sciences of the United States of America,Spontaneous neural activity predicts individual differences in performance,Note +,https://api.elsevier.com/content/abstract/scopus_id/84884325627,Lauren Kenworthy;Alex Martin;Peter A. Bandettini;Rasmus Birn;Shawn C. Milleville;Gregory L. Wallace;Laura K. Case,12,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84884325627&origin=inward,10.1016/j.bandc.2013.08.003,2013-11-01,2-s2.0-84884325627,,218-226,24056237.0,84884325627,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84884325627&origin=inward,Bandettini,Brain and Cognition,Aberrant neural mediation of verbal fluency in autism spectrum disorders,Article +,https://api.elsevier.com/content/abstract/scopus_id/27744520243,Alex Martin;Stephen J. Gotts,7,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=27744520243&origin=inward,10.1038/nn0905-1134,2005-09-01,2-s2.0-27744520243,,1134-1135,16127445.0,27744520243,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=27744520243&origin=inward,Martin,Nature Neuroscience,Making the causal link: Frontal cortex activity and repetition priming,Short Survey +,https://api.elsevier.com/content/abstract/scopus_id/84942898228,Lauren Kenworthy;Ian W. Eisenberg;Alex Martin;Gregory L. Wallace;Stephen J. Gotts,10,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84942898228&origin=inward,10.1186/s13229-015-0047-7,2015-10-01,2-s2.0-84942898228,,,,84942898228,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84942898228&origin=inward,Martin,Molecular Autism,Insistence on sameness relates to increased covariance of gray matter structure in autism spectrum disorder,Article +,https://api.elsevier.com/content/abstract/scopus_id/84944097585,Alex Martin;Stephen J. Gotts;Shawn C. Milleville,5,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84944097585&origin=inward,10.1016/j.neuropsychologia.2014.10.041,2015-09-01,2-s2.0-84944097585,,62-78,25445775.0,84944097585,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84944097585&origin=inward,Martin,Neuropsychologia,Object identification leads to a conceptual broadening of object representations in lateral prefrontal cortex,Article +,https://api.elsevier.com/content/abstract/scopus_id/1542346260,L. Stone;H. F. McFarland;P. A. Calabresi;J. A. Frank;N. Richert;R. Stone;B. Lewis;C. Bash;T. Howard,71,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=1542346260&origin=inward,10.1212/01.WNL.0000113765.75855.19,2004-03-09,2-s2.0-1542346260,,719-725,,1542346260,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=1542346260&origin=inward,McFarland,Neurology,Interferon-β-1b slows progression of atrophy in RRMS: Three-year follow-up in NAb- and NAb+ patients,Article +,https://api.elsevier.com/content/abstract/scopus_id/33646799546,M. M. Cao;S. Gupta;Francesca Bagnato;H. F. McFarland;M. Calabrese;L. Pezawas;J. M. Ohayon;J. A. Butman;F. Tovar-Moll;S. L. Talagala;M. Riva,65,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33646799546&origin=inward,,2006-11-01,2-s2.0-33646799546,,2161-2167,17110688.0,33646799546,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33646799546&origin=inward,Talagala,American Journal of Neuroradiology,In vivo detection of cortical plaques by MR imaging in patients with multiple sclerosis,Article +,https://api.elsevier.com/content/abstract/scopus_id/68549136725,N. D. Richert;H. F. McFarland;Francesca Bagnato;I. E. Evangelou;J. L. Ostuni;F. Tovar-Moll;J. M. Ohayon;S. L. Talagala;S. Auh;M. Ehrmantraut;A. W. Chiu,57,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=68549136725&origin=inward,10.3174/ajnr.A1564,2009-08-01,2-s2.0-68549136725,,1380-1386,19369608.0,68549136725,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=68549136725&origin=inward,Talagala,American Journal of Neuroradiology,Thalamic involvement and its impact on clinical disability in patients with multiple sclerosis: A diffusion tensor imaging study at 3T,Article +,https://api.elsevier.com/content/abstract/scopus_id/48349142161,H. F. McFarland;S. C. Reingold;Jerry S. Wolinsky;D. H. Miller;G. R. Cutter;J. Petkau;T. R. Fleming;U. Held;M. D. Hughes,45,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=48349142161&origin=inward,10.1177/1352458507088104,2008-07-01,2-s2.0-48349142161,,770-778,18535021.0,48349142161,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=48349142161&origin=inward,McFarland,Multiple Sclerosis,Magnetic resonance imaging as a surrogate outcome for multiple sclerosis relapses,Article +,https://api.elsevier.com/content/abstract/scopus_id/33644993732,N. D. Richert;H. F. McFarland;J. A. Frank;R. Stone;J. Ohayon;J. Ostuni;C. Bash;T. Howard,28,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33644993732&origin=inward,10.1212/01.wnl.0000197982.78063.06,2006-02-01,2-s2.0-33644993732,,551-556,16505310.0,33644993732,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33644993732&origin=inward,McFarland,Neurology,Relationship between inflammatory lesions and cerebral atrophy in multiple sclerosis,Article +,https://api.elsevier.com/content/abstract/scopus_id/72449209373,Joan Ohayon;Nancy Richert;Bibiana Bielekova;Henry F. McFarland;Claus Steffen Stürzebecher;Thomas Howard;Gregg Blevins;Roland Martin;Amy N. Packer,26,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=72449209373&origin=inward,10.1177/1352458509345903,2009-12-28,2-s2.0-72449209373,,1206-1214,19776093.0,72449209373,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=72449209373&origin=inward,Bielekova,Multiple Sclerosis,Treatment with the phosphodiesterase type-4 inhibitor rolipram fails to inhibit blood-brain barrier disruption in multiple sclerosis,Article +,https://api.elsevier.com/content/abstract/scopus_id/67349250116,Marcela Montequin;Francesca Bagnato;Bing Yao;Deborah Tkaczyk;Fredric Cantor;Ellen Condon;Hellmut Merkle;Henry McFarland;Martha Quezado;Sandra Moore,21,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=67349250116&origin=inward,10.1016/j.jns.2009.03.021,2009-07-15,2-s2.0-67349250116,,80-85,19394970.0,67349250116,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=67349250116&origin=inward,McFarland,Journal of the Neurological Sciences,Multisequence-imaging protocols to detect cortical lesions of patients with multiple sclerosis: Observations from a post-mortem 3 Tesla imaging study,Article +,https://api.elsevier.com/content/abstract/scopus_id/58449083627,Giuseppe Bomboi;Shiva Gupta;Joan Ohayon;Deeya Gaindh;Henry F. McFarland;Francesca Bagnato;Annie W. Chiu;Joseph A. Frank;Mary Ehrmantraut;Fredric K. Cantor;Nancy Richert,19,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=58449083627&origin=inward,10.1001/archneur.66.1.noc80047,2009-01-01,2-s2.0-58449083627,,39-43,19001157.0,58449083627,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=58449083627&origin=inward,McFarland,Archives of Neurology,Heterogeneity in response to interferon beta in patients with multiple sclerosis: A 3-year monthly imaging study,Article +,https://api.elsevier.com/content/abstract/scopus_id/77957565209,Francesca Bagnato;Joan Ohayon;Susan K. Stern;Henry F. McFarland;Vasiliki N. Ikonomidou;Zeena Salman;Sungyoung Auh;Mary Ehrmantraut;Fredric K. Cantor;Clelia Pellicano;Antonio Gallo;Robert Kane,15,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77957565209&origin=inward,10.1177/1352458510377223,2010-10-01,2-s2.0-77957565209,,1203-1212,20699284.0,77957565209,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77957565209&origin=inward,McFarland,Multiple Sclerosis,T1 cortical hypointensities and their association with cognitive disability in multiple sclerosis,Article +,https://api.elsevier.com/content/abstract/scopus_id/79953057659,Giuseppe Bomboi;Joan M. Ohayon;Francesca Bagnato;Jhalak Agarwal;Vasiliki N. Ikonomidou;Robert L. Kane;Sungyoung Auh;Iordanis E. Evangelou;Mary Ehrmantraut;Fredric K. Cantor;Clelia Pellicano;Antonio Gallo;Susan K. Stern;Stefano Pellegrini;Henry F. Mcfarland,11,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79953057659&origin=inward,10.1111/j.1552-6569.2010.00488.x,2011-04-01,2-s2.0-79953057659,,,20626570.0,79953057659,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79953057659&origin=inward,Mcfarland,Journal of Neuroimaging,Quality and Quantity of Diffuse and Focal White Matter Disease and Cognitive Disability of Patients with Multiple Sclerosis,Article +,https://api.elsevier.com/content/abstract/scopus_id/28044453525,N. D. Richert;M. M. Cao;S. Gupta;H. F. McFarland;Francesca Bagnato;J. L. Ostuni;R. D. Stone;J. M. Solomon;J. M. Ohayon;J. A. Frank;T. A. Tasciyan;P. A. Muraro,11,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=28044453525&origin=inward,10.1191/1352458505ms1229oa,2005-12-01,2-s2.0-28044453525,,658-668,16320725.0,28044453525,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=28044453525&origin=inward,McFarland,Multiple Sclerosis,Interferon-beta-1b effects on re-enhancing lesions in patients with multiple sclerosis,Article +,https://api.elsevier.com/content/abstract/scopus_id/34548538497,N. D. Richert;H. F. McFarland;V. N. Ikonomidou;J. A. Frank;S. Pellegrini;F. Bagnato;M. Ehrmantraut;A. W. Chiu,11,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34548538497&origin=inward,10.1111/j.1365-2249.2007.03467.x,2007-10-01,2-s2.0-34548538497,,61-67,17666095.0,34548538497,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34548538497&origin=inward,McFarland,Clinical and Experimental Immunology,A case study on the effect of neutralizing antibodies to interferon beta 1b in multiple sclerosis patients followed for 3 years with monthly imaging,Article +,https://api.elsevier.com/content/abstract/scopus_id/72949110763,Henry F. McFarland,10,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=72949110763&origin=inward,10.4103/0972-2327.58284,2009-10-01,2-s2.0-72949110763,,254-263,,72949110763,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=72949110763&origin=inward,McFarland,Annals of Indian Academy of Neurology,Examination of the role of magnetic resonance imaging in multiple sclerosis: A problem-orientated approach,Review +,https://api.elsevier.com/content/abstract/scopus_id/15544379472,N. D. Richert;H. F. McFarland;J. A. Frank;R. D. Stone;Katrin Morgen;R. Martin;A. L T Crawford,9,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=15544379472&origin=inward,10.1191/1352458505ms1147oa,2005-04-01,2-s2.0-15544379472,,146-148,15794386.0,15544379472,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=15544379472&origin=inward,McFarland,Multiple Sclerosis,Contrast-enhanced MRI lesions during treatment with interferonβ-1b predict increase in T1 black hole volume in patients with relapsing-remitting multiple sclerosis,Article +,https://api.elsevier.com/content/abstract/scopus_id/77949363891,N. D. Richert;H. F. McFarland;J. A. Frank;F. Bagnato;M. Riva;S. Auh;M. Davis,10,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77949363891&origin=inward,10.1212/WNL.0b013e3181d31df5,2010-01-01,2-s2.0-77949363891,,851-856,,77949363891,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77949363891&origin=inward,McFarland,Neurology,Ring and nodular multiple sclerosis lesions: A retrospective natural history study,Article +,https://api.elsevier.com/content/abstract/scopus_id/57649230797,Neal JefFries;Deeya Gaindh;Joan Ohayon;Nancy D. Richert;Francesca Bagnato;Joseph A. Frank;Henry McFarland;Clelia Pellicano,4,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=57649230797&origin=inward,10.1517/14712590802510629,2008-12-01,2-s2.0-57649230797,,1823-1829,18990070.0,57649230797,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=57649230797&origin=inward,McFarland,Expert Opinion on Biological Therapy,The effect of interferon beta-1b on size of short-lived enhancing lesions in patients with multiple sclerosis,Article +,https://api.elsevier.com/content/abstract/scopus_id/43449138818,Joan Ohayon;Francesca Bagnato;Henry F. McFarland;Pavlina Sonkova;Iordanis E. Evangelou;Fredric K. Cantor;Antonio Gallo,2,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=43449138818&origin=inward,10.1117/12.773055,2008-05-19,2-s2.0-43449138818,,,,43449138818,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=43449138818&origin=inward,McFarland,Progress in Biomedical Optics and Imaging - Proceedings of SPIE,Semi-automatic segmentation and modeling of the cervical spinal cord for volume quantification in multiple sclerosis patients from magnetic resonance images,Conference Paper +,https://api.elsevier.com/content/abstract/scopus_id/30544438866,Qiang Chen;Sarina Siddhanti;Stefanie Lis;Bernd Gallhofer;Venkata S. Mattay;Peter Kirsch;Daniela Mier;Andreas Meyer-Lindenberg;Harald Gruppe;Christine Esslinger,1026,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=30544438866&origin=inward,10.1523/JNEUROSCI.3984-05.2005,2005-12-07,2-s2.0-30544438866,,11489-11493,16339042.0,30544438866,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=30544438866&origin=inward,McFarland,Journal of Neuroscience,Oxytocin modulates neural circuitry for social cognition and fear in humans,Article +,https://api.elsevier.com/content/abstract/scopus_id/55249083831,Venkata S. Mattay;Daniel R. Weinberger;Andreas Meyer-Lindenberg;Danielle S. Bassett;Beth A. Verchinski;Edward Bullmore,716,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=55249083831&origin=inward,10.1523/JNEUROSCI.1929-08.2008,2008-09-10,2-s2.0-55249083831,,9239-9248,18784304.0,55249083831,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=55249083831&origin=inward,McFarland,Journal of Neuroscience,Hierarchical organization of human cortical networks in health and Schizophrenia,Article +,https://api.elsevier.com/content/abstract/scopus_id/34250332251,Venkata S. Mattay;Caroline F. Zink;Daniel R. Weinberger;Jason L. Stein;Andreas Meyer-Lindenberg;Danielle S. Bassett;Lisa M. Wiedholz,290,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34250332251&origin=inward,10.1016/j.neuroimage.2007.03.022,2007-07-01,2-s2.0-34250332251,,736-745,17475514.0,34250332251,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34250332251&origin=inward,McFarland,NeuroImage,A validated network of effective amygdala connectivity,Article +,https://api.elsevier.com/content/abstract/scopus_id/42149160144,Qiang Chen;Caroline F. Zink;Jason L. Stein;Andreas Meyer-Lindenberg;Danielle S. Bassett;Yunxia Tong,287,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=42149160144&origin=inward,10.1016/j.neuron.2008.01.025,2008-04-24,2-s2.0-42149160144,,273-283,18439411.0,42149160144,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=42149160144&origin=inward,McFarland,Neuron,Know Your Place: Neural Processing of Social Hierarchy in Humans,Article +,https://api.elsevier.com/content/abstract/scopus_id/65549089478,Qiang Chen;Lukas Pezawas;Bruce Fischl;Venkata S. Mattay;Daniel R. Weinberger;Andreas Meyer-Lindenberg;Aaron L. Goldman;Beth A. Verchinski;Priv Doz,183,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=65549089478&origin=inward,10.1001/archgenpsychiatry.2009.24,2009-05-01,2-s2.0-65549089478,,467-477,19414706.0,65549089478,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=65549089478&origin=inward,McFarland,Archives of General Psychiatry,Widespread reductions of cortical thickness in schizophrenia and spectrum disorders and evidence of heritability,Article +,https://api.elsevier.com/content/abstract/scopus_id/39449099581,B. Kolachana;D. R. Weinberger;M. Genderson;V. S. Mattay;J. W. Buckholtz;J. H. Callicott;A. Meyer-Lindenberg;A. R. Hariri;M. F. Egan;T. E. Goldberg,158,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=39449099581&origin=inward,10.1038/sj.mp.4002020,2008-03-01,2-s2.0-39449099581,,313-324,17519928.0,39449099581,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=39449099581&origin=inward,McFarland,Molecular Psychiatry,Genetic variation in MAOA modulates ventromedial prefrontal circuitry mediating individual differences in human personality,Article +,https://api.elsevier.com/content/abstract/scopus_id/63849340463,Frederick Klauschen;Andreas Meyer-Lindenberg;Vincent Barra;Aaron Goldman;Arvid Lundervold,150,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=63849340463&origin=inward,10.1002/hbm.20599,2009-04-01,2-s2.0-63849340463,,1310-1327,18537111.0,63849340463,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=63849340463&origin=inward,McFarland,Human Brain Mapping,Evaluation of automated brain MR image segmentation and volumetry methods,Article +,https://api.elsevier.com/content/abstract/scopus_id/38949151125,Lukas Pezawas;Bruce Fischl;Venkata S. Mattay;Daniel R. Weinberger;Andreas Meyer-Lindenberg;Aaron L. Goldman;Beth A. Verchinski;Brad Zoltick,111,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=38949151125&origin=inward,10.1016/j.biopsych.2007.06.006,2008-03-01,2-s2.0-38949151125,,475-483,17727823.0,38949151125,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=38949151125&origin=inward,McFarland,Biological Psychiatry,Heritability of Brain Morphology Related to Schizophrenia: A Large-Scale Automated Magnetic Resonance Imaging Segmentation Study,Article +,https://api.elsevier.com/content/abstract/scopus_id/77952625256,Lucas Kempf;Caroline F. Zink;Jason L. Stein;Shabnam Hakimi;Andreas Meyer-Lindenberg,84,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77952625256&origin=inward,10.1523/JNEUROSCI.4899-09.2010,2010-05-19,2-s2.0-77952625256,,7017-7022,20484643.0,77952625256,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77952625256&origin=inward,McFarland,Journal of Neuroscience,Vasopressin modulates medial prefrontal cortex-amygdala circuitry during emotion processing in humans,Article +,https://api.elsevier.com/content/abstract/scopus_id/84876376841,Reza Momenan;Henry Lin;Erica N. Grodin;Daniel W. Hommer;Caitlin A. Durkee,31,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84876376841&origin=inward,10.1016/j.nicl.2013.03.013,2013-04-24,2-s2.0-84876376841,,469-476,,84876376841,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84876376841&origin=inward,Hommer,NeuroImage: Clinical,"Deficits in cortical, diencephalic and midbrain gray matter in alcoholism measured by VBM: Effects of co-morbid substance abuse",Article +,https://api.elsevier.com/content/abstract/scopus_id/84894102678,Caitlin A. Durkee;Daniel W. Hommer;Joelle E. Sarlls;Reza Momenan,15,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84894102678&origin=inward,10.1371/journal.pone.0080952,2013-11-18,2-s2.0-84894102678,,,24260518.0,84894102678,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84894102678&origin=inward,Hommer,PLoS ONE,White matter microstructure alterations: A study of alcoholics with and without post-traumatic stress disorder,Article +,https://api.elsevier.com/content/abstract/scopus_id/85009124365,W. C. Drevets;D. S. Charney;A. Neumeister;A. C. Nugent;G. Hasler;P. Homan,13,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85009124365&origin=inward,10.1038/tp.2015.25,2015-03-17,2-s2.0-85009124365,NIH,e532,25781231.0,85009124365,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85009124365&origin=inward,Nugent,Translational psychiatry,Serotonin versus catecholamine deficiency: behavioral and neural effects of experimental depletion in remitted depression,Article +,https://api.elsevier.com/content/abstract/scopus_id/84992360788,Carlos A. Zarate;Frederick W. Carver;Richard Coppola;Allison C. Nugent;Bruce Luber;Stephen E. Robinson,3,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84992360788&origin=inward,10.1002/hbm.23417,2017-02-01,2-s2.0-84992360788,,779-791,27770478.0,84992360788,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84992360788&origin=inward,Nugent,Human Brain Mapping,Deriving frequency-dependent spatial patterns in MEG-derived resting state sensorimotor network: A novel multiband ICA technique,Article +,https://api.elsevier.com/content/abstract/scopus_id/84949323637,Robert C. McKinstry;Carlo Pierpaoli;Amritha Nayak;Lindsay Walker;Lin Ching Chang;Michael J. Rivkin;Judith Rumsey;Kelly N. Botteron;M. Okan Irfanoglu;James McCracken;Dah Jyuu Wang,17,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84949323637&origin=inward,10.1016/j.neuroimage.2015.05.083,2016-01-01,2-s2.0-84949323637,NICHD,1125-1130,26048622.0,84949323637,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84949323637&origin=inward,Pierpaoli,NeuroImage,The diffusion tensor imaging (DTI) component of the NIH MRI study of normal brain development (PedsDTI),Article +,https://api.elsevier.com/content/abstract/scopus_id/84960908679,Carlo Pierpaoli;Amritha Nayak;Neda Sadeghi;Cibu P. Thomas;Elizabeth B. Hutchinson;M. Okan Irfanoglu;Jeffrey Jenkins,13,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84960908679&origin=inward,10.1016/j.neuroimage.2016.02.066,2016-05-15,2-s2.0-84960908679,NICHD,439-454,26931817.0,84960908679,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84960908679&origin=inward,Pierpaoli,NeuroImage,DR-TAMAS: Diffeomorphic Registration for Tensor Accurate Alignment of Anatomical Structures,Article +,https://api.elsevier.com/content/abstract/scopus_id/17844403263,Monique Ernst;Sandra Jazbec;Eric E. Nelson;Erin B. McClure;Ellen Leibenluft;Christopher S. Monk;James Blair;Daniel S. Pine,420,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=17844403263&origin=inward,10.1016/j.neuroimage.2004.12.038,2005-05-01,2-s2.0-17844403263,,1279-1291,15850746.0,17844403263,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=17844403263&origin=inward,Leibenluft,NeuroImage,Amygdala and nucleus accumbens in responses to receipt and omission of gains in adults and adolescents,Article +,https://api.elsevier.com/content/abstract/scopus_id/43149105989,Daniel S. Pine;Xiaoqin Mai;Gang Chen;Erin B. McClure-Tone;Monique Ernst;Karin Mogg;Eva H. Telzer;Hugo M.C. Louro;Christopher S. Monk;Brendan P. Bradley,408,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=43149105989&origin=inward,10.1001/archpsyc.65.5.568,2008-05-01,2-s2.0-43149105989,,568-576,18458208.0,43149105989,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=43149105989&origin=inward,Pine,Archives of General Psychiatry,Amygdala and ventrolateral prefrontal cortex activation to masked angry faces in children and adolescents with generalized anxiety disorder,Article +,https://api.elsevier.com/content/abstract/scopus_id/0141535155,Robert M. Bilder;Monique Ernst;Dennis S. Charney;Eric Zarahn;Eric E. Nelson;Erin B. McClure;Ellen Leibenluft;Christopher S. Monk;Daniel S. Pine,345,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0141535155&origin=inward,10.1016/S1053-8119(03)00355-0,2003-09-01,2-s2.0-0141535155,,420-428,14527602.0,141535155,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0141535155&origin=inward,Leibenluft,NeuroImage,Adolescent immaturity in attention-related brain engagement to emotional facial expressions,Article +,https://api.elsevier.com/content/abstract/scopus_id/33846002401,Monique Ernst;R. James R. Blair;Stephen Fromm;Dennis S. Charney;Eric E. Nelson;Erin B. McClure;Ellen Leibenluft;Jessica M. Parrish;Abby Adler;Christopher S. Monk;Daniel S. Pine,283,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33846002401&origin=inward,10.1001/archpsyc.64.1.97,2007-01-01,2-s2.0-33846002401,,97-106,17199059.0,33846002401,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33846002401&origin=inward,Blair,Archives of General Psychiatry,Abnormal attention modulation of fear circuit function in pediatric generalized anxiety disorder,Article +,https://api.elsevier.com/content/abstract/scopus_id/33846109355,Monique Ernst;Neir Eshel;R. James Blair;Eric E. Nelson;Daniel S. Pine,247,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33846109355&origin=inward,10.1016/j.neuropsychologia.2006.10.004,2007-01-16,2-s2.0-33846109355,,1270-1279,17118409.0,33846109355,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33846109355&origin=inward,Blair,Neuropsychologia,Neural substrates of choice selection in adults and adolescents: Development of the ventrolateral prefrontal and anterior cingulate cortices,Article +,https://api.elsevier.com/content/abstract/scopus_id/4344608937,Daniel S. Pine;Monique Ernst;Neir Eshel;Dennis Charney;Eric Zarahn;Eric E. Nelson;Erin B. McClure;Ellen Leibenluft;Alan Zametkin;Kenneth Towbin;Christopher S. Monk;James Blair;Suzanne Munson,239,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=4344608937&origin=inward,10.1016/j.neuropsychologia.2004.05.011,2004-09-08,2-s2.0-4344608937,,1585-1597,15327927.0,4344608937,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=4344608937&origin=inward,Leibenluft,Neuropsychologia,Choice selection and reward anticipation: An fMRI study,Article +,https://api.elsevier.com/content/abstract/scopus_id/39049092692,Salvatore Mannuzza;Erin B. McClure-Tone;Mary Guardino;Carrie L. Masten;Monique Ernst;R. James Blair;Elizabeth A. Schroth;Rachel G. Klein;Eva H. Telzer;Stephen Fromm;John L. Moulton;Christopher S. Monk;Daniel S. Pine,246,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=39049092692&origin=inward,10.1176/appi.ajp.2007.06111917,2008-01-01,2-s2.0-39049092692,,90-98,17986682.0,39049092692,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=39049092692&origin=inward,Blair,American Journal of Psychiatry,Amygdala and nucleus accumbens activation to emotional facial expressions in children and adolescents at risk for major depression,Article +,https://api.elsevier.com/content/abstract/scopus_id/50649121042,Erin B. McClure-Tone;Monique Ernst;Abby D. Adler;Stephen J. Fromm;Amanda E. Guyer;Christopher S. Monk;Eric E. Nelson;Ellen Leibenluft;Roxann Roberson-Nay;Daniel S. Pine,218,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=50649121042&origin=inward,10.1162/jocn.2008.20114,2008-09-01,2-s2.0-50649121042,,1565-1582,18345988.0,50649121042,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=50649121042&origin=inward,Leibenluft,Journal of Cognitive Neuroscience,A developmental examination of amygdala response to facial expressions,Article +,https://api.elsevier.com/content/abstract/scopus_id/55749114253,Richard C. Reynolds;Erin B. McClure-Tone;Gang Chen;Monique Ernst;Jessica Parrish;Nathan A. Fox;R. J.R. Blair;Nina D. Shiffrin;Amanda E. Guyer;Jennifer Y.F. Lau;Eric E. Nelson;Ellen Leibenluft;Daniel S. Pine,212,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=55749114253&origin=inward,10.1001/archpsyc.65.11.1303,2008-11-01,2-s2.0-55749114253,,1303-1312,18981342.0,55749114253,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=55749114253&origin=inward,Blair,Archives of General Psychiatry,Amygdala and ventrolateral prefrontal cortex function during anticipated peer evaluation in pediatric social anxiety,Article +,https://api.elsevier.com/content/abstract/scopus_id/2542421114,Robert M. Bilder;Monique Ernst;Dennis S. Charney;Eric Zarahn;Eric E. Nelson;Ellen Leibenluft;Erin B. McClure;Christopher S. Monk;Daniel S. Pine,161,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=2542421114&origin=inward,10.1016/j.biopsych.2004.02.013,2004-06-01,2-s2.0-2542421114,,1047-1055,15158422.0,2542421114,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=2542421114&origin=inward,Leibenluft,Biological Psychiatry,A developmental examination of gender differences in brain engagement during evaluation of threat,Article +,https://api.elsevier.com/content/abstract/scopus_id/51349103469,Wayne C. Drevets;Daniel McCaffrey;Daniel S. Pine;Madeline Jacobs;Rebecca Rhodes;Karina Blair;Bruce W. Smith;Marilla Geraci;Matthew Jones;Elizabeth Finger;R. J.R. Blair;Dennis S. Charney;Krystal Mondillo;Jonathan Shaywitz;Meena Vythilingam,164,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=51349103469&origin=inward,10.1176/appi.ajp.2008.07071060,2008-09-01,2-s2.0-51349103469,,1193-1202,18483136.0,51349103469,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=51349103469&origin=inward,Blair,American Journal of Psychiatry,Response to emotional expressions in generalized social phobia and generalized anxiety disorder: Evidence for separate disorders,Article +,https://api.elsevier.com/content/abstract/scopus_id/61449255440,Erin B. McClure-Tone;Monique Ernst;Katja Beesdo;Michelle A. Goldwin;Stephen J. Fromm;Amanda E. Guyer;Hans Ulrich Wittchen;Jennifer Y.F. Lau;Eric E. Nelson;Ellen Leibenluft;Christopher S. Monk;Daniel S. Pine,160,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=61449255440&origin=inward,10.1001/archgenpsychiatry.2008.545,2009-03-01,2-s2.0-61449255440,,275-285,19255377.0,61449255440,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=61449255440&origin=inward,Leibenluft,Archives of General Psychiatry,Common and distinct amygdala-function perturbations in depressed vs anxious adolescents,Article +,https://api.elsevier.com/content/abstract/scopus_id/33745775065,Michael G. Hardin;Monique Ernst;Koraly Perez-Edgar;Nathan A. Fox;James M. Bjork;Amanda E. Guyer;Heather A. Henderson;Christopher S. Monk;Eric E. Nelson;Roxann Roberson-Nay;Daniel S. Pine,146,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33745775065&origin=inward,10.1523/JNEUROSCI.0666-06.2006,2006-09-08,2-s2.0-33745775065,,6399-6405,16775126.0,33745775065,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33745775065&origin=inward,Pine,Journal of Neuroscience,Striatal functional alteration in adolescents characterized by early childhood behavioral inhibition,Article +,https://api.elsevier.com/content/abstract/scopus_id/79952714381,Marguerite E. Reid;Elizabeth C. Finger;R. James R Blair;Pamela Ng;Courtney Sims;Abigail A. Marsh;Karina S. Blair;Daniel S. Pine,147,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79952714381&origin=inward,10.1176/appi.ajp.2010.10010129,2011-02-01,2-s2.0-79952714381,,152-162,21078707.0,79952714381,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79952714381&origin=inward,Pine,American Journal of Psychiatry,Disrupted reinforcement signaling in the orbitofrontal cortex and caudate in youths with conduct disorder or oppositional defiant disorder and a high level of psychopathic traits,Article +,https://api.elsevier.com/content/abstract/scopus_id/34147108781,Michael G. Hardin;Kaitlin Poeth;Monique Ernst;Nathan A. Fox;Koraly Pérez-Edgar;Amanda E. Guyer;Heather A. Henderson;Eric E. Nelson;Erin B. McClure;Roxann Roberson-Nay;Daniel S. Pine,136,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34147108781&origin=inward,10.1016/j.neuroimage.2007.02.006,2007-05-01,2-s2.0-34147108781,NICHD,1538-1546,17376704.0,34147108781,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34147108781&origin=inward,Pine,NeuroImage,Attention alters neural responses to evocative faces in behaviorally inhibited adolescents,Article +,https://api.elsevier.com/content/abstract/scopus_id/67650632629,Erin B. McClure-Tone;Nina D. Shiffrin;Amanda E. Guyer;Eric E. Nelson;Daniel S. Pine,130,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=67650632629&origin=inward,10.1111/j.1467-8624.2009.01313.x,2009-07-01,2-s2.0-67650632629,,1000-1015,19630890.0,67650632629,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=67650632629&origin=inward,Pine,Child Development,Probing the neural correlates of anticipated peer evaluation in adolescence,Article +,https://api.elsevier.com/content/abstract/scopus_id/18044379146,Wayne C. Drevets;Monique Ernst;Dennis Charney;Daniel S. Dickstein;Ellen Leibenluft;Allison C. Nugent;Michael P. Milham;Daniel S. Pine,126,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=18044379146&origin=inward,10.1016/j.biopsych.2005.01.038,2005-05-01,2-s2.0-18044379146,,961-966,15860335.0,18044379146,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=18044379146&origin=inward,Nugent,Biological Psychiatry,Selective reduction in amygdala volume in pediatric anxiety disorders: A voxel-based morphometry investigation,Article +,https://api.elsevier.com/content/abstract/scopus_id/77955282298,Sven C. Mueller;Monique Ernst;Mary Dozier;Ellen Leibenluft;Elizabeth Peloso;Darcy Mandell;Francoise S. Maheu;Daniel S. Pine,121,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77955282298&origin=inward,10.1016/j.neuropsychologia.2010.06.013,2010-08-01,2-s2.0-77955282298,,3037-3044,20561537.0,77955282298,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77955282298&origin=inward,Leibenluft,Neuropsychologia,Early-life stress is associated with impairment in cognitive control in adolescence: An fMRI study,Article +,https://api.elsevier.com/content/abstract/scopus_id/53849128548,Daniel S. Pine;Daniel McCaffrey;Gang Chen;Meena Vythilingam;Nick Hollon;Karina Blair;Matthew Jones;Pamela Ng;R. J.R. Blair;Marilla Geraci;Jeffrey Devido,108,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=53849128548&origin=inward,10.1001/archpsyc.65.10.1176,2008-10-01,2-s2.0-53849128548,,1176-1184,18838634.0,53849128548,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=53849128548&origin=inward,Blair,Archives of General Psychiatry,Neural response to self- and other referential praise and criticism in generalized social phobia,Article +,https://api.elsevier.com/content/abstract/scopus_id/77953104977,Kaitlin Poeth;Monique Ernst;Mary Dozier;Françoise S. Maheu;John P. Ackerman;Jessica Jenness;Amanda E. Guyer;Jennifer Y.F. Lau;Elizabeth Peloso;Darcy Mandell;Daniel S. Pine,116,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77953104977&origin=inward,10.3758/CABN.10.1.34,2010-03-01,2-s2.0-77953104977,,34-49,20233954.0,77953104977,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77953104977&origin=inward,Pine,"Cognitive, Affective and Behavioral Neuroscience",A preliminary study of medial temporal lobe function in youths with a history of caregiver deprivation and emotional neglect,Article +,https://api.elsevier.com/content/abstract/scopus_id/33847105048,Monique Ernst;Jennifer Cameron;Samantha Smith;Eric E. Nelson;Erin B. McClure;Ellen Leibenluft;Abby Adler;Christopher S. Monk;Daniel S. Pine,102,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33847105048&origin=inward,10.1007/s00213-006-0542-9,2007-03-01,2-s2.0-33847105048,,97-105,16972100.0,33847105048,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33847105048&origin=inward,Leibenluft,Psychopharmacology,fMRI predictors of treatment outcome in pediatric anxiety disorders,Article +,https://api.elsevier.com/content/abstract/scopus_id/33750072007,Monique Ernst;Stephen J. Fromm;Amanda E. Guyer;Dennis S. Charney;Eric E. Nelson;Erin B. McClure;Ellen Leibenluft;Roxann Roberson-Nay;Christopher S. Monk;James Blair;Daniel S. Pine,95,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33750072007&origin=inward,10.1016/j.biopsych.2006.02.018,2006-11-01,2-s2.0-33750072007,,966-973,16603133.0,33750072007,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33750072007&origin=inward,Leibenluft,Biological Psychiatry,Increased Amygdala Activity During Successful Memory Encoding in Adolescent Major Depressive Disorder: An fMRI Study,Article +,https://api.elsevier.com/content/abstract/scopus_id/50849131654,Daniel S. Pine;Xiaoqin Mai;Monique Ernst;Karin Mogg;Eva H. Telzer;Christopher S. Monk;Brendan P. Bradley,104,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=50849131654&origin=inward,10.1016/j.biopsycho.2008.05.004,2008-10-01,2-s2.0-50849131654,,216-222,18599179.0,50849131654,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=50849131654&origin=inward,Pine,Biological Psychology,"Relationship between trait anxiety, prefrontal cortex, and attention bias to angry faces in children and adolescents",Article +,https://api.elsevier.com/content/abstract/scopus_id/84875232388,Daniel S. Pine;Monique Ernst;Brenda Benson;F. Xavier Castellanos;Christina Carlisi;Teresa Daniele;Amy K. Roy;Clare Kelly;Justin S.A. Perry;Michael P. Milham;Julie L. Fudge,106,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84875232388&origin=inward,10.1016/j.jaac.2012.12.010,2013-01-01,2-s2.0-84875232388,,,,84875232388,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84875232388&origin=inward,Pine,Journal of the American Academy of Child and Adolescent Psychiatry,Intrinsic functional connectivity of amygdala-based networks in adolescent generalized anxiety disorder,Article +,https://api.elsevier.com/content/abstract/scopus_id/58349113592,Monique Ernst;Pei Hong Shen;Stephen J. Fromm;Beata Buzas;Colin Hodgkinson;Amanda E. Guyer;Jennifer Y.F. Lau;Eric E. Nelson;David Goldman;Christopher S. Monk;Daniel S. Pine,84,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=58349113592&origin=inward,10.1016/j.biopsych.2008.08.037,2009-02-15,2-s2.0-58349113592,,349-355,18950748.0,58349113592,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=58349113592&origin=inward,Pine,Biological Psychiatry,Amygdala Function and 5-HTT Gene Variants in Adolescent Anxiety and Major Depressive Disorder,Article +,https://api.elsevier.com/content/abstract/scopus_id/0036334961,Abby Fyer;Robert M. Bilder;Neil Burgess;Eleanor A. Maguire;Eric Zarahn;Vivian Koda;Philip R. Szeszko;Joseph Grun;Daniel S. Pine,85,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0036334961&origin=inward,10.1006/nimg.2001.0988,2002-01-01,2-s2.0-0036334961,,396-406,,36334961,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0036334961&origin=inward,Pine,NeuroImage,Neurodevelopmental aspects of spatial navigation: A virtual reality fMRI study,Article +,https://api.elsevier.com/content/abstract/scopus_id/68249129557,Monique Ernst;Brenda Benson;Yair Bar-Haim;Amber Williams;Nathan A. Fox;Koraly Perez-Edgar;Amanda E. Guyer;Eric E. Nelson;Daniel S. Pine,82,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=68249129557&origin=inward,10.1111/j.1467-9280.2009.02401.x,2009-08-01,2-s2.0-68249129557,,1009-1018,19594857.0,68249129557,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=68249129557&origin=inward,Pine,Psychological Science,Neural correlates of reward processing in adolescents with a history of inhibited temperament,Article +,https://api.elsevier.com/content/abstract/scopus_id/84918793901,Daniel S. Pine;Ellen Leibenluft;R. James R. Blair,106,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84918793901&origin=inward,10.1056/NEJMra1315612,2014-12-04,2-s2.0-84918793901,,2207-2216,25470696.0,84918793901,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84918793901&origin=inward,Blair,New England Journal of Medicine,Conduct disorder and callous-unemotional traits in youth,Review +,https://api.elsevier.com/content/abstract/scopus_id/0141921574,Monique Ernst;Eric Zarahn;Eric E. Nelson;Ellen Leibenluft;Erin B. McClure;Christopher S. Monk;Daniel S. Pine,73,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0141921574&origin=inward,10.1111/1469-7610.00186,2003-10-01,2-s2.0-0141921574,,1015-1024,14531584.0,141921574,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0141921574&origin=inward,Leibenluft,Journal of Child Psychology and Psychiatry and Allied Disciplines,Developmental differences in neuronal engagement during implicit encoding of emotional faces: An event-related fMRI study,Article +,https://api.elsevier.com/content/abstract/scopus_id/84857600286,Allison Detloff;Victoria R. Choate;Monique Ernst;Brenda Benson;Koraly Perez-Edgar;Nathan A. Fox;Amanda E. Guyer;Eric E. Nelson;Daniel S. Pine,76,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84857600286&origin=inward,10.1176/appi.ajp.2011.11010006,2012-01-01,2-s2.0-84857600286,,205-212,,84857600286,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84857600286&origin=inward,Pine,American Journal of Psychiatry,Striatal functional alteration during incentive anticipation in pediatric anxiety disorders,Article +,https://api.elsevier.com/content/abstract/scopus_id/79952729757,Jennifer C. Britton;Jennifer Y. Lau;Monique Ernst;Christian Grillon;Maxine Norcross;Adrian Angold;Michelle Goldwin;Shmuel Lissek;Eric E. Nelson;Nina Shiffrin;Ellen Leibenluft;Daniel S. Pine,84,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79952729757&origin=inward,10.1073/pnas.1005494108,2011-03-15,2-s2.0-79952729757,,4500-4505,21368210.0,79952729757,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79952729757&origin=inward,Grillon,Proceedings of the National Academy of Sciences of the United States of America,Distinct neural signatures of threat learning in adolescents and adults,Article +,https://api.elsevier.com/content/abstract/scopus_id/84870260560,Allison Detloff;Julie L. Fudge;Youngsun T. Cho;Monique Ernst;Amanda E. Guyer;Stephen Fromm;Daniel S. Pine,79,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84870260560&origin=inward,10.1016/j.neuroimage.2012.10.013,2013-02-01,2-s2.0-84870260560,,508-521,23069809.0,84870260560,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84870260560&origin=inward,Pine,NeuroImage,"Nucleus accumbens, thalamus and insula connectivity during incentive anticipation in typical adults and adolescents",Article +,https://api.elsevier.com/content/abstract/scopus_id/77955227027,Daniel S. Pine;Monique Ernst;Colin Hodgkinson;Beata Buzas;Eric Nelson;Jennifer Y.F. Lau;Ellen Leibenluft;David Goldman;Lindsey Sankin,72,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77955227027&origin=inward,10.1016/j.neuroimage.2009.11.026,2010-11-01,2-s2.0-77955227027,,952-961,19931400.0,77955227027,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77955227027&origin=inward,Leibenluft,NeuroImage,BDNF gene polymorphism (Val66Met) predicts amygdala and anterior hippocampus responses to emotional faces in anxious and depressed adolescents,Article +,https://api.elsevier.com/content/abstract/scopus_id/39449128305,Monique Ernst;F. Xavier Castellanos;Kristin Gotimer;Amy L. Krain;Sara Hefton;Michael P. Milham;Daniel S. Pine,72,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=39449128305&origin=inward,10.1016/j.biopsych.2007.06.011,2008-03-15,2-s2.0-39449128305,,563-568,17719566.0,39449128305,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=39449128305&origin=inward,Pine,Biological Psychiatry,A Functional Magnetic Resonance Imaging Investigation of Uncertainty in Adolescents with Anxiety Disorders,Article +,https://api.elsevier.com/content/abstract/scopus_id/33947263246,Nathan A. Fox;Amie A. Hane;Daniel S. Pine,68,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33947263246&origin=inward,10.1111/j.1467-8721.2007.00464.x,2007-02-01,2-s2.0-33947263246,,1-5,,33947263246,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33947263246&origin=inward,Pine,Current Directions in Psychological Science,Plasticity for affective neurocircuitry: How the environment affects gene expression,Article +,https://api.elsevier.com/content/abstract/scopus_id/84865227012,Daniel S. Pine;Nick Hollon;Bruce W. Smith;Marcela Otero;James R. Blair;Marilla Geraci;Karina S. Blair;Jeffrey Devido,72,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84865227012&origin=inward,10.1016/j.biopsych.2012.04.013,2012-09-15,2-s2.0-84865227012,,476-482,22592057.0,84865227012,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84865227012&origin=inward,Blair,Biological Psychiatry,"Reduced dorsal anterior cingulate cortical activity during emotional regulation and top-down attentional control in generalized social phobia, generalized anxiety disorder, and comorbid generalized social phobia/generalized anxiety disorder",Article +,https://api.elsevier.com/content/abstract/scopus_id/77951687142,Daniel S. Pine;Monique Ernst;Erin McClure-Tone;Karin Mogg;Julie Maslowsky;Christopher S. Monk;Brendan P. Bradley,66,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77951687142&origin=inward,10.1089/cap.2009.0049,2010-04-01,2-s2.0-77951687142,,105-111,20415605.0,77951687142,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77951687142&origin=inward,Pine,Journal of Child and Adolescent Psychopharmacology,A preliminary investigation of neural correlates of treatment in adolescents with generalized anxiety disorder,Article +,https://api.elsevier.com/content/abstract/scopus_id/33750407771,Monique Ernst;F. Xavier Castellanos;Rachel G. Klein;Amy L. Krain;Sara Hefton;Michael P. Milham;Daniel S. Pine,53,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33750407771&origin=inward,10.1111/j.1469-7610.2006.01677.x,2006-11-01,2-s2.0-33750407771,,1023-1030,17073981.0,33750407771,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33750407771&origin=inward,Pine,Journal of Child Psychology and Psychiatry and Allied Disciplines,An fMRI examination of developmental differences in the neural correlates of uncertainty and decision-making,Article +,https://api.elsevier.com/content/abstract/scopus_id/84885223873,Jennifer C. Britton;Maxine A. Norcross;Gang Chen;Monique Ernst;Christian Grillon;Shmuel Lissek;Tomer Shechner;Eric E. Nelson;Ellen Leibenluft;Kristin L. Szuhany;Daniel S. Pine,66,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84885223873&origin=inward,10.1176/appi.ajp.2013.12050651,2013-10-01,2-s2.0-84885223873,,1195-1204,,84885223873,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84885223873&origin=inward,Leibenluft,American Journal of Psychiatry,Response to learned threat: An fMRI study in adolescent and adult anxiety,Article +,https://api.elsevier.com/content/abstract/scopus_id/84875963708,Jennifer C. Britton;Gang Chen;Maxine A. Norcross;Kara M. Lindstrom;Yair Bar-Haim;Tomer Shechner;Michelle A. Clementi;Carolyn N. Spiro;Lindsey S. Sankin;Daniel S. Pine,62,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84875963708&origin=inward,10.1016/j.dcn.2012.11.001,2013-01-01,2-s2.0-84875963708,,52-64,23200784.0,84875963708,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84875963708&origin=inward,Pine,Developmental Cognitive Neuroscience,Training-associated changes and stability of attention bias in youth: Implications for Attention Bias Modification Treatment for pediatric anxiety,Article +,https://api.elsevier.com/content/abstract/scopus_id/0035421353,Abby Fyer;Robert M. Bilder;Neil Burgess;Wei Li;Babak Ardekani;Joseph Grun;Eleanor A. Maguire;Vivian Koda;Philip R. Szeszko;Elizabeth A. Phelps;Daniel S. Pine,49,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0035421353&origin=inward,10.1016/S0006-3223(01)01159-3,2001-08-01,2-s2.0-0035421353,,225-228,11513822.0,35421353,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0035421353&origin=inward,Pine,Biological Psychiatry,Methods for developmental studies of fear conditioning circuitry,Review +,https://api.elsevier.com/content/abstract/scopus_id/54149098555,Stephan Heckers;Cameron S. Carter;Thomas Nichols;Stephen Strother;Daniel S. Pine,52,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=54149098555&origin=inward,10.1016/j.biopsych.2008.06.014,2008-11-15,2-s2.0-54149098555,,842-849,18718572.0,54149098555,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=54149098555&origin=inward,Pine,Biological Psychiatry,Optimizing the Design and Analysis of Clinical Functional Magnetic Resonance Imaging Research Studies,Review +,https://api.elsevier.com/content/abstract/scopus_id/79957587777,Madeline Jacobs;Catherine Majestic;Stephanie Odenheimer;R. J.R. Blair;Marcela Otero;Marilla Geraci;Karina S. Blair;Daniel S. Pine,45,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79957587777&origin=inward,10.1016/j.pscychresns.2010.12.016,2011-07-30,2-s2.0-79957587777,,38-45,21601433.0,79957587777,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79957587777&origin=inward,Blair,Psychiatry Research - Neuroimaging,Atypical modulation of medial prefrontal cortex to self-referential comments in generalized social phobia,Article +,https://api.elsevier.com/content/abstract/scopus_id/84880783821,Daniel S. Pine;Jennifer C. Britton;Gang Chen;Monique Ernst;Yair Bar-Haim;Nathan A. Fox;Koraly Pérez-Edgar;Karin Mogg;Jillian E. Hardee;Brenda E. Benson;Brendan P. Bradley,55,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84880783821&origin=inward,10.1016/j.biopsych.2013.01.036,2013-08-15,2-s2.0-84880783821,,273-279,23489415.0,84880783821,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84880783821&origin=inward,Pine,Biological Psychiatry,Patterns of neural connectivity during an attention bias task moderate associations between early childhood temperament and internalizing symptoms in young adulthood,Article +,https://api.elsevier.com/content/abstract/scopus_id/34247485995,Daniel S. Pine;Monique Ernst;Jennifer Cameron;Deborah P. Merke;Françoise S. Maheu;Eric Nelson;Elizabeth Schroth;Julie Hardin;Rachel Allen;Stuart Holzer;Liza Green Golan,42,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34247485995&origin=inward,10.1016/j.neuropsychologia.2007.01.019,2007-05-01,2-s2.0-34247485995,,2104-2113,17336344.0,34247485995,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34247485995&origin=inward,Pine,Neuropsychologia,Amygdala function in adolescents with congenital adrenal hyperplasia: A model for the study of early steroid abnormalities,Article +,https://api.elsevier.com/content/abstract/scopus_id/79551500383,Allison Detloff;Monique Ernst;Brenda Benson;Yair Bar-Haim;Koraly Perez-Edgar;Nathan A. Fox;Sarah M. Helfinstein;Daniel S. Pine,43,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79551500383&origin=inward,10.1016/j.neuropsychologia.2010.12.015,2011-02-01,2-s2.0-79551500383,NICHD,479-485,21167189.0,79551500383,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79551500383&origin=inward,Pine,Neuropsychologia,Striatal responses to negative monetary outcomes differ between temperamentally inhibited and non-inhibited adolescents,Article +,https://api.elsevier.com/content/abstract/scopus_id/53849118466,Monique Ernst;Deborah P. Merke;Françoise S. Maheu;Margaret F. Keil;Constantine A. Stratakis;Luigi Mazzone;Daniel S. Pine,38,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=53849118466&origin=inward,10.1017/S0954579408000564,2008-10-20,2-s2.0-53849118466,,1177-1189,18838037.0,53849118466,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=53849118466&origin=inward,Pine,Development and Psychopathology,Altered amygdala and hippocampus function in adolescents with hypercortisolemia: A functional magnetic resonance imaging study of Cushing syndrome,Article +,https://api.elsevier.com/content/abstract/scopus_id/84855643831,Jessica Jenness;Amanda E. Guyer;Erin B. Tone;Jennifer Y.F. Lau;Eric E. Nelson;Jessica M. Parrish;Daniel S. Pine,39,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84855643831&origin=inward,10.1177/0165025411406854,2012-01-01,2-s2.0-84855643831,,36-44,,84855643831,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84855643831&origin=inward,Pine,International Journal of Behavioral Development,Neural responses to peer rejection in anxious adolescents: Contributions from the amygdala-hippocampal complex,Conference Paper +,https://api.elsevier.com/content/abstract/scopus_id/84872920006,Sven C. Mueller;Monique Ernst;Aveline Aouidad;Elena Gorodetsky;David Goldman;Daniel S. Pine,41,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84872920006&origin=inward,10.1016/j.jaac.2012.11.016,2013-02-01,2-s2.0-84872920006,,184-195,23357445.0,84872920006,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84872920006&origin=inward,Pine,Journal of the American Academy of Child and Adolescent Psychiatry,Gray matter volume in adolescent anxiety: An impact of the brain-derived neurotrophic factor Val66met polymorphism?,Article +,https://api.elsevier.com/content/abstract/scopus_id/5044222459,Monique Ernst;Amanda E. Guyer;Dennis S. Charney;Girma Woldehawariat;Eric Zarahn;Eric E. Nelson;Erin B. McClure;Ellen Leibenluft;Lee Anne Montgomery;Christopher S. Monk;Daniel S. Pine,31,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=5044222459&origin=inward,10.1016/j.biopsych.2004.07.012,2004-10-15,2-s2.0-5044222459,,607-610,15476691.0,5044222459,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=5044222459&origin=inward,Leibenluft,Biological Psychiatry,Experience-dependent plasticity for attention to threat: Behavioral and neurophysiological evidence in humans,Article +,https://api.elsevier.com/content/abstract/scopus_id/0041829003,Abby Fyer;Robert M. Bilder;Wei Li;Babak Ardekani;Eric Zarahn;Vivian Koda;Philip R. Szeszko;Joseph Grun;Daniel S. Pine,31,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0041829003&origin=inward,10.1037/1528-3542.1.2.137,2001-06-01,2-s2.0-0041829003,,137-147,12899193.0,41829003,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0041829003&origin=inward,Pine,Emotion,Cortical Brain Regions Engaged by Masked Emotional Faces in Adolescents and Adults: An fMRI Study,Article +,https://api.elsevier.com/content/abstract/scopus_id/84871483084,Daniel S. Pine;Monique Ernst;Nathan A. Fox;Tomer Shechner;Ellen Leibenluft;Johanna M. Jarcho;Amit Etkin,41,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84871483084&origin=inward,10.1016/j.biopsycho.2012.09.008,2013-02-01,2-s2.0-84871483084,NICHD,306-314,23046903.0,84871483084,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84871483084&origin=inward,Pine,Biological Psychology,The neural correlates of emotion-based cognitive control in adults with early childhood behavioral inhibition,Article +,https://api.elsevier.com/content/abstract/scopus_id/84896459938,Victoria R. Choate;Monique Ernst;Brenda Benson;Yair Bar-Haim;Koraly Perez-Edgar;Nathan A. Fox;Amanda E. Guyer;Eric E. Nelson;Johanna M. Jarcho;Daniel S. Pine,36,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84896459938&origin=inward,10.1017/S0954579413000941,2014-01-01,2-s2.0-84896459938,NIMH,229-243,24444176.0,84896459938,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84896459938&origin=inward,Pine,Development and Psychopathology,Lasting associations between early-childhood temperament and late-adolescent reward-circuitry response to peer feedback,Article +,https://api.elsevier.com/content/abstract/scopus_id/84906260452,A. E. Guyer;B. E. Benson;M. Ernst;K. Perez-Edgar;N. A. Fox;C. Lamm;D. S. Pine,30,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84906260452&origin=inward,10.1016/j.bandc.2013.12.003,2014-01-01,2-s2.0-84906260452,,51-60,24485273.0,84906260452,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84906260452&origin=inward,Pine,Brain and Cognition,Longitudinal study of striatal activation to reward and loss anticipation from mid-adolescence into late adolescence/early adulthood,Article +,https://api.elsevier.com/content/abstract/scopus_id/69449084507,Daniel S. Pine;Jennifer C. Britton;Monique Ernst;Kara M. Lindstrom;Yair Bar-Haim;Nathan A. Fox;Karin Mogg;Amanda E. Guyer;Eric E. Nelson;Ellen Leibenluft;Christopher S. Monk;Brendan P. Bradley,24,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=69449084507&origin=inward,10.1016/j.brainres.2009.07.045,2009-09-25,2-s2.0-69449084507,,61-70,19631626.0,69449084507,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=69449084507&origin=inward,Leibenluft,Brain Research,Normative data on development of neural and behavioral mechanisms underlying attention orienting toward social-emotional stimuli: An exploratory study,Article +,https://api.elsevier.com/content/abstract/scopus_id/84894284825,Cheryl Morse;Robert B. Innis;Robert Gladding;Stephen J. Suomi;Pam L. Noble;Jeih San Liow;Bo Zhang;Ioline D. Henter;Per Svenningsson;Stal Saurav Shrestha;Eric E. Nelson;James T. Winslow;Ellen Leibenluft;Chul Hyoung Lyoo;Victor W. Pike;Jeremy Kruger;Daniel S. Pine,29,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84894284825&origin=inward,10.1176/appi.ajp.2013.13020183,2014-03-01,2-s2.0-84894284825,,323-331,24480874.0,84894284825,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84894284825&origin=inward,Leibenluft,American Journal of Psychiatry,Fluoxetine administered to juvenile monkeys: Effects on the serotonin transporter and behavior,Article +,https://api.elsevier.com/content/abstract/scopus_id/0344666712,Monique Ernst;Christian Grillon;Johanna M.P. Baas;Dennis S. Charney;Eric Zarahn;Eric E. Nelson;Erin B. McClure;Christopher S. Monk;Daniel S. Pine,24,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0344666712&origin=inward,10.1002/dev.10146,2003-12-18,2-s2.0-0344666712,,359-366,15027419.0,344666712,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0344666712&origin=inward,Grillon,Developmental Psychobiology,A Neuroimaging Method for the Study of Threat in Adolescents,Article +,https://api.elsevier.com/content/abstract/scopus_id/84865628437,Daniel S. Pine;Nathan A. Fox;Sarah M. Helfinstein,23,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84865628437&origin=inward,10.1037/a0026402,2012-05-01,2-s2.0-84865628437,,815-826,22148946.0,84865628437,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84865628437&origin=inward,Pine,Developmental Psychology,Approach-withdrawal and the role of the striatum in the temperament of behavioral inhibition,Article +,https://api.elsevier.com/content/abstract/scopus_id/84922239203,Daniel S. Pine;Monique Ernst;Brenda Benson;Monica Luciana;Christina Carlisi;Amy K. Roy;Ellen Leibenluft;Paul F. Collins;James N. Porter,33,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84922239203&origin=inward,10.1016/j.dcn.2014.08.011,2015-01-01,2-s2.0-84922239203,,83-95,25257972.0,84922239203,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84922239203&origin=inward,Leibenluft,Developmental Cognitive Neuroscience,Age-related changes in the intrinsic functional connectivity of the human ventral vs. dorsal striatum from childhood to middle age,Article +,https://api.elsevier.com/content/abstract/scopus_id/67949118682,Michael G. Hardin;Monique Ernst;Daniel S. Pine,22,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=67949118682&origin=inward,10.1016/j.neuroimage.2009.06.050,2009-10-15,2-s2.0-67949118682,,249-257,19560546.0,67949118682,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=67949118682&origin=inward,Pine,NeuroImage,The influence of context valence in the neural coding of monetary outcomes,Article +,https://api.elsevier.com/content/abstract/scopus_id/84862844396,Melissa A. Brotman;Stephen J. Fromm;Pilyoung Kim;Megan E. Connolly;Christen M. Deveney;Ellen Leibenluft;Sarah E. Jenkins;Daniel S. Pine,21,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84862844396&origin=inward,10.1016/j.pnpbp.2012.02.014,2012-08-07,2-s2.0-84862844396,,127-133,22414616.0,84862844396,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84862844396&origin=inward,Pine,Progress in Neuro-Psychopharmacology and Biological Psychiatry,Striatal dysfunction during failed motor inhibition in children at risk for bipolar disorder,Article +,https://api.elsevier.com/content/abstract/scopus_id/84898785141,Daniel S. Pine;Monique Ernst;Nathan A. Fox;Koraly Pérez-Edgar;Amanda E. Guyer;Elena Gorodetsky;Eric E. Nelson;Brenda E. Benson;David Goldman;Jillian E. Hardee,24,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84898785141&origin=inward,10.1093/scan/nst001,2014-01-01,2-s2.0-84898785141,NIH,445-453,23314010.0,84898785141,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84898785141&origin=inward,Pine,Social Cognitive and Affective Neuroscience,DRD4 and striatal modulation of the link between childhood behavioral inhibition and adolescent anxiety,Article +,https://api.elsevier.com/content/abstract/scopus_id/60749137154,Ellen W. Leschek;Sven C. Mueller;Monique Ernst;Deborah P. Merke;Darcy Mandell;Daniel S. Pine,18,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=60749137154&origin=inward,10.1089/cap.2008.031,2009-01-01,2-s2.0-60749137154,,41-50,19232022.0,60749137154,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=60749137154&origin=inward,Pine,Journal of Child and Adolescent Psychopharmacology,Early hyperandrogenism affects the development of hippocampal function: Preliminary evidence from a functional magnetic resonance imaging study of boys with familial male precocious puberty,Article +,https://api.elsevier.com/content/abstract/scopus_id/58149109034,Monique Ernst;Eric E. Nelson;Norberto Eiji Nawa;Daniel S. Pine,17,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=58149109034&origin=inward,10.1093/scan/nsn032,2008-12-01,2-s2.0-58149109034,,367-376,19015081.0,58149109034,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=58149109034&origin=inward,Pine,Social Cognitive and Affective Neuroscience,Do you make a difference? Social context in a betting task,Article +,https://api.elsevier.com/content/abstract/scopus_id/84891831556,Monique Ernst;Kathryn A. Degnan;Nathan A. Fox;Koraly Perez-Edgar;Tomer Shechner;Ellen Leibenluft;Johanna M. Jarcho;Daniel S. Pine,23,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84891831556&origin=inward,10.1002/da.22140,2014-01-01,2-s2.0-84891831556,,53-62,23861165.0,84891831556,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84891831556&origin=inward,Pine,Depression and Anxiety,Enduring influence of early temperament on neural mechanisms mediating attention-emotion conflict in adults,Article +,https://api.elsevier.com/content/abstract/scopus_id/84925485661,Monique Ernst;Dana Rosen;Peter A. Bandettini;Wen Ming Luh;Prantik Kundu;Brenda E. Benson;Katherine L. Baldwin;Daniel S. Pine,23,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84925485661&origin=inward,10.1007/s11682-014-9346-4,2015-03-11,2-s2.0-84925485661,NIH,56-73,25592183.0,84925485661,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84925485661&origin=inward,Bandettini,Brain Imaging and Behavior,Robust resting state fMRI processing for studies on typical brain development based on multi-echo EPI acquisition,Article +,https://api.elsevier.com/content/abstract/scopus_id/84908381331,Monique Ernst;Kathryn A. Degnan;Koraly Perez-Edgar;Nathan A. Fox;Amy Krain Roy;Brenda E. Benson;Daniel S. Pine,17,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84908381331&origin=inward,10.1016/j.biopsycho.2014.09.007,2014-12-01,2-s2.0-84908381331,,248-254,25261727.0,84908381331,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84908381331&origin=inward,Pine,Biological Psychology,Alterations in amygdala functional connectivity reflect early temperament,Article +,https://api.elsevier.com/content/abstract/scopus_id/84897110700,Rista C. Plate;Monique Ernst;Christina O. Carlisi;Elena Gorodetsky;David Goldman;Daniel S. Pine,16,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84897110700&origin=inward,10.1016/j.dcn.2013.10.002,2014-01-01,2-s2.0-84897110700,,77-85,24280015.0,84897110700,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84897110700&origin=inward,Pine,Developmental Cognitive Neuroscience,Loss aversion and 5HTT gene variants in adolescent anxiety,Article +,https://api.elsevier.com/content/abstract/scopus_id/38349126011,Kaitlin Poeth;Monique Ernst;Deborah P. Merke;Françoise S. Maheu;Margaret F. Keil;Julie Hardin;Elizabeth A. Schroth;Daniel S. Pine,11,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=38349126011&origin=inward,10.1016/j.psyneuen.2007.11.006,2008-02-01,2-s2.0-38349126011,,238-245,18162329.0,38349126011,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=38349126011&origin=inward,Pine,Psychoneuroendocrinology,Steroid abnormalities and the developing brain: Declarative memory for emotionally arousing and neutral material in children with congenital adrenal hyperplasia,Article +,https://api.elsevier.com/content/abstract/scopus_id/79956223886,Erin B. McClure-Tone;Monique Ernst;Norberto E. Nawa;Stephen J. Fromm;Allison M. Detloff;Eric E. Nelson;Daniel S. Pine,12,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79956223886&origin=inward,10.1080/87565641.2010.549876,2011-05-01,2-s2.0-79956223886,,453-472,21516543.0,79956223886,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79956223886&origin=inward,Pine,Developmental Neuropsychology,Preliminary findings: Neural responses to feedback regarding betrayal and cooperation in adolescent anxiety disorders,Article +,https://api.elsevier.com/content/abstract/scopus_id/84922258357,Amber B. Courville;Sara E. Field;Jack A. Yanovski;Marian Tanofsky-Kraff;Scott G. Engel;Louise Hannallah;Lauren B. Shomaker;Sheila M. Brady;Adrienne L. Romer;Eric E. Nelson;Anna Vannucci;Andrew P. Demidowich;Johanna M. Jarcho;Daniel S. Pine,14,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84922258357&origin=inward,10.1016/j.neuroimage.2014.12.054,2015-03-01,2-s2.0-84922258357,NIH,343-353,25550068.0,84922258357,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84922258357&origin=inward,Pine,NeuroImage,Neural activation during anticipated peer evaluation and laboratory meal intake in overweight girls with and without loss of control eating,Article +,https://api.elsevier.com/content/abstract/scopus_id/84991094042,Jennifer C. Britton;Madeline J. Farber;Andrea L. Gold;Tomer Shechner;Carolyn N. Spiro;Ellen Leibenluft;Daniel S. Pine,19,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84991094042&origin=inward,10.1002/da.22470,2016-10-01,2-s2.0-84991094042,,917-926,27699940.0,84991094042,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84991094042&origin=inward,Leibenluft,Depression and Anxiety,"Amygdala–Cortical Connectivity: Associations with Anxiety, Development, and Threat",Article +,https://api.elsevier.com/content/abstract/scopus_id/84988443599,Hilary K. Lambert;Andrea L. Gold;Katie A. McLaughlin;Matthew Peverill;Sonia Alves;Daniel S. Busso;Margaret A. Sheridan;Daniel S. Pine,20,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84988443599&origin=inward,10.1111/jcpp.12630,2016-10-01,2-s2.0-84988443599,,1154-1164,27647051.0,84988443599,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84988443599&origin=inward,Pine,Journal of Child Psychology and Psychiatry and Allied Disciplines,Childhood abuse and reduced cortical thickness in brain regions involved in emotional processing,Article +,https://api.elsevier.com/content/abstract/scopus_id/84918931540,Erin B. McClure;Daniel S. Pine,9,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84918931540&origin=inward,10.1093/acprof:oso/9780195306255.003.0010,2007-03-22,2-s2.0-84918931540,,,,84918931540,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84918931540&origin=inward,Pine,Adolescent Psychopathology and the Developing Brain: Integrating Brain and Prevention Science,"Social Stress, Affect, and Neural Function in Adolescence",Chapter +,https://api.elsevier.com/content/abstract/scopus_id/84983022102,Megan M. Davis;Kathryn A. Degnan;Nathan A. Fox;Tomer Shechner;Heather A. Henderson;Eric E. Nelson;Ellen Leibenluft;Joel Stoddard;Johanna M. Jarcho;Daniel S. Pine,13,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84983022102&origin=inward,10.1177/0956797616638319,2016-06-01,2-s2.0-84983022102,,821-835,27150109.0,84983022102,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84983022102&origin=inward,Leibenluft,Psychological Science,Early-Childhood Social Reticence Predicts Brain Function in Preadolescent Youths During Distinct Forms of Peer Evaluation,Article +,https://api.elsevier.com/content/abstract/scopus_id/84922983681,Monique Ernst;Amanda E. Guyer;Eric E. Nelson;Brenda E. Benson;Daniel S. Pine,6,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84922983681&origin=inward,10.3758/s13415-014-0307-6,2014-01-01,2-s2.0-84922983681,NIH,155-168,25183555.0,84922983681,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84922983681&origin=inward,Pine,"Cognitive, Affective and Behavioral Neuroscience",Role of contingency in striatal response to incentive in adolescents with anxiety,Article +,https://api.elsevier.com/content/abstract/scopus_id/84879370070,Daniel S. Pine;Jennifer C. Britton;Monique Ernst;Tomer Shechner;Naomi Wakschlag;Johanna Jarcho,4,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84879370070&origin=inward,10.1089/cap.2012.0076,2013-06-01,2-s2.0-84879370070,NIMH,357-362,23738869.0,84879370070,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84879370070&origin=inward,Pine,Journal of Child and Adolescent Psychopharmacology,Empirical examination of the potential adverse psychological effects associated with pediatric fMRI scanning,Article +,https://api.elsevier.com/content/abstract/scopus_id/84962576502,Madeline Farber;Monique Ernst;Daniel Pine;Brenda Benson;Julia Dorfman,1,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84962576502&origin=inward,10.1016/j.neuropsychologia.2016.03.019,2016-05-01,2-s2.0-84962576502,,159-168,27004799.0,84962576502,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84962576502&origin=inward,Pine,Neuropsychologia,Altered striatal intrinsic functional connectivity in pediatric anxiety,Article +,https://api.elsevier.com/content/abstract/scopus_id/84902064254,Robert B. Innis;Saurav Shrestha;Robert Gladding;Stephen J. Suomi;Pam L. Noble;Jeih San Liow;Per Svenningsson;James T. Winslow;Eric E. Nelson;Victor W. Pike;Daniel S. Pine,0,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84902064254&origin=inward,10.1016/B978-0-12-800044-1.00139-2,2013-12-01,2-s2.0-84902064254,,157-158,,84902064254,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84902064254&origin=inward,Pine,"Catecholamine Research in the 21st Century: Abstracts and Graphical Abstracts, 10th International Catecholamine Symposium, 2012",PET Imaging of Serotonin Transmission in Monkeys: Effects of Maternal Separation and Long-Term Fluoxetine Treatment during Adolescence,Chapter +,https://api.elsevier.com/content/abstract/scopus_id/85019554319,Jennifer C. Britton;Gang Chen;Jamie A. Mash;Nathan A. Fox;Tomer Shechner;Ellen Leibenluft;Johanna M. Jarcho;Daniel S. Pine,4,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85019554319&origin=inward,10.1017/S0954579417000554,2018-02-01,2-s2.0-85019554319,ISF,179-189,28534459.0,85019554319,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85019554319&origin=inward,Leibenluft,Development and Psychopathology,Differences in neural response to extinction recall in young adults with or without history of behavioral inhibition,Review +,https://api.elsevier.com/content/abstract/scopus_id/42349088634,Vlad Makarov;Caitlin F. Rippey;Paul S. Meltzer;Shane E. McCarthy;Evan E. Eichler;Dheeraj Malhotra;Anjené M. Addington;Sunday M. Stray;Nitin Gogtay;Andrew B. Singleton;Sarah B. Pierce;Kristen Eckstrand;Carl Baker;Abhishek Bhandari;Alex S. Nord;Barry Merriman;Peter Gochman;Robert L. Findling;Jonathan Sebat;Thomas Stromberg;Mary Kusenda;Linmarie Sikich;Jon M. McClellan;B. Lakshmi;Sean Davis;Ming K. Lee;Philip Butler;Judith L. Rapoport;Greg M. Cooper;Stanley F. Nelson;Tom Walsh;Mary Claire King;Patricia Roccanova;Robert Long;Zugen Chen;Laila Noory,1273,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=42349088634&origin=inward,10.1126/science.1155174,2008-04-25,2-s2.0-42349088634,,539-543,18369103.0,42349088634,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=42349088634&origin=inward,Rapoport,Science,Rare structural variants disrupt multiple genes in neurodevelopmental pathways in schizophrenia,Article +,https://api.elsevier.com/content/abstract/scopus_id/37649015910,J. Blumenthal;J. Giedd;K. Eckstrand;W. Sharp;J. P. Lerch;L. Clasen;D. Greenstein;A. Evans;J. L. Rapoport;P. Shaw,873,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=37649015910&origin=inward,10.1073/pnas.0707741104,2007-12-04,2-s2.0-37649015910,,19649-19654,18024590.0,37649015910,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=37649015910&origin=inward,Shaw,Proceedings of the National Academy of Sciences of the United States of America,Attention-deficit/hyperactivity disorder is characterized by a delay in cortical maturation,Article +,https://api.elsevier.com/content/abstract/scopus_id/0035949688,Christine Vidal;Judith L. Rapoport;Peter Gochman;Jay N. Giedd;Paul M. Thompson;Robert Nicolson;Jonathan Blumenthal;Arthur W. Toga,593,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0035949688&origin=inward,10.1073/pnas.201243998,2001-09-25,2-s2.0-0035949688,,11650-11655,11573002.0,35949688,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0035949688&origin=inward,Rapoport,Proceedings of the National Academy of Sciences of the United States of America,Mapping adolescent brain change reveals dynamic wave of accelerated gray matter loss in very early-onset schizophrenia,Article +,https://api.elsevier.com/content/abstract/scopus_id/33646932136,Jason Lerch;F. Xavier Castellanos;Alan Evans;Liv Clasen;Deanna Greenstein;Philip Shaw;Wendy Sharp;Judith Rapoport;Jay Giedd,439,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33646932136&origin=inward,10.1001/archpsyc.63.5.540,2006-12-01,2-s2.0-33646932136,,540-549,16651511.0,33646932136,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33646932136&origin=inward,Shaw,Archives of General Psychiatry,Longitudinal mapping of cortical thickness and clinical outcome in children and adolescents with attention-deficit/hyperactivity disorder,Article +,https://api.elsevier.com/content/abstract/scopus_id/0035095868,Judith L. Rapoport;Alan C. Evans;F. Xavier Castellanos;Jonathan D. Blumenthal;Jean Nelson;Jay N. Giedd;Alex Zijdenbos;A. Catherine Vaituzis;Wendy Sharp;Patrick C. Berquin;Theresa M. Bastain;James M. Walter;Thanhlan Tran,320,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0035095868&origin=inward,10.1001/archpsyc.58.3.289,2001-01-01,2-s2.0-0035095868,,289-295,11231836.0,35095868,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0035095868&origin=inward,Rapoport,Archives of General Psychiatry,Quantitative brain magnetic resonance imaging in girls with attention-deficit/hyperactivity disorder,Article +,https://api.elsevier.com/content/abstract/scopus_id/0034868081,M. K. Chung;D. L. Collins;T. Paus;C. Cherif;J. N. Giedd;K. J. Worsley;A. C. Evans;J. L. Rapoport,259,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0034868081&origin=inward,10.1006/nimg.2001.0862,2001-01-01,2-s2.0-0034868081,,595-606,11506533.0,34868081,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0034868081&origin=inward,Rapoport,NeuroImage,A unified statistical approach to deformation-based morphometry,Article +,https://api.elsevier.com/content/abstract/scopus_id/58249135361,Deanna Greenstein;Judith Rapoport;Alex Chavez;Nitin Gogtay;Anjene Addington,211,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=58249135361&origin=inward,10.1097/CHI.0b013e31818b1c63,2009-01-01,2-s2.0-58249135361,,10-18,,58249135361,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=58249135361&origin=inward,Rapoport,Journal of the American Academy of Child and Adolescent Psychiatry,Autism spectrum disorders and childhood-onset schizophrenia: Clinical and biological contributions to a relation revisited,Erratum +,https://api.elsevier.com/content/abstract/scopus_id/34247535549,Judith L. Rapoport;Ron Pierson;Deanna K. Greenstein;Wendy S. Sharp;Jay N. Giedd;Philip Shaw;Tom F. Nugent;Rhoshel Lenroot;Susan Mackie,206,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34247535549&origin=inward,10.1176/ajp.2007.164.4.647,2007-01-01,2-s2.0-34247535549,,647-655,17403979.0,34247535549,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34247535549&origin=inward,Shaw,American Journal of Psychiatry,Cerebellar development and clinical outcome in attention deficit hyperactivity disorder,Article +,https://api.elsevier.com/content/abstract/scopus_id/0037330723,Judith L. Rapoport;Alan C. Evans;Tomáš Paus;Steve Robbins;Keith J. Worsley;Jay N. Giedd;Jonathan Taylor;Moo K. Chung,192,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0037330723&origin=inward,10.1016/S1053-8119(02)00017-4,2003-02-01,2-s2.0-0037330723,,198-213,12595176.0,37330723,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0037330723&origin=inward,Rapoport,NeuroImage,Deformation-based surface morphometry applied to gray matter deformation,Article +,https://api.elsevier.com/content/abstract/scopus_id/34547750487,Judith L. Rapoport;Jason Lerch;F. Xavier Castellanos;Alan Evans;Deanna Greenstein;Jay N. Giedd;Philip Shaw;Jeffrey Seal;Michele Gornick;Wendy Sharp;Anjene Addington,176,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34547750487&origin=inward,10.1001/archpsyc.64.8.921,2007-08-01,2-s2.0-34547750487,,921-931,17679637.0,34547750487,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34547750487&origin=inward,Shaw,Archives of General Psychiatry,"Polymorphisms of the dopamine D4 receptor, clinical outcome, and cortical structure in attention-deficit/hyperactivity disorder",Article +,https://api.elsevier.com/content/abstract/scopus_id/59749095103,Judith L. Rapoport;Alan C. Evans;Kristen Eckstrand;Deanna K. Greenstein;Philip Shaw;Liv S. Clasen;Wendy S. Sharp;Meaghan Morrison,163,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=59749095103&origin=inward,10.1176/appi.ajp.2008.08050781,2009-01-01,2-s2.0-59749095103,,58-63,18794206.0,59749095103,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=59749095103&origin=inward,Shaw,American Journal of Psychiatry,Psychostimulant treatment and the developing cortex in attention deficit hyperactivity disorder,Article +,https://api.elsevier.com/content/abstract/scopus_id/3042753009,Judith L. Rapoport;Peter Gochman;Alexandra L. Sporn;Deanna K. Greenstein;Jay N. Giedd;Liv S. Clasen;Marge Lenane;Neal O. Jeffries;Jonathan Blumenthal;Nitin Gogtay,138,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=3042753009&origin=inward,10.1176/appi.ajp.160.12.2181,2003-12-01,2-s2.0-3042753009,,2181-2189,14638588.0,3042753009,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=3042753009&origin=inward,Rapoport,American Journal of Psychiatry,Progressive brain volume loss during adolescence in childhood-onset schizophrenia,Article +,https://api.elsevier.com/content/abstract/scopus_id/68149160814,Francois Lalonde;Alan Evans;Kristen Eckstrand;Deanna Greenstein;Claude Lepage;Philip Shaw;J. N. Giedd;Wendy Sharp;Judith Rapoport;Cara Rabin,132,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=68149160814&origin=inward,10.1001/archgenpsychiatry.2009.103,2009-08-01,2-s2.0-68149160814,,888-896,19652128.0,68149160814,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=68149160814&origin=inward,Shaw,Archives of General Psychiatry,Development of cortical asymmetry in typically developing children and its disruption in attention-deficit/hyperactivity disorder,Article +,https://api.elsevier.com/content/abstract/scopus_id/9144232250,Judith L. Rapoport;Alexandra Sporn;Rob Nicolson;Alan Evans;Deanna Greenstein;Jay N. Giedd;Tom F. Nugent;Liv S. Clasen;Marge Lenane;Pete Gochman;Nitin Gogtay,117,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=9144232250&origin=inward,10.1001/archpsyc.61.1.17,2004-01-01,2-s2.0-9144232250,,17-22,14706940.0,9144232250,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=9144232250&origin=inward,Rapoport,Archives of General Psychiatry,Comparison of Progressive Cortical Gray Matter Loss in Childhood-Onset Schizophrenia with That in Childhood-Onset Atypical Psychoses,Article +,https://api.elsevier.com/content/abstract/scopus_id/77952899674,Philip Shaw;Judith Rapoport;Nitin Gogtay,114,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77952899674&origin=inward,10.1002/hbm.21028,2010-06-01,2-s2.0-77952899674,,917-925,20496382.0,77952899674,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77952899674&origin=inward,Shaw,Human Brain Mapping,Childhood psychiatric disorders as anomalies in neurodevelopmental trajectories,Review +,https://api.elsevier.com/content/abstract/scopus_id/12944305949,Sujatha Singaracharlu;Rob Nicolson;Gunvant K. Thaker;Judith L. Rapoport;Peter Gochman;Susan D. Hamburger;Dolores Malaspina;Jay N. Giedd;Daniel W. Hommer;Marge Lenane;Tom Fernandez;Jeffrey Bedwell;Marianne Wudarsky,100,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=12944305949&origin=inward,10.1176/appi.ajp.157.5.794,2000-05-01,2-s2.0-12944305949,,794-800,10784474.0,12944305949,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=12944305949&origin=inward,Hommer,American Journal of Psychiatry,Premorbid speech and language impairments in childhood-onset schizophrenia: Association with risk factors,Article +,https://api.elsevier.com/content/abstract/scopus_id/57349098187,Judith L. Rapoport;Agatha D. Lee;Deanna Greenstein;Jay N. Giedd;Alex D. Leow;Paul M. Thompson;Andrea D. Klunder;Alex Chavez;Arthur W. Toga;Allen Lu;Nitin Gogtay,95,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=57349098187&origin=inward,10.1073/pnas.0806485105,2008-10-14,2-s2.0-57349098187,,15979-15984,18852461.0,57349098187,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=57349098187&origin=inward,Rapoport,Proceedings of the National Academy of Sciences of the United States of America,Three-dimensional brain growth abnormalities in childhood-onset schizophrenia visualized by using tensor-based morphometry,Article +,https://api.elsevier.com/content/abstract/scopus_id/33846496323,N. Gogtay;M. Coffey;A. M. Addington;L. Clasen;D. Greenstein;J. Seal;R. Long;J. L. Rapoport;P. Shaw;M. C. Gornick;P. Gochman,93,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33846496323&origin=inward,10.1038/sj.mp.4001906,2007-02-01,2-s2.0-33846496323,,195-205,17033632.0,33846496323,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33846496323&origin=inward,Shaw,Molecular Psychiatry,Neuregulin 1 (8p12) and childhood-onset schizophrenia: Susceptibility haplotypes for diagnosis and brain developmental trajectories,Article +,https://api.elsevier.com/content/abstract/scopus_id/0642343889,Judith L. Rapoport;F. Xavier Castellanos;Deanna K. Greenstein;Rebecca F. Gottesman;Jay N. Giedd;Wendy S. Sharp,91,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0642343889&origin=inward,10.1176/appi.ajp.160.9.1693,2003-09-01,2-s2.0-0642343889,,1693-1696,12944348.0,642343889,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0642343889&origin=inward,Rapoport,American Journal of Psychiatry,Anatomic brain abnormalities in monozygotic twins discordant for attention deficit hyperactivity disorder,Article +,https://api.elsevier.com/content/abstract/scopus_id/0037228033,Judith L. Rapoport;F. Xavier Castellanos;Jay N. Giedd;A. Catherine Vaituzis;Audrey Keller;Neal O. Jeffries,92,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0037228033&origin=inward,10.1176/appi.ajp.160.1.128,2003-01-01,2-s2.0-0037228033,,128-133,12505811.0,37228033,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0037228033&origin=inward,Rapoport,American Journal of Psychiatry,Progressive loss of cerebellar volume in childhood-onset schizophrenia,Article +,https://api.elsevier.com/content/abstract/scopus_id/34547843470,Judith L. Rapoport;Kiralee M. Hayashi;Tom F. Nugent Iii;Deanna Greenstein;Liv Clasen;Jay N. Giedd;David Jung;Paul M. Thompson;Anna Ordonez;Marge Lenane;David H. Herman;Cathy Vaituzis;Wendy Sharp;Ellen Leibenluft;Arthur W. Toga;Nitin Gogtay,92,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34547843470&origin=inward,10.1111/j.1469-7610.2007.01747.x,2007-09-01,2-s2.0-34547843470,,852-862,17714370.0,34547843470,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34547843470&origin=inward,Leibenluft,Journal of Child Psychology and Psychiatry and Allied Disciplines,Dynamic mapping of cortical development before and after the onset of pediatric bipolar illness,Article +,https://api.elsevier.com/content/abstract/scopus_id/40049110129,Mara Parellada;David Fraguas;Nitin Gogtay;Dolores Moreno;Salvador Martínez;Manuel Desco;Judith Rapoport;Anthony James;Celso Arango;Carmen Moreno,68,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=40049110129&origin=inward,10.1093/schbul/sbm157,2008-03-01,2-s2.0-40049110129,,341-353,18234701.0,40049110129,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=40049110129&origin=inward,Rapoport,Schizophrenia Bulletin,Longitudinal brain changes in early-onset psychosis,Review +,https://api.elsevier.com/content/abstract/scopus_id/0033849886,J. Bedwell;J. E. Nelson;J. N. Giedd;L. K. Jacobsen;S. Hamburger;K. McKenna;M. Lenane;J. L. Rapoport;S. Kumra;A. C. Vaituzis,62,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0033849886&origin=inward,10.1176/appi.ajp.157.9.1467,2000-09-18,2-s2.0-0033849886,,1467-1474,10964864.0,33849886,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0033849886&origin=inward,Rapoport,American Journal of Psychiatry,Childhood-onset psychotic disorders: Magnetic resonance imaging of volumetric differences in brain structure,Article +,https://api.elsevier.com/content/abstract/scopus_id/0037362607,Judith L. Rapoport;Alexandra Sporn;Peter A. Gochman;Deanna Greenstein;Jay N. Giedd;Alex Zijdenbos;Liv S. Clasen;Marge Lenane;Nitin Gogtay,55,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0037362607&origin=inward,10.1176/appi.ajp.160.3.569,2003-03-01,2-s2.0-0037362607,,569-571,12611841.0,37362607,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0037362607&origin=inward,Rapoport,American Journal of Psychiatry,Structural brain MRI abnormalities in healthy siblings of patients with childhood-onset schizophrenia,Article +,https://api.elsevier.com/content/abstract/scopus_id/84866056199,Ayelet Erez;Armin Raznahan;Nicola Brunetti-Pierri;James R. Lupski;Judith Rapoport;J. G. Keeney;Sau Wai Cheung;Nathan Anderson;Majesta S. O'bleness;C. Michael Dickens;Sandesh S.C. Nagamani;Tasha Fingerlin;Jay Giedd;Rachel Sugalski;James M. Sikela;Jonathan M. Davis;Megan Sikela;Laura J. Dumas;Jay Jackson,58,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84866056199&origin=inward,10.1016/j.ajhg.2012.07.016,2012-09-07,2-s2.0-84866056199,,444-454,22901949.0,84866056199,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84866056199&origin=inward,Raznahan,American Journal of Human Genetics,DUF1220-domain copy number implicated in human brain-size pathology and evolution,Article +,https://api.elsevier.com/content/abstract/scopus_id/33846584937,Judith L. Rapoport;Kiralee M. Hayashi;Deanna Greenstein;Liv Clasen;Tom F. Nugent;David Jung;Jay N. Giedd;Paul M. Thompson;Anna Ordonez;Marge Lenane;David H. Herman;Arthur W. Toga;Nitin Gogtay,49,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33846584937&origin=inward,10.1016/j.schres.2006.10.014,2007-02-01,2-s2.0-33846584937,,62-70,17161938.0,33846584937,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33846584937&origin=inward,Rapoport,Schizophrenia Research,Dynamic mapping of hippocampal development in childhood onset schizophrenia,Article +,https://api.elsevier.com/content/abstract/scopus_id/0036337907,Judith L. Rapoport;Jay Giedd;Nitin Gogtay,49,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0036337907&origin=inward,10.1001/archneur.59.8.1244,2002-08-19,2-s2.0-0036337907,,1244-1248,12164719.0,36337907,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0036337907&origin=inward,Rapoport,Archives of Neurology,"Brain development in healthy, hyperactive, and psychotic children",Review +,https://api.elsevier.com/content/abstract/scopus_id/0038402732,Judith L. Rapoport;Hong Liu;Jay N. Giedd;Liv S. Clasen;Audrey Keller;Neal O. Jeffries;Jonathan Blumenthal,44,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0038402732&origin=inward,10.1016/S0920-9964(02)00354-7,2003-07-01,2-s2.0-0038402732,,105-114,12765750.0,38402732,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0038402732&origin=inward,Rapoport,Schizophrenia Research,Corpus callosum development in childhood-onset schizophrenia,Article +,https://api.elsevier.com/content/abstract/scopus_id/0034937483,Judith L. Rapoport;Rob Nicolson;Gunvant K. Thaker;Peter Gochman;Jay N. Giedd;Frances Brookner;Sanjiv Kumra;Marge Lenane;Lori Spechler;Marianne Wudarsky,40,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0034937483&origin=inward,10.1053/comp.2001.24573,2001-01-01,2-s2.0-0034937483,,319-325,11458307.0,34937483,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0034937483&origin=inward,Rapoport,Comprehensive Psychiatry,Children and adolescents with psychotic disorder not otherwise specified: A 2- to 8-year follow-up study,Article +,https://api.elsevier.com/content/abstract/scopus_id/79960283056,Judith L. Rapoport;Liv Clasen;Deanna Greenstein;Jay N. Giedd;Armin Raznahan;Yohan Lee;Robert Long;Pete Gochman;Nitin Gogtay;Anjene Addington,36,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79960283056&origin=inward,10.1016/j.neuroimage.2011.05.032,2011-08-15,2-s2.0-79960283056,,1517-1523,21620981.0,79960283056,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79960283056&origin=inward,Raznahan,NeuroImage,"Catechol-o-methyl transferase (COMT) val158met polymorphism and adolescent cortical development in patients with childhood-onset schizophrenia, their non-psychotic siblings, and healthy controls",Article +,https://api.elsevier.com/content/abstract/scopus_id/79959662116,Judith L. Rapoport;Julia W. Tossell;Nitin Gogtay;Liv Clasen;Anand A. Mattai;Deanna Greenstein;Reva Stidd;Rachel Miller;Brian Weisinger,38,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79959662116&origin=inward,10.1016/j.jaac.2011.03.016,2011-07-01,2-s2.0-79959662116,,697-704,21703497.0,79959662116,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79959662116&origin=inward,Rapoport,Journal of the American Academy of Child and Adolescent Psychiatry,Normalization of cortical gray matter deficits in nonpsychotic siblings of patients with childhood-onset schizophrenia,Article +,https://api.elsevier.com/content/abstract/scopus_id/79955142750,Francois Lalonde;Nitin Gogtay;Avinash Hosanagar;Deanna Greenstein;Liv Clasen;Reva Stidd;Judith Rapoport;Anand Mattai;Brian Weisinger,34,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79955142750&origin=inward,10.1176/appi.ajp.2010.10050681,2011-04-01,2-s2.0-79955142750,,427-435,21245087.0,79955142750,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79955142750&origin=inward,Rapoport,American Journal of Psychiatry,Hippocampal volume development in healthy siblings of childhood-onset schizophrenia patients,Article +,https://api.elsevier.com/content/abstract/scopus_id/71549142556,Jennifer Bakalar;Deanna Greenstein;Liv Clasen;Reva Stidd;Judith Rapoport;Anand Mattai;Alex Chavez;Nitin Gogtay,29,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=71549142556&origin=inward,10.1016/j.schres.2009.10.018,2010-01-01,2-s2.0-71549142556,,44-48,19913390.0,71549142556,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=71549142556&origin=inward,Rapoport,Schizophrenia Research,Effects of clozapine and olanzapine on cortical thickness in childhood-onset schizophrenia,Article +,https://api.elsevier.com/content/abstract/scopus_id/79954911270,Mary Gilliam;Francois Lalonde;Michael Stockman;Meaghan Malek;Deanna Greenstein;Liv Clasen;Philip Shaw;Wendy Sharp;Judith Rapoport;Jay Giedd,29,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79954911270&origin=inward,10.1016/j.biopsych.2010.11.024,2011-05-01,2-s2.0-79954911270,,839-846,21247556.0,79954911270,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79954911270&origin=inward,Rapoport,Biological Psychiatry,Developmental trajectories of the corpus callosum in attention-deficit/ hyperactivity disorder,Article +,https://api.elsevier.com/content/abstract/scopus_id/80051704258,Judith Rapoport;Nitin Gogtay;Liv Clausen;Deanna Greenstein;Lan Tran;Rhoshel Lenroot;Alex Chavez;A. C. Vaituzis,23,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=80051704258&origin=inward,10.1016/j.pscychresns.2011.02.010,2011-09-30,2-s2.0-80051704258,,131-137,21803550.0,80051704258,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=80051704258&origin=inward,Rapoport,Psychiatry Research - Neuroimaging,Cerebellar development in childhood onset schizophrenia and non-psychotic siblings,Article +,https://api.elsevier.com/content/abstract/scopus_id/84866046475,Xue Hua;Judith L. Rapoport;Christina P. Boyle;Brian Weisinger;Liv Clasen;Jay N. Giedd;Paul M. Thompson;Reva Stidd;Alex Chavez;Arthur W. Toga;Suh Lee;Nitin Gogtay,21,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84866046475&origin=inward,10.1001/archgenpsychiatry.2011.2084,2012-09-01,2-s2.0-84866046475,,875-884,22945617.0,84866046475,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84866046475&origin=inward,Rapoport,Archives of General Psychiatry,Delayed white matter growth trajectory in young nonpsychotic siblings of patients with childhood-onset schizophrenia,Article +,https://api.elsevier.com/content/abstract/scopus_id/0001357913,Nitin Gogate;Kristin Janson;Jay Giedd;Judith L. Rapoport,20,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0001357913&origin=inward,10.1016/S1566-2772(01)00014-7,2001-01-01,2-s2.0-0001357913,,283-290,,1357913,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0001357913&origin=inward,Rapoport,Clinical Neuroscience Research,Brain imaging in normal and abnormal brain development: New perspectives for child psychiatry,Article +,https://api.elsevier.com/content/abstract/scopus_id/84876782347,Francois Lalonde;Sarah L.M. Johnson;Liv Clasen;Deanna Greenstein;Rachel Miller;Lei Wang;Kathryn I. Alpert;Judith Rapoport;Nitin Gogtay,21,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84876782347&origin=inward,10.1016/j.jaac.2013.02.003,2013-01-01,2-s2.0-84876782347,NIH,,23622854.0,84876782347,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84876782347&origin=inward,Rapoport,Journal of the American Academy of Child and Adolescent Psychiatry,Hippocampal shape abnormalities of patients with childhood-onset schizophrenia and their unaffected siblings,Article +,https://api.elsevier.com/content/abstract/scopus_id/84925273002,Judith L. Rapoport;M. Mallar Chakravarty;D. Louis Collins;Nitin Gogtay;Jay N. Giedd;Philip Shaw;Armin Raznahan;Jason P. Lerch,27,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84925273002&origin=inward,10.1002/hbm.22715,2015-04-01,2-s2.0-84925273002,NSERC,1458-1469,25504933.0,84925273002,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84925273002&origin=inward,Rapoport,Human Brain Mapping,Striatal shape abnormalities as novel neurodevelopmental endophenotypes in schizophrenia: A longitudinal study,Article +,https://api.elsevier.com/content/abstract/scopus_id/55249124339,Judith L. Rapoport;Peter Gochman;Deanna K. Greenstein;Sarah Wolfe;Nitin Gogtay,12,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=55249124339&origin=inward,10.1097/CHI.0b013e3181825b0c,2008-01-01,2-s2.0-55249124339,,1133-1140,18724254.0,55249124339,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=55249124339&origin=inward,Rapoport,Journal of the American Academy of Child and Adolescent Psychiatry,Remission status and cortical thickness in childhood-onset schizophrenia,Article +,https://api.elsevier.com/content/abstract/scopus_id/70349412917,Judith L. Rapoport;Alan C. Evans;Julia W. Tossell;Deanna K. Greenstein;Liv Clasen;Jennifer L. Bakalar;Anand A. Mattai;Rachel Miller;Nitin Gogtay,10,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=70349412917&origin=inward,10.1016/j.schres.2009.07.026,2009-11-01,2-s2.0-70349412917,,12-16,19734017.0,70349412917,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=70349412917&origin=inward,Rapoport,Schizophrenia Research,General absence of abnormal cortical asymmetry in childhood-onset schizophrenia: A longitudinal study,Article +,https://api.elsevier.com/content/abstract/scopus_id/84872837908,Francois Lalonde;Sarah L.M. Johnson;Liv Clasen;Deanna Greenstein;Rachel Miller;Judith Rapoport;Nitin Gogtay,10,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84872837908&origin=inward,10.1016/j.pscychresns.2012.09.013,2013-01-30,2-s2.0-84872837908,,11-16,23154096.0,84872837908,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84872837908&origin=inward,Rapoport,Psychiatry Research - Neuroimaging,Absence of anatomic corpus callosal abnormalities in childhood-onset schizophrenia patients and healthy siblings,Article +,https://api.elsevier.com/content/abstract/scopus_id/84865340281,Judith L. Rapoport;Oscar Fernandez de la Vega;Nitin Gogtay;Liv Clasen;Jennifer L. Bakalar;Deanna Greenstein;Reva Stidd;Rachel Miller;Brian Weisinger,9,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84865340281&origin=inward,10.1016/j.schres.2012.07.006,2012-09-01,2-s2.0-84865340281,,149-154,22835806.0,84865340281,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84865340281&origin=inward,Rapoport,Schizophrenia Research,Psychotic symptoms and gray matter deficits in clinical pediatric populations,Article +,https://api.elsevier.com/content/abstract/scopus_id/37849007193,Judith L. Rapoport;Philip Shaw,5,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=37849007193&origin=inward,10.1097/chi.0b013e31815aac83,2008-01-01,2-s2.0-37849007193,,2-3,18174819.0,37849007193,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=37849007193&origin=inward,Rapoport,Journal of the American Academy of Child and Adolescent Psychiatry,Defining the contribution of genetic risk to structural and functional anomalies in ADHD,Editorial +,https://api.elsevier.com/content/abstract/scopus_id/84938738172,N. Gogtay;D. Greenstein;L. A. Friedman;J. L. Rapoport;A. A. Anvari;P. Gochman,2,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84938738172&origin=inward,10.1017/S0033291715000677,2015-01-01,2-s2.0-84938738172,,2667-2674,25936396.0,84938738172,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84938738172&origin=inward,Rapoport,Psychological Medicine,Hippocampal volume change relates to clinical outcome in childhood-onset schizophrenia,Article +,https://api.elsevier.com/content/abstract/scopus_id/77957890548,Mara Parellada;David Fraguas;Nitin Gogtay;Dolores Moreno;Salvador Martinez;Manuel Desco;Judith Rapoport;Anthony James;Celso Arango;Carmen Moreno,0,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77957890548&origin=inward,10.1684/ipe.2010.0650,2010-06-01,2-s2.0-77957890548,,513-527,,77957890548,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77957890548&origin=inward,Rapoport,Information Psychiatrique,Longitudinal brain Changes in early-onset psychosis,Article +,https://api.elsevier.com/content/abstract/scopus_id/84982786684,Berna Güroğlu;Megan M. Herting;Anne Lise Goddings;Elizabeth R. Sowell;Eveline A. Crone;Armin Raznahan;Rosa Meuwese;Sarah Jayne Blakemore;Kathryn L. Mills;Christian K. Tamnes;Ronald E. Dahl,86,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84982786684&origin=inward,10.1016/j.neuroimage.2016.07.044,2016-11-01,2-s2.0-84982786684,,273-281,27453157.0,84982786684,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84982786684&origin=inward,Raznahan,NeuroImage,Structural brain development between childhood and adulthood: Convergence across four longitudinal samples,Article +,https://api.elsevier.com/content/abstract/scopus_id/84974711219,Francois Lalonde;Michael Stockman;Liv Clasen;Aaron Alexander-Bloch;Armin Raznahan;Lisa Ronan;Jay Giedd,42,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84974711219&origin=inward,10.1002/hbm.23180,2016-07-01,2-s2.0-84974711219,,2385-2397,27004471.0,84974711219,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84974711219&origin=inward,Raznahan,Human Brain Mapping,Subtle in-scanner motion biases automated measurement of brain anatomy from in vivo MRI,Article +,https://api.elsevier.com/content/abstract/scopus_id/84964614347,Lorie Shora;Francois Lalonde;Dede Greenstein;Alex Martin;Rebecca A. Berman;Liv Clasen;Armin Raznahan;Anna E. Ordonez;Judith Rapoport;Rebecca E. Watsky;Stephen J. Gotts;Harrison M. McAdams;Nitin Gogtay,29,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84964614347&origin=inward,10.1093/brain/awv306,2016-01-01,2-s2.0-84964614347,,276-291,26493637.0,84964614347,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84964614347&origin=inward,Raznahan,Brain,Disrupted sensorimotor and social-cognitive networks underlie symptoms in childhoodonset schizophrenia,Article +,https://api.elsevier.com/content/abstract/scopus_id/84981249262,David I. Driver;Ellen Condon;Amy Lin;Philip Shaw;François M. Lalonde;Armin Raznahan;Nancy Raitano Lee;Liv S. Clasen;Elizabeth I. Adeyemi;Jay N. Giedd;Nitin Gogtay,16,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84981249262&origin=inward,10.1093/cercor/bhv107,2016-01-01,2-s2.0-84981249262,,2982-2990,26088974.0,84981249262,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84981249262&origin=inward,Shaw,Cerebral Cortex,Dissociations in cortical morphometry in youth with down syndrome: Evidence for reduced surface area but increased thickness,Article +,https://api.elsevier.com/content/abstract/scopus_id/84959421386,Paul Kirkpatrick Reardon;M. Mallar Chakravarty;Liv Clasen;Jay N. Giedd;Armin Raznahan;Jonathan Blumenthal;Jason P. Lerch,14,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84959421386&origin=inward,10.1523/JNEUROSCI.3195-15.2016,2016-02-24,2-s2.0-84959421386,,2438-2448,26911691.0,84959421386,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84959421386&origin=inward,Raznahan,Journal of Neuroscience,An allometric analysis of sex and sex chromosome dosage effects on subcortical anatomy in humans,Article +,https://api.elsevier.com/content/abstract/scopus_id/84974667659,Susan Swedo;Cristan Farmer;Elizabeth Smith;Deanna Greenstein;Armin Raznahan;Audrey Thurm;Jay Giedd,15,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84974667659&origin=inward,10.1002/hbm.23195,2016-07-01,2-s2.0-84974667659,,2616-2629,27061356.0,84974667659,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84974667659&origin=inward,Thurm,Human Brain Mapping,Cortical thickness change in autism during early childhood,Article +,https://api.elsevier.com/content/abstract/scopus_id/84959428581,Jonathan D. Blumenthal;Deanna Greenstein;Jay N. Giedd;Armin Raznahan;Nancy Raitano Lee;Liv S. Clasen;Gregory L. Wallace,11,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84959428581&origin=inward,10.1093/cercor/bhu174,2016-01-01,2-s2.0-84959428581,,70-79,25146371.0,84959428581,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84959428581&origin=inward,Raznahan,Cerebral Cortex,Globally Divergent but Locally Convergent X- and Y-Chromosome Influences on Cortical Development,Article +,https://api.elsevier.com/content/abstract/scopus_id/84960349719,N. Gogtay;J. F. Mangin;J. Giedd;C. Fisher;M. Plaze;C. Tissier;D. Rivière;O. Houdé;G. Borst;O. Gay;A. Cachia;A. Raznahan,14,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84960349719&origin=inward,10.1016/j.dcn.2016.02.011,2016-06-01,2-s2.0-84960349719,,122-127,26974743.0,84960349719,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84960349719&origin=inward,Raznahan,Developmental Cognitive Neuroscience,Longitudinal stability of the folding pattern of the anterior cingulate cortex during development,Article +,https://api.elsevier.com/content/abstract/scopus_id/84942313058,Jason Lerch;Frank Probst;Yan He Lue;Ronald Swerdloff;Deanna Greenstein;Christina Wang;Armin Raznahan;Jay Giedd,9,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84942313058&origin=inward,10.1007/s00429-014-0875-9,2015-11-26,2-s2.0-84942313058,,3581-3593,25146308.0,84942313058,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84942313058&origin=inward,Raznahan,Brain Structure and Function,Triangulating the sexually dimorphic brain through high-resolution neuroimaging of murine sex chromosome aneuploidies,Article +,https://api.elsevier.com/content/abstract/scopus_id/84961836759,Russell T. Shinohara;Kosha Ruparel;Simon N. Vandekar;Raquel E. Gur;Ruben C. Gur;David R. Roalf;Armin Raznahan;Theodore D. Satterthwaite;Ryan D. Hopson,5,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84961836759&origin=inward,10.1016/j.neuroimage.2016.03.002,2016-06-01,2-s2.0-84961836759,,88-97,26956908.0,84961836759,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84961836759&origin=inward,Raznahan,NeuroImage,Subject-level measurement of local cortical coupling,Article +,https://api.elsevier.com/content/abstract/scopus_id/85048179321,M. Mallar Chakravarty;Raihaan Patel;Russell T. Shinohara;Jonathan D. Blumenthal;Simon Vandekar;Raquel E. Gur;Francois M. Lalonde;Siyuan Liu;Min Tae M. Park;P. K. Reardon;Aaron Alexander-Bloch;Jay N. Giedd;Liv S. Clasen;Ruben C. Gur;Theodore D. Satterthwaite;Armin Raznahan;Jason P. Lerch;Jakob Seidlitz,10,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85048179321&origin=inward,10.1126/science.aar2578,2018-01-01,2-s2.0-85048179321,,1222-1227,29853553.0,85048179321,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85048179321&origin=inward,Raznahan,Science,Normative brain size variation and brain shape diversity in humans,Article +,https://api.elsevier.com/content/abstract/scopus_id/79960839634,Luca Massacesi;Daniel S. Reich;María I. Gaitán;Bibiana Bielekova;Kaylan M. Fenton;Iordanis E. Evangelou;Colin D. Shea;Roger D. Stone,93,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79960839634&origin=inward,10.1002/ana.22472,2011-07-01,2-s2.0-79960839634,,22-29,21710622.0,79960839634,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79960839634&origin=inward,Bielekova,Annals of Neurology,Evolution of the blood-brain barrier in newly forming multiple sclerosis lesions,Article +,https://api.elsevier.com/content/abstract/scopus_id/84899618667,Hudson H. Freeze;Matthew Biancalana;Helen C. Su;Jonathan J. Lyons;Joshua D. Milner;Steven M. Holland;Daniel S. Reich;Ian T. Lamborn;Yu Zhang;Shrimati Datta;Huseyin Mehmet;Mie Ichikawa;Huie Jing;Kelly D. Stone;Jason D. Hughes;Joshua McElwee;Lynne A. Wolfe;Xiaomin Yu;Thomas Dimaggio;Helen F. Matthews;Sarah M. Kranick;Alexandra F. Freeman;Emily S. Kim,101,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84899618667&origin=inward,10.1016/j.jaci.2014.02.013,2014-01-01,2-s2.0-84899618667,,,24589341.0,84899618667,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84899618667&origin=inward,Reich,Journal of Allergy and Clinical Immunology,"Autosomal recessive phosphoglucomutase 3 (PGM3) mutations link glycosylation defects to atopy, immune deficiency, autoimmunity, and neurocognitive impairment",Article +,https://api.elsevier.com/content/abstract/scopus_id/84937010544,Daniel S. Reich;Dragan Maric;Joan Ohayon;Luisa Vuolo;Anuradha Rao;Martina Absinta;John A. Butman;María I. Reyes-Mantilla;Irene C.M. Cortese;Pascal Sati;Peter A. Calabresi;Carlos A. Pardo;Govind Nair;Kaylan Fenton,88,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84937010544&origin=inward,10.1212/WNL.0000000000001587,2015-01-01,2-s2.0-84937010544,,18-28,25888557.0,84937010544,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84937010544&origin=inward,Cortese,Neurology,Gadolinium-based MRI characterization of leptomeningeal inflammation in multiple sclerosis,Article +,https://api.elsevier.com/content/abstract/scopus_id/84890796734,Daniel S. Reich;María I. Gaitán;Irene C M Cortese;Martina Absinta;Pascal Sati;Pietro Maggi;Massimo Filippi,66,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84890796734&origin=inward,10.1002/ana.23959,2013-11-01,2-s2.0-84890796734,,669-678,,84890796734,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84890796734&origin=inward,Cortese,Annals of Neurology,Seven-tesla phase imaging of acute multiple sclerosis lesions: A new window into the inflammatory process,Article +,https://api.elsevier.com/content/abstract/scopus_id/83055181237,Jeff H. Duyn;Daniel S. Reich;Steven Jacobson;Peter van Gelderen;Afonso C. Silva;Pascal Sati;Jillian E. Wohler;Maria I. Gaitan,45,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=83055181237&origin=inward,10.1016/j.neuroimage.2011.08.064,2012-01-16,2-s2.0-83055181237,,979-985,21906687.0,83055181237,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=83055181237&origin=inward,Jacobson,NeuroImage,In vivo quantification of T 2* anisotropy in white matter fibers in marmoset monkeys,Article +,https://api.elsevier.com/content/abstract/scopus_id/84906852811,Daniel S. Reich;Dzung L. Pham;Ciprian M. Crainiceanu;Russell T. Shinohara;Farrah J. Mateen;Jeff Goldsmith;Elizabeth M. Sweeney;Peter A. Calabresi;Samson Jarso;Navid Shiee,72,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84906852811&origin=inward,10.1016/j.nicl.2014.08.008,2014-01-01,2-s2.0-84906852811,,9-19,25379412.0,84906852811,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84906852811&origin=inward,Reich,NeuroImage: Clinical,Statistical normalization techniques for magnetic resonance imaging,Article +,https://api.elsevier.com/content/abstract/scopus_id/84994718072,Luca Massacesi;Nancy L. Sicotte;Eric C. Klawiter;Russell T. Shinohara;Andrew J. Solomon;Henry McFarland;Alexander Rauscher;R. Todd Constable;Constantina A. Treaba;Daniel S. Reich;Jiwon Oh;Raymond A. Sobel;Flavia Nelson;Amal P.R. Samaraweera;Daniel Ontaneda;William D. Rooney;Pascal Sati;Roland G. Henry;Nikos Evangelou;Daniel Pelletier;Robert Zivadinov;Caterina Mainero;Charles R.G. Guttmann;Jens Wuerfel,66,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84994718072&origin=inward,10.1038/nrneurol.2016.166,2016-12-01,2-s2.0-84994718072,,714-722,27834394.0,84994718072,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84994718072&origin=inward,McFarland,Nature Reviews Neurology,The central vein sign and its clinical evaluation for the diagnosis of multiple sclerosis: A consensus statement from the North American Imaging in Multiple Sclerosis Cooperative,Article +,https://api.elsevier.com/content/abstract/scopus_id/84886437216,Daniel S. Reich;Dzung L. Pham;Jiwon Oh;Jerry L. Prince;Aaron Carass;Govind Nair;Min Chen,41,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84886437216&origin=inward,10.1016/j.neuroimage.2013.07.060,2013-12-01,2-s2.0-84886437216,,1051-1062,23927903.0,84886437216,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84886437216&origin=inward,Reich,NeuroImage,Automatic magnetic resonance spinal cord segmentation with topology constraints for variable fields of view,Article +,https://api.elsevier.com/content/abstract/scopus_id/84875897566,Daniel S. Reich;Avni A. Chudgar;Dzung L. Pham;Ciprian M. Crainiceanu;Russell T. Shinohara;Farrah J. Mateen;Jennifer L. Cuzzocreo;Elizabeth M. Sweeney;Peter A. Calabresi;Navid Shiee,45,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84875897566&origin=inward,10.1016/j.nicl.2013.03.002,2013-04-11,2-s2.0-84875897566,,402-413,,84875897566,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84875897566&origin=inward,Reich,NeuroImage: Clinical,"OASIS is Automated Statistical Inference for Segmentation, with applications to multiple sclerosis lesion segmentation in MRI",Article +,https://api.elsevier.com/content/abstract/scopus_id/84870722172,Daniel S. Reich;Bibiana Bielekova;Tianxia Wu;Quangang Xu;Mika Komori,38,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84870722172&origin=inward,10.1371/journal.pone.0048370,2012-11-30,2-s2.0-84870722172,,,23226202.0,84870722172,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84870722172&origin=inward,Bielekova,PLoS ONE,"Cerebrospinal Fluid IL-12p40, CXCL13 and IL-8 as a Combinatorial Biomarker of Active Intrathecal Inflammation",Article +,https://api.elsevier.com/content/abstract/scopus_id/84879774994,Daniel S. Reich;Souheil J. Inati;Pascal Sati;María I. Gaitán,27,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84879774994&origin=inward,10.1177/1352458512471093,2013-01-01,2-s2.0-84879774994,,1068-1073,,84879774994,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84879774994&origin=inward,Reich,Multiple Sclerosis Journal,Initial investigation of the blood-brain barrier in MS lesions at 7 tesla,Article +,https://api.elsevier.com/content/abstract/scopus_id/84873668041,E. M. Sweeney;D. S. Reich;C. D. Shea;C. M. Crainiceanu;R. T. Shinohara,30,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84873668041&origin=inward,10.3174/ajnr.A3172,2013-01-01,2-s2.0-84873668041,,68-73,22766673.0,84873668041,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84873668041&origin=inward,Reich,American Journal of Neuroradiology,Automatic lesion incidence estimation and detection in multiple sclerosis using multisequence longitudinal MRI,Article +,https://api.elsevier.com/content/abstract/scopus_id/84873638442,Daniel S. Reich;María I. Gaitán;Manori P. De Alwis;Pascal Sati;Govind Nair,24,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84873638442&origin=inward,10.1212/WNL.0b013e31827b916f,2013-01-08,2-s2.0-84873638442,,145-151,23255828.0,84873638442,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84873638442&origin=inward,Reich,Neurology,"Multiple sclerosis shrinks intralesional, and enlarges extralesional, brain parenchymal veins",Article +,https://api.elsevier.com/content/abstract/scopus_id/84888187456,M. Absinta;Govind Nair;D. S. Reich,27,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84888187456&origin=inward,10.3174/ajnr.A3637,2013-11-01,2-s2.0-84888187456,NIH,2215-2222,23764721.0,84888187456,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84888187456&origin=inward,Reich,American Journal of Neuroradiology,Optimized T1-MPRAGE sequence for better visualization of spinal cord multiple sclerosis lesions at 3T,Article +,https://api.elsevier.com/content/abstract/scopus_id/84940979990,Daniel S. Reich;Snehashis Roy;Dzung L. Pham;Jerry L. Prince;Elizabeth Sweeney;Qing He;Aaron Carass,34,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84940979990&origin=inward,10.1109/JBHI.2015.2439242,2015-09-01,2-s2.0-84940979990,,1598-1609,26340685.0,84940979990,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84940979990&origin=inward,Reich,IEEE Journal of Biomedical and Health Informatics,Subject-Specific Sparse Dictionary Learning for Atlas-Based Brain MRI Segmentation,Article +,https://api.elsevier.com/content/abstract/scopus_id/84978431594,Matthew Schindler;Daniel S. Reich;Joan Ohayon;Alessandro Meani;Steven Jacobson;Martina Absinta;Emily C. Leibovitch;Irene C.M. Cortese;Pascal Sati;Tianxia Wu;Massimo Filippi,34,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84978431594&origin=inward,10.1172/JCI86198,2016-07-01,2-s2.0-84978431594,,2597-2609,27270171.0,84978431594,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84978431594&origin=inward,Jacobson,Journal of Clinical Investigation,Persistent 7-tesla phase rim predicts poor outcome in new multiple sclerosis patient lesions,Article +,https://api.elsevier.com/content/abstract/scopus_id/84872800724,Daniel S. Reich;Joan Ohayon;Isabela T. Borges;Bibiana Bielekova;Henry McFarland;Colin D. Shea;Roger D. Stone;Navid Shiee;Blake C. Jones;John Ostuni,20,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84872800724&origin=inward,10.1016/j.msard.2012.10.002,2013-04-01,2-s2.0-84872800724,,133-140,,84872800724,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84872800724&origin=inward,McFarland,Multiple Sclerosis and Related Disorders,The effect of daclizumab on brain atrophy in relapsing-remitting multiple sclerosis,Article +,https://api.elsevier.com/content/abstract/scopus_id/84883353846,Daniel S. Reich;Ciprian M. Crainiceanu;Colin D. Shea;Irene C.M. Cortese;Govind Nair;Blake C. Jones,21,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84883353846&origin=inward,10.1016/j.nicl.2013.08.001,2013-09-09,2-s2.0-84883353846,,171-179,,84883353846,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84883353846&origin=inward,Cortese,NeuroImage: Clinical,Quantification of multiple-sclerosis-related brain atrophy in two heterogeneous MRI datasets using mixed-effects modeling,Article +,https://api.elsevier.com/content/abstract/scopus_id/79960253679,Daniel S. Reich;Ciprian M. Crainiceanu;María Inés Gaitán;Russell T. Shinohara;Brian S. Caffo,22,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79960253679&origin=inward,10.1016/j.neuroimage.2011.05.038,2011-08-15,2-s2.0-79960253679,,1430-1446,21635955.0,79960253679,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79960253679&origin=inward,Reich,NeuroImage,Population-wide principal component-based quantification of blood-brain-barrier dynamics in multiple sclerosis,Article +,https://api.elsevier.com/content/abstract/scopus_id/84890842607,D. S. Reich;J. Wohler;J. O. Virtanen;K. Fenton;S. Jacobson,19,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84890842607&origin=inward,10.1177/1352458513490545,2014-01-01,2-s2.0-84890842607,,27-34,23722324.0,84890842607,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84890842607&origin=inward,Reich,Multiple Sclerosis,Oligoclonal bands in multiple sclerosis reactive against two herpesviruses and association with magnetic resonance imaging findings,Article +,https://api.elsevier.com/content/abstract/scopus_id/84904747084,Daniel S. Reich;Maria I. Reyes-Mantilla;Abhik Ray-Chaudhury;Martina Absinta;Carlos A. Pardo;Govind Nair;Massimo Filippi,19,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84904747084&origin=inward,10.1097/NEN.0000000000000096,2014-01-01,2-s2.0-84904747084,,780-788,25007244.0,84904747084,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84904747084&origin=inward,Reich,Journal of Neuropathology and Experimental Neurology,"Postmortem magnetic resonance imaging to guide the pathologic cut: Individualized, 3-dimensionally printed cutting boxes for fixed brains",Article +,https://api.elsevier.com/content/abstract/scopus_id/85012951357,Daniel S. Reich;Martina Absinta;Irene C.M. Cortese;Pascal Sati;Govind Nair;Massimo Filippi,16,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85012951357&origin=inward,10.1212/NXI.0000000000000145,2015-10-01,2-s2.0-85012951357,,e145,,85012951357,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85012951357&origin=inward,Cortese,Neurology: Neuroimmunology and NeuroInflammation,Direct MRI detection of impending plaque development in multiple sclerosis,Article +,https://api.elsevier.com/content/abstract/scopus_id/84907878924,Daniel S. Reich;Anshika Bakshi;Raya Massoud;Luisa Vuolo;Winston Liu;Steven Jacobson;Govind Nair,18,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84907878924&origin=inward,10.1002/ana.24213,2014-01-01,2-s2.0-84907878924,NIH,370-378,25042583.0,84907878924,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84907878924&origin=inward,Reich,Annals of Neurology,In vivo imaging of spinal cord atrophy in neuroinflammatory diseases,Article +,https://api.elsevier.com/content/abstract/scopus_id/84958124512,Tanuja Chitnis;Daniel S. Reich;Cristin A. McCabe;Phoebe A. Winn;Philip L. De Jager;Lori B. Chibnik;Alina Von Korff;Howard L. Weiner;Charles C. White;Sarah R. Clarkson;Sonya U. Steele;Irene C.M. Cortese;Ashley Hoesing;Zongqi Xia;Emily K. Owen;Maria Cimpean,20,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84958124512&origin=inward,10.1002/ana.24560,2016-02-01,2-s2.0-84958124512,NIH,178-189,26583565.0,84958124512,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84958124512&origin=inward,Cortese,Annals of Neurology,Genes and Environment in Multiple Sclerosis project: A platform to investigate multiple sclerosis risk,Article +,https://api.elsevier.com/content/abstract/scopus_id/84991392284,Daniel S. Reich;Martina Absinta;Colin D. Shea;Irene C.M. Cortese;Elizabeth M. Sweeney;Pascal Sati;Ilena C. George,11,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84991392284&origin=inward,10.1177/1352458515624975,2016-10-01,2-s2.0-84991392284,,1578-1586,26769065.0,84991392284,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84991392284&origin=inward,Cortese,Multiple Sclerosis,Clinical 3-tesla FLAIR∗ MRI improves diagnostic accuracy in multiple sclerosis,Article +,https://api.elsevier.com/content/abstract/scopus_id/85018636444,Daniel S. Reich;Joan Ohayon;Luisa Vuolo;Manori P. De Alwis;Alessandro Meani;Roberta Scotti;Bryan R. Smith;Steven Jacobson;Martina Absinta;Irene C.M. Cortese;Vittorio Martinelli;Avindra Nath;Govind Nair;Andrea Falini;Massimo Filippi,22,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85018636444&origin=inward,10.1212/WNL.0000000000003820,2017-04-11,2-s2.0-85018636444,,1439-1444,28283598.0,85018636444,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85018636444&origin=inward,Cortese,Neurology,Leptomeningeal gadolinium enhancement across the spectrum of chronic neuroinflammatory diseases,Article +,https://api.elsevier.com/content/abstract/scopus_id/84866412406,J. Goldsmith;D. S. Reich;Russell T. Shinohara;C. Crainiceanu;F. J. Mateen,11,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84866412406&origin=inward,10.3174/ajnr.A2997,2012-09-01,2-s2.0-84866412406,,1586-1590,22442041.0,84866412406,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84866412406&origin=inward,Reich,American Journal of Neuroradiology,Predicting breakdown of the blood-brain barrier in multiple sclerosis without contrast agents,Article +,https://api.elsevier.com/content/abstract/scopus_id/84899723552,Daniel S. Reich;Ciprian M. Crainiceanu;Russell T. Shinohara;Jennifer L. Cuzzocreo;Joshua T. Vogelstein;Elizabeth M. Sweeney;Peter A. Calabresi,14,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84899723552&origin=inward,10.1371/journal.pone.0095753,2014-04-29,2-s2.0-84899723552,NINDS,,24781953.0,84899723552,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84899723552&origin=inward,Reich,PLoS ONE,A comparison of supervised machine learning algorithms and feature vectors for MS lesion segmentation using multimodal structural MRI,Article +,https://api.elsevier.com/content/abstract/scopus_id/85017649229,Daniel S. Reich;Anshika Bakshi;Joan Ohayon;Govind Nair;Philip L. De Jager;Matthew K. Schindler;Blake E. Dewey;Lauren R. Price;Sonya U. Steele;Sarah R. Clarkson;Charles C. White;Irene C.M. Cortese;Zongqi Xia;Lori B. Chibnik,11,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85017649229&origin=inward,10.1001/jamaneurol.2016.5056,2017-03-01,2-s2.0-85017649229,,293-300,28114441.0,85017649229,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85017649229&origin=inward,Cortese,JAMA Neurology,Assessment of early evidence of multiple sclerosis in a prospective study of asymptomatic high-risk family members,Article +,https://api.elsevier.com/content/abstract/scopus_id/84907212644,Daniel S. Reich;Ciprian M. Crainiceanu;Martin A. Lindquist;Russell T. Shinohara;Ani Eloyan;Jennifer L. Cuzzocreo;Mary Beth Nebel;Elizabeth M. Sweeney;Peter A. Calabresi;Haochang Shou,9,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84907212644&origin=inward,10.1371/journal.pone.0107263,2014-09-18,2-s2.0-84907212644,,,25233361.0,84907212644,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84907212644&origin=inward,Reich,PLoS ONE,Health effects of lesion localization in multiple sclerosis: Spatial registration and confounding adjustment,Article +,https://api.elsevier.com/content/abstract/scopus_id/84941944279,Daniel S. Reich;Jeff H. Duyn;Jacco A. De Zwart;Qi Duan;Joe Murphy-Boesch;Natalia Gudino;Hellmut Merkle;Peter Van Gelderen;Govind Nair,13,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84941944279&origin=inward,10.1002/mrm.25817,2015-10-01,2-s2.0-84941944279,NIH,1189-1197,26190585.0,84941944279,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84941944279&origin=inward,Reich,Magnetic Resonance in Medicine,A 7T spine array based on electric dipole transmitters,Article +,https://api.elsevier.com/content/abstract/scopus_id/84904065883,Daniel S. Reich;Katherine C. Gao;Irene C.M. Cortese;Govind Nair;Alan Koretsky,9,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84904065883&origin=inward,10.1016/j.neuroimage.2014.06.014,2014-10-15,2-s2.0-84904065883,,370-378,24945671.0,84904065883,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84904065883&origin=inward,Cortese,NeuroImage,Sub-millimeter imaging of brain-free water for rapid volume assessment in atrophic brains,Article +,https://api.elsevier.com/content/abstract/scopus_id/84940062307,Daniel S. Reich;R. John Leigh;Anja K.E. Horn;Scott D.Z. Eggers;Sigrun Roeber;Govind Nair;Wolfgang Härtig,6,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84940062307&origin=inward,10.1371/journal.pone.0132075,2015-07-02,2-s2.0-84940062307,NINDS,,26135580.0,84940062307,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84940062307&origin=inward,Reich,PLoS ONE,Saccadic palsy following cardiac surgery: Possible role of perineuronal nets,Article +,https://api.elsevier.com/content/abstract/scopus_id/84947284118,Daniel S. Reich;Ciprian M. Crainiceanu;Russell T. Shinohara;Matthew K. Schindler;Blake E. Dewey;Ani Eloyan;John Muschelli;Elizabeth M. Sweeney,7,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84947284118&origin=inward,10.1016/j.nicl.2015.10.013,2016-01-01,2-s2.0-84947284118,,1-17,26693397.0,84947284118,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84947284118&origin=inward,Reich,NeuroImage: Clinical,Relating multi-sequence longitudinal intensity profiles and clinical covariates in incident multiple sclerosis lesions,Article +,https://api.elsevier.com/content/abstract/scopus_id/84962611714,Daniel S. Reich;Amanda F. Mejia;Russell T. Shinohara;Pascal Sati;Elizabeth M. Sweeney;Blake Dewey;Govind Nair;Colin Shea,6,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84962611714&origin=inward,10.1016/j.neuroimage.2015.12.037,2016-06-01,2-s2.0-84962611714,,176-188,26732403.0,84962611714,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84962611714&origin=inward,Reich,NeuroImage,Statistical estimation of T1 relaxation times using conventional magnetic resonance imaging,Article +,https://api.elsevier.com/content/abstract/scopus_id/84928211283,Daniel S. Reich;R. John Leigh;Anja K.E. Horn;Scott D.Z. Eggers;Sigrun Roeber;Govind Nair;Wolfgang Härtig,4,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84928211283&origin=inward,10.1111/nyas.12666,2015-04-01,2-s2.0-84928211283,NINDS,113-119,25721480.0,84928211283,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84928211283&origin=inward,Reich,Annals of the New York Academy of Sciences,Saccadic palsy following cardiac surgery: A review and new hypothesis,Article +,https://api.elsevier.com/content/abstract/scopus_id/85017455621,R. J.P. Smith;T. Campion;D. S. Reich;G. C. Brito;K. Schmierer;I. C. George;M. E. Miquel;J. Evanson;P. Sati;D. R. Altmann;B. P. Turner,13,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85017455621&origin=inward,10.1007/s00330-017-4822-z,2017-10-01,2-s2.0-85017455621,,4257-4263,28409356.0,85017455621,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85017455621&origin=inward,Reich,European Radiology,FLAIR* to visualize veins in white matter lesions: A new tool for the diagnosis of multiple sclerosis?,Article +,https://api.elsevier.com/content/abstract/scopus_id/85008601449,Nicholas J. Luciano;Daniel S. Reich;Steven Jacobson;Martina Absinta;Joseph R. Guy;Seung Kwon Ha;Emily C. Leibovitch;Pascal Sati;Afonso C. Silva;Wen Yang Chiang;Govind Nair,10,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85008601449&origin=inward,10.3791/54780,2016-12-06,2-s2.0-85008601449,,,28060281.0,85008601449,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85008601449&origin=inward,Jacobson,Journal of Visualized Experiments,Utilizing 3D printing technology to merge MRI with histology: A protocol for brain sectioning,Article +,https://api.elsevier.com/content/abstract/scopus_id/85014851733,Daniel S. Reich;Joan Ohayon;Kelly Yang;Govind Nair;Blake E. Dewey;Martina Absinta;Irene C.M. Cortese;Pascal Sati;Tianxia Wu;Arun Venkataraman;Varun Sethi;Colin Shea,4,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85014851733&origin=inward,10.1177/1352458516655403,2017-03-01,2-s2.0-85014851733,,464-472,27339071.0,85014851733,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85014851733&origin=inward,Cortese,Multiple Sclerosis,Slowly eroding lesions in multiple sclerosis,Article +,https://api.elsevier.com/content/abstract/scopus_id/85020726579,Nancy L. Sicotte;Russell T. Shinohara;Ian Tagge;William A. Stern;R. Todd Constable;Govind Nair;Daniel S. Reich;Jiwon Oh;Shahamat Tauhid;William Rooney;Gina Kirkish;Roland G. Henry;Dzung L. Pham;Daniel Pelletier;Rohit Bakshi;Subhash Tummala;Snehashis Roy;Esha Datta;Nico Papinutto;Daniel Schwartz;Eduardo Caverzasi;Antje Bischof;Peter A. Calabresi,7,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85020726579&origin=inward,10.1002/mrm.26776,2018-03-01,2-s2.0-85020726579,Penn,1595-1601,28617996.0,85020726579,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85020726579&origin=inward,Reich,Magnetic Resonance in Medicine,Gradient nonlinearity effects on upper cervical spinal cord area measurement from 3D T 1 -weighted brain MRI acquisitions,Article +,https://api.elsevier.com/content/abstract/scopus_id/85009231253,Daniel S. Reich;Amanda F. Mejia;Russell T. Shinohara;Edgar J. Lobaton;Blake E. Dewey;Elizabeth M. Sweeney;Ana Maria Staicu;Gina Maria Pomann,2,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85009231253&origin=inward,10.1214/16-AOAS981,2016-12-01,2-s2.0-85009231253,,2325-2348,,85009231253,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85009231253&origin=inward,Reich,Annals of Applied Statistics,A lag functional linear model for prediction of magnetization transfer ratio in multiple sclerosis lesions,Article +,https://api.elsevier.com/content/abstract/scopus_id/84986550233,Daniel S. Reich;Jorge Correale;María I. Gaitán;Paulina Yañes;Pascal Sati;Carlos Romero,2,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84986550233&origin=inward,10.1177/1352458515615226,2016-09-01,2-s2.0-84986550233,,1367-1370,26552729.0,84986550233,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84986550233&origin=inward,Reich,Multiple Sclerosis,"Optimal detection of infratentorial lesions with a combined dual-echo MRI sequence: ""pT2""",Article +,https://api.elsevier.com/content/abstract/scopus_id/84982914633,Daniel S. Reich;Jordan D. Dworkin;Salim Chahin;Russell T. Shinohara;Matthew K. Schindler;Elizabeth M. Sweeney,1,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84982914633&origin=inward,10.1016/j.nicl.2016.07.015,2016-01-01,2-s2.0-84982914633,,293-299,27551666.0,84982914633,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84982914633&origin=inward,Reich,NeuroImage: Clinical,PREVAIL: Predicting Recovery through Estimation and Visualization of Active and Incident Lesions,Article +,https://api.elsevier.com/content/abstract/scopus_id/84926187349,Daniel S. Reich;María I. Gaitán,0,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84926187349&origin=inward,10.1002/9781118298633.ch4,2014-08-25,2-s2.0-84926187349,,29-44,,84926187349,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84926187349&origin=inward,Reich,Multiple Sclerosis and CNS Inflammatory Disorders,MRI in Diagnosis and Disease Monitoring,Chapter +,https://api.elsevier.com/content/abstract/scopus_id/85020702984,Daniel S. Reich;Kevin H. Terashima,2,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85020702984&origin=inward,10.1016/S1474-4422(17)30174-6,2017-07-01,2-s2.0-85020702984,,495-497,28653641.0,85020702984,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85020702984&origin=inward,Reich,The Lancet Neurology,Gadolinium deposition: practical guidelines in the face of uncertainty,Note +,https://api.elsevier.com/content/abstract/scopus_id/85010411149,Daniel S. Reich;Matthew K. Schindler;Pascal Sati,0,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85010411149&origin=inward,10.1016/j.nic.2016.12.006,2017-05-01,2-s2.0-85010411149,,357-366,28391792.0,85010411149,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85010411149&origin=inward,Reich,Neuroimaging Clinics of North America,Insights from Ultrahigh Field Imaging in Multiple Sclerosis,Review +,https://api.elsevier.com/content/abstract/scopus_id/85011385295,Daniel S. Reich,0,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85011385295&origin=inward,10.1177/1352458516666188,2017-01-01,2-s2.0-85011385295,,19-20,,85011385295,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85011385295&origin=inward,Reich,Multiple Sclerosis,Visualization of cortical MS lesions with MRI need not be further improved - Commentary,Note +,https://api.elsevier.com/content/abstract/scopus_id/84863723922,Meaghan Malek;Alan Evans;Deanna Greenstein;Bethany Watson;Philip Shaw;Wendy Sharp,161,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84863723922&origin=inward,10.1016/j.biopsych.2012.01.031,2012-08-01,2-s2.0-84863723922,,191-197,22418014.0,84863723922,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84863723922&origin=inward,Shaw,Biological Psychiatry,Development of cortical surface area and gyrification in attention-deficit/hyperactivity disorder,Article +,https://api.elsevier.com/content/abstract/scopus_id/84884671868,Meaghan Malek;Deanna Greenstein;Bethany Watson;Philip Shaw;Pietro De Rossi;Wendy Sharp,122,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84884671868&origin=inward,10.1016/j.biopsych.2013.04.007,2013-10-15,2-s2.0-84884671868,,599-606,23726514.0,84884671868,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84884671868&origin=inward,Shaw,Biological Psychiatry,Trajectories of cerebral cortical development in childhood and adolescence and adult attention-deficit/hyperactivity disorder,Article +,https://api.elsevier.com/content/abstract/scopus_id/84883746714,M. Mallar Chakravarty;Rebecca D. Calcott;D. Louis Collins;Philip Shaw;Patrick Steadman;Armin Raznahan;Victoria Gu;Matthijs C. van Eede;Jason P. Lerch,131,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84883746714&origin=inward,10.1002/hbm.22092,2013-10-01,2-s2.0-84883746714,,2635-2654,22611030.0,84883746714,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84883746714&origin=inward,Shaw,Human Brain Mapping,Performing label-fusion-based segmentation using multiple automatically generated templates,Article +,https://api.elsevier.com/content/abstract/scopus_id/70349754493,Philip Shaw;Cara Rabin,62,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=70349754493&origin=inward,10.1007/s11920-009-0059-0,2009-10-13,2-s2.0-70349754493,,393-398,19785981.0,70349754493,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=70349754493&origin=inward,Shaw,Current Psychiatry Reports,New insights into attention-deficit/hyperactivity disorder using structural neuroimaging,Review +,https://api.elsevier.com/content/abstract/scopus_id/77950623786,Philip Shaw,5,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77950623786&origin=inward,10.1176/appi.ajp.2010.10010037,2010-04-01,2-s2.0-77950623786,,363-365,20360322.0,77950623786,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77950623786&origin=inward,Shaw,American Journal of Psychiatry,The shape of things to come in attention defcit hyperactivity disorder,Editorial +,https://api.elsevier.com/content/abstract/scopus_id/77957943862,Wayne C. Drevets;Christian Grillon;Jun Shen;Gregor Hasler;Jan Willem Van Der Veen,60,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77957943862&origin=inward,10.1176/appi.ajp.2010.09070994,2010-10-01,2-s2.0-77957943862,,1226-1231,,77957943862,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77957943862&origin=inward,Grillon,American Journal of Psychiatry,Effect of acute psychological stress on prefrontal GABA concentration determined by proton magnetic resonance spectroscopy,Article +,https://api.elsevier.com/content/abstract/scopus_id/84878237363,David M. Thomasson;Jun Shen;Li An;Jan Willem Van Der Veen;Shizhe Li,18,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84878237363&origin=inward,10.1002/jmri.23941,2013-06-01,2-s2.0-84878237363,,1445-1450,23172656.0,84878237363,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84878237363&origin=inward,Grillon,Journal of Magnetic Resonance Imaging,Combination of multichannel single-voxel MRS signals using generalized least squares,Article +,https://api.elsevier.com/content/abstract/scopus_id/80054065714,Jun Shen;Yun Xiang,12,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=80054065714&origin=inward,10.1002/nbm.1653,2011-11-01,2-s2.0-80054065714,,1054-1062,21312308.0,80054065714,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=80054065714&origin=inward,Grillon,NMR in Biomedicine,In vivo detection of intermediate metabolic products of [1- 13C]ethanol in the brain using 13C MRS,Article +,https://api.elsevier.com/content/abstract/scopus_id/34547806269,Jun Shen;Yan Zhang;Stefano Marenco,10,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34547806269&origin=inward,10.1002/mrm.21265,2007-07-01,2-s2.0-34547806269,,174-178,17659625.0,34547806269,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34547806269&origin=inward,Grillon,Magnetic Resonance in Medicine,Correction of frequency and phase variations induced by eddy currents in localized spectroscopy with multiple echo times,Article +,https://api.elsevier.com/content/abstract/scopus_id/84921433425,Daniel S. Reich;Jun Shen;Li An;Emily T. Wood;Shizhe Li,11,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84921433425&origin=inward,10.1002/mrm.25007,2014-01-01,2-s2.0-84921433425,,903-912,24243344.0,84921433425,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84921433425&origin=inward,Reich,Magnetic Resonance in Medicine,N-acetyl-aspartyl-glutamate detection in the human brain at 7 tesla by echo time optimization and improved wiener filtering,Article +,https://api.elsevier.com/content/abstract/scopus_id/84861059654,Robert B. Innis;Yun Xiang;Jun Shen;Maria Ferraris Araneta;Yan Zhang;Shizhe Li;Christopher Johnson,6,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84861059654&origin=inward,10.1016/j.jmr.2012.03.012,2012-05-01,2-s2.0-84861059654,,16-21,22578550.0,84861059654,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84861059654&origin=inward,Reich,Journal of Magnetic Resonance,In vivo detection of 13C isotopomer turnover in the human brain by sequential infusion of 13C labeled substrates,Article +,https://api.elsevier.com/content/abstract/scopus_id/84855660430,Jun Shen;Yun Xiang,2,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84855660430&origin=inward,10.1016/j.jmr.2011.11.012,2012-01-01,2-s2.0-84855660430,,252-257,22172286.0,84855660430,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84855660430&origin=inward,Reich,Journal of Magnetic Resonance,Spectral editing for in vivo 13C magnetic resonance spectroscopy,Article +,https://api.elsevier.com/content/abstract/scopus_id/84863723236,Audrey E. Thurm;Marta Gozzi;David A. Luckenbaugh;Susan E. Swedo;Jay N. Giedd;Rhoshel K. Lenroot;John L. Ostuni;Dylan M. Nielson,28,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84863723236&origin=inward,10.1016/j.biopsych.2012.01.026,2012-08-01,2-s2.0-84863723236,,215-220,22386453.0,84863723236,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84863723236&origin=inward,Thurm,Biological Psychiatry,A magnetization transfer imaging study of corpus callosum myelination in young children with autism,Article +,https://api.elsevier.com/content/abstract/scopus_id/4644225113,Scott Chesnick;Patrick J. Ledden;Frank Q. Ye;S. Lalith Talagala,87,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=4644225113&origin=inward,10.1002/mrm.20124,2004-07-01,2-s2.0-4644225113,,131-140,15236376.0,4644225113,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=4644225113&origin=inward,Talagala,Magnetic Resonance in Medicine,Whole-brain 3D perfusion MRI at 3.0 T using CASL with a separate labeling coil,Article +,https://api.elsevier.com/content/abstract/scopus_id/41749085489,Jeff H. Duyn;S. Lalith Talagala;Alan P. Koretsky;Hellmut Merkle;Peter van Gelderen;Jerzy Bodurka;Vasiliki N. Ikonomidou;Kai Hsiang Chuang,89,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=41749085489&origin=inward,10.1016/j.neuroimage.2008.01.006,2008-05-01,2-s2.0-41749085489,,1595-1605,18314354.0,41749085489,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=41749085489&origin=inward,Koretsky,NeuroImage,Mapping resting-state functional connectivity using perfusion MRI,Article +,https://api.elsevier.com/content/abstract/scopus_id/14244265651,S. Lalith Talagala;Gaëtan Garraux;Mark Hallett,34,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=14244265651&origin=inward,10.1016/j.neuroimage.2004.11.004,2005-01-01,2-s2.0-14244265651,NATO,122-132,15734349.0,14244265651,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=14244265651&origin=inward,Hallett,NeuroImage,CASL fMRI of subcortico-cortical perfusion changes during memory-guided finger sequences,Article +,https://api.elsevier.com/content/abstract/scopus_id/81255214937,Carlo Pierpaoli;Wen Ming Luh;Joelle E. Sarlls;S. Lalith Talagala,13,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=81255214937&origin=inward,10.1002/mrm.22940,2011-12-01,2-s2.0-81255214937,,1658-1665,21604298.0,81255214937,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=81255214937&origin=inward,Pierpaoli,Magnetic Resonance in Medicine,Robust fat suppression at 3T in high-resolution diffusion-weighted single-shot echo-planar imaging of human brain,Article +,https://api.elsevier.com/content/abstract/scopus_id/0037162379,C. B. Grandin;L. Balsamo;W. H. Theodore;B. Jabbari;L. G. Vezina;S. H. Braniecki;W. D. Gaillard;P. H. Papero;P. L. Pearl;B. Sachs;S. Sato;C. Frattali;S. Weinstein;B. Xu;J. Conry,181,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0037162379&origin=inward,10.1212/WNL.59.2.256,2002-07-23,2-s2.0-0037162379,,256-265,12136067.0,37162379,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0037162379&origin=inward,Theodore,Neurology,Language dominance in partial epilepsy patients identified with an fMRI reading task,Article +,https://api.elsevier.com/content/abstract/scopus_id/0035090949,Kenji Ishii;Francisco Vega-Bermudez;Pietro Pietrini;Jordan Grafman;Paul DiCamillo;Patricia Reeves-Tyer;William D. Gaillard;William Theodore;Benjamin Xu,167,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0035090949&origin=inward,,2001-03-19,2-s2.0-0035090949,,267-277,11230098.0,35090949,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0035090949&origin=inward,Theodore,Cerebral Cortex,Conjoint and extended neural networks for the computation of speech codes: The neural basis of selective impairment in reading words and pseudowords,Article +,https://api.elsevier.com/content/abstract/scopus_id/7044239163,L. Balsamo;W. H. Theodore;L. G. Vezina;W. D. Gaillard;P. H. Papero;C. McKinney;P. L. Pearl;B. Sachs;S. Sato;S. Weinstein;C. Frattali;B. Xu;J. Conry,173,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=7044239163&origin=inward,10.1212/01.WNL.0000141852.65175.A7,2004-10-26,2-s2.0-7044239163,,1403-1408,15505156.0,7044239163,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=7044239163&origin=inward,Theodore,Neurology,fMRI language task panel improves determination of language dominance,Article +,https://api.elsevier.com/content/abstract/scopus_id/35848942392,Wayne C. Drevets;William H. Theodore;Anto Bagic;Maria T. Toczek;Robert Bonwetsch;Gregor Hasler;David A. Luckenbaugh;Giampiero Giovacchini,106,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=35848942392&origin=inward,10.1016/j.biopsych.2007.02.015,2007-12-01,2-s2.0-35848942392,,1258-1264,17588547.0,35848942392,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=35848942392&origin=inward,Theodore,Biological Psychiatry,5-HT1A Receptor Binding in Temporal Lobe Epilepsy Patients With and Without Major Depression,Article +,https://api.elsevier.com/content/abstract/scopus_id/35848971195,J. A. Conry;E. Wiggs;C. Fratalli;G. Gioia;F. F. Ritter;L. R. Rosenberger;W. H. Theodore;E. K. Ritzl;M. M. Berl;G. Risse;N. B. Ratner;L. G. Vezina;C. J. Vaidya;W. D. Gaillard;P. L. Pearl;S. Sato;S. L. Weinstein;E. N. Moore,102,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=35848971195&origin=inward,10.1212/01.wnl.0000289650.48830.1a,2007-01-01,2-s2.0-35848971195,,1761-1771,,35848971195,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=35848971195&origin=inward,Theodore,Neurology,Atypical language in lesional and nonlesional complex partial epilepsy,Article +,https://api.elsevier.com/content/abstract/scopus_id/34547828108,William H. Theodore;Gregor Hasler;Wayne Drevets;Kathleen Kelley;Peter Herscovitch;Giampiero Giovacchini;Pat Reeves-Tyer,80,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34547828108&origin=inward,10.1111/j.1528-1167.2007.01089.x,2007-08-01,2-s2.0-34547828108,,1526-1530,17442003.0,34547828108,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34547828108&origin=inward,Theodore,Epilepsia,Reduced hippocampal 5HT1A PET receptor binding and depression in temporal lobe epilepsy,Article +,https://api.elsevier.com/content/abstract/scopus_id/28044462638,J. A. Conry;C. B. Grandin;L. M. Balsamo;W. H. Theodore;M. M. Berl;C. Frattali;W. D. Gaillard;P. L. Pearl;S. Sato;B. C. Sachs;F. J. Ritter;B. Xu;S. L. Weinstein;E. N. Moore,75,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=28044462638&origin=inward,10.1212/01.wnl.0000184502.06647.28,2005-01-01,2-s2.0-28044462638,,1604-1611,16301489.0,28044462638,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=28044462638&origin=inward,Theodore,Neurology,Seizure focus affects regional language networks assessed by fMRI,Article +,https://api.elsevier.com/content/abstract/scopus_id/60149102744,J. A. Conry;L. Rosenberger;W. H. Theodore;E. K. Ritzl;M. M. Berl;J. Mbwana;L. G. Vezina;W. D. Gaillard;P. L. Pearl;J. Mayo;S. Shamim;S. Weinstein;S. Sato;E. N. Moore,63,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=60149102744&origin=inward,10.1093/brain/awn329,2009-02-01,2-s2.0-60149102744,,347-356,19059978.0,60149102744,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=60149102744&origin=inward,Theodore,Brain,Limitations to plasticity of language network reorganization in localization related epilepsy,Article +,https://api.elsevier.com/content/abstract/scopus_id/67349195796,Y. Wu;W. H. Theodore;M. A. Cortez;K. M. Gibson;I. Knerr;C. Jakobs;J. M. Pettiford;K. Forester;P. L. Pearl;O. Carter Snead,61,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=67349195796&origin=inward,10.1007/s10545-009-1034-y,2009-01-28,2-s2.0-67349195796,,343-352,19172412.0,67349195796,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=67349195796&origin=inward,Theodore,Journal of Inherited Metabolic Disease,Succinic semialdehyde dehydrogenase deficiency: Lessons from mice and men,Conference Paper +,https://api.elsevier.com/content/abstract/scopus_id/58849120485,Clarissa J. Liew;William H. Theodore;Anto Bagic;Robert Bonwetsch;Patricia Reeves-Tyer;Irene Dustin;Young Min Lim;Peter Herscovitch;Giampiero Giovacchini;Susumu Sato;Sadat Shamim,53,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=58849120485&origin=inward,10.1111/j.1528-1167.2008.01789.x,2009-02-01,2-s2.0-58849120485,,234-239,18801033.0,58849120485,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=58849120485&origin=inward,Theodore,Epilepsia,18F-FCWAY and 18F-FDG PET in MRI-negative temporal lobe epilepsy,Article +,https://api.elsevier.com/content/abstract/scopus_id/56449126967,Jeffrey Solomon;William H. Theodore;Eva K. Ritzl;Young Min Lim;Wen Ming Luh;Rasmus Birn;William D. Gaillard;Yong Won Cho;Sadat Shamim,56,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=56449126967&origin=inward,10.1016/j.eplepsyres.2008.08.001,2008-12-01,2-s2.0-56449126967,,183-189,19041041.0,56449126967,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=56449126967&origin=inward,Theodore,Epilepsy Research,Usefulness of pulsed arterial spin labeling MR imaging in mesial temporal lobe epilepsy,Article +,https://api.elsevier.com/content/abstract/scopus_id/84863039946,Cheryl Morse;Robert B. Innis;William H. Theodore;William C. Kreisl;Masahiro Fujita;Omar Khan;Yi Zhang;Irene Dustin;Shmuel Appel;Victor W. Pike;Jussi Hirvonen,57,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84863039946&origin=inward,10.2967/jnumed.111.091694,2012-02-01,2-s2.0-84863039946,,234-240,22238156.0,84863039946,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84863039946&origin=inward,Theodore,Journal of Nuclear Medicine,Increased in vivo expression of an inflammatory marker in temporal lobe epilepsy,Article +,https://api.elsevier.com/content/abstract/scopus_id/65549087116,William H. Theodore;Gregor Hasler;Clarissa Liew;Susumu Sato;Sadat Shamim,45,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=65549087116&origin=inward,10.1111/j.1528-1167.2008.01883.x,2009-05-01,2-s2.0-65549087116,,1067-1071,19054394.0,65549087116,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=65549087116&origin=inward,Theodore,Epilepsia,"Temporal lobe epilepsy, depression, and hippocampal volume",Article +,https://api.elsevier.com/content/abstract/scopus_id/0033779174,W. Theodore;A. Palmini;I. Savic;J. S. Duncan;S. Berkovic;C. Chiron;R. Ali;T. Henry;J. Barkovich;R. Kuzniecky,43,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0033779174&origin=inward,10.1111/j.1528-1157.2000.tb04617.x,2000-01-01,2-s2.0-0033779174,,1350-1356,11051134.0,33779174,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0033779174&origin=inward,Theodore,Epilepsia,Commission on diagnostic strategies recommendations for functional neuroimaging of persons with epilepsy,Review +,https://api.elsevier.com/content/abstract/scopus_id/69449107926,R. Carson;J. Butman;I. Dustin;J. Taylor;C. Liew;W. Theodore;J. Schreiber;K. M. Gibson;C. Jakobs;K. Forester;P. Herscovitch;P. L. Pearl;P. Reeves-Tyer;S. Trzcinski;S. Shamim;Z. Quezado,48,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=69449107926&origin=inward,10.1212/WNL.0b013e3181b163a5,2009-08-11,2-s2.0-69449107926,,423-429,19667317.0,69449107926,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=69449107926&origin=inward,Theodore,Neurology,Decreased GABA-A binding on FMZ-PET in succinic semialdehyde dehydrogenase deficiency,Article +,https://api.elsevier.com/content/abstract/scopus_id/67649223928,J. A. Conry;L. R. Rosenberger;W. H. Theodore;E. K. Ritzl;M. M. Berl;L. G. Vezina;W. D. Gaillard;S. L. Weinstein;P. L. Pearl;S. Shamim;S. Sato;J. Zeck;E. N. Moore,40,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=67649223928&origin=inward,10.1212/WNL.0b013e3181a7114b,2009-05-26,2-s2.0-67649223928,,1830-1836,19470965.0,67649223928,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=67649223928&origin=inward,Theodore,Neurology,Interhemispheric and intrahemispheric language reorganization in complex partial epilepsy,Article +,https://api.elsevier.com/content/abstract/scopus_id/84926517255,William H. Theodore;Carlos A. Zarate;Alana D'Alfonso;Ashley Martinez;Allison C. Nugent,48,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84926517255&origin=inward,10.1038/jcbfm.2014.228,2015-03-31,2-s2.0-84926517255,,583-591,25564232.0,84926517255,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84926517255&origin=inward,Nugent,Journal of Cerebral Blood Flow and Metabolism,"The relationship between glucose metabolism, resting-state fMRI BOLD signal, and GABA A -binding potential: A preliminary study in healthy subjects and those with temporal lobe epilepsy",Article +,https://api.elsevier.com/content/abstract/scopus_id/79953678361,Christina Avedissian;William H. Theodore;Irene Dustin;Paul M. Thompson;Andrey Finegersh;Sadat Shamim,28,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79953678361&origin=inward,10.1111/j.1528-1167.2010.02928.x,2011-04-01,2-s2.0-79953678361,,689-697,21269286.0,79953678361,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79953678361&origin=inward,Theodore,Epilepsia,Bilateral hippocampal atrophy in temporal lobe epilepsy: Effect of depressive symptoms and febrile seizures,Article +,https://api.elsevier.com/content/abstract/scopus_id/33947516296,S. Fazilat;W. H. Theodore;L. G. Vezina;W. D. Gaillard;P. L. Pearl;P. Reeves-Tyer;S. Weinstein;J. Conry,24,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33947516296&origin=inward,10.1212/01.wnl.0000255942.25101.8d,2007-02-01,2-s2.0-33947516296,,655-659,17325271.0,33947516296,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33947516296&origin=inward,Theodore,Neurology,Prognosis of children with partial epilepsy: MRI and serial 18FDG-PET,Article +,https://api.elsevier.com/content/abstract/scopus_id/0036427338,William Davis Gaillard;Kenji Ishii;Milan Makale;William H. Theodore;Jordan Grafman;Lyn Balsamo;Marianna Spanaki;Benjamin Xu,21,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0036427338&origin=inward,10.1016/S1053-8119(02)91215-2,2002-01-01,2-s2.0-0036427338,,859-870,12377160.0,36427338,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0036427338&origin=inward,Theodore,NeuroImage,Neuroimaging reveals automatic speech coding during perception of written word meaning,Article +,https://api.elsevier.com/content/abstract/scopus_id/58149387348,L. Rosenberger;E. Wiggs;C. Liew;W. H. Theodore;E. K. Ritzl;A. Bagic;M. M. Berl;K. Kamberakis;E. H. Baker;J. A. Butman;W. D. Gaillard;S. Sato;P. Reeves-Tyer;S. Shamim;R. Ottman;A. M. Wohlschlager,16,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=58149387348&origin=inward,10.1212/01.wnl.0000336923.29538.5b,2008-12-09,2-s2.0-58149387348,,1973-1980,19064878.0,58149387348,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=58149387348&origin=inward,Theodore,Neurology,Altered language processing in autosomal dominant partial epilepsy with auditory features,Article +,https://api.elsevier.com/content/abstract/scopus_id/85027957420,Phillip L. Pearl;Rebecca E. Fasano;William H. Theodore;Jennifer E. Walker;Joan A. Conry;Sususmu Sato;Eva K. Ritzl;Elizabeth S. Duke;Madison M. Berl;William D. Gaillard;Mekdem Tesfaye,13,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85027957420&origin=inward,10.1111/j.1528-1167.2012.03490.x,2012-01-01,2-s2.0-85027957420,,1044-1050,,85027957420,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85027957420&origin=inward,Theodore,Epilepsia,The effect of seizure focus on regional language processing areas,Article +,https://api.elsevier.com/content/abstract/scopus_id/79954600729,I. Dustin;C. Liew;W. H. Theodore;M. M. Berl;A. Finegersh;S. Miranda;E. Ritzl;W. D. Gaillard;A. Martinez;E. S. Duke;S. Sato,12,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79954600729&origin=inward,10.1212/WNL.0b013e31821527b5,2011-04-12,2-s2.0-79954600729,GSK,1322-1329,,79954600729,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79954600729&origin=inward,Theodore,Neurology,FMRI language dominance and FDG-PET hypometabolism,Article +,https://api.elsevier.com/content/abstract/scopus_id/84908040960,Lucy Jones;Sierra C. Germeyan;William H. Theodore;David Kalikhman,13,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84908040960&origin=inward,10.1111/epi.12694,2014-01-01,2-s2.0-84908040960,,1374-1379,24965103.0,84908040960,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84908040960&origin=inward,Theodore,Epilepsia,Automated versus manual hippocampal segmentation in preoperative and postoperative patients with epilepsy,Article +,https://api.elsevier.com/content/abstract/scopus_id/84954075813,Alison Austermuehle;William H. Theodore;Sara Inati;Omar Khan;Irene Dustin;Leigh N. Sepeta;Xiaozhen You;Madison M. Berl;William D. Gaillard;Benjamin Xu;Meera Mehta;Marko Wilke,16,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84954075813&origin=inward,10.1111/epi.13258,2016-01-01,2-s2.0-84954075813,NIH,122-130,26696589.0,84954075813,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84954075813&origin=inward,Inati,Epilepsia,Age-dependent mesial temporal lobe lateralization in language fMRI,Article +,https://api.elsevier.com/content/abstract/scopus_id/0033816033,William H. Theodore;William D. Gaillard,9,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0033816033&origin=inward,10.1177/107385840000600513,2000-01-01,2-s2.0-0033816033,,390-400,,33816033,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0033816033&origin=inward,Theodore,Neuroscientist,Mapping language in epilepsy with functional imaging,Review +,https://api.elsevier.com/content/abstract/scopus_id/84907526144,Sara K. Inati;Kareem A. Zaghloul;William H. Theodore;Ziedulla Abdullaev;Ayaz M. Khawaja;Svetlana D. Pack;Andrew I. Yang;Nicholas J. Patronas;Martha M. Quezado;Leo Ballester-Fuentes,8,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84907526144&origin=inward,10.1684/epd.2014.0680,2014-01-01,2-s2.0-84907526144,,328-332,25204011.0,84907526144,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84907526144&origin=inward,Inati,Epileptic Disorders,Multifocal dysembryoplastic neuroepithelial tumours associated with refractory epilepsy,Article +,https://api.elsevier.com/content/abstract/scopus_id/78650213727,Maria T. Acosta;Phillip L. Pearl;William H. Theodore;K. Michael Gibson;Jeeva Munasinghe;Andrey Finegersh;Maneesh Gupta,6,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=78650213727&origin=inward,10.1177/0883073810368137,2010-12-01,2-s2.0-78650213727,,1457-1461,20445195.0,78650213727,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=78650213727&origin=inward,Theodore,Journal of Child Neurology,Cerebellar atrophy in human and murine succinic semialdehyde dehydrogenase deficiency,Article +,https://api.elsevier.com/content/abstract/scopus_id/77958504761,W. H. Theodore;S. K. Lee;W. D. Gaillard;K. K. Kim;E. Byun;B. Xu,5,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77958504761&origin=inward,10.1016/j.jneuroling.2010.07.001,2011-01-01,2-s2.0-77958504761,MEST,1-13,,77958504761,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77958504761&origin=inward,Theodore,Journal of Neurolinguistics,Verbal working memory of Korean-English bilinguals: An fMRI study,Article +,https://api.elsevier.com/content/abstract/scopus_id/85021726448,Matthias J. Koepp;Teresa Ravizza;William H. Theodore;Tallie Z. Baram;Jens P. Bankstahl;Heidrun Potschka;Eric Årstad;Stefanie Dedeurwaerdere;Alon Friedman,12,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85021726448&origin=inward,10.1111/epi.13778,2017-07-01,2-s2.0-85021726448,,11-19,28675560.0,85021726448,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85021726448&origin=inward,Theodore,Epilepsia,Neuroinflammation imaging markers for epileptogenesis,Article +,https://api.elsevier.com/content/abstract/scopus_id/84908216072,William H. Theodore;Melissa A. Elafros;Gretchen L. Birbeck;Christopher M. Bositis;Igor J. Koralnik;Omar K. Siddiqi;Michael J. Potchen;Izukanji Sikazwe;Lisa Kalungwana,4,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84908216072&origin=inward,10.4081/ni.2014.5547,2014-01-01,2-s2.0-84908216072,,56-60,,84908216072,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84908216072&origin=inward,Theodore,Neurology International,Neuroimaging abnormalities and seizure recurrence in a prospective cohort study of Zambians with human immunodeficiency virus and first seizure,Article +,https://api.elsevier.com/content/abstract/scopus_id/76249121506,M. Banerjee;W. H. Theodore;J. P. Munasinghe;A. Koretsky;M. Banks;A. Heffer;M. T. Acosta;A. C. Silva,2,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=76249121506&origin=inward,10.1111/j.1600-0404.2009.01188.x,2010-03-01,2-s2.0-76249121506,,209-216,19951270.0,76249121506,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=76249121506&origin=inward,Koretsky,Acta Neurologica Scandinavica,Arterial spin labeling demonstrates that focal amygdalar glutamatergic agonist infusion leads to rapid diffuse cerebral activation,Article +,https://api.elsevier.com/content/abstract/scopus_id/85016188248,Alison Austermuehle;Leigh Sepeta;Kareem A. Zaghloul;William H. Theodore;John Cocjin;Sara Inati;Richard Reynolds;Shubhi Agrawal;William D. Gaillard,7,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85016188248&origin=inward,10.1002/ana.24899,2017-04-01,2-s2.0-85016188248,,526-537,28220524.0,85016188248,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85016188248&origin=inward,Inati,Annals of Neurology,Language functional MRI and direct cortical stimulation in epilepsy preoperative planning,Article +,https://api.elsevier.com/content/abstract/scopus_id/0037143758,E. Gutierrez;L. G. Ungerleider;M. McKenna;L. Pessoa,825,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0037143758&origin=inward,10.1073/pnas.172403899,2002-08-20,2-s2.0-0037143758,,11458-11463,12177449.0,37143758,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0037143758&origin=inward,Ungerleider,Proceedings of the National Academy of Sciences of the United States of America,Neural processing of emotional faces requires attention,Article +,https://api.elsevier.com/content/abstract/scopus_id/44049097259,Sean Marrett;Hauke R. Heekeren;Leslie G. Ungerleider,478,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=44049097259&origin=inward,10.1038/nrn2374,2008-06-09,2-s2.0-44049097259,,467-479,18464792.0,44049097259,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=44049097259&origin=inward,Ungerleider,Nature Reviews Neuroscience,The neural systems that mediate human perceptual decision making,Review +,https://api.elsevier.com/content/abstract/scopus_id/7244261657,H. R. Heekeren;P. A. Bandettini;L. G. Ungerleider;S. Marrett,428,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=7244261657&origin=inward,10.1038/nature02966,2004-10-14,2-s2.0-7244261657,,859-862,15483614.0,7244261657,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=7244261657&origin=inward,Bandettini,Nature,A general mechanism for perceptual decision-making in the human brain,Article +,https://api.elsevier.com/content/abstract/scopus_id/0036881384,Avi Karni;Julien Doyon;Leslie G. Ungerleider,371,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0036881384&origin=inward,10.1006/nlme.2002.4091,2002-01-01,2-s2.0-0036881384,,553-564,12559834.0,36881384,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0036881384&origin=inward,Ungerleider,Neurobiology of Learning and Memory,Imaging brain plasticity during motor skill learning,Review +,https://api.elsevier.com/content/abstract/scopus_id/0036889993,Luiz Pessoa;Sabine Kastner;Leslie G. Ungerleider,361,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0036889993&origin=inward,10.1016/S0926-6410(02)00214-8,2002-12-01,2-s2.0-0036889993,,31-45,12433381.0,36889993,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0036889993&origin=inward,Ungerleider,Cognitive Brain Research,Attentional control of the processing of neutral and emotional stimuli,Article +,https://api.elsevier.com/content/abstract/scopus_id/0038381394,Luiz Pessoa;Sabine Kastner;Leslie G. Ungerleider,0,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0038381394&origin=inward,,2003-05-15,2-s2.0-0038381394,,3990-3998,12764083.0,38381394,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0038381394&origin=inward,Ungerleider,Journal of Neuroscience,Neuroimaging studies of attention: From modulation of sensory processing to top-down control,Short Survey +,https://api.elsevier.com/content/abstract/scopus_id/0037154261,Avi Karni;Leslie G. Ungerleider;Allen W. Song;Julien Doyon;François Lalonde;Michelle M. Adams,306,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0037154261&origin=inward,10.1073/pnas.022615199,2002-01-22,2-s2.0-0037154261,,1017-1022,11805340.0,37154261,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0037154261&origin=inward,Ungerleider,Proceedings of the National Academy of Sciences of the United States of America,Experience-dependent changes in cerebellar contributions to motor sequence learning,Article +,https://api.elsevier.com/content/abstract/scopus_id/0037194739,Eva Gutierrez;Luiz Pessoa;Peter Bandettini;Leslie Ungerleider,305,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0037194739&origin=inward,10.1016/S0896-6273(02)00817-6,2002-01-01,2-s2.0-0037194739,,975-987,12372290.0,37194739,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0037194739&origin=inward,Bandettini,Neuron,Neural correlates of visual working memory: fMRI amplitude predicts task performance.,Article +,https://api.elsevier.com/content/abstract/scopus_id/0034844134,Mark A. Pinsk;Peter De Weerd;M. Idette Elizondo;Sabine Kastner;Leslie G. Ungerleider;Robert Desimone,218,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0034844134&origin=inward,,2001-09-26,2-s2.0-0034844134,,1398-1411,11535686.0,34844134,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0034844134&origin=inward,Ungerleider,Journal of Neurophysiology,Modulation of sensory suppression: Implications for receptive field sizes in the human visual cortex,Article +,https://api.elsevier.com/content/abstract/scopus_id/0036935352,Alumit Ishai;James V. Haxby;Leslie G. Ungerleider,220,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0036935352&origin=inward,10.1006/nimg.2002.1330,2002-01-01,2-s2.0-0036935352,,1729-1741,12498747.0,36935352,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0036935352&origin=inward,Ungerleider,NeuroImage,Visual imagery of famous faces: Effects of memory and attention revealed by fMRI,Article +,https://api.elsevier.com/content/abstract/scopus_id/33745616509,P. A. Bandettini;L. G. Ungerleider;S. Marrett;D. A. Ruff;H. R. Heekeren,215,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33745616509&origin=inward,10.1073/pnas.0603949103,2006-06-27,2-s2.0-33745616509,,10023-10028,16785427.0,33745616509,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33745616509&origin=inward,Bandettini,Proceedings of the National Academy of Sciences of the United States of America,Involvement of human left dorsolateral prefrontal cortex in perceptual decision making is independent of response modality,Article +,https://api.elsevier.com/content/abstract/scopus_id/3042838553,Luiz Pessoa;Alumit Ishai;Philip C. Bikle;Leslie G. Ungerleider,200,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=3042838553&origin=inward,10.1073/pnas.0403559101,2004-06-29,2-s2.0-3042838553,,9827-9832,15210952.0,3042838553,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=3042838553&origin=inward,Ungerleider,Proceedings of the National Academy of Sciences of the United States of America,Repetition suppression of faces is modulated by emotion,Article +,https://api.elsevier.com/content/abstract/scopus_id/32144441306,Luiz Pessoa;Leslie G. Ungerleider;David Sturman;Shruti Japee,183,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=32144441306&origin=inward,10.1093/cercor/bhi115,2006-03-01,2-s2.0-32144441306,,366-375,15930371.0,32144441306,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=32144441306&origin=inward,Ungerleider,Cerebral Cortex,Target visibility and visual awareness modulate amygdala responses to fearful faces,Article +,https://api.elsevier.com/content/abstract/scopus_id/0034723225,Alex Martin;Raja Parasuraman;Yang Jiang;Leslie G. Ungerleider;James V. Haxby,143,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0034723225&origin=inward,10.1126/science.287.5453.643,2000-01-28,2-s2.0-0034723225,,643-646,10649996.0,34723225,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0034723225&origin=inward,Martin,Science,Complementary neural mechanisms for tracking items in human working memory,Article +,https://api.elsevier.com/content/abstract/scopus_id/0344440994,Luiz Pessoa;Leslie G. Ungerleider,145,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0344440994&origin=inward,10.1016/S0079-6123(03)14412-3,2004-01-01,2-s2.0-0344440994,,171-182,14650848.0,344440994,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0344440994&origin=inward,Ungerleider,Progress in Brain Research,Neuroimaging studies of attention and the processing of emotion-laden stimuli,Conference Paper +,https://api.elsevier.com/content/abstract/scopus_id/0034039917,Peter De Weerd;Sabine Kastner;Leslie G. Ungerleider,125,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0034039917&origin=inward,,2000-04-20,2-s2.0-0034039917,,2453-2457,10758146.0,34039917,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0034039917&origin=inward,Ungerleider,Journal of Neurophysiology,Texture segregation in the human visual cortex: A functional MRI study,Article +,https://api.elsevier.com/content/abstract/scopus_id/57749201809,Luiz Pessoa;Robert Desimone;Andrew F. Rossi;Leslie G. Ungerleider,144,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=57749201809&origin=inward,10.1007/s00221-008-1642-z,2009-01-01,2-s2.0-57749201809,,489-497,19030851.0,57749201809,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=57749201809&origin=inward,Ungerleider,Experimental Brain Research,The prefrontal cortex and the executive control of attention,Conference Paper +,https://api.elsevier.com/content/abstract/scopus_id/61349115538,Fadila Hadj-Bouziane;Leslie G. Ungerleider;Roger B.H. Tootell;Jennifer B. Frihauf;Andrew H. Bell,115,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=61349115538&origin=inward,10.1152/jn.90657.2008,2009-02-01,2-s2.0-61349115538,,688-700,19052111.0,61349115538,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=61349115538&origin=inward,Ungerleider,Journal of Neurophysiology,Object representations in the temporal cortex of monkeys and humans as revealed by functional magnetic resonance imaging,Article +,https://api.elsevier.com/content/abstract/scopus_id/80053275316,Ning Liu;Xiaomin Yue;Leslie G. Ungerleider;Shahin Nasr;Reza Rajimehr;Roger B.H. Tootell;Kathryn J. Devaney,118,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=80053275316&origin=inward,10.1523/JNEUROSCI.2792-11.2011,2011-09-28,2-s2.0-80053275316,,13771-13785,21957240.0,80053275316,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=80053275316&origin=inward,Ungerleider,Journal of Neuroscience,Scene-selective cortical regions in human and nonhuman primates,Article +,https://api.elsevier.com/content/abstract/scopus_id/35448931909,Masaki Fukunaga;Sean Marrett;Leslie G. Ungerleider;Ikuko Mukai;David Kim;Shruti Japee,105,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=35448931909&origin=inward,10.1523/JNEUROSCI.3002-07.2007,2007-10-17,2-s2.0-35448931909,,11401-11411,17942734.0,35448931909,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=35448931909&origin=inward,Ungerleider,Journal of Neuroscience,Activations in visual and attention-related areas predict and correlate with the degree of perceptual learning,Article +,https://api.elsevier.com/content/abstract/scopus_id/2342470740,Luiz Pessoa;Leslie G. Ungerleider,94,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=2342470740&origin=inward,10.1093/cercor/bhh013,2004-05-01,2-s2.0-2342470740,,511-520,15054067.0,2342470740,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=2342470740&origin=inward,Ungerleider,Cerebral Cortex,Neural Correlates of Change Detection and Change Blindness in a Working Memory Task,Article +,https://api.elsevier.com/content/abstract/scopus_id/35448987622,Talma Hendler;Natan Gadoth;Avi Mendelsohn;Tali Siman-Tov;Ilana Podlipsky;Galia Avidan;Luiz Pessoa;Tom Schonberg;Leslie G. Ungerleider,92,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=35448987622&origin=inward,10.1523/JNEUROSCI.0599-07.2007,2007-10-17,2-s2.0-35448987622,,11271-11278,17942721.0,35448987622,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=35448987622&origin=inward,Ungerleider,Journal of Neuroscience,Bihemispheric leftward bias in a visuospatial attention-related network,Article +,https://api.elsevier.com/content/abstract/scopus_id/24644494694,Philip C. Bikle;Michael S. Beauchamp;John E. Ingeholm;Robert W. Van Boven;Leslie G. Ungerleider,82,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=24644494694&origin=inward,10.1073/pnas.0505907102,2005-08-30,2-s2.0-24644494694,,12601-12605,16116098.0,24644494694,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=24644494694&origin=inward,Ungerleider,Proceedings of the National Academy of Sciences of the United States of America,Tactile form and location processing in the human brain,Article +,https://api.elsevier.com/content/abstract/scopus_id/80052174207,Nicholas J. Malecek;Elyse L. Morin;Fadila Hadj-Bouziane;Leslie G. Ungerleider;Roger B H Tootell;Andrew H. Bell,61,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=80052174207&origin=inward,10.1523/JNEUROSCI.5865-10.2011,2011-08-24,2-s2.0-80052174207,,12229-12240,21865466.0,80052174207,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=80052174207&origin=inward,Ungerleider,Journal of Neuroscience,Relationship between functional magnetic resonance imaging-identified regions and neuronal category selectivity,Article +,https://api.elsevier.com/content/abstract/scopus_id/44449092454,Tamara A. Knusten;Fadila Hadj-Bouziane;Leslie G. Ungerleider;Roger B H Tootell;Andrew H. Bell,61,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=44449092454&origin=inward,10.1073/pnas.0800489105,2008-04-08,2-s2.0-44449092454,,5591-5596,18375769.0,44449092454,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=44449092454&origin=inward,Ungerleider,Proceedings of the National Academy of Sciences of the United States of America,Perception of emotional expressions is independent of face selectivity in monkey inferior temporal cortex,Article +,https://api.elsevier.com/content/abstract/scopus_id/84925193761,Kelsey Holiday;Maureen D. Satyshur;Leslie G. Ungerleider;Ikuko Mukai;Shruti Japee,82,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84925193761&origin=inward,10.3389/fnsys.2015.00023,2015-03-03,2-s2.0-84925193761,,,,84925193761,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84925193761&origin=inward,Ungerleider,Frontiers in Systems Neuroscience,A role of right middle frontal gyrus in reorienting of attention: A case study,Article +,https://api.elsevier.com/content/abstract/scopus_id/84871836712,Ning Liu;Elisabeth A. Murray;Katalin M. Gothard;Wen Ming Luh;Fadila Hadj-Bouziane;Leslie G. Ungerleider;Roger B H Tootell;Andrew H. Bell,49,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84871836712&origin=inward,10.1073/pnas.1218406109,2012-12-26,2-s2.0-84871836712,,,23184972.0,84871836712,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84871836712&origin=inward,Murray,Proceedings of the National Academy of Sciences of the United States of America,Amygdala lesions disrupt modulation of functional MRI activity evoked by facial expression in the monkey inferior temporal cortex,Article +,https://api.elsevier.com/content/abstract/scopus_id/33749239262,Alumit Ishai;Philip C. Bikle;Leslie G. Ungerleider,33,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33749239262&origin=inward,10.1016/j.brainresbull.2006.06.002,2006-10-16,2-s2.0-33749239262,,289-295,17027764.0,33749239262,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33749239262&origin=inward,Ungerleider,Brain Research Bulletin,Temporal dynamics of face repetition suppression,Article +,https://api.elsevier.com/content/abstract/scopus_id/84868577560,Ning Liu;Nicholas Furl;Bruno B. Averbeck;Fadila Hadj-Bouziane;Leslie G. Ungerleider,28,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84868577560&origin=inward,10.1523/JNEUROSCI.1992-12.2012,2012-11-07,2-s2.0-84868577560,,15952-15962,23136433.0,84868577560,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84868577560&origin=inward,Ungerleider,Journal of Neuroscience,Dynamic and static facial expressions decoded from motion-sensitive areas in the macaque monkey,Article +,https://api.elsevier.com/content/abstract/scopus_id/57349138397,Andrew Rossi;Luiz Pessoa;Leslie G. Ungerleider;Robert Desimone;Shruti Japee,25,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=57349138397&origin=inward,10.1016/j.brainres.2008.10.010,2009-01-19,2-s2.0-57349138397,,149-158,18992228.0,57349138397,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=57349138397&origin=inward,Ungerleider,Brain Research,Attentional control during the transient updating of cue information,Article +,https://api.elsevier.com/content/abstract/scopus_id/42149093152,Gheorghe Postelnicu;R. B H Tootell;Leslie G. Ungerleider;Reza Rajimehr;Jeremy C. Young;Kathryn J. Devaney,21,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=42149093152&origin=inward,10.1073/pnas.0712274105,2008-03-04,2-s2.0-42149093152,,3605-3609,18287004.0,42149093152,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=42149093152&origin=inward,Ungerleider,Proceedings of the National Academy of Sciences of the United States of America,fMRI mapping of a morphed continuum of 3D shapes within inferior temporal cortex,Article +,https://api.elsevier.com/content/abstract/scopus_id/79955108718,Haitao Wu;Carolyn W.H. Wu;Ning Liu;Alan P. Koretsky;Gary L. Griffiths;Olga Vasalatiy;Leslie G. Ungerleider;Roger B.H. Tootell;Der Yow Chen;Sarah Cheal,14,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79955108718&origin=inward,10.1016/j.neuron.2011.03.010,2011-04-28,2-s2.0-79955108718,,229-243,21521610.0,79955108718,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79955108718&origin=inward,Koretsky,Neuron,Development of a MR-Visible Compound for Tracing Neuroanatomical Connections In Vivo,Article +,https://api.elsevier.com/content/abstract/scopus_id/79955975986,Ikuko Mukai;Leslie G. Ungerleider;Kartik Kesavabhotla;Kandy Bahadur,18,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79955975986&origin=inward,10.1167/11.1.1,2011-10-20,2-s2.0-79955975986,,1-15,21282340.0,79955975986,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79955975986&origin=inward,Ungerleider,Journal of Vision,Exogenous and endogenous attention during perceptual learning differentially affect post-training target thresholds,Article +,https://api.elsevier.com/content/abstract/scopus_id/84880407828,Marieke Mur;Ning Liu;Wen Ming Luh;Fadila Hadj-Bouziane;Leslie G. Ungerleider;Roger B.H. Tootell;Nikolaus Kriegeskorte,11,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84880407828&origin=inward,10.1523/JNEUROSCI.4180-12.2013,2013-07-26,2-s2.0-84880407828,,11346-11360,23843508.0,84880407828,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84880407828&origin=inward,Ungerleider,Journal of Neuroscience,Intrinsic structure of visual exemplar and category representations in macaque brain,Article +,https://api.elsevier.com/content/abstract/scopus_id/84939896444,Tracy J. Doty;Leslie G. Ungerleider;Martin Ingvar;Shruti Japee,10,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84939896444&origin=inward,10.3758/s13415-014-0290-y,2014-01-01,2-s2.0-84939896444,NIMH,1438-1453,24841078.0,84939896444,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84939896444&origin=inward,Ungerleider,"Cognitive, Affective and Behavioral Neuroscience",Intersubject variability in fearful face processing: The linkbetween behavior and neural activation,Article +,https://api.elsevier.com/content/abstract/scopus_id/84870940979,Kathleen A. Hansen;Sarah F. Hillenbrand;Leslie G. Ungerleider,8,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84870940979&origin=inward,10.3389/fnins.2012.00163,2012-12-17,2-s2.0-84870940979,,,,84870940979,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84870940979&origin=inward,Ungerleider,Frontiers in Neuroscience,Effects of prior knowledge on decisions made under perceptual vs. Categorical uncertainty,Article +,https://api.elsevier.com/content/abstract/scopus_id/85026505564,Valentinos Zachariou;Zaid N. Safiullah;Christine V. Nikas;Leslie G. Ungerleider;Stephen J. Gotts,10,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85026505564&origin=inward,10.1093/cercor/bhw224,2017-08-01,2-s2.0-85026505564,,4124-4138,27522076.0,85026505564,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85026505564&origin=inward,Ungerleider,Cerebral Cortex,Spatial mechanisms within the dorsal visual pathway contribute to the configural processing of faces,Article +,https://api.elsevier.com/content/abstract/scopus_id/84857072483,Kathleen A. Hansen;Sarah F. Hillenbrand;Leslie G. Ungerleider,5,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84857072483&origin=inward,10.3389/fnins.2011.00029,2011-12-01,2-s2.0-84857072483,,,,84857072483,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84857072483&origin=inward,Ungerleider,Frontiers in Neuroscience,Persistency of priors-induced bias in decision behavior and the fMRI signal,Article +,https://api.elsevier.com/content/abstract/scopus_id/84860353892,Kathleen A. Hansen;Sarah F. Hillenbrand;Leslie G. Ungerleider,4,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84860353892&origin=inward,10.1162/jocn_a_00224,2012-06-01,2-s2.0-84860353892,,1462-1475,22401286.0,84860353892,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84860353892&origin=inward,Ungerleider,Journal of Cognitive Neuroscience,Human brain activity predicts individual differences in prior knowledge use during decisions,Article +,https://api.elsevier.com/content/abstract/scopus_id/85011397550,David Pitcher;Lionel Rauth;Leslie G. Ungerleider;Shruti Japee,13,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85011397550&origin=inward,10.1523/JNEUROSCI.0114-16.2016,2017-02-01,2-s2.0-85011397550,,1156-1161,28011742.0,85011397550,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85011397550&origin=inward,Ungerleider,Journal of Neuroscience,The superior temporal sulcus is causally connected to the amygdala: A combined TBS-fMRI study,Article +,https://api.elsevier.com/content/abstract/scopus_id/85043295407,Rosalyn Moran;Ning Liu;Fadila Hadj-Bouziane;Leslie G. Ungerleider;Alumit Ishai,0,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85043295407&origin=inward,10.1093/cercor/bhv345,2017-02-01,2-s2.0-85043295407,,1524-1531,26759479.0,85043295407,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85043295407&origin=inward,Ungerleider,"Cerebral cortex (New York, N.Y. : 1991)",Facial Expressions Evoke Differential Neural Coupling in Macaques,Article +,https://api.elsevier.com/content/abstract/scopus_id/85049380773,Nicole Mlynaryk;Xilin Zhang;Leslie G. Ungerleider;Sara Ahmed;Shruti Japee,2,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85049380773&origin=inward,10.1371/journal.pbio.2005399,2018-06-01,2-s2.0-85049380773,,,29939981.0,85049380773,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85049380773&origin=inward,Ungerleider,PLoS Biology,The role of inferior frontal junction in controlling the spatially global effect of feature-based attention in human visual areas,Article +,https://api.elsevier.com/content/abstract/scopus_id/84949226853,Eric M. Wassermann;Kristine M. Knutson;Aysha Keisler;Sunbin Song;Ziad S. Saad;Devin Bageac;Leonora Wilkinson;Stephen J. Gotts;Adam Steel,12,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84949226853&origin=inward,10.1016/j.cortex.2015.10.004,2016-01-01,2-s2.0-84949226853,,134-148,26673946.0,84949226853,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84949226853&origin=inward,Wassermann,Cortex,Shifts in connectivity during procedural learning after motor cortex stimulation: A combined transcranial magnetic stimulation/functional magnetic resonance imaging study,Article +,https://api.elsevier.com/content/abstract/scopus_id/0037462449,Bhaskar S. Kolachana;Masami Kojima;Alessandro Bertolino;Bai Lu;Bert Gold;Terry E. Goldberg;Daniel R. Weinberger;Eugene Zaitsev;Michael F. Egan;Michael Dean;Joseph H. Callicott;David Goldman,2553,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0037462449&origin=inward,10.1016/S0092-8674(03)00035-7,2003-01-24,2-s2.0-0037462449,,257-269,12553913.0,37462449,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0037462449&origin=inward,Wassermann,Cell,The BDNF val66met polymorphism affects activity-dependent secretion of BDNF and human memory and hippocampal function,Article +,https://api.elsevier.com/content/abstract/scopus_id/0035810850,Bhaskar S. Kolachana;Chiara M. Mazzanti;Terry E. Goldberg;Richard E. Straub;Daniel R. Weinberger;Michael F. Egan;Joseph H. Callicott;David Goldman,1973,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0035810850&origin=inward,10.1073/pnas.111134598,2001-06-05,2-s2.0-0035810850,,6917-6922,11381111.0,35810850,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0035810850&origin=inward,Wassermann,Proceedings of the National Academy of Sciences of the United States of America,Effect of COMT Val 108/158 Met genotype on frontal lobe function and risk for schizophrenia,Article +,https://api.elsevier.com/content/abstract/scopus_id/22844433107,Bhaskar S. Kolachana;Karen E. Munoz;Emily M. Drabant;Lukas Pezawas;Venkata S. Mattay;Daniel R. Weinberger;Michael F. Egan;Andreas Meyer-Lindenberg;Beth A. Verchinski;Ahmad R. Hariri,1445,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=22844433107&origin=inward,10.1038/nn1463,2005-06-01,2-s2.0-22844433107,,828-834,15880108.0,22844433107,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=22844433107&origin=inward,Wassermann,Nature Neuroscience,5-HTTLPR polymorphism impacts human cingulate-amygdala interactions: A genetic susceptibility mechanism for depression,Article +,https://api.elsevier.com/content/abstract/scopus_id/0043135252,Bhaskar S. Kolachana;Terry E. Goldberg;Venkata S. Mattay;Daniel R. Weinberger;Michael F. Egan;Joseph H. Callicott;Ahmad R. Hariri,767,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0043135252&origin=inward,,2003-07-30,2-s2.0-0043135252,,6690-6694,12890761.0,43135252,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0043135252&origin=inward,Wassermann,Journal of Neuroscience,Brain-derived neurotrophic factor val66met polymorphism affects human memory-related hippocampal activity and predicts memory performance,Article +,https://api.elsevier.com/content/abstract/scopus_id/13244259560,Bhaskar S. Kolachana;Karen E. Munoz;Emily M. Drabant;Venkata S. Mattay;Daniel R. Weinberger;Michael F. Egan;Ahmad R. Hariri,650,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=13244259560&origin=inward,10.1001/archpsyc.62.2.146,2005-02-01,2-s2.0-13244259560,,146-152,15699291.0,13244259560,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=13244259560&origin=inward,Wassermann,Archives of General Psychiatry,A susceptibility gene for affective disorders and the response of the human amygdala,Article +,https://api.elsevier.com/content/abstract/scopus_id/8544249878,Bhaskar S. Kolachana;Lukas Pezawas;Richard E. Straub;Venkata S. Mattay;Daniel R. Weinberger;Michael F. Egan;Andreas Meyer-Lindenberg;Beth A. Verchinski;Joseph H. Callicott,654,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=8544249878&origin=inward,10.1523/JNEUROSCI.2680-04.2004,2004-11-10,2-s2.0-8544249878,,10099-10102,15537879.0,8544249878,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=8544249878&origin=inward,Wassermann,Journal of Neuroscience,The brain-derived neurotrophic factor val66met polymorphism and variation in human cortical morphology,Article +,https://api.elsevier.com/content/abstract/scopus_id/0033764334,Alessandro Bertolino;Terry E. Goldberg;Venkata S. Mattay;Daniel R. Weinberger;Jeffrey Duyn;Richard Coppola;Joseph H. Callicott;Frederick J.P. Langheim,627,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0033764334&origin=inward,,2000-11-13,2-s2.0-0033764334,,1078-1092,11053229.0,33764334,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0033764334&origin=inward,Duyn,Cerebral Cortex,Physiological dysfunction of the dorsolateral prefrontal cortex in schizophrenia revisited,Article +,https://api.elsevier.com/content/abstract/scopus_id/33646583871,Bhaskar Kolachana;Joshua W. Buckholtz;Lukas Pezawas;Giuseppe Blasi;Daniel R. Weinberger;Venkata Mattay;Andreas Meyer-Lindenberg;Ashley Wabnitz;Robyn Honea;Beth Verchinski;Joseph H. Callicott;Michael Egan;Ahmad R. Hariri,573,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33646583871&origin=inward,10.1073/pnas.0511311103,2006-04-18,2-s2.0-33646583871,,6269-6274,16569698.0,33646583871,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33646583871&origin=inward,Duyn,Proceedings of the National Academy of Sciences of the United States of America,Neural mechanisms of genetic risk for impulsivity and violence in humans,Article +,https://api.elsevier.com/content/abstract/scopus_id/0037443961,Francesco Fera;Alessandro Tessitore;Venkata S. Mattay;Daniel R. Weinberger;Ahmad R. Hariri,570,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0037443961&origin=inward,10.1016/S0006-3223(02)01786-9,2003-03-15,2-s2.0-0037443961,,494-501,12644354.0,37443961,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0037443961&origin=inward,Duyn,Biological Psychiatry,Neocortical modulation of the amygdala response to fearful stimuli,Article +,https://api.elsevier.com/content/abstract/scopus_id/3142702943,Venkata S. Mattay;Daniel R. Weinberger;Michael F. Egan;Stefano Marenco;Beth A. Verchinski;Joseph H. Callicott,559,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=3142702943&origin=inward,10.1176/appi.ajp.160.12.2209,2003-12-01,2-s2.0-3142702943,,2209-2215,14638592.0,3142702943,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=3142702943&origin=inward,Duyn,American Journal of Psychiatry,Complexity of prefrontal cortical dysfunction in schizophrenia: More than up or down,Article +,https://api.elsevier.com/content/abstract/scopus_id/0036741356,Francesco Fera;Alessandro Tessitore;Venkata S. Mattay;Daniel R. Weinberger;Ahmad R. Hariri,514,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0036741356&origin=inward,10.1006/nimg.2002.1179,2002-01-01,2-s2.0-0036741356,,317-323,12482086.0,36741356,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0036741356&origin=inward,Duyn,NeuroImage,The amygdala response to emotional stimuli: A comparison of faces and scenes,Article +,https://api.elsevier.com/content/abstract/scopus_id/20844463251,Bhaskar Kolachana;Lukas Pezawas;Rishi Balkissoon;Richard E. Straub;Terry E. Goldberg;Venkata S. Mattay;Daniel R. Weinberger;Michael F. Egan;Andreas Meyer-Lindenberg;Beth A. Verchinski;Joseph H. Callicott;Ahmad R. Hariri,414,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=20844463251&origin=inward,10.1073/pnas.0500515102,2005-06-14,2-s2.0-20844463251,,8627-8632,15939883.0,20844463251,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=20844463251&origin=inward,Duyn,Proceedings of the National Academy of Sciences of the United States of America,Variation in DISC1 affects hippocampal structure and function and increases risk for schizophrenia,Article +,https://api.elsevier.com/content/abstract/scopus_id/0038474159,Ashley D. Bone;Alessandro Bertolino;Venkata S. Mattay;Daniel R. Weinberger;Michael F. Egan;Joseph H. Callicott;Beth Verchinksi,354,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0038474159&origin=inward,10.1176/appi.ajp.160.4.709,2003-04-01,2-s2.0-0038474159,,709-719,12668360.0,38474159,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0038474159&origin=inward,Duyn,American Journal of Psychiatry,Abnormal fMRI response of the dorsolateral prefrontal cortex in cognitively intact siblings of patients with schizophrenia,Article +,https://api.elsevier.com/content/abstract/scopus_id/0037176813,D. R. Weinberger;S. Das;A. Tessitore;V. S. Mattay;J. H. Callicott;F. Fera;A. R. Hariri,342,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0037176813&origin=inward,10.1212/WNL.58.4.630,2002-02-26,2-s2.0-0037176813,,630-635,11865144.0,37176813,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0037176813&origin=inward,Duyn,Neurology,Neurophysiological correlates of age-related changes in human motor function,Article +,https://api.elsevier.com/content/abstract/scopus_id/0036154591,Thomas N. Chase;Thomas M. Hyde;Alessandro Bertolino;Alessandro Tessitore;Terry E. Goldberg;Venkata S. Mattay;Daniel R. Weinberger;Joseph H. Callicott,312,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0036154591&origin=inward,10.1002/ana.10078,2002-02-11,2-s2.0-0036154591,,156-164,11835371.0,36154591,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0036154591&origin=inward,Duyn,Annals of Neurology,Dopaminergic modulation of cortical function in patients with Parkinson's disease,Article +,https://api.elsevier.com/content/abstract/scopus_id/4344624909,Richard A. Gibbs;Jeremy Crook;Thomas M. Hyde;Cynthia Shannon-Weickert;Mayada Akil;Alessandro Bertolino;Rishi Balkissoon;Terry E. Goldberg;Richard E. Straub;Venkata S. Mattay;Daniel R. Weinberger;Radha Krishna Vakkalanka;Michael F. Egan;Imtiaz Yakub;Joseph H. Callicott;Joel E. Kleinman;Ahmad R. Hariri,311,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=4344624909&origin=inward,10.1073/pnas.0405077101,2004-08-24,2-s2.0-4344624909,,12604-12609,15310849.0,4344624909,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=4344624909&origin=inward,Duyn,Proceedings of the National Academy of Sciences of the United States of America,"Variation in GRM3 affects cognition, prefrontal glutamate, and risk for schizophrenia",Article +,https://api.elsevier.com/content/abstract/scopus_id/33845330255,Bhaskar S. Kolachana;Karen E. Munoz;Emily M. Drabant;Venkata S. Mattay;Daniel R. Weinberger;Michael F. Egan;Andreas Meyer-Lindenberg;Ahmad R. Hariri,270,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33845330255&origin=inward,10.1001/archpsyc.63.12.1396,2006-12-01,2-s2.0-33845330255,,1396-1406,17146014.0,33845330255,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33845330255&origin=inward,Duyn,Archives of General Psychiatry,Catechol O-methyltransferase val158met genotype and neural mechanisms related to affective arousal and regulation,Article +,https://api.elsevier.com/content/abstract/scopus_id/21044450490,Saumitra Das;Bhaskar S. Kolachana;Alessandro Bertolino;Giuseppe Blasi;Terry E. Goldberg;Venkata S. Mattay;Daniel R. Weinberger;Brita Elvevåg;Michael F. Egan;Joseph H. Callicott,250,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=21044450490&origin=inward,10.1523/JNEUROSCI.0476-05.2005,2005-05-18,2-s2.0-21044450490,,5038-5045,15901785.0,21044450490,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=21044450490&origin=inward,Duyn,Journal of Neuroscience,Effect of catechol-O-methyltransferase val158met genotype on attentional control,Article +,https://api.elsevier.com/content/abstract/scopus_id/33748055408,B. Kolachana;D. R. Weinberger;V. S. Mattay;J. H. Callicott;A. Meyer-Lindenberg;J. Buckholtz;M. Egan;J. Ding;T. Nichols,247,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33748055408&origin=inward,10.1038/sj.mp.4001860,2006-09-01,2-s2.0-33748055408,,867-877,16786032.0,33748055408,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33748055408&origin=inward,Duyn,Molecular Psychiatry,Impact of complex genetic variation in COMT on human brain function,Article +,https://api.elsevier.com/content/abstract/scopus_id/0033624185,Timothy Ellmore;Joseph A. Frank;Frank Q. Ye;Giuseppe Esposito;Yihong Yang;Jeff Duyn;Karen Faith Berman;Daniel R. Weinberger;Anne M. Smith;Alan C. McLaughlin;John D. Van Horn,233,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0033624185&origin=inward,10.1002/1522-2594(200009)44:3<450::AID-MRM16>3.0.CO;2-0,2000-09-25,2-s2.0-0033624185,,450-456,10975898.0,33624185,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0033624185&origin=inward,Berman,Magnetic Resonance in Medicine,H215O PET validation of steady-state arterial spin tagging cerebral blood flow measurements in humans,Article +,https://api.elsevier.com/content/abstract/scopus_id/0033834953,Ian Heaton;Alessandro Bertolino;Joseph A. Frank;Karen F. Berman;Terry E. Goldberg;Venkata S. Mattay;Daniel R. Weinberger;Richard Coppola;Joseph H. Callicott,223,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0033834953&origin=inward,10.1006/nimg.2000.0610,2000-01-01,2-s2.0-0033834953,,268-275,10944409.0,33834953,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0033834953&origin=inward,Berman,NeuroImage,Effects of dextroamphetamine on cognitive performance and cortical activation,Article +,https://api.elsevier.com/content/abstract/scopus_id/0037109773,Thomas N. Chase;Thomas M. Hyde;Francesco Fera;Alessandro Tessitore;Venkata S. Mattay;Daniel R. Weinberger;William G. Smith;Ahmad R. Hariri,222,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0037109773&origin=inward,,2002-10-15,2-s2.0-0037109773,,9099-9103,12388617.0,37109773,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0037109773&origin=inward,Berman,Journal of Neuroscience,Dopamine modulates the response of the human amygdala: A study in Parkinson's disease,Article +,https://api.elsevier.com/content/abstract/scopus_id/0033936617,Joseph A. Frank;Frank Q. Ye;Alan C. McLaughlin;Daniel R. Weinberger,222,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0033936617&origin=inward,10.1002/1522-2594(200007)44:1<92::AID-MRM14>3.0.CO;2-M,2000-07-18,2-s2.0-0033936617,,92-100,10893526.0,33936617,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0033936617&origin=inward,Berman,Magnetic Resonance in Medicine,Noise reduction in 3D perfusion imaging by attenuating the static signal in arterial spin tagging (ASSIST),Article +,https://api.elsevier.com/content/abstract/scopus_id/28744450740,Saumitra Das;Francesco Fera;Alessandro Tessitore;Karen F. Berman;Terry E. Goldberg;Venkata S. Mattay;Daniel R. Weinberger;Andreas Meyer-Lindenberg;Joseph H. Callicott;Ahmad R. Hariri,219,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=28744450740&origin=inward,10.1016/j.neulet.2005.09.025,2006-01-09,2-s2.0-28744450740,,32-37,16213083.0,28744450740,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=28744450740&origin=inward,Berman,Neuroscience Letters,Neurophysiological correlates of age-related changes in working memory capacity,Article +,https://api.elsevier.com/content/abstract/scopus_id/34548303921,J. E. Kleinman;D. R. Weinberger;B. S. Kolachana;R. E. Straub;R. K. Vakkalanka;J. H. Callicott;M. B. Mayhew;T. E. Goldberg;M. F. Egan;B. K. Lipska,210,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34548303921&origin=inward,10.1038/sj.mp.4001988,2007-09-01,2-s2.0-34548303921,,854-869,17767149.0,34548303921,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34548303921&origin=inward,Berman,Molecular Psychiatry,Allelic variation in GAD1 (GAD 67 ) is associated with schizophrenia and influences cortical function and gene expression,Article +,https://api.elsevier.com/content/abstract/scopus_id/45549100295,D. R. Weinberger;B. S. Kolachana;V. S. Mattay;G. Chen;L. Pezawas;A. L. Goldman;A. Meyer-Lindenberg;A. R. Hariri;B. A. Verchinski;M. F. Egan,181,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=45549100295&origin=inward,10.1038/mp.2008.32,2008-07-01,2-s2.0-45549100295,,709-716,18347599.0,45549100295,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=45549100295&origin=inward,Berman,Molecular Psychiatry,Evidence of biologic epistasis between BDNF and SLC6A4 and implications for depression,Article +,https://api.elsevier.com/content/abstract/scopus_id/66749174141,Yuanyuan Ji;Karine Mayilyan;Alessandro Bertolino;Jay Chang;Venkata Mattay;Ina Giegling;Thomas M. Hyde;Barbara K. Lipska;Feng Yang;Stephen J. Huffaker;Michael F. Egan;Joseph H. Callicott;Bai Lu;Morgan J. Proust;Grazia Caforio;Armen Soghoyan;Andreas Meyer-Lindenberg;Dan Rujescu;Terry E. Goldberg;Daniel R. Weinberger;Jingshan Chen;Kristin K. Nicodemus;Fabio Sambataro;Jian Song;Joel E. Kleinman,174,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=66749174141&origin=inward,10.1038/nm.1962,2009-05-01,2-s2.0-66749174141,,509-518,19412172.0,66749174141,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=66749174141&origin=inward,Berman,Nature Medicine,"A primate-specific, brain isoform of KCNH2 affects cortical physiology, cognition, neuronal repolarization and risk of schizophrenia",Article +,https://api.elsevier.com/content/abstract/scopus_id/33751330467,Joshua W. Buckholtz;Steven Sust;Hao Yang Tan;Venkata S. Mattay;Daniel R. Weinberger;Michael F. Egan;Andreas Meyer-Lindenberg;Joseph H. Callicott,172,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33751330467&origin=inward,10.1176/ajp.2006.163.11.1969,2006-01-01,2-s2.0-33751330467,,1969-1977,17074949.0,33751330467,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33751330467&origin=inward,Berman,American Journal of Psychiatry,Dysfunctional prefrontal regional specialization and compensation in schizophrenia,Article +,https://api.elsevier.com/content/abstract/scopus_id/34247387212,Bhaskar S. Kolachana;Jennifer E. Iudicello;Guilna Alce;Terry E. Goldberg;Natkai Akbar;Daniel R. Weinberger;Venkata Mattay;Jingshan Chen;Roberta Rasetti;Michael F. Egan;Joseph H. Callicott;José A. Apud,162,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34247387212&origin=inward,10.1038/sj.npp.1301227,2007-05-24,2-s2.0-34247387212,,1011-1020,17063156.0,34247387212,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34247387212&origin=inward,Berman,Neuropsychopharmacology,Tolcapone improves cognition and cortical information processing in normal human subjects,Article +,https://api.elsevier.com/content/abstract/scopus_id/34547637452,Qiang Chen;Joshua W. Buckholtz;Steven Sust;Hao Yang Tan;Venkata S. Mattay;Daniel R. Weinberger;Michael F. Egan;Andreas Meyer-Lindenberg;Joseph H. Callicott;John D. Meyers,155,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34547637452&origin=inward,10.1073/pnas.0610125104,2007-07-24,2-s2.0-34547637452,,12536-12541,17636131.0,34547637452,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34547637452&origin=inward,Berman,Proceedings of the National Academy of Sciences of the United States of America,Epistasis between catechol-O-methyltransferase and type II metabotropic glutamate receptor 3 genes on working memory brain function,Article +,https://api.elsevier.com/content/abstract/scopus_id/33847374225,Anthony Grace;Jeremy J. Lambert;Maurizio Popoli;Alain Prochiantz;Peter Somogyi;Michael Spedding;György Buzsáki;Per Svenningsson;David M. Diamond;Helen Mayberg;Gal Richter-Levin;Daniel Weinberger;Jean Antoine Girault;Yves Agid;Richard Frackowiak;Jay Giedd;Husseini Manji,166,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33847374225&origin=inward,10.1038/nrd2217,2007-03-01,2-s2.0-33847374225,,189-201,17330070.0,33847374225,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33847374225&origin=inward,Berman,Nature Reviews Drug Discovery,How can drug discovery for psychiatric disorders be improved?,Review +,https://api.elsevier.com/content/abstract/scopus_id/38949193560,Katherine B. Hobbs;Lukas Pezawas;Richard E. Passingham;Robyn A. Honea;Venkata S. Mattay;Daniel R. Weinberger;Michael F. Egan;Andreas Meyer-Lindenberg;Beth Verchinski;Joseph H. Callicott,149,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=38949193560&origin=inward,10.1016/j.biopsych.2007.05.027,2008-03-01,2-s2.0-38949193560,,465-474,17689500.0,38949193560,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=38949193560&origin=inward,Berman,Biological Psychiatry,Is Gray Matter Volume an Intermediate Phenotype for Schizophrenia? A Voxel-Based Morphometry Study of Patients with Schizophrenia and Their Healthy Siblings,Article +,https://api.elsevier.com/content/abstract/scopus_id/45749149476,Qiang Chen;Bhaskar S. Kolachana;Hao Yang Tan;Richard E. Straub;Venkata S. Mattay;Daniel R. Weinberger;Kristin K. Nicodemus;Andreas Meyer-Lindenberg;Robyn Honea;Yoshitasu Sei;Joseph H. Callicott;Jennifer K. Brooke;Zhen Li,141,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=45749149476&origin=inward,10.1172/JCI34725,2008-06-02,2-s2.0-45749149476,,2200-2208,18497887.0,45749149476,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=45749149476&origin=inward,Berman,Journal of Clinical Investigation,Genetic variation in AKT1 is linked to dopamine-associated prefrontal cortical structure and function in humans,Article +,https://api.elsevier.com/content/abstract/scopus_id/0041324902,G. Gerig;J. Lieberman;D. Jones;Martin Styner;D. Weinberger,142,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0041324902&origin=inward,10.1016/S1361-8415(02)00110-X,2003-01-01,2-s2.0-0041324902,,207-220,12946464.0,41324902,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0041324902&origin=inward,Berman,Medical Image Analysis,Statistical shape analysis of neuroanatomical structures based on medial models,Article +,https://api.elsevier.com/content/abstract/scopus_id/84855821018,Venkata S. Mattay;Daniel R. Weinberger;Herve Lemaitre;Andreas Meyer-Lindenberg;Fabio Sambataro;Aaron L. Goldman;Beth A. Verchinski,162,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84855821018&origin=inward,10.1016/j.neurobiolaging.2010.07.013,2012-01-01,2-s2.0-84855821018,,617.e1-617.e9,20739099.0,84855821018,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84855821018&origin=inward,Berman,Neurobiology of Aging,"Normal age-related brain morphometric changes: Nonuniformity across cortical thickness, surface area and gray matter volume?",Article +,https://api.elsevier.com/content/abstract/scopus_id/0036899894,Francesco Fera;Alessandro Tessitore;Venkata S. Mattay;Daniel R. Weinberger;William G. Smith;Ahmad R. Hariri,137,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0036899894&origin=inward,10.1016/S0893-133X(02)00373-1,2002-12-01,2-s2.0-0036899894,,1036-1040,12464460.0,36899894,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0036899894&origin=inward,Berman,Neuropsychopharmacology,Dextroamphetamine modulates the response of the human amygdala,Article +,https://api.elsevier.com/content/abstract/scopus_id/0033961240,Alessandro Bertolino;Joseph A. Frank;Venkata S. Mattay;Giuseppe Esposito;Daniel R. Weinberger;Karen Faith Berman;John D. Van Horn;Joseph H. Callicott,135,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0033961240&origin=inward,10.1176/ajp.157.1.26,2000-01-01,2-s2.0-0033961240,,26-33,10618009.0,33961240,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0033961240&origin=inward,Berman,American Journal of Psychiatry,Specific relationship between prefrontal neuronal N-acetylaspartate and activation of the working memory cortical network in schizophrenia,Article +,https://api.elsevier.com/content/abstract/scopus_id/0038735643,Mark Frye;Alessandro Bertolino;Robert Post;Venkata S. Mattay;Daniel R. Weinberger;Rebecca Rakow;Joseph H. Callicott;Jennifer Shelton-Repella,137,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0038735643&origin=inward,10.1016/S0006-3223(02)01911-X,2003-05-15,2-s2.0-0038735643,,906-913,12742678.0,38735643,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0038735643&origin=inward,Berman,Biological Psychiatry,Neuronal pathology in the hippocampal area of patients with bipolar disorder: A study with proton magnetic resonance spectroscopic imaging,Article +,https://api.elsevier.com/content/abstract/scopus_id/0035062495,R. Rakow;A. Bertolino;D. R. Weinberger;K. M. Weidenhammer;V. S. Mattay;J. H. Callicott;M. F. Egan,135,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0035062495&origin=inward,10.1016/S0006-3223(00)00997-5,2001-01-01,2-s2.0-0035062495,,39-46,11163778.0,35062495,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0035062495&origin=inward,Berman,Biological Psychiatry,The effect of treatment with antipsychotic drugs on brain N-acetylaspartate measures in patients with schizophrenia,Article +,https://api.elsevier.com/content/abstract/scopus_id/0034142382,Alessandro Bertolino;Joseph A. Frank;David Pickar;Venkata S. Mattay;Caleb Adler;Alan Breier;Daniel R. Weinberger;Maxim Shapiro;Joseph H. Callicott,130,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0034142382&origin=inward,10.1016/S0893-133X(99)00096-2,2000-02-01,2-s2.0-0034142382,,125-132,10649825.0,34142382,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0034142382&origin=inward,Berman,Neuropsychopharmacology,The relationship between dorsolateral prefrontal neuronal N-acetylaspartate and evoked release of striatal dopamine in schizophrenia,Article +,https://api.elsevier.com/content/abstract/scopus_id/3242705255,Venkata S. Mattay;Daniel Hommer;James M. Bjork;Daniel R. Weinberger;Brian Knutson;Grace W. Fong,131,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=3242705255&origin=inward,10.1016/j.neuron.2004.06.030,2004-07-22,2-s2.0-3242705255,,261-269,15260961.0,3242705255,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=3242705255&origin=inward,Hommer,Neuron,Amphetamine modulates human incentive processing,Article +,https://api.elsevier.com/content/abstract/scopus_id/70349919812,B. Kolachana;D. R. Weinberger;K. K. Nicodemus;V. Mattay;A. Meyer-Lindenberg;B. Gold;M. Dean;A. Olsh,131,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=70349919812&origin=inward,10.1038/mp.2008.54,2009-01-01,2-s2.0-70349919812,,968-975,18490926.0,70349919812,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=70349919812&origin=inward,Hommer,Molecular Psychiatry,Genetic variants in AVPR1A linked to autism predict amygdala activation and personality traits in healthy humans,Article +,https://api.elsevier.com/content/abstract/scopus_id/83055160768,Qiang Chen;Venkata S. Mattay;Daniel R. Weinberger;Roberta Rasetti;Fabio Sambataro;Joseph H. Callicott,123,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=83055160768&origin=inward,10.1001/archgenpsychiatry.2011.103,2011-12-01,2-s2.0-83055160768,,1207-1217,21810628.0,83055160768,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=83055160768&origin=inward,Hommer,Archives of General Psychiatry,Altered cortical network dynamics: A potential intermediate phenotype for schizophrenia and association with ZNF804A,Article +,https://api.elsevier.com/content/abstract/scopus_id/16344391965,Douglas W. Jones;Robert K. McClure;Daniel R. Weinberger;Martin Styner;Jeffrey A. Lieberman;Guido Gerig,115,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=16344391965&origin=inward,10.1073/pnas.0501117102,2005-03-29,2-s2.0-16344391965,,4872-4877,15772166.0,16344391965,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=16344391965&origin=inward,Hommer,Proceedings of the National Academy of Sciences of the United States of America,Morphometric analysis of lateral ventricles in schizophrenia and healthy controls regarding genetic and disease-specific factors,Article +,https://api.elsevier.com/content/abstract/scopus_id/33645098660,Saumitra Das;Alessandro Bertolino;Giuseppe Blasi;Terry E. Goldberg;Joseph H. Callicott;Venkata S. Mattay;Daniel R. Weinberger;Thomas Weickert;Brad Zoltick;Philip Kohn,125,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33645098660&origin=inward,10.1111/j.1460-9568.2006.04680.x,2006-03-01,2-s2.0-33645098660,,1658-1664,16553630.0,33645098660,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33645098660&origin=inward,Hommer,European Journal of Neuroscience,Brain regions underlying response inhibition and interference monitoring and suppression,Article +,https://api.elsevier.com/content/abstract/scopus_id/37149054393,Qiang Chen;Hao Yang Tan;Terry E. Goldberg;Venkata S. Mattay;Daniel R. Weinberger;Andreas Meyer-Lindenberg;Joseph H. Callicott,114,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=37149054393&origin=inward,10.1523/JNEUROSCI.4041-07.2007,2007-12-05,2-s2.0-37149054393,,13393-13401,18057197.0,37149054393,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=37149054393&origin=inward,Hommer,Journal of Neuroscience,Catechol-O-methyltransferase Val158Met modulation of prefrontal-parietal- striatal brain systems during arithmetic and temporal transformations in working memory,Article +,https://api.elsevier.com/content/abstract/scopus_id/33745949219,Terry E. Goldberg;Richard E. Straub;Venkata S. Mattay;Daniel R. Weinberger;Michael F. Egan;Llewellyn Bigelow;Richard Coppola;Joseph H. Callicott;Ahmad Hariri,110,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33745949219&origin=inward,10.1038/sj.npp.1301049,2006-09-12,2-s2.0-33745949219,,2022-2032,16554747.0,33745949219,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33745949219&origin=inward,Hommer,Neuropsychopharmacology,The G72/G30 gene complex and cognitive abnormalities in schizophrenia,Article +,https://api.elsevier.com/content/abstract/scopus_id/33947583434,Gunter Schumann;Andreas Heinz;Michael N. Smolka;Daniel R. Weinberger;Herta Flor;Dieter F. Braus;Anne Beck;Karl Mann;Christian Büchel;Jana Wrase;Ahmad R. Hariri,107,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33947583434&origin=inward,10.1016/j.biopsych.2006.08.019,2007-04-15,2-s2.0-33947583434,,1011-1014,17157270.0,33947583434,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33947583434&origin=inward,Hommer,Biological Psychiatry,Serotonin Transporter Genotype (5-HTTLPR): Effects of Neutral and Undefined Conditions on Amygdala Activation,Article +,https://api.elsevier.com/content/abstract/scopus_id/0345724778,Terry E. Goldberg;Daniel R. Weinberger;Michael F. Egan;Richard Coppola;Georg Winterer,105,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0345724778&origin=inward,10.1016/S0006-3223(03)00532-8,2003-12-01,2-s2.0-0345724778,,1181-1192,14643085.0,345724778,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0345724778&origin=inward,Hommer,Biological Psychiatry,Functional and effective frontotemporal connectivity and genetic risk for schizophrenia,Article +,https://api.elsevier.com/content/abstract/scopus_id/0041884746,Bhaskar Kolachana;Thomas M. Hyde;Mary M. Herman;Senda Beltaifa;Daniel R. Weinberger;Mitsuyuki Matsumoto;Jingshan Chen;Cynthia Shannon Weickert;Joel E. Kleinman,107,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0041884746&origin=inward,10.1038/sj.npp.1300218,2003-08-01,2-s2.0-0041884746,,1521-1530,12799619.0,41884746,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0041884746&origin=inward,Hommer,Neuropsychopharmacology,Catechol O-methyltransferase (COMT) mRNA expression in the dorsolateral prefrontal cortex of patients with schizophrenia,Article +,https://api.elsevier.com/content/abstract/scopus_id/0033802818,A. Bertolino;D. R. Weinberger;F. J.P. Langheim;V. S. Mattay;J. H. Callicott;M. F. Egan,99,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0033802818&origin=inward,10.1176/appi.ajp.157.10.1646,2000-01-01,2-s2.0-0033802818,,1646-1651,11007719.0,33802818,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0033802818&origin=inward,Hommer,American Journal of Psychiatry,Selective relationship between prefrontal N-acetylaspartate measures and negative symptoms in schizophrenia,Article +,https://api.elsevier.com/content/abstract/scopus_id/60349116939,Bhaskar S. Kolachana;Lukas Pezawas;Venkata S. Mattay;Daniel R. Weinberger;Andreas Meyer-Lindenberg;Robyn Honea;Beth A. Verchinski;Joseph H. Callicott,99,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=60349116939&origin=inward,10.1016/j.neuroimage.2008.10.064,2009-03-01,2-s2.0-60349116939,,44-51,19071221.0,60349116939,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=60349116939&origin=inward,Hommer,NeuroImage,Impact of interacting functional variants in COMT on regional gray matter volume in human brain,Article +,https://api.elsevier.com/content/abstract/scopus_id/20444381284,Saumitra Das;Francesco Fera;Alessandro Tessitore;Venkata S. Mattay;Daniel R. Weinberger;William G. Smith;Ahmad R. Hariri,97,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=20444381284&origin=inward,10.1016/j.pscychresns.2005.02.009,2005-05-30,2-s2.0-20444381284,,9-18,15936178.0,20444381284,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=20444381284&origin=inward,Hommer,Psychiatry Research - Neuroimaging,Functional changes in the activity of brain regions underlying emotion processing in the elderly,Article +,https://api.elsevier.com/content/abstract/scopus_id/60349127721,Bhaskar S. Kolachana;Venkata S. Mattay;Daniel R. Weinberger;Roberta Rasetti;Andreas Meyer-Lindenberg;Lisa M. Wiedholz;Joseph H. Callicott;Ahmad R. Hariri,88,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=60349127721&origin=inward,10.1176/appi.ajp.2008.08020261,2009-02-01,2-s2.0-60349127721,,216-225,19074979.0,60349127721,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=60349127721&origin=inward,Hommer,American Journal of Psychiatry,Evidence that altered amygdala activity in schizophrenia is related to clinical state and not genetic risk,Article +,https://api.elsevier.com/content/abstract/scopus_id/33847152217,Bhaskar Kolachana;Joshua W. Buckholtz;Radhakrishna Vakkalanka;Lukas Pezawas;Steven Sust;Richard E. Straub;Robyn A. Honea;Venkata S. Mattay;Daniel R. Weinberger;Michael F. Egan;Andreas Meyer-Lindenberg;Beth A. Verchinski;Joseph H. Callicott,84,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33847152217&origin=inward,10.1523/JNEUROSCI.5112-06.2007,2007-02-14,2-s2.0-33847152217,,1584-1593,17301167.0,33847152217,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33847152217&origin=inward,Hommer,Journal of Neuroscience,Allelic variation in RGS4 impacts functional and structural connectivity in the human brain,Article +,https://api.elsevier.com/content/abstract/scopus_id/33748294193,Goran Vucurevic;Andreas Konrad;Berna Seker;Daniel R. Weinberger;Juergen Gallinat;Francesco Musso;Peter Stoeter;Georg Winterer;Norbert Dahmen,84,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33748294193&origin=inward,10.1016/j.neuroimage.2006.05.058,2006-10-01,2-s2.0-33748294193,,1722-1732,16884927.0,33748294193,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33748294193&origin=inward,Hommer,NeuroImage,COMT genotype predicts BOLD signal and noise characteristics in prefrontal circuits,Article +,https://api.elsevier.com/content/abstract/scopus_id/30544440487,Thomas W. Weickert;Francesco Fera;Mark A. Gluck;Alessandro Tessitore;Martijn Meeter;Terry E. Goldberg;Venkata S. Mattay;Daniel R. Weinberger;Sumitra Das;Sam Lee;Brad Zoltick;Ahmad Hariri;Catherine E. Myers,80,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=30544440487&origin=inward,10.1523/JNEUROSCI.2736-05.2005,2005-12-07,2-s2.0-30544440487,,11340-11348,16339029.0,30544440487,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=30544440487&origin=inward,Hommer,Journal of Neuroscience,Neural mechanisms underlying probabilistic category learning in normal aging,Article +,https://api.elsevier.com/content/abstract/scopus_id/84855340012,S. Garcia;D. R. Weinberger;J. Chen;J. N. Crawley;F. Papaleo;B. Lu;F. Yang,84,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84855340012&origin=inward,10.1038/mp.2010.106,2012-01-01,2-s2.0-84855340012,,85-98,20956979.0,84855340012,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84855340012&origin=inward,Hommer,Molecular Psychiatry,Dysbindin-1 modulates prefrontal cortical activity and schizophrenia-like behaviors via dopamine/D2 pathways,Article +,https://api.elsevier.com/content/abstract/scopus_id/57149120578,Bhaskar Kolachana;Lucas Kempf;Radhakrishna Vakkalanka;Richard E. Straub;Venkata A. Mattay;Daniel R. Weinberger;Kristin K. Nicodemus;Michael F. Egan;Andreas Meyer-Lindenberg;Beth A. Verchinski;Joseph H. Callicott,79,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=57149120578&origin=inward,10.1371/journal.pgen.1000252,2008-11-01,2-s2.0-57149120578,,,18989458.0,57149120578,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=57149120578&origin=inward,Hommer,PLoS Genetics,Functional polymorphisms in PRODH are associated with risk and protection for schizophrenia and fronto-striatal structure and function,Article +,https://api.elsevier.com/content/abstract/scopus_id/55949127945,Annabella Di Giorgio;Raffaella Romano;Bhaskar Kolachana;Alessandro Bertolino;Grazia Caforio;Apostolos Papazacharias;Giuseppe Blasi;Joseph H. Callicott;Daniel R. Weinberger;Miriam Rizzo;Marcello Nardini;Fabio Sambataro;Teresa Popolizio;Valeria Latorre;Antonio Rampino;Francesco Gambi,76,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=55949127945&origin=inward,10.1111/j.1460-9568.2008.06482.x,2008-11-01,2-s2.0-55949127945,,2129-2136,19046394.0,55949127945,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=55949127945&origin=inward,Hommer,European Journal of Neuroscience,Association of the Ser704Cys DISC1 polymorphism with human hippocampal formation gray matter and function during memory encoding,Article +,https://api.elsevier.com/content/abstract/scopus_id/84856066559,Alan S. Barnett;Hao Yang Tan;Aaron L. Goldman;Daniel R. Weinberger;Jason L. Stein;Andreas Meyer-Lindenberg;Fabio Sambataro;Stefano Marenco;Beth A. Verchinski;Dwight Dickinson;Joseph H. Callicott;Antonina A. Savostyanova;José A. Apud,87,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84856066559&origin=inward,10.1038/npp.2011.215,2012-01-01,2-s2.0-84856066559,,499-507,21956440.0,84856066559,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84856066559&origin=inward,Hommer,Neuropsychopharmacology,Investigation of anatomical thalamo-cortical connectivity and fMRI activation in schizophrenia,Article +,https://api.elsevier.com/content/abstract/scopus_id/0036679036,Jeff H. Duyn;Venkata S. Mattay;Daniel R. Weinberger;Joseph H. Callicott;Frederick J.P. Langheim,67,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0036679036&origin=inward,10.1006/nimg.2002.1144,2002-01-01,2-s2.0-0036679036,,901-908,12202078.0,36679036,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0036679036&origin=inward,Duyn,NeuroImage,Cortical systems associated with covert music rehearsal,Article +,https://api.elsevier.com/content/abstract/scopus_id/33750967649,Ingrid Phillips;Robert K. McClure;Daniel R. Weinberger;Allan Barnett;Richard Coppola;Roukan Jazayerli,63,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33750967649&origin=inward,10.1016/j.pscychresns.2006.04.008,2006-12-01,2-s2.0-33750967649,,121-132,17097276.0,33750967649,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33750967649&origin=inward,Duyn,Psychiatry Research - Neuroimaging,Regional change in brain morphometry in schizophrenia associated with antipsychotic treatment,Article +,https://api.elsevier.com/content/abstract/scopus_id/77952095729,Yin Yao Shugart;Ina Giegling;Rachel G. Higier;Barbara K. Lipska;Radhakrishna Vakkalanka;Daniel R. Weinberger;Pierandrea Muglia;Augustin Luna;Kristin K. Nicodemus;Devon C. Nixon;Dan Rujescu;Joseph H. Callicott;David St Clair,64,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77952095729&origin=inward,10.1007/s00439-009-0782-y,2010-01-01,2-s2.0-77952095729,,441-452,20084519.0,77952095729,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77952095729&origin=inward,Duyn,Human Genetics,"Evidence of statistical epistasis between DISC1, CIT and NDEL1 impacting risk for schizophrenia: Biological validation with functional neuroimaging",Article +,https://api.elsevier.com/content/abstract/scopus_id/0037468303,Sandra F. Witelson;Daniel R. Weinberger;Douglas Jones;Debra L. Kigar;Anton Scamvougeras,53,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0037468303&origin=inward,10.1016/S0304-3940(02)01333-2,2003-02-27,2-s2.0-0037468303,,91-94,12566160.0,37468303,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0037468303&origin=inward,Duyn,Neuroscience Letters,Size of the human corpus callosum is genetically determined: An MRI study in mono and dizygotic twins,Review +,https://api.elsevier.com/content/abstract/scopus_id/70349248588,Saumitra Das;Vishnu P. Murty;Hao Yang Tan;Terry E. Goldberg;Venkata S. Mattay;Daniel R. Weinberger;Andreas Meyer-Lindenberg;Fabio Sambataro;Joseph H. Callicott,51,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=70349248588&origin=inward,10.1162/jocn.2009.21130,2009-10-01,2-s2.0-70349248588,,1920-1933,18823239.0,70349248588,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=70349248588&origin=inward,Duyn,Journal of Cognitive Neuroscience,Age-related alterations in simple declarative memory and the effect of negative stimulus valence,Article +,https://api.elsevier.com/content/abstract/scopus_id/59649119220,Qiang Chen;Brad J. Zoltick;Thomas W. Weickert;Mark A. Gluck;Martijn Meeter;Jose A. Apud;Terry E. Goldberg;Venkata S. Mattay;Daniel R. Weinberger;Sumitra Das;Catherine Myers;Michael F. Egan;Joseph H. Callicott,52,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=59649119220&origin=inward,10.1523/JNEUROSCI.4341-08.2009,2009-01-28,2-s2.0-59649119220,,1244-1254,19176832.0,59649119220,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=59649119220&origin=inward,Duyn,Journal of Neuroscience,Neural correlates of probabilistic category learning in patients with schizophrenia,Article +,https://api.elsevier.com/content/abstract/scopus_id/33746190656,Carlo Pierpaoli;Alan S. Barnett;Robyn A. Honea;Daniel R. Weinberger;Stefano Marenco;Gustavo K. Rohde;Robert Rawlings,53,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33746190656&origin=inward,10.1016/j.pscychresns.2006.01.008,2006-06-30,2-s2.0-33746190656,,69-78,16797169.0,33746190656,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33746190656&origin=inward,Pierpaoli,Psychiatry Research - Neuroimaging,Regional distribution of measurement error in diffusion tensor imaging,Article +,https://api.elsevier.com/content/abstract/scopus_id/35148872558,Richard Coppola;Daniel R. Weinberger;Frederick W. Carver;Venkata Mattay;Francesco Musso;Georg Winterer,49,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=35148872558&origin=inward,10.1002/hbm.20322,2007-09-01,2-s2.0-35148872558,,805-816,17133396.0,35148872558,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=35148872558&origin=inward,Pierpaoli,Human Brain Mapping,Complex relationship between BOLD signal and synchronization/ desynchronization of human brain MEG oscillations,Article +,https://api.elsevier.com/content/abstract/scopus_id/77955715528,Giuseppe Blasi;Terry E. Goldberg;Venkata S. Mattay;Kelsey Skjei;Daniel R. Weinberger;Roberta Rasetti;Isabel C. Arrillaga-Romany;Fabio Sambataro;Joseph H. Callicott;José A. Apud;Beth Stankevich,51,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77955715528&origin=inward,10.1038/npp.2010.83,2010-09-01,2-s2.0-77955715528,,2101-2109,20555311.0,77955715528,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77955715528&origin=inward,Pierpaoli,Neuropsychopharmacology,Modulatory effects of modafinil on neural circuits regulating emotion and cognition,Article +,https://api.elsevier.com/content/abstract/scopus_id/33751331472,Douglas W. Jones;Richard Coppola;Daniel R. Weinberger;Venkata Mattay;Francesco Musso;Michael F. Egan;Georg Winterer;Christian Beckmann;Joseph H. Callicott,49,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33751331472&origin=inward,10.1176/ajp.2006.163.11.1960,2006-01-01,2-s2.0-33751331472,,1960-1968,17074948.0,33751331472,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33751331472&origin=inward,Pierpaoli,American Journal of Psychiatry,Instability of prefrontal signal processing in schizophrenia,Article +,https://api.elsevier.com/content/abstract/scopus_id/0347003606,D. R. Weinberger;A. Heinz;B. Romero;J. Gallinat;G. Juckel,47,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0347003606&origin=inward,,2003-11-01,2-s2.0-0347003606,,,14677072.0,347003606,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0347003606&origin=inward,Pierpaoli,Pharmacopsychiatry,Molecular Brain Imaging and the Neurobiology and Genetics of Schizophrenia,Conference Paper +,https://api.elsevier.com/content/abstract/scopus_id/77953594619,Bhaskar Kolachana;Alan S. Barnett;Jun Shen;Richard E. Straub;Fengyu Zhang;Daniel R. Weinberger;Matthew Geramita;Stefano Marenco;Eugenia Radulescu;Jan Willem Van Der Veen;Joseph H. Callicott;Antonina A. Savostyanova;Alexa Stern,50,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77953594619&origin=inward,10.1038/npp.2010.35,2010-07-01,2-s2.0-77953594619,,1708-1717,20357758.0,77953594619,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77953594619&origin=inward,Pierpaoli,Neuropsychopharmacology,Genetic modulation of GABA levels in the anterior cingulate cortex by GAD1 and COMT,Article +,https://api.elsevier.com/content/abstract/scopus_id/79955664935,Martina Ly;Joseph W. Barter;M. Ryan Haynes;Daniel R. Weinberger;Caroline F. Zink,46,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79955664935&origin=inward,10.1016/j.cub.2011.03.050,2011-05-10,2-s2.0-79955664935,,794-797,21530264.0,79955664935,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79955664935&origin=inward,Pierpaoli,Current Biology,Subjective socioeconomic status predicts human ventral striatal responses to social status information,Article +,https://api.elsevier.com/content/abstract/scopus_id/80051560326,Alan S. Barnett;Jun Shen;Daniel R. Weinberger;Matthew Geramita;Jan Willem van der Veen;Stefano Marenco;Antonina A. Savostyanova,52,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=80051560326&origin=inward,10.1002/nbm.1662,2011-11-01,2-s2.0-80051560326,,1089-1098,21290458.0,80051560326,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=80051560326&origin=inward,,NMR in Biomedicine,Reproducibility of prefrontal γ-aminobutyric acid measurements with J-edited spectroscopy,Article +,https://api.elsevier.com/content/abstract/scopus_id/33847181739,Alessandro Bertolino;Mario Altamura;Giuseppe Blasi;Terry E. Goldberg;Venkata S. Mattay;Daniel R. Weinberger;Brita Elvevåg;Joseph H. Callicott,44,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33847181739&origin=inward,10.1016/j.pscychresns.2006.08.002,2007-02-28,2-s2.0-33847181739,,103-114,17292590.0,33847181739,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33847181739&origin=inward,,Psychiatry Research - Neuroimaging,Dissociating the effects of Sternberg working memory demands in prefrontal cortex,Article +,https://api.elsevier.com/content/abstract/scopus_id/70349754175,Saumitra Das;Alessandro Bertolino;Giuseppe Blasi;Guilna Alce;Venkata S. Mattay;Daniel R. Weinberger;Fabio Sambataro;Paolo Taurisano;Ahmad R. Hariri,43,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=70349754175&origin=inward,10.1016/j.biopsych.2009.06.017,2009-11-01,2-s2.0-70349754175,,847-853,19709644.0,70349754175,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=70349754175&origin=inward,,Biological Psychiatry,Preferential Amygdala Reactivity to the Negative Assessment of Neutral Faces,Article +,https://api.elsevier.com/content/abstract/scopus_id/43149103173,Takeshi Sasayama;Nobuya Matsuoka;Akihiko Fujikawa;Jun Takasaki;Hideki Hiyama;Miwako Shobo;Robyn Honea;Takatoshi Soga;Kiyoshi Furuichi;Masayasu Yoshino;Lucas Kempf;Akira Miyake;Hitoshi Matsushime;Michael F. Egan;Joseph H. Callicott;Shintaro Nishimura;Hiroyuki Ishii;Junko Yarimizu;Shun Ichiro Matsumoto;Sosuke Miyoshi;Ayako Matsuo;Mitsuyuki Matsumoto;Shuji Morita;Stefano Marenco;Masatoshi Yuri;Andreas Meyer-Lindenberg;Masato Kobori;Masazumi Kamohara;Masao Katoh;Richard E. Straub;Masashi Hiramoto;Daniel R. Weinberger;Radha Krishna Vakkalanka;Kazuhiro Terai;Shinji Takahashi;Kristin K. Nicodemus;Hiroyuki Yokota,42,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=43149103173&origin=inward,10.1073/pnas.0710717105,2008-04-22,2-s2.0-43149103173,,6133-6138,18413613.0,43149103173,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=43149103173&origin=inward,,Proceedings of the National Academy of Sciences of the United States of America,"The evolutionarily conserved G protein-coupled receptor SREB2/GPR85 influences brain size, behavior, and vulnerability to schizophrenia",Article +,https://api.elsevier.com/content/abstract/scopus_id/84860641076,Qiang Chen;Bhaskar Kolachana;Hao Yang Tan;Jose A. Apud;Venkata S. Mattay;Anthony G. Chen;Daniel R. Weinberger;Joseph H. Callicott,39,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84860641076&origin=inward,10.1093/brain/aws068,2012-01-01,2-s2.0-84860641076,,1436-1445,22525159.0,84860641076,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84860641076&origin=inward,,Brain,Effective connectivity of AKT1-mediated dopaminergic working memory networks and pharmacogenetics of anti-dopaminergic treatment,Article +,https://api.elsevier.com/content/abstract/scopus_id/79959697514,Vishnu P. Murty;Mario Altamura;Terry E. Goldberg;Venkata S. Mattay;Daniel R. Weinberger;Jennifer Iudicello;Bradley Zoltick;Fabio Sambataro;Eugenia Radulescu,43,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79959697514&origin=inward,10.1016/j.neuroimage.2011.05.006,2011-08-01,2-s2.0-79959697514,,1264-1272,21596142.0,79959697514,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79959697514&origin=inward,,NeuroImage,Selective updating of working memory content modulates meso-cortico-striatal activity,Article +,https://api.elsevier.com/content/abstract/scopus_id/68949175708,Saumitra Das;Vishnu P. Murty;Jeff D. Reed;Hao Yang Tan;Venkata S. Mattay;Daniel R. Weinberger;Fabio Sambataro;Joseph H. Callicott,39,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=68949175708&origin=inward,10.1016/j.biopsych.2009.04.014,2009-09-15,2-s2.0-68949175708,,540-548,19539269.0,68949175708,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=68949175708&origin=inward,,Biological Psychiatry,Catechol-O-Methyltransferase Valine158Methionine Polymorphism Modulates Brain Networks Underlying Working Memory Across Adulthood,Article +,https://api.elsevier.com/content/abstract/scopus_id/84872488798,Bhaskar Kolachana;Alan S. Barnett;Tajvar Alam;Daniel R. Weinberger;Matthew Geramita;Herve Lemaitre;Dwight Dickinson;Heike Tost;Beth A. Verchinski;Joey W. Trampush;Christine Rebsch;Stefano Marenco,38,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84872488798&origin=inward,10.1038/npp.2012.214,2013-02-01,2-s2.0-84872488798,,525-532,23132269.0,84872488798,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84872488798&origin=inward,,Neuropsychopharmacology,Effects of the BDNF val 66 met polymorphism on white matter microstructure in healthy adults,Article +,https://api.elsevier.com/content/abstract/scopus_id/77957667026,Thomas M. Hyde;Amy Deep-Soboslay;Marc S. Lener;Daniel R. Weinberger;Brita Elvevåg;Joseph P. Callicott;Beth A. Verchinski;José A. Apud,35,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77957667026&origin=inward,10.1093/brain/awq160,2010-01-01,2-s2.0-77957667026,,3113-3122,20639549.0,77957667026,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77957667026&origin=inward,,Brain,"Handedness, heritability, neurocognition and brain asymmetry in schizophrenia",Article +,https://api.elsevier.com/content/abstract/scopus_id/34748912359,D. R. Weinberger;V. S. Mattay;R. E. Straub;J. W. Buckholtz;J. H. Callicott;A. Meyer-Lindenberg;S. Sust;H. Y. Tan,34,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34748912359&origin=inward,10.1038/sj.mp.4002008,2007-10-01,2-s2.0-34748912359,,893-895,17895922.0,34748912359,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34748912359&origin=inward,,Molecular Psychiatry,fMRI evidence for functional epistasis between COMT and RGS4 [2],Letter +,https://api.elsevier.com/content/abstract/scopus_id/54349085028,Jan Willem C. van der Veen;Aaron Goldman;Alan S. Barnett;Venkata S. Mattay;Daniel R. Weinberger;Alexa J. Stern;Stefano Marenco;Joseph H. Callicott;Antonina A. Savostyanova,30,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=54349085028&origin=inward,10.1016/j.biopsych.2008.07.009,2008-11-15,2-s2.0-54349085028,,856-862,18707679.0,54349085028,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=54349085028&origin=inward,,Biological Psychiatry,Impact of the Brain-Derived Neurotrophic Factor Val66Met Polymorphism on Levels of Hippocampal N-Acetyl-Aspartate Assessed by Magnetic Resonance Spectroscopic Imaging at 3 Tesla,Article +,https://api.elsevier.com/content/abstract/scopus_id/36849031770,Grant Steen;Stacy Greeter;Robert K. McClure;Daniel R. Weinberger;Emily Maushauer;Khary Carew,30,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=36849031770&origin=inward,10.1016/j.schres.2007.05.012,2008-01-01,2-s2.0-36849031770,,29-39,17976957.0,36849031770,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=36849031770&origin=inward,,Schizophrenia Research,Absence of regional brain volume change in schizophrenia associated with short-term atypical antipsychotic treatment,Article +,https://api.elsevier.com/content/abstract/scopus_id/79955424773,Hao Yang Tan;Venkata S. Mattay;Daniel R. Weinberger;Fabio Sambataro;Devon C. Nixon;Joseph H. Callicott;Morgan J. Prust,27,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79955424773&origin=inward,10.1016/j.biopsych.2010.10.031,2011-05-15,2-s2.0-79955424773,,1006-1008,21215384.0,79955424773,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79955424773&origin=inward,,Biological Psychiatry,Interactive effects of DAOA (G72) and catechol-O-methyltransferase on neurophysiology in prefrontal cortex,Article +,https://api.elsevier.com/content/abstract/scopus_id/84866736870,B. Kolachana;D. R. Weinberger;V. S. Mattay;A. G. Chen;L. B. Browne;Q. Chen;J. H. Callicott;F. Zhang;H. Y. Tan;B. Verchinski;J. Apud,28,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84866736870&origin=inward,10.1038/mp.2011.91,2012-10-01,2-s2.0-84866736870,,1007-1016,21788944.0,84866736870,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84866736870&origin=inward,,Molecular Psychiatry,Epistatic interactions of AKT1 on human medial temporal lobe biology and pharmacogenetic implications,Article +,https://api.elsevier.com/content/abstract/scopus_id/33847067567,Alessandro Bertolino;Giuseppe Blasi;Terry E. Goldberg;Guilna Alce;Venkata S. Mattay;Daniel R. Weinberger;Brita Elvevåg;Roberta Rasetti;Brad Zoltick;Jessica Cohen,27,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33847067567&origin=inward,10.1111/j.1460-9568.2007.05283.x,2007-01-01,2-s2.0-33847067567,,594-602,17284202.0,33847067567,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33847067567&origin=inward,,European Journal of Neuroscience,Differentiating allocation of resources and conflict detection within attentional control processing,Article +,https://api.elsevier.com/content/abstract/scopus_id/0036273090,Bobbi K. Lewis;Joseph A. Frank;Frank Q. Ye;Alan C. McLaughlin;Daniel R. Weinberger;Keith S. St. Lawrence,24,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0036273090&origin=inward,10.1002/jmri.10111,2002-06-19,2-s2.0-0036273090,,628-635,12112512.0,36273090,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0036273090&origin=inward,,Journal of Magnetic Resonance Imaging,Effects of indomethacin on cerebral blood flow at rest and during hypercapnia: An arterial spin tagging study in humans,Article +,https://api.elsevier.com/content/abstract/scopus_id/84875227712,Giuseppe Blasi;Venkata S. Mattay;Joseph H. Callicott;Daniel R. Weinberger;Roberta Rasetti;Fabio Sambataro;Kristina Thurin;Martin Safrin,27,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84875227712&origin=inward,10.1038/npp.2012.250,2013-04-01,2-s2.0-84875227712,,846-853,23299932.0,84875227712,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84875227712&origin=inward,,Neuropsychopharmacology,Altered cerebral response during cognitive control: A potential indicator of genetic liability for schizophrenia,Article +,https://api.elsevier.com/content/abstract/scopus_id/80051567966,Bhaskar Kolachana;Alan S. Barnett;Jun Shen;Daniel R. Weinberger;Matthew Geramita;Jan Willem van der Veen;Stefano Marenco;Amanda J. Law,22,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=80051567966&origin=inward,10.1523/JNEUROSCI.1529-11.2011,2011-08-10,2-s2.0-80051567966,,11628-11632,21832192.0,80051567966,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=80051567966&origin=inward,,Journal of Neuroscience,Genetic association of ErbB4 and human cortical GABA levels in vivo,Article +,https://api.elsevier.com/content/abstract/scopus_id/77949398277,Leonardo Fazio;Raffaella Romano;Annabella Di Giorgio;Alessandro Bertolino;Grazia Caforio;Apostolos Papazacharias;Giuseppe Blasi;Venkata S. Mattay;Daniel R. Weinberger;Marcello Nardini;Fabio Sambataro;Teresa Popolizio;Valeria Latorre;Luciana Lobianco;Paolo Taurisano,23,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77949398277&origin=inward,10.1093/cercor/bhp146,2010-04-01,2-s2.0-77949398277,,837-845,19633177.0,77949398277,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77949398277&origin=inward,,Cerebral Cortex,Nonlinear response of the anterior cingulate and prefrontal cortex in Schizophrenia as a function of variable attentional control,Article +,https://api.elsevier.com/content/abstract/scopus_id/50849117836,Esther M. Emsellem;Thomas M. Hyde;Amy Deep-Soboslay;Llewellyn B. Bigelow;Robyn A. Honea;Daniel R. Weinberger;James M. Gold;Michael F. Egan;Andreas Meyer-Lindenberg;Joseph H. Callicott;Bianca Iglesias,19,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=50849117836&origin=inward,10.1093/brain/awn167,2008-01-01,2-s2.0-50849117836,,2489-2498,18669483.0,50849117836,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=50849117836&origin=inward,,Brain,Enuresis as a premorbid developmental marker of schizophrenia,Article +,https://api.elsevier.com/content/abstract/scopus_id/84870527066,Venkata S. Mattay;Daniel R. Weinberger;Sonya U. Steele;Herve S. Lemaitre;Fabio Sambataro;Joseph H. Callicott;Saumitra B. Das;Martin Safrin,16,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84870527066&origin=inward,10.1111/j.1460-9568.2012.08254.x,2012-12-01,2-s2.0-84870527066,,3559-3567,22909094.0,84870527066,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84870527066&origin=inward,,European Journal of Neuroscience,Normal aging modulates prefrontoparietal networks underlying multiple memory processes,Article +,https://api.elsevier.com/content/abstract/scopus_id/84863767817,Saumitra Das;Vishnu P. Murty;Terry E. Goldberg;Venkata S. Mattay;Daniel R. Weinberger;Fabio Sambataro;Jamie E. Podell;Matthew R. Emery;Yunxia Tong,22,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84863767817&origin=inward,10.1016/j.neuroimage.2012.05.066,2012-09-01,2-s2.0-84863767817,,2151-2160,22659476.0,84863767817,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84863767817&origin=inward,,NeuroImage,Neurophysiological correlates of age-related changes in working memory updating,Article +,https://api.elsevier.com/content/abstract/scopus_id/77951663255,Thomas M. Hyde;Barbara K. Lipska;Raja Kittappa;Ronald McKay;Richard E. Straub;Venkata S. Mattay;Daniel R. Weinberger;Herve Lemaitre;Fabio Sambataro;Beth Verchinski;Joseph H. Callicott;Joel E. Kleinman,17,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77951663255&origin=inward,10.1523/JNEUROSCI.5773-09.2010,2010-04-28,2-s2.0-77951663255,,5992-5997,20427658.0,77951663255,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77951663255&origin=inward,,Journal of Neuroscience,Genetic variation in FGF20 modulates hippocampal biology,Article +,https://api.elsevier.com/content/abstract/scopus_id/77953683797,Radhakrishna Vakkalanka;Barbara K. Lipska;Venkata S. Mattay;Daniel R. Weinberger;Herve Lemaitre;Stefano Marenco;Heike Tost;Joseph H. Callicott;Joel E. Kleinman,15,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77953683797&origin=inward,10.1016/j.biopsych.2010.02.023,2010-07-01,2-s2.0-77953683797,,105-107,20434133.0,77953683797,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77953683797&origin=inward,,Biological Psychiatry,"No Effect of a Common Allelic Variant in the Reelin Gene on Intermediate Phenotype Measures of Brain Structure, Brain Function, and Gene Expression",Article +,https://api.elsevier.com/content/abstract/scopus_id/84881180241,K. Thurin;D. R. Weinberger;F. Sambataro;V. S. Mattay;Q. Chen;J. H. Callicott;R. Rasetti;M. Safrin,13,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84881180241&origin=inward,10.1038/mp.2012.134,2013-08-01,2-s2.0-84881180241,,852-854,23032874.0,84881180241,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84881180241&origin=inward,,Molecular Psychiatry,Effects of ZNF804A on neurophysiologic measures of cognitive control,Letter +,https://api.elsevier.com/content/abstract/scopus_id/84934443886,Daniel R. Weinberger;Stefano Marenco;Alessandro Bertolino,10,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84934443886&origin=inward,10.1007/0-387-30172-0_16,2006-01-01,2-s2.0-84934443886,,227-240,16802716.0,84934443886,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84934443886&origin=inward,,Advances in Experimental Medicine and Biology,In vivo NMR measures of NAA and the neurobiology of schizophrenia,Conference Paper +,https://api.elsevier.com/content/abstract/scopus_id/84871442058,Richard E. Straub;Venkata S. Mattay;Daniel R. Weinberger;Mitsuyuki Matsumoto;Fabio Sambataro;Stefano Marenco;Joseph H. Callicott;Eugenia Radulescu,8,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84871442058&origin=inward,10.1038/npp.2012.184,2013-01-01,2-s2.0-84871442058,,341-349,22968816.0,84871442058,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84871442058&origin=inward,,Neuropsychopharmacology,Effect of schizophrenia risk-associated alleles in SREB2 (GPR85) on functional MRI phenotypes in healthy volunteers,Article +,https://api.elsevier.com/content/abstract/scopus_id/77950011532,J. D. Reed;D. R. Weinberger;S. Das;F. Sambataro;V. S. Mattay;H. S. Lemaitre;V. P. Murty;J. H. Callicott;T. E. Goldberg,0,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77950011532&origin=inward,10.1038/mp.2010.16,2010-04-01,2-s2.0-77950011532,,443,,77950011532,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77950011532&origin=inward,,Molecular Psychiatry,Erratum: BNDF modulates normal human hippocampal ageing (Molecular Psychiatry (2009) 15 (116-118) (10.1038/mp.2009.64),Erratum +,https://api.elsevier.com/content/abstract/scopus_id/84926395609,Shannon L. Risacher;Benno Pütz;Emma Sprooten;Alireza Salami;Christopher R.K. Ching;Karen A. Mather;Sven Cichon;Andrew A. Brown;Tulio Guadalupe;Alexander Teumer;Michelle Luciano;David Hoehn;Saskia S.L. Van Der Marel;Jean Shin;Janita Bralten;David Ames;Roberto Roiz-Santiañez;Marina M.H. Hakobjan;Li Shen;Marcel P. Zwiers;Derrek P. Hibar;Phil H. Lee;Anouk Den Braber;Sylvane Desrivières;Marco P. Boks;Nicola J. Armstrong;Aiden Corvin;Yuri Milaneschi;Lorna M. Lopez;Benjamin S. Aribisala;Mark E. Bastin;Johanna Hass;Kwangsik Nho;Micael Andersson;Jason L. Stein;Lavinia Athanasiu;Deborah Janowitz;Michael Czisch;Emma J. Rose;Margaret Needham;Gabriel Cuellar-Partida;Allison C. Nugent;Manon Bernard;Katharina Wittfeld;Qiang Chen;Henry Brodaty;M. Mallar Chakravarty;Natalie A. Royle;Adaikalavan Ramasamy;Bernd Kraemer;Miguel E. Renteria;Alejandro Arias-Vasquez;Cecilie B. Hartberg;Daniah Trabzuni;Kazima B. Bulayeva;Lars T. Westlye;Mar Matarin;Amelia A. Assareh;Aaron L. Goldman;David C.M. Liewald;Marc M. Bohlken;Oliver Grimm;Girma Woldehawariat;Unn K. Haukvik;Christiane Wolf;Stefan Ehrlich;Philipp G. Sämann;Martine Hoogman;Remco R.R. Makkinje;Saud Alhusaini;D. Reese McKay;Raymond K. Walters;Laura Almasy;Kristel R. Van Eijk;Kimm J.E. Van Hulzen;Lachlan T. Strike;Avram J. Holmes;Roberto Toro;Dalia Kasperaviciute;Tianye Jia;Marjolein M.J. Van Donkelaar;Christopher D. Whelan;Andrew J. Schork;Manuel Mattheisen;Angelien J.G.A.M. Heister;Anderson M. Winkler;Marieke Klein;Joanne E. Curran;Sungeun Kim;Sampath Arepalli;Sudheer Giddaluru;Neda Jahanshad;Esther Walton;Lianne Schmaal;Martina Papmeyer;Christine MacAre;Loes M. Olde Loohuis;Marlies A.M. Naber;Melanie A. Carless;Lucija Abramovic,319,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84926395609&origin=inward,10.1038/nature14101,2015-04-09,2-s2.0-84926395609,NIH,224-229,25607358.0,84926395609,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84926395609&origin=inward,Nugent,Nature,Common genetic variants influence human subcortical brain structures,Article +,https://api.elsevier.com/content/abstract/scopus_id/85006269731,J. P. Roiser;R. Ameli;A. C. Nugent;D. A. Luckenbaugh;C. A. Zarate;N. Lally,84,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85006269731&origin=inward,10.1038/tp.2014.105,2014-01-01,2-s2.0-85006269731,PHS,e469,25313512.0,85006269731,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85006269731&origin=inward,Nugent,Translational psychiatry,Anti-anhedonic effect of ketamine and its neural correlates in treatment-resistant bipolar depression,Article +,https://api.elsevier.com/content/abstract/scopus_id/84880559618,Wayne C. Drevets;Suzanne E. Wood;Wendy Bogers;Carlos A. Zarate;David A. Luckenbaugh;Allison C. Nugent,64,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84880559618&origin=inward,10.1002/hbm.22068,2013-09-01,2-s2.0-84880559618,NIMH,2313-2329,22815187.0,84880559618,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84880559618&origin=inward,Nugent,Human Brain Mapping,"Automated subcortical segmentation using FIRST: Test-retest reliability, interscanner reliability, and comparison to manual segmentation",Article +,https://api.elsevier.com/content/abstract/scopus_id/84969804388,T. F.D. Farrow;A. C. Stanfield;C. H. Fu;E. Via;B. J. Ham;T. M. Adams;D. Mataix-Cols;J. T. O’Brien;Y. Cheng;A. H. Young;S. Pezzoli;G. Wagner;S. Selvaraj;M. J. Kim;M. L. Phillips;J. Radua;N. Cardoner;M. J. Kempton;P. C.M.P. Koolschijn;D. Arnone;F. Amico;M. J. van Tol;A. C. Nugent;C. de Azevedo Marques Périco;O. Gruber;G. S. Malhi;J. H. Cole;N. van der Wee;P. S. Sachdev;A. J. Cleare;G. Salvadore;I. H. Gotlib;D. J. Veltman;D. P. Dickstein;T. Frodl;D. E. Job;T. Wise;A. M. McIntosh;A. J. Thomas;O. Abe,95,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84969804388&origin=inward,10.1038/mp.2016.72,2017-10-01,2-s2.0-84969804388,NIH,1455-1463,27217146.0,84969804388,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84969804388&origin=inward,Nugent,Molecular Psychiatry,Common and distinct patterns of grey-matter volume alteration in major depression and bipolar disorder: Evidence from voxel-based meta-analysis,Article +,https://api.elsevier.com/content/abstract/scopus_id/84864536412,Wayne C. Drevets;Carlos A. Zarate;Jun Shen;Giacomo Salvadore;David A. Luckenbaugh;Rodrigo MacHado-Vieira;Yan Zhang;Stefano Marenco;Jan Willem Van Der Veen;Jacqueline Baumann;Lobna A. Ibrahim,52,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84864536412&origin=inward,10.1017/S1461145711001593,2012-09-01,2-s2.0-84864536412,,1063-1072,22040773.0,84864536412,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84864536412&origin=inward,Zarate,International Journal of Neuropsychopharmacology,An investigation of amino-acid neurotransmitters as potential predictors of clinical improvement to ketamine in depression,Article +,https://api.elsevier.com/content/abstract/scopus_id/84896728934,Wayne C. Drevets;Carlos A. Zarate;David A. Luckenbaugh;Peter Herscovitch;Nancy Diazgranados;Allison C. Nugent;Paul J. Carlson;Lobna Ibrahim;Nancy Brutsche,43,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84896728934&origin=inward,10.1111/bdi.12118,2014-03-01,2-s2.0-84896728934,NIH,119-128,24103187.0,84896728934,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84896728934&origin=inward,Nugent,Bipolar Disorders,Neural correlates of rapid antidepressant response to ketamine in bipolar disorder,Article +,https://api.elsevier.com/content/abstract/scopus_id/84863866874,Wayne C. Drevets;Arlener D. Turner;Carlos Zarate;Maura L. Furey;Allison C. Nugent,24,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84863866874&origin=inward,10.1016/j.neuropsychologia.2012.06.003,2012-07-01,2-s2.0-84863866874,,2348-2355,22714007.0,84863866874,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84863866874&origin=inward,Zarate,Neuropsychologia,Association between subcortical volumes and verbal memory in unmedicated depressed patients and healthy controls,Article +,https://api.elsevier.com/content/abstract/scopus_id/84931268350,Carlos A. Zarate;Richard Coppola;Maura L. Furey;Allison C. Nugent;Stephen E. Robinson,28,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84931268350&origin=inward,10.1016/j.neuroimage.2015.05.051,2015-09-01,2-s2.0-84931268350,,1-12,26032890.0,84931268350,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84931268350&origin=inward,Nugent,NeuroImage,Group differences in MEG-ICA derived resting state networks: Application to major depressive disorder,Article +,https://api.elsevier.com/content/abstract/scopus_id/84928492400,Carlos A. Zarate;David A. Luckenbaugh;Níall Lally;Elizabeth D. Ballard;Maura L. Furey;Allison C. Nugent,26,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84928492400&origin=inward,10.1093/ijnp/pyu069,2015-01-01,2-s2.0-84928492400,NIH,,25550331.0,84928492400,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84928492400&origin=inward,Nugent,International Journal of Neuropsychopharmacology,Neural correlates of suicidal ideation and its reduction in depression,Article +,https://api.elsevier.com/content/abstract/scopus_id/84880739252,Allison Carol Nugent;Wayne Curtis Drevets;Carlos Alberto Zarate;Rebecca Marie Davis,26,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84880739252&origin=inward,10.1016/j.pscychresns.2013.05.004,2013-09-30,2-s2.0-84880739252,,179-185,,84880739252,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84880739252&origin=inward,Nugent,Psychiatry Research - Neuroimaging,Reduced thalamic volumes in major depressive disorder,Article +,https://api.elsevier.com/content/abstract/scopus_id/84908425862,Nada Lukkahati;Carlos A. Zarate;David A. Luckenbaugh;Rodrigo Machado-Vieira;Robin Ortiz;Mark J. Niciu;Leorey N. Saligan;Allison C. Nugent,14,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84908425862&origin=inward,10.1016/j.jad.2014.09.015,2015-01-15,2-s2.0-84908425862,,307-311,25451430.0,84908425862,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84908425862&origin=inward,Nugent,Journal of Affective Disorders,Shank3 as a potential biomarker of antidepressant response to ketamine and its neural correlates in bipolar depression,Article +,https://api.elsevier.com/content/abstract/scopus_id/84955757442,Dipavo Banerjee;Carlos A. Zarate;Jun Shen;David A. Luckenbaugh;Jonathan P. Roiser;Li An;Níall Lally;Mark J. Niciu;Erica M. Richards;Allison C. Nugent,15,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84955757442&origin=inward,10.1002/jmri.24970,2016-01-01,2-s2.0-84955757442,,88-98,26059603.0,84955757442,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84955757442&origin=inward,Nugent,Journal of Magnetic Resonance Imaging,"Reliability of 7T 1H-MRS measured human prefrontal cortex glutamate, glutamine, and glutathione signals using an adapted echo time optimized PRESS sequence: A between- and within-sessions investigation",Article +,https://api.elsevier.com/content/abstract/scopus_id/84976347116,Allison C. Nugent;Carlos A. Zarate;Richard Coppola;Stephen E. Robinson,13,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84976347116&origin=inward,10.1016/j.pscychresns.2016.06.006,2016-08-30,2-s2.0-84976347116,NARSAD,56-66,27362845.0,84976347116,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84976347116&origin=inward,Nugent,Psychiatry Research - Neuroimaging,Preliminary differences in resting state MEG functional connectivity pre- and post-ketamine in major depressive disorder,Article +,https://api.elsevier.com/content/abstract/scopus_id/84977098340,Wayne C. Drevets;Carlos A. Zarate;Joanna Szczepanik;Ashish Khanna;Maura L. Furey;Allison C. Nugent,8,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84977098340&origin=inward,10.1016/j.pscychresns.2016.06.005,2016-08-30,2-s2.0-84977098340,,67-73,27366831.0,84977098340,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84977098340&origin=inward,Nugent,Psychiatry Research - Neuroimaging,Amygdala response to explicit sad face stimuli at baseline predicts antidepressant treatment response to scopolamine in major depressive disorder,Article +,https://api.elsevier.com/content/abstract/scopus_id/84931270575,Wayne C. Drevets;Carlos A. Zarate;Joanna Szczepanik;Ashish Khanna;Allison Nugent;Maura L. Furey,9,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84931270575&origin=inward,10.1093/ijnp/pyv028,2015-06-01,2-s2.0-84931270575,,1-10,25820840.0,84931270575,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84931270575&origin=inward,Nugent,International Journal of Neuropsychopharmacology,Pretreatment differences in BOLD response to emotional faces correlate with Antidepress ant response to scopolamine,Article +,https://api.elsevier.com/content/abstract/scopus_id/85009097803,Pritha Ghosh;Peter M. Lauro;Silvina G. Horovitz;Sule Tinaz;Codrin Lungu,11,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85009097803&origin=inward,10.1016/j.nicl.2016.12.019,2017-01-01,2-s2.0-85009097803,,395-404,28116232.0,85009097803,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85009097803&origin=inward,,NeuroImage: Clinical,Changes in functional organization and white matter integrity in the connectome in Parkinson's disease,Article +,https://api.elsevier.com/content/abstract/scopus_id/84981249367,Kathrin LaFaver;Rezvan Ameli;Carine W. Maurer;Silvina G. Horovitz;Mark Hallett;Steven A. Epstein,31,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84981249367&origin=inward,10.1212/WNL.0000000000002940,2016-08-09,2-s2.0-84981249367,,564-570,27385746.0,84981249367,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84981249367&origin=inward,Hallett,Neurology,Impaired self-agency in functional movement disorders,Article +,https://api.elsevier.com/content/abstract/scopus_id/84898813425,Daniel S. Pine;Stephen Sinclair;Catherine M. Majestic;Stuart F. White;Julia C. Schechter;Katherine A. Fowler;R. James Blair,27,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84898813425&origin=inward,10.1016/j.jaac.2013.12.023,2014-01-01,2-s2.0-84898813425,,579-588.e9,24745957.0,84898813425,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84898813425&origin=inward,Pine,Journal of the American Academy of Child and Adolescent Psychiatry,Disrupted expected value signaling in youth with disruptive behavior disorders to environmental reinforcers,Article +,https://api.elsevier.com/content/abstract/scopus_id/84928492400,David A. Luckenbaugh;Carlos A. Zarate;Allison C. Nugent;Elizabeth D. Ballard;Maura L. Furey;Níall Lally,26,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84928492400&origin=inward,10.1093/ijnp/pyu069,2015-01-01,2-s2.0-84928492400,NIH,,25550331.0,84928492400,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84928492400&origin=inward,Nugent,International Journal of Neuropsychopharmacology,Neural correlates of suicidal ideation and its reduction in depression,Article +,https://api.elsevier.com/content/abstract/scopus_id/84920938450,A. K. Olsavsky;M. A. Brotman;B. L. Bones;E. Leibenluft;D. S. Pine;R. R. Kayser;S. J. Fromm;W. L. Tseng,18,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84920938450&origin=inward,10.1016/j.eurpsy.2014.05.004,2015-01-01,2-s2.0-84920938450,,94-98,25172156.0,84920938450,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84920938450&origin=inward,Pine,European Psychiatry,An fMRI study of emotional face encoding in youth at risk for bipolar disorder,Article +,https://api.elsevier.com/content/abstract/scopus_id/84974667659,Jay Giedd;Audrey Thurm;Susan Swedo;Elizabeth Smith;Deanna Greenstein;Armin Raznahan;Cristan Farmer,15,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84974667659&origin=inward,10.1002/hbm.23195,2016-07-01,2-s2.0-84974667659,,2616-2629,27061356.0,84974667659,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84974667659&origin=inward,Thurm,Human Brain Mapping,Cortical thickness change in autism during early childhood,Article +,https://api.elsevier.com/content/abstract/scopus_id/84931270575,Carlos A. Zarate;Allison Nugent;Joanna Szczepanik;Maura L. Furey;Wayne C. Drevets;Ashish Khanna,9,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84931270575&origin=inward,10.1093/ijnp/pyv028,2015-06-01,2-s2.0-84931270575,,1-10,25820840.0,84931270575,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84931270575&origin=inward,Nugent,International Journal of Neuropsychopharmacology,Pretreatment differences in BOLD response to emotional faces correlate with Antidepress ant response to scopolamine,Article +,https://api.elsevier.com/content/abstract/scopus_id/84949323637,Amritha Nayak;M. Okan Irfanoglu;Carlo Pierpaoli;Dah Jyuu Wang;James McCracken;Judith Rumsey;Lindsay Walker;Michael J. Rivkin;Kelly N. Botteron;Robert C. McKinstry;Lin Ching Chang,17,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84949323637&origin=inward,10.1016/j.neuroimage.2015.05.083,2016-01-01,2-s2.0-84949323637,NICHD,1125-1130,26048622.0,84949323637,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84949323637&origin=inward,Pierpaoli,NeuroImage,The diffusion tensor imaging (DTI) component of the NIH MRI study of normal brain development (PedsDTI),Article +,https://api.elsevier.com/content/abstract/scopus_id/84939254120,Joan M. Ohayon;Vasiliki N. Ikonomidou;Fredric K. Cantor;Jeff Duyn;Bing Yao;Francesca Bagnato,8,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84939254120&origin=inward,10.1111/jon.12193,2015-01-01,2-s2.0-84939254120,,799-806,25657078.0,84939254120,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84939254120&origin=inward,Duyn,Journal of Neuroimaging,Heterogeneity of Multiple Sclerosis White Matter Lesions Detected With T2*-Weighted Imaging at 7.0 Tesla,Article +,https://api.elsevier.com/content/abstract/scopus_id/84945441349,Peter Van Gelderen;Hendrik Mandelkow;Jeff H. Duyn;Jacco A. De Zwart,14,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84945441349&origin=inward,10.1002/mrm.25524,2015-01-01,2-s2.0-84945441349,,1388-1396,25399830.0,84945441349,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84945441349&origin=inward,Duyn,Magnetic Resonance in Medicine,A torque balance measurement of anisotropy of the magnetic susceptibility in white matter,Article +,https://api.elsevier.com/content/abstract/scopus_id/84922258357,Marian Tanofsky-Kraff;Louise Hannallah;Amber B. Courville;Jack A. Yanovski;Daniel S. Pine;Sheila M. Brady;Adrienne L. Romer;Sara E. Field;Eric E. Nelson;Andrew P. Demidowich;Johanna M. Jarcho;Lauren B. Shomaker;Scott G. Engel;Anna Vannucci,14,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84922258357&origin=inward,10.1016/j.neuroimage.2014.12.054,2015-03-01,2-s2.0-84922258357,NIH,343-353,25550068.0,84922258357,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84922258357&origin=inward,Pine,NeuroImage,Neural activation during anticipated peer evaluation and laboratory meal intake in overweight girls with and without loss of control eating,Article +,https://api.elsevier.com/content/abstract/scopus_id/84922983681,Brenda E. Benson;Monique Ernst;Daniel S. Pine;Amanda E. Guyer;Eric E. Nelson,6,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84922983681&origin=inward,10.3758/s13415-014-0307-6,2014-01-01,2-s2.0-84922983681,NIH,155-168,25183555.0,84922983681,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84922983681&origin=inward,Pine,"Cognitive, Affective and Behavioral Neuroscience",Role of contingency in striatal response to incentive in adolescents with anxiety,Article +,https://api.elsevier.com/content/abstract/scopus_id/84938738172,N. Gogtay;D. Greenstein;A. A. Anvari;L. A. Friedman;P. Gochman;J. L. Rapoport,2,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84938738172&origin=inward,10.1017/S0033291715000677,2015-01-01,2-s2.0-84938738172,,2667-2674,25936396.0,84938738172,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84938738172&origin=inward,Rapoport,Psychological Medicine,Hippocampal volume change relates to clinical outcome in childhood-onset schizophrenia,Article +,https://api.elsevier.com/content/abstract/scopus_id/84939896444,Leslie G. Ungerleider;Tracy J. Doty;Shruti Japee;Martin Ingvar,10,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84939896444&origin=inward,10.3758/s13415-014-0290-y,2014-01-01,2-s2.0-84939896444,NIMH,1438-1453,24841078.0,84939896444,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84939896444&origin=inward,Ungerleider,"Cognitive, Affective and Behavioral Neuroscience",Intersubject variability in fearful face processing: The linkbetween behavior and neural activation,Article +,https://api.elsevier.com/content/abstract/scopus_id/84955757442,David A. Luckenbaugh;Carlos A. Zarate;Jun Shen;Allison C. Nugent;Erica M. Richards;Mark J. Niciu;Níall Lally;Li An;Dipavo Banerjee;Jonathan P. Roiser,15,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84955757442&origin=inward,10.1002/jmri.24970,2016-01-01,2-s2.0-84955757442,,88-98,26059603.0,84955757442,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84955757442&origin=inward,Nugent,Journal of Magnetic Resonance Imaging,"Reliability of 7T 1H-MRS measured human prefrontal cortex glutamate, glutamine, and glutathione signals using an adapted echo time optimized PRESS sequence: A between- and within-sessions investigation",Article +,https://api.elsevier.com/content/abstract/scopus_id/84974711219,Jay Giedd;Armin Raznahan;Lisa Ronan;Michael Stockman;Liv Clasen;Francois Lalonde;Aaron Alexander-Bloch,42,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84974711219&origin=inward,10.1002/hbm.23180,2016-07-01,2-s2.0-84974711219,,2385-2397,27004471.0,84974711219,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84974711219&origin=inward,Raznahan,Human Brain Mapping,Subtle in-scanner motion biases automated measurement of brain anatomy from in vivo MRI,Article diff --git a/data/complete/2020_complete.csv b/data/complete/2020_complete.csv new file mode 100644 index 0000000..38fb764 --- /dev/null +++ b/data/complete/2020_complete.csv @@ -0,0 +1,1223 @@ +Abstract Link,Authors (scrambled),Cited-By Count,Cited-By Link,DOI,Date,EID,Funding Agency,Page Range,PubMed ID,Scopus ID,Scopus Link,Searched PI,Source Title,Title,Type,PI,IC +https://api.elsevier.com/content/abstract/scopus_id/85065390290,Marcie L. King;Iris I.A. Groen;Chris I. Baker;Adam Steel;Dwight J. Kravitz,4,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85065390290&origin=inward,10.1016/j.neuroimage.2019.04.079,2019-08-15,"('2-s2.0-85065390290', 'Baker')",NIH,368-382,31054350.0,85065390290,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85065390290&origin=inward,Baker,NeuroImage,Similarity judgments and cortical visual responses reflect different properties of object and scene categories in naturalistic images,Article,Baker,NIMH +https://api.elsevier.com/content/abstract/scopus_id/85059851109,Charlotte J. Stagg;Chris I. Baker;Edward H. Silson;Adam Steel,1,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85059851109&origin=inward,10.1016/j.neuroimage.2019.01.009,2019-04-01,"('2-s2.0-85059851109', 'Baker')",WT,95-105,30630080.0,85059851109,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85059851109&origin=inward,Baker,NeuroImage,Differential impact of reward and punishment on functional connectivity after skill learning,Article,Baker,NIMH +https://api.elsevier.com/content/abstract/scopus_id/85059115445,Gang Chen;Chris I. Baker;Aaron Trefler;Adam Steel;Cibu Thomas,0,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85059115445&origin=inward,10.1016/j.neuroimage.2018.12.038,2019-03-01,"('2-s2.0-85059115445', 'Baker')",NIBIB,524-538,30578926.0,85059115445,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85059115445&origin=inward,Baker,NeuroImage,Finding the baby in the bath water – evidence for task-specific changes in resting state functional connectivity evoked by training,Article,Baker,NIMH +https://api.elsevier.com/content/abstract/scopus_id/85060371320,Alex Martin;Adrian W. Gilmore;Sarah E. Kalinowski;Chris I. Baker;Alexis Kidder;Adam Steel;Edward H. Silson,7,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85060371320&origin=inward,10.1523/JNEUROSCI.1219-18.2018,2019-01-23,"('2-s2.0-85060371320', 'Baker')",,705-717,30504281.0,85060371320,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85060371320&origin=inward,Baker,Journal of Neuroscience,A posterior–anterior distinction between scene perception and scene construction in human medial parietal cortex,Article,Baker,NIMH +https://api.elsevier.com/content/abstract/scopus_id/85067362998,Paul F. Pasquina;Sharon Weeks;Jack W. Tsao;Annie W.Y. Chan;Lindsay Hussey-Anderson;Emily Bilger;Chris I. Baker;Sarah Griffin;Viktoria Elkis,1,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85067362998&origin=inward,10.1016/j.nicl.2019.101882,2019-01-01,"('2-s2.0-85067362998', 'Baker')",CIB,,31226622.0,85067362998,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85067362998&origin=inward,Baker,NeuroImage: Clinical,Visual responsiveness in sensorimotor cortex is increased following amputation and reduced after mirror therapy,Article,Baker,NIMH +https://api.elsevier.com/content/abstract/scopus_id/85052626935,Richard Reynolds;Christian Grillon;Jeffrey Yen-Ting Liu;Daniel Glen;Gang Chen;Salvatore Torrisi;Joseph Leshin;Monique Ernst;Chris I. Baker;Peter A. Bandettini;Nicholas Balderston,4,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85052626935&origin=inward,10.1016/j.neuroimage.2018.03.071,2018-07-15,"('2-s2.0-85052626935', 'Baker')",NIMH,100-110,29621615.0,85052626935,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85052626935&origin=inward,Baker,NeuroImage,Statistical power comparisons at 3T and 7T with a GO / NOGO task,Article,Baker,NIMH +https://api.elsevier.com/content/abstract/scopus_id/85058693165,Iris I.A. Groen;Chris I. Baker,0,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85058693165&origin=inward,10.1016/j.neuron.2018.12.014,2019-01-02,"('2-s2.0-85058693165', 'Baker')",,8-10,30605658.0,85058693165,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85058693165&origin=inward,Baker,Neuron,Scenes in the Human Brain: Comparing 2D versus 3D Representations,Short Survey,Baker,NIMH +https://api.elsevier.com/content/abstract/scopus_id/85064646526,Elisha P. Merriam;Peter J. Molfese;Yuhui Chai;Javier Gonzalez-Castillo;Daniel A. Handwerker;Peter A. Bandettini;Sean Marrett;Andrew Hall,1,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85064646526&origin=inward,10.1016/j.neuroimage.2019.04.048,2019-08-15,"('2-s2.0-85064646526', 'Bandettini')",NIMH,13-23,31015027.0,85064646526,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85064646526&origin=inward,Bandettini,NeuroImage,Visual temporal frequency preference shows a distinct cortical architecture using fMRI,Article,Bandettini,NIMH +https://api.elsevier.com/content/abstract/scopus_id/85065887483,Peter J. Molfese;David C. Jangraw;Jinglong Wu;Jiajia Yang;Gang Chen;Daniel A. Handwerker;Peter A. Bandettini;Laurentius Huber;Yinghua Yu;Yoshimichi Ejima,3,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85065887483&origin=inward,10.1126/sciadv.aav9053,2019-05-15,"('2-s2.0-85065887483', 'Bandettini')",JSPS,,31106273.0,85065887483,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85065887483&origin=inward,Bandettini,Science Advances,Layer-specific activation of sensory input and predictive feedback in the human primary somatosensory cortex,Article,Bandettini,NIMH +https://api.elsevier.com/content/abstract/scopus_id/85059153793,Charles Y. Zheng;Sunanda Mitra;Javier Gonzalez-Castillo;Daniel A. Handwerker;Peter A. Bandettini;Hua Xie;Vince D. Calhoun,7,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85059153793&origin=inward,10.1016/j.neuroimage.2018.12.037,2019-03-01,"('2-s2.0-85059153793', 'Bandettini')",NIMH,502-514,30576850.0,85059153793,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85059153793&origin=inward,Bandettini,NeuroImage,Efficacy of different dynamic functional connectivity methods to capture cognitively relevant information,Article,Bandettini,NIMH +https://api.elsevier.com/content/abstract/scopus_id/85057456558,Jong Hwan Lee;Peter A. Bandettini;Hyun Chul Kim,6,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85057456558&origin=inward,10.1016/j.neuroimage.2018.10.054,2019-02-01,"('2-s2.0-85057456558', 'Bandettini')",,607-627,30366076.0,85057456558,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85057456558&origin=inward,Bandettini,NeuroImage,Deep neural network predicts emotional responses of the human brain from functional magnetic resonance imaging,Article,Bandettini,NIMH +https://api.elsevier.com/content/abstract/scopus_id/85055328485,Hedok Lee;Elsa Lindgren;Silvina Horovitz;Tansha Srivastava;Şükrü Barış Demiral;Veronica Ramirez;Ehsan Shokri-Kojori;Peter Bandettini;Joelle Sarlls;Clara R. Freeman;Gregg Miller;Gene Jack Wang;Amna Zehra;Dardo Tomasi;Nora D. Volkow;Helene Benveniste;Corinde E. Wiers;Kenneth Ke,8,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85055328485&origin=inward,10.1016/j.neuroimage.2018.10.043,2019-01-15,"('2-s2.0-85055328485', 'Bandettini')",NIAAA,263-273,30342236.0,85055328485,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85055328485&origin=inward,Bandettini,NeuroImage,Apparent diffusion coefficient changes in human brain during sleep – Does it inform on the existence of a glymphatic system?,Article,Bandettini,NIMH +https://api.elsevier.com/content/abstract/scopus_id/85053871149,Javier Gonzalez-Castillo;Stefano Moia;Peter A. Bandettini;César Caballero-Gaudes,1,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85053871149&origin=inward,10.1007/978-3-030-00931-1_36,2018-01-01,"('2-s2.0-85053871149', 'Bandettini')",,311-319,,85053871149,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85053871149&origin=inward,Bandettini,Lecture Notes in Computer Science (including subseries Lecture Notes in Artificial Intelligence and Lecture Notes in Bioinformatics),Quantitative deconvolution of fmri data with multi-echo sparse paradigm free mapping,Conference Paper,Bandettini,NIMH +https://api.elsevier.com/content/abstract/scopus_id/85064820043,Charles Y. Zheng;Patrick McClure;Peter Bandettini;Jakub R. Kaczmarzyk;Francisco Pereira;Dylan Nielson;Satrajit S. Ghosh;John A. Lee,1,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85064820043&origin=inward,,2018-01-01,"('2-s2.0-85064820043', 'Bandettini')",NIMH,4093-4103,,85064820043,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85064820043&origin=inward,Bandettini,Advances in Neural Information Processing Systems,Distributed weight consolidation: A brain segmentation case study,Conference Paper,Bandettini,NIMH +https://api.elsevier.com/content/abstract/scopus_id/85055324723,Peter J. Basser;Alexandru V. Avram;Joelle E. Sarlls,4,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85055324723&origin=inward,10.1016/j.neuroimage.2018.10.030,2019-01-15,"('2-s2.0-85055324723', 'Basser')",NICHD,255-262,30326294.0,85055324723,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85055324723&origin=inward,Basser,NeuroImage,Measuring non-parametric distributions of intravoxel mean diffusivities using a clinical MRI scanner,Article,Basser,NINDS +https://api.elsevier.com/content/abstract/scopus_id/85050669547,Ryan Kelly;Karen F. Berman;Yan Zhang;Christian Meyer;Stefano Marenco;Jun Shen;Jan Willem van der Veen;Dwight Dickinson;Daniel R. Weinberger,3,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85050669547&origin=inward,10.1038/s41386-018-0134-5,2018-10-01,"('2-s2.0-85050669547', 'Berman')",NIMH,2285-2291,30050047.0,85050669547,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85050669547&origin=inward,Berman,Neuropsychopharmacology,Role of gamma-amino-butyric acid in the dorsal anterior cingulate in age-associated changes in cognition,Article,Berman,NIMH +https://api.elsevier.com/content/abstract/scopus_id/85068327144,Karen F. Berman;Venkata S. Mattay;Archana Venkataraman;Sayan Ghosal;Qiang Chen;William Ulrich;Aaron L. Goldman;Daniel R. Weinberger,0,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85068327144&origin=inward,10.1117/12.2511220,2019-01-01,"('2-s2.0-85068327144', 'Berman')",NIMH,,,85068327144,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85068327144&origin=inward,Berman,Progress in Biomedical Optics and Imaging - Proceedings of SPIE,A generative-predictive framework to capture altered brain activity in fMRI and its association with genetic risk: Application to Schizophrenia,Conference Paper,Berman,NIMH +https://api.elsevier.com/content/abstract/scopus_id/85053556025,Peter van Gelderen;Jeff H. Duyn,7,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85053556025&origin=inward,10.1002/mrm.27398,2019-01-01,"('2-s2.0-85053556025', 'Duyn')",NINDS,628-638,30230605.0,85053556025,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85053556025&origin=inward,Duyn,Magnetic Resonance in Medicine,White matter intercompartmental water exchange rates determined from detailed modeling of the myelin sheath,Article,Duyn,NINDS +https://api.elsevier.com/content/abstract/scopus_id/85049795779,Jacco A. de Zwart;Pascal Sati;Daniel S. Reich;Matthew K. Schindler;Peter van Gelderen;Jiaen Liu;Jeff H. Duyn,0,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85049795779&origin=inward,10.1016/j.neuroimage.2018.07.011,2018-11-01,"('2-s2.0-85049795779', 'Duyn')",NIH,292-300,29981905.0,85049795779,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85049795779&origin=inward,Duyn,NeuroImage,Impulse response timing differences in BOLD and CBV weighted fMRI,Article,Duyn,NINDS +https://api.elsevier.com/content/abstract/scopus_id/85066470261,Howard J. Federoff;Dima A. Hammoud;Davis P. Argersinger;Russell R. Lonser;Krystof S. Bankiewicz;Peter Herscovitch;Tianxia Wu;Codrin Lungu;Sanhita Sinharay;Kareem A. Zaghloul;Debra J. Ehrlich;Mark Hallett;Gretchen Scott;John D. Heiss,10,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85066470261&origin=inward,10.1002/mds.27724,2019-07-01,"('2-s2.0-85066470261', 'Hallett')",UC,1073-1078,31145831.0,85066470261,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85066470261&origin=inward,Hallett,Movement Disorders,Trial of magnetic resonance–guided putaminal gene therapy for advanced Parkinson's disease,Article,Hallett,NINDS +https://api.elsevier.com/content/abstract/scopus_id/85056323152,Gaurang S. Limachia;Carine W. Maurer;Silvina G. Horovitz;Stephen Sinclair;Rezvan Ameli;Steven A. Epstein;Geanna Capitan;Mark Hallett;Kathrin Lafave,8,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85056323152&origin=inward,10.1212/WNL.0000000000006514,2018-11-13,"('2-s2.0-85056323152', 'Hallett')",NINDS,E1870-E1879,30305450.0,85056323152,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85056323152&origin=inward,Hallett,Neurology,Article gray matter differences in patients with functional movement disorders,Article,Hallett,NINDS +https://api.elsevier.com/content/abstract/scopus_id/85054736833,Caleb J. Huang;Rachel Smallwood Shoukry;Devin Bageac;Laura E. Danielian;Mary Kay Floeter;Michael G. Clark,8,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85054736833&origin=inward,10.1080/21678421.2018.1517180,2018-10-02,"('2-s2.0-85054736833', 'Hallett')",NIH,562-569,30299161.0,85054736833,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85054736833&origin=inward,Hallett,Amyotrophic Lateral Sclerosis and Frontotemporal Degeneration,Loss of functional connectivity is an early imaging marker in primary lateral sclerosis,Article,Hallett,NINDS +https://api.elsevier.com/content/abstract/scopus_id/85063696578,Ellen Leibenluft;Richard C. Reynolds;Jillian Lee Wiggins;Maria Kryza-Lacombe;Kenneth Towbin;Melissa A. Brotman;Daniel S. Pine,1,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85063696578&origin=inward,10.1111/bdi.12768,2019-06-01,"('2-s2.0-85063696578', 'Leibenluft')",NIH,309-320,30851221.0,85063696578,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85063696578&origin=inward,Leibenluft,Bipolar Disorders,Neural mechanisms of face emotion processing in youths and adults with bipolar disorder,Article,Leibenluft,NIMH +https://api.elsevier.com/content/abstract/scopus_id/85060043984,Laura Donahue;Anna E. Frackman;Argyris Stringaris;Christen M. Deveney;Laura Machlin;Elizabeth Moroney;Gretchen Perhamus;Ellen Leibenluft;Richard C. Reynolds;John M. Hettema;Jennifer Y. Yi;Melissa A. Brotman;Roxann Roberson-Nay;Daniel S. Pine;Wan Ling Tseng;Derek Hsu;Alexandra Roule;Katharina Kircanski;Joel Stoddard;Kenneth E. Towbin,12,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85060043984&origin=inward,10.1176/appi.ajp.2018.18040491,2019-01-01,"('2-s2.0-85060043984', 'Leibenluft')",NIMH,67-76,30336704.0,85060043984,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85060043984&origin=inward,Leibenluft,American Journal of Psychiatry,Brain mechanisms of attention orienting following frustration: Associations with irritability and age in youths,Article,Leibenluft,NIMH +https://api.elsevier.com/content/abstract/scopus_id/85056722440,Eric E. Nelson;Ellen Leibenluft;Ashley R. Smith;Brent I. Rappaport;Johanna M. Jarcho;Daniel S. Pine,3,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85056722440&origin=inward,10.1089/cap.2017.0142,2018-11-01,"('2-s2.0-85056722440', 'Leibenluft')",NARSAD,646-654,29792726.0,85056722440,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85056722440&origin=inward,Leibenluft,Journal of Child and Adolescent Psychopharmacology,I like them...will they like me? Evidence for the role of the ventrolateral prefrontal cortex during mismatched social appraisals in anxious youth,Article,Leibenluft,NIMH +https://api.elsevier.com/content/abstract/scopus_id/85059839456,Adrian W. Gilmore;Sarah E. Kalinowski;Stephen J. Gotts;Alex Martin;Shawn C. Milleville,5,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85059839456&origin=inward,10.1016/j.neuropsychologia.2018.12.023,2019-02-18,"('2-s2.0-85059839456', 'Martin')",NIH,31-43,30610842.0,85059839456,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85059839456&origin=inward,Martin,Neuropsychologia,Identifying task-general effects of stimulus familiarity in the parietal memory network,Article,Martin,NIMH +https://api.elsevier.com/content/abstract/scopus_id/85059397375,Laurel J. Buxbaum;Stephen J. Gotts;Christine E. Watson;Alex Martin,4,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85059397375&origin=inward,10.1016/j.nicl.2018.08.033,2019-01-01,"('2-s2.0-85059397375', 'Martin')",NIMH,,30612063.0,85059397375,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85059397375&origin=inward,Martin,NeuroImage: Clinical,Bilateral functional connectivity at rest predicts apraxic symptoms after left hemisphere stroke,Article,Martin,NIMH +https://api.elsevier.com/content/abstract/scopus_id/85055425406,Gregory L. Wallace;Jason Crutcher;Alex Martin,0,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85055425406&origin=inward,10.1002/aur.1969,2018-08-01,"('2-s2.0-85055425406', 'Martin')",NIH,1175-1186,30365251.0,85055425406,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85055425406&origin=inward,Martin,Autism Research,Dissociations in the neural substrates of language and social functioning in autism spectrum disorder,Article,Martin,NIMH +https://api.elsevier.com/content/abstract/scopus_id/85065538990,Avniel Singh Ghuman;Alex Martin,2,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85065538990&origin=inward,10.1016/j.tics.2019.04.004,2019-07-01,"('2-s2.0-85065538990', 'Martin')",NSF,534-536,31103440.0,85065538990,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85065538990&origin=inward,Martin,Trends in Cognitive Sciences,Dynamic Neural Representations: An Inferential Challenge for fMRI,Short Survey,Martin,NIMH +https://api.elsevier.com/content/abstract/scopus_id/85054133925,David J. Heeger;Zvi N. Roth;Elisha P. Merriam,4,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85054133925&origin=inward,10.7554/eLife.37241,2018-08-14,"('2-s2.0-85054133925', 'Merriam')",NIH,,30106372.0,85054133925,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85054133925&origin=inward,Merriam,eLife,Stimulus vignetting and orientation selectivity in human visual cortex,Article,Merriam,NIMH +https://api.elsevier.com/content/abstract/scopus_id/85053080665,Marisa Carrasco;David J. Heeger;Elisha P. Merriam;Laura Dugué,18,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85053080665&origin=inward,10.1093/cercor/bhx140,2018-01-01,"('2-s2.0-85053080665', 'Merriam')",,2375-2390,28981585.0,85053080665,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85053080665&origin=inward,Merriam,Cerebral Cortex,Specific visual subregions of TPJ mediate reorienting of spatial attention,Article,Merriam,NIMH +https://api.elsevier.com/content/abstract/scopus_id/85066163873,Daniel B. Rosoff;Falk W. Lohoff;Audrey Luo;Samantha J. Fede;Jisoo Lee;Christine Muench;Hui Sun;Reza Momenan;Jeesun Jung;Katrin Charlet,0,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85066163873&origin=inward,10.1093/alcalc/agz032,2019-01-01,"('2-s2.0-85066163873', 'Momenan')",NIH,209-215,31008507.0,85066163873,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85066163873&origin=inward,Momenan,Alcohol and Alcoholism,Lack of Association between Serotonin Transporter Gene (SLC6A4) Promoter Methylation and Amygdala Response during Negative Emotion Processing in Individuals with Alcohol Dependence,Article,Momenan,NIAAA +https://api.elsevier.com/content/abstract/scopus_id/85056848429,Julia E. Swan;Matthew E. Sloan;Vijay A. Ramchandani;Joshua Gowin;Reza Momenan,6,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85056848429&origin=inward,10.1007/s00213-018-5113-3,2019-02-14,"('2-s2.0-85056848429', 'Momenan')",,775-785,30456539.0,85056848429,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85056848429&origin=inward,Momenan,Psychopharmacology,The relationship between delay discounting and alcohol dependence in individuals with and without comorbid psychopathology,Article,Momenan,NIAAA +https://api.elsevier.com/content/abstract/scopus_id/85061044348,Elliot A. Stein;Alan Evans;Marc Etienne Rousseau;Anne Uhlmann;Alain Dagher;Mary M. Heitzeg;Yann Ying Chye;Ozlem Korucuoglu;Martin P. Paulus;Anna E. Goudriaan;Dick Veltman;Patricia Conrod;Maartje Luijten;Godfrey Pearlson;Margaret J. Wright;Rita Z. Goldstein;April May;Robert Hester;Sarah Whittle;Angelica Morales;Chiang Shan R. Li;Dan J. Stein;John J. Foxe;Rocio Martin-Santos;Nadia Solowij;Murat Yücel;Deborah Yurgelun-Todd;Renée Schluter;Catherine Orr;Nelly Alia-Klein;Valentina Lorenzetti;Betty Jo Salmeron;Bader Chaarani;Zsuzsika Sjoerds;Susan Tapert;Scott Mackey;Kent Hutchison;Samantha Brooks;Sheng Zhang;Reza Momenan;Hugh Garavan;Nicholas B. Allen;David C. Glahn;Albert Batalla;Elisabeth Caparelli;Derrek P. Hibar;Sylvane Desrivieres;Ruth Van Holst;Sara Blaine;Gunter Schumann;Philip Spechler;Nicholas Allgaier;Janna Cousijn;Lianne Schmaal;Paul M. Thompson;Edythe London;Sarah Feldstein-Ewing;Janice Bunn;Rajita Sinha;Neda Jahanshad,34,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85061044348&origin=inward,10.1176/appi.ajp.2018.17040415,2019-02-01,"('2-s2.0-85061044348', 'Momenan')",NIMH,119-128,30336705.0,85061044348,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85061044348&origin=inward,Momenan,American Journal of Psychiatry,Mega-analysis of gray matter volume in substance dependence: General and substance-specific regional effects,Article,Momenan,NIAAA +https://api.elsevier.com/content/abstract/scopus_id/85063233336,Samantha J. Fede;Erica N. Grodin;Nancy Diazgranados;Reza Momenan;Sarah F. Dean,9,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85063233336&origin=inward,10.1016/j.nicl.2019.101782,2019-01-01,"('2-s2.0-85063233336', 'Momenan')",NIH,,30921611.0,85063233336,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85063233336&origin=inward,Momenan,NeuroImage: Clinical,Resting state connectivity best predicts alcohol use severity in moderate to heavy alcohol users,Article,Momenan,NIAAA +https://api.elsevier.com/content/abstract/scopus_id/85049883924,Falk W. Lohoff;Carlos R. Cortes;Christine Muench;Melanie Schwandt;Reza Momenan;Jeesun Jung,3,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85049883924&origin=inward,10.1038/s41398-018-0184-9,2018-12-01,"('2-s2.0-85049883924', 'Momenan')",NIH,,30006604.0,85049883924,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85049883924&origin=inward,Momenan,Translational Psychiatry,The major depressive disorder GWAS-supported variant rs10514299 in TMEM161B-MEF2C predicts putamen activation during reward processing in alcohol dependence,Article,Momenan,NIAAA +https://api.elsevier.com/content/abstract/scopus_id/85057151554,Lauren Sussman;Markus Heilig;Kelsey Sundby;Grace M. Brennan;Erica N. Grodin;Nancy Diazgranados;Reza Momenan,15,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85057151554&origin=inward,10.1016/j.bpsc.2018.06.009,2018-12-01,"('2-s2.0-85057151554', 'Momenan')",NIAAA,1022-1031,30143454.0,85057151554,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85057151554&origin=inward,Momenan,Biological Psychiatry: Cognitive Neuroscience and Neuroimaging,Neural Correlates of Compulsive Alcohol Seeking in Heavy Drinkers,Article,Momenan,NIAAA +https://api.elsevier.com/content/abstract/scopus_id/85062038500,Carlos A. Zarate;Maura L. Furey;Jessica L. Reed;Joanna E. Szczepanik;Jennifer W. Evans;Allison C. Nugent,7,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85062038500&origin=inward,10.1016/j.bpsc.2019.01.005,2019-07-01,"('2-s2.0-85062038500', 'Nugent')",NIMH,610-618,30826253.0,85062038500,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85062038500&origin=inward,Nugent,Biological Psychiatry: Cognitive Neuroscience and Neuroimaging,Effects of Ketamine on Brain Activity During Emotional Processing: Differential Findings in Depressed Versus Healthy Control Participants,Article,Nugent,NIMH +https://api.elsevier.com/content/abstract/scopus_id/85058137370,Carlos A. Zarate;Jessica R. Gilbert;Allison C. Nugent;Kathleen E. Wills,8,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85058137370&origin=inward,10.1016/j.pscychresns.2018.09.001,2019-01-30,"('2-s2.0-85058137370', 'Nugent')",NARSAD,64-66,30551012.0,85058137370,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85058137370&origin=inward,Nugent,Psychiatry Research - Neuroimaging,Synaptic potentiation and rapid antidepressant response to ketamine in treatment-resistant major depression: A replication study,Article,Nugent,NIMH +https://api.elsevier.com/content/abstract/scopus_id/85067390070,Carlos A. Zarate;Dipavo Banerjee;Sam L. Snider;Cristan Farmer;Jennifer W. Evans;Allison C. Nugent,8,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85067390070&origin=inward,10.1002/hbm.24679,2019-01-01,"('2-s2.0-85067390070', 'Nugent')",NARSAD,3940-3950,31179620.0,85067390070,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85067390070&origin=inward,Nugent,Human Brain Mapping,Multimodal imaging reveals a complex pattern of dysfunction in corticolimbic pathways in major depressive disorder,Article,Nugent,NIMH +https://api.elsevier.com/content/abstract/scopus_id/85064911728,Carlos A. Zarate;Jessica L. Reed;Carl W. Lejuez;Joanna E. Szczepanik;Jennifer W. Evans;Allison C. Nugent;Elizabeth D. Ballard,1,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85064911728&origin=inward,10.1007/s11682-019-00084-w,2019-12-01,"('2-s2.0-85064911728', 'Nugent')",NARSAD,1624-1634,31030316.0,85064911728,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85064911728&origin=inward,Nugent,Brain Imaging and Behavior,Mapping anticipatory anhedonia: an fMRI study,Article,Nugent,NIMH +https://api.elsevier.com/content/abstract/scopus_id/85061584307,Carlos A. Zarate;Jessica L. Reed;Daniel P. Dickstein;Matthew K. Nock;Jennifer W. Evans;Julia S. Yarrington;Allison C. Nugent;Elizabeth D. Ballard;Joanna Szczepanik,2,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85061584307&origin=inward,10.1111/sltb.12543,2019-12-01,"('2-s2.0-85061584307', 'Nugent')",NARSAD,1600-1608,30761601.0,85061584307,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85061584307&origin=inward,Nugent,Suicide and Life-Threatening Behavior,Functional Imaging of the Implicit Association of the Self With Life and Death,Article,Nugent,NIMH +https://api.elsevier.com/content/abstract/scopus_id/85054428567,Paul J. Carlson;Alexander Neumeister;Wayne C. Drevets;Omer Bonne;Inbal Reuveni;Alicja Lerner;Dennis S. Charney;Allison C. Nugent;Meena Vythilingam;Jessica Gill,2,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85054428567&origin=inward,10.1038/s41398-018-0257-9,2018-12-01,"('2-s2.0-85054428567', 'Nugent')",,,30287828.0,85054428567,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85054428567&origin=inward,Nugent,Translational Psychiatry,Altered cerebral benzodiazepine receptor binding in post-traumatic stress disorder,Article,Nugent,NIMH +https://api.elsevier.com/content/abstract/scopus_id/85057790880,Carlos A. Zarate;Marc S. Lener;Lawrence Park;Jessica Ellis;Cristan Farmer;Allison C. Nugent;Joanna Szczepanik;Maura Furey,12,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85057790880&origin=inward,10.1093/ijnp/pyy051,2018-09-01,"('2-s2.0-85057790880', 'Nugent')",NARSAD,10-18,30184133.0,85057790880,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85057790880&origin=inward,Nugent,International Journal of Neuropsychopharmacology,Neurophysiological Changes Associated with Antidepressant Response to Ketamine Not Observed in a Negative Trial of Scopolamine in Major Depressive Disorder,Article,Nugent,NIMH +https://api.elsevier.com/content/abstract/scopus_id/85055321060,Carlos A. Zarate;Kathleen E. Wills;Julia S. Yarrington;Allison C. Nugent;Jessica R. Gilbert,7,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85055321060&origin=inward,10.1093/ijnp/pyy041,2018-01-01,"('2-s2.0-85055321060', 'Nugent')",NARSAD,740-747,29668918.0,85055321060,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85055321060&origin=inward,Nugent,International Journal of Neuropsychopharmacology,Glutamatergic signaling drives ketamine-mediated response in depression: Evidence from dynamic causal modeling,Article,Nugent,NIMH +https://api.elsevier.com/content/abstract/scopus_id/85049802328,Carlos A. Zarate;Maura L. Furey;Jessica L. Reed;Joanna E. Szczepanik;Jennifer W. Evans;Allison C. Nugent,13,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85049802328&origin=inward,10.1016/j.nicl.2018.07.006,2018-01-01,"('2-s2.0-85049802328', 'Nugent')",NARSAD,92-101,30094160.0,85049802328,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85049802328&origin=inward,Nugent,NeuroImage: Clinical,Ketamine normalizes brain activity during emotionally valenced attentional processing in depression,Article,Nugent,NIMH +https://api.elsevier.com/content/abstract/scopus_id/85056086505,Amritha Nayak;Carlo Pierpaoli;M. Okan Irfanoglu;Joelle Sarlls,2,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85056086505&origin=inward,10.1002/mrm.27577,2019-04-01,"('2-s2.0-85056086505', 'Pierpaoli')",NINDS,2774-2787,30394561.0,85056086505,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85056086505&origin=inward,Pierpaoli,Magnetic Resonance in Medicine,Evaluating corrections for Eddy-currents and other EPI distortions in diffusion MRI: methodology and a dataset for benchmarking,Article,Pierpaoli,NIBIB +https://api.elsevier.com/content/abstract/scopus_id/85068373371,Katie A. McLaughlin;Jessica L. Jenness;Alexandra M. Rodman;David G. Weissman;Daniel S. Pine,9,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85068373371&origin=inward,10.1016/j.biopsych.2019.04.033,2019-09-15,"('2-s2.0-85068373371', 'Pine')",NIMH,464-473,31292066.0,85068373371,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85068373371&origin=inward,Pine,Biological Psychiatry,Neurobiological Markers of Resilience to Depression Following Childhood Maltreatment: The Role of Neural Circuits Supporting the Cognitive Control of Emotion,Article,Pine,NIMH +https://api.elsevier.com/content/abstract/scopus_id/85063626687,Ariel Ben Yehuda;Gad Lubin;Daniel S. Pine;Yair Bar-Haim;Ilan Wald;Adva Segal;Eyal Fruchter;Keren Ginat,1,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85063626687&origin=inward,10.1017/S0033291719000539,2020-04-01,"('2-s2.0-85063626687', 'Pine')",ISF,746-753,30919787.0,85063626687,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85063626687&origin=inward,Pine,Psychological Medicine,Changes in the dynamic network structure of PTSD symptoms pre-to-post combat,Article,Pine,NIMH +https://api.elsevier.com/content/abstract/scopus_id/85051920438,Lisanne M. Jenkins;Alessandra M. Passarotti;Scott A. Langenecker;Yi Shin Chang;Katie L. Bessette;Kristy A. Skerrett;Samantha D. Corwin;Natania A. Crane;Jonathan P. Stange;Jon Kar Zubieta;Víctor G. Patrón;Daniel S. Pine,1,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85051920438&origin=inward,10.1016/j.jad.2018.07.082,2018-12-01,"('2-s2.0-85051920438', 'Pine')",NIMH,371-380,30145507.0,85051920438,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85051920438&origin=inward,Pine,Journal of Affective Disorders,Differential engagement of cognitive control regions and subgenual cingulate based upon presence or absence of comorbid anxiety with depression,Article,Pine,NIMH +https://api.elsevier.com/content/abstract/scopus_id/85051138382,Ellen Leibenluft;Sophia Frangou;Monique Ernst;Prantik Kundu;Dana Rosen;Wen Ming Luh;Peter A. Bandettini;Brenda E. Benson;Daniel S. Pine,7,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85051138382&origin=inward,10.1523/JNEUROSCI.1864-17.2018,2018-04-04,"('2-s2.0-85051138382', 'Pine')",,3559-3570,29487126.0,85051138382,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85051138382&origin=inward,Pine,Journal of Neuroscience,The integration of functional brain activity from adolescence to adulthood,Article,Pine,NIMH +https://api.elsevier.com/content/abstract/scopus_id/85057850353,Diane Broadnax;Peter Gochman;Xueping Zhou;Adam Thomas;Dale Zhou;Siyuan Liu;Judith Rapoport;Rebecca Berman,0,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85057850353&origin=inward,10.1016/j.schres.2018.07.023,2018-12-01,"('2-s2.0-85057850353', 'Rapoport')",,431-432,30029830.0,85057850353,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85057850353&origin=inward,Rapoport,Schizophrenia Research,7 T MRI reveals hippocampal structural abnormalities associated with memory intrusions in childhood-onset schizophrenia,Letter,Rapoport,NIMH +https://api.elsevier.com/content/abstract/scopus_id/85060215290,Martina Absinta;Daniel S. Reich,2,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85060215290&origin=inward,10.1177/1352458518794082,2019-03-01,"('2-s2.0-85060215290', 'Reich')",NINDS,330-331,,85060215290,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85060215290&origin=inward,Reich,Multiple Sclerosis Journal,Imaging of meningeal inflammation should become part of the routine MRI protocol – Yes,Article,Reich,NINDS +https://api.elsevier.com/content/abstract/scopus_id/85062529087,Yasuhiko Tachibana;Constantina Andrada Treaba;Dominique Eden;Sara M. Dupont;Josefina Maranzano;Yaou Liu;Sridar Narayanan;Seth A. Smith;Pierre Labauge;Henitsoa Rasoanandrianina;Jean Pelletier;Bertrand Audoin;Gilles Edan;Julien Cohen-Adad;Massimo Filippi;Jean Christophe Brisset;Masaaki Hori;Paola Valsasina;Anne Kerbrat;Erik Charlson;Ren Zhuoquiong;Shahamat Tauhid;Jan Hillert;Tobias Granberg;Maria A. Rocca;Jason Talbott;Olga Ciccarelli;Russell Ouellette;Marios Yiannakas;Benjamin De Leener;Elise Bannier;Ferran Prados;Govind Nair;Caterina Mainero;Timothy M. Shepherd;Charley Gros;Daniel S. Reich;Rohit Bakshi;Kouhei Kamiya;Hugh Kearney;Atef Badji;Virginie Callot;Jennifer Lefeuvre;Lydia Chougar;Leszek Stawiarz,15,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85062529087&origin=inward,10.1093/brain/awy352,2019-03-01,"('2-s2.0-85062529087', 'Reich')",DOD,633-646,30715195.0,85062529087,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85062529087&origin=inward,Reich,Brain,Spatial distribution of multiple sclerosis lesions in the cervical spinal cord,Article,Reich,NINDS +https://api.elsevier.com/content/abstract/scopus_id/85054053751,Jonghye Woo;Pascal Sati;Jerry L. Prince;Daniel S. Reich;Can Zhao;Dzung L. Pham;Jiwon Oh;Blake E. Dewey;Aaron Carass;Peter A. Calabresi,6,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85054053751&origin=inward,10.1007/978-3-030-00928-1_12,2018-01-01,"('2-s2.0-85054053751', 'Reich')",NINDS,100-108,,85054053751,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85054053751&origin=inward,Reich,Lecture Notes in Computer Science (including subseries Lecture Notes in Artificial Intelligence and Lecture Notes in Bioinformatics),A deep learning based anti-aliasing self super-resolution algorithm for MRI,Conference Paper,Reich,NINDS +https://api.elsevier.com/content/abstract/scopus_id/85060152881,Govind Nair;Katherine Powers;Ian Tagge;Daniel S. Reich;Nico Papinutto;Rohit Bakshi;Daniel Pelletier;Roland G. Henry;Jiwon Oh;Peter A. Calabresi;Nancy L. Sicotte;Russell Shinohara;William D. Rooney;John Grinstead;Daniel L. Schwartz;R. Todd Constable;Sinyeob Ahn,7,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85060152881&origin=inward,10.1002/jmri.26652,2019-01-01,"('2-s2.0-85060152881', 'Reich')",NIH,878-888,30652391.0,85060152881,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85060152881&origin=inward,Reich,Journal of Magnetic Resonance Imaging,Multisite reliability and repeatability of an advanced brain MRI protocol,Article,Reich,NINDS +https://api.elsevier.com/content/abstract/scopus_id/85063004708,Narun Pornpattananangkul;Ellen Leibenluft;Daniel S. Pine;Argyris Stringaris,7,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85063004708&origin=inward,10.1001/jamapsychiatry.2019.0020,2019-06-01,"('2-s2.0-85063004708', 'Stringaris')",NIH,624-633,30865236.0,85063004708,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85063004708&origin=inward,Stringaris,JAMA Psychiatry,Association between childhood anhedonia and alterations in large-scale resting-state networks and task-evoked activation,Article,Stringaris,NIMH +https://api.elsevier.com/content/abstract/scopus_id/85051521885,Steven A. Kushner;Tonya White;Koen Bolhuis;James J. Hudziak;Argyris Stringaris;Ryan L. Muetzel;Manon H.J. Hillegers;Henning Tiemeier;Vincent W.V. Jaddoe,4,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85051521885&origin=inward,10.1016/j.biopsych.2018.07.005,2019-02-15,"('2-s2.0-85051521885', 'Stringaris')",EUR,336-344,30119874.0,85051521885,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85051521885&origin=inward,Stringaris,Biological Psychiatry,Structural Brain Connectivity in Childhood Disruptive Behavior Problems: A Multidimensional Approach,Article,Stringaris,NIMH +https://api.elsevier.com/content/abstract/scopus_id/85057593778,Eric Artiges;Vincent Frouin;Eleni Tzavara;Argyris Stringaris;Marie Laure Paillère Martinot;Patricia Conrod;Andreas Heinz;Arun L.W. Bokde;Jean Luc Martinot;Maren Struve;Uli Bromberg;Hélène Vulser;Frauke Nees;Yvonne Grimmer;Rüdiger Brühl;Hervé Lemaitre;Charbel Massaad;Robert Goodman;Robert Whelan;Tomas Paus;Christian Büchel;Herta Flor;Betteke M. Van Noort;Gareth J. Barker;Luise Poustka;Viola Kappel;Henrik Walter;Penny Gowland;Sylvane Desrivières;Hugh Garavan;Michael N. Smolka;Anna Cattrell;Sarah Rodehacke;Jani Penttilä;Juergen Gallinat;Gunter Schumann;Tobias Banaschewski;Dimitri Papadopoulos-Orfanos;Tahmine Fadai;Ruben Miranda,5,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85057593778&origin=inward,10.1176/appi.ajp.2018.17070825,2018-12-01,"('2-s2.0-85057593778', 'Stringaris')",WT,1255-1264,30111185.0,85057593778,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85057593778&origin=inward,Stringaris,American Journal of Psychiatry,Early variations in white matter microstructure and depression outcome in adolescents with subthreshold depression,Article,Stringaris,NIMH +https://api.elsevier.com/content/abstract/scopus_id/85056342442,Pablo Vidal-Ribas;Ellen Leibenluft;Ariela Kaiser;Hanna Keren;Argyris Stringaris;George A. Buzzell;Liana Meffert;Pedro M. Pan;Melissa A. Brotman;Selina Wolke;Daniel S. Pine;Georgia O'Callaghan,40,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85056342442&origin=inward,10.1176/appi.ajp.2018.17101124,2018-11-01,"('2-s2.0-85056342442', 'Stringaris')",NIMH,1111-1120,29921146.0,85056342442,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85056342442&origin=inward,Stringaris,American Journal of Psychiatry,Reward processing in depression: A conceptual and meta-analytic review across fMRI and EEG studies,Article,Stringaris,NIMH +https://api.elsevier.com/content/abstract/scopus_id/85052304815,Vincent Frouin;Gareth Barker;Argyris Stringaris;Marie Laure Paillère Martinot;Tomáš Paus;Andreas Heinz;Arun L.W. Bokde;Jean Luc Martinot;Patricia Conrod;Uli Bromberg;Maren Struve;Nora C. Vetter;Frauke Nees;Yvonne Grimmer;Christoph Abé;Charlotte Nymberg Thunell;Dimitri Papadopoulos Orfanos;Erin Burke Quinlan;Robert Whelan;Christian Büchel;Herta Flor;Bernd Ittermann;Luise Poustka;Viola Kappel;Henrik Walter;Frida Bayard;Penny Gowland;Sylvane Desrivières;Hugh Garavan;Michael N. Smolka;Jani Penttilä;Gunter Schumann;Tobias Banaschewski;Predrag Petrovic;Tahmine Fadai;Rita Almeida;Betteke van Noort,3,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85052304815&origin=inward,10.1038/s41380-018-0202-6,2018-01-01,"('2-s2.0-85052304815', 'Stringaris')",,,,85052304815,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85052304815&origin=inward,Stringaris,Molecular Psychiatry,Distinct brain structure and behavior related to ADHD and conduct disorder traits,,Stringaris,NIMH +https://api.elsevier.com/content/abstract/scopus_id/85061441395,Sara K. Inati;William D. Gaillard;Rachel Rolinski;Leigh N. Sepeta;Edythe Wiggs;Alison Austermuehle;Kareem A. Zaghloul;William H. Theodore;Shubhi Agrawal,4,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85061441395&origin=inward,10.1111/epi.14666,2019-03-01,"('2-s2.0-85061441395', 'Theodore')",NIH,560-570,30740700.0,85061441395,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85061441395&origin=inward,Theodore,Epilepsia,Functional MRI and direct cortical stimulation: Prediction of postoperative language decline,Article,Theodore,NINDS +https://api.elsevier.com/content/abstract/scopus_id/85061500598,Eric J. Emery;Xiaozhen You;Ashley N. Zachery;Eleanor J. Fanto;Kareem Zaghloul;Sara K. Inati;William D. Gaillard;Leigh N. Sepeta;Edythe Wiggs;Gina Norato;William H. Theodore;Sierra C Germeyan;Madison M. Berl;Chelsea L. Black,5,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85061500598&origin=inward,10.1111/epi.14656,2019-03-01,"('2-s2.0-85061500598', 'Theodore')",AAN,527-538,30740666.0,85061500598,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85061500598&origin=inward,Theodore,Epilepsia,fMRI prediction of naming change after adult temporal lobe epilepsy surgery: Activation matters,Article,Theodore,NINDS +https://api.elsevier.com/content/abstract/scopus_id/85066625037,Geena Ianni;Leslie G. Ungerleider;David Pitcher,4,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85066625037&origin=inward,10.1038/s41598-019-44663-9,2019-12-01,"('2-s2.0-85066625037', 'Ungerleider')",NIMH,,31160680.0,85066625037,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85066625037&origin=inward,Ungerleider,Scientific Reports,"A functional dissociation of face-, body- and scene-selective brain areas based on their response to moving and static stimuli",Article,Ungerleider,NIMH +https://api.elsevier.com/content/abstract/scopus_id/85052691396,Leslie G. Ungerleider;Zaid N. Safiullah;Valentinos Zachariou,2,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85052691396&origin=inward,10.1162/jocn_a_01288,2017-01-01,"('2-s2.0-85052691396', 'Ungerleider')",NIMH,1499-1516,29877768.0,85052691396,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85052691396&origin=inward,Ungerleider,Journal of Cognitive Neuroscience,The fusiform and occipital face areas can process a nonface category equivalently to faces,Article,Ungerleider,NIMH +https://api.elsevier.com/content/abstract/scopus_id/85055890342,Zaynah M. Alam;Michael Freedberg;Selene Schintu;Sarah Shomstein;Eric M. Wassermann,2,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85055890342&origin=inward,10.1016/j.cortex.2018.09.021,2018-12-01,"('2-s2.0-85055890342', 'Wassermann')",NSF,279-286,30399479.0,85055890342,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85055890342&origin=inward,Wassermann,Cortex,Left-shifting prism adaptation boosts reward-based learning,Article,Wassermann,NINDS +https://api.elsevier.com/content/abstract/scopus_id/85042290887,Niloufar Sadeghi;Lorenzo Emmi;Martina Absinta;Vittorio Martinelli;Bernard Dachy;Gaetano Perrotta;Alessandro Barilaro;Massimo Filippi;Luca Massacesi;Matteo Grammatico;Domenico Prisco;Roberta Scotti;Pascal Sati;Gregorio Spagni;Anna Maria Repice;Pietro Maggi;Luisa Vuolo;Daniel S. Reich;Giovanna Carlucci;Giacomo Emmi,46,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85042290887&origin=inward,10.1002/ana.25146,2018-02-01,"('2-s2.0-85042290887', 'Reich')",CNHF,283-294,29328521.0,85042290887,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85042290887&origin=inward,Reich,Annals of Neurology,Central vein sign differentiates Multiple Sclerosis from central nervous system inflammatory vasculopathies,Article,Reich,NINDS +https://api.elsevier.com/content/abstract/scopus_id/85042380945,Amrita Nayak;Neda Sadeghi;Joelle Sarlls;Chris I. Baker;Aaron Trefler;Carlo Pierpaoli;Cibu Thomas,11,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85042380945&origin=inward,10.1016/j.neuroimage.2018.02.026,2018-06-01,"('2-s2.0-85042380945', 'Baker')",NIBIB,25-34,29458189.0,85042380945,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85042380945&origin=inward,Baker,NeuroImage,Impact of time-of-day on diffusivity measures of brain tissue derived from diffusion tensor imaging,Article,Baker,NIMH +https://api.elsevier.com/content/abstract/scopus_id/85043684245,V. Sethi;E. S. Beck;B. Dewey;P. Bhargava;P. Sati;D. S. Reich;I. C. Cortese;G. Nair;T. Kober,18,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85043684245&origin=inward,10.3174/ajnr.A5534,2018-03-01,"('2-s2.0-85043684245', 'Cortese')",AAN,459-466,29439120.0,85043684245,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85043684245&origin=inward,Cortese,American Journal of Neuroradiology,Improved visualization of cortical lesions in multiple sclerosis using 7T MP2RAGE,Article,Cortese,NINDS +https://api.elsevier.com/content/abstract/scopus_id/85044366429,Carlos A. Zarate;Jennifer W. Evans;Nancy Brutsché;Allison C. Nugent;Joanna Szczepanik;Lawrence T. Park,37,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85044366429&origin=inward,10.1016/j.biopsych.2018.01.027,2018-10-15,"('2-s2.0-85044366429', 'Nugent')",NARSAD,582-590,29580569.0,85044366429,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85044366429&origin=inward,Nugent,Biological Psychiatry,Default Mode Connectivity in Major Depressive Disorder Measured Up to 10 Days After Ketamine Administration,Article,Nugent,NIMH +https://api.elsevier.com/content/abstract/scopus_id/85045255547,Gunnar Carlsson;Olaf Sporns;Allan L. Reiss;Gary Glover;Javier Gonzalez-Castillo;Peter A. Bandettini;Manish Saggar,41,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85045255547&origin=inward,10.1038/s41467-018-03664-4,2018-12-01,"('2-s2.0-85045255547', 'Bandettini')",NARSAD,,29643350.0,85045255547,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85045255547&origin=inward,Bandettini,Nature Communications,Towards a new approach to reveal dynamical organization of the brain using topological data analysis,Article,Bandettini,NIMH +https://api.elsevier.com/content/abstract/scopus_id/85042269593,Pascal Sati;Daniel Ontaneda;Martina Absinta;Daniel S. Reich;Richard Watts;Andrew J. Solomon,20,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85042269593&origin=inward,10.1177/1352458517726383,2018-05-01,"('2-s2.0-85042269593', 'Reich')",NIH,750-757,,85042269593,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85042269593&origin=inward,Reich,Multiple Sclerosis Journal,Diagnostic performance of central vein sign for multiple sclerosis with a simplified three-lesion algorithm,Article,Reich,NINDS +https://api.elsevier.com/content/abstract/scopus_id/85033229158,B. Jeanne Billioux;Joan Ohayon;Govind Nair;Chevaz Thomas;Daniel S. Reich;Steven Jacobson;Ashley Vellucci;Jenifer Dwyer;Irene Cortese;Yoshimi Enose-Akahata;Emily Charlip;Shila Azodi,7,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85033229158&origin=inward,10.1002/ana.25072,2017-11-01,"('2-s2.0-85033229158', 'Cortese')",,719-728,29024167.0,85033229158,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85033229158&origin=inward,Cortese,Annals of Neurology,Imaging spinal cord atrophy in progressive myelopathies: HTLV-I-associated neurological disease (HAM/TSP) and multiple sclerosis (MS),Article,Cortese,NINDS +https://api.elsevier.com/content/abstract/scopus_id/85049867380,M. K. Schindler;P. Sati;A. Fechner;D. S. Reich;M. Absinta;G. Nair,11,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85049867380&origin=inward,10.3174/ajnr.A5660,2018-07-01,"('2-s2.0-85049867380', 'Reich')",NINDS,1233-1238,29724768.0,85049867380,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85049867380&origin=inward,Reich,American Journal of Neuroradiology,Identification of chronic active multiple sclerosis lesions on 3T MRI,Article,Reich,NINDS +https://api.elsevier.com/content/abstract/scopus_id/85032791586,Merage Ghane;Monica D. Rosenberg;David C. Jangraw;Puja Panwar;Javier Gonzalez-Castillo;Daniel A. Handwerker;Peter A. Bandettini,18,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85032791586&origin=inward,10.1016/j.neuroimage.2017.10.019,2018-02-01,"('2-s2.0-85032791586', 'Bandettini')",NIMH,99-109,29031531.0,85032791586,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85032791586&origin=inward,Bandettini,NeuroImage,A functional connectivity-based neuromarker of sustained attention generalizes to predict recall in a reading task,Article,Bandettini,NIMH +https://api.elsevier.com/content/abstract/scopus_id/85039994457,Judith L. Rapoport;Liv S. Clasen;Nitin Gogtay;Alex Martin;Harrison M. McAdams;Rebecca E. Watsky;Dede Greenstein;Anna E. Ordóñez;Stephen J. Gotts;Siyuan Liu;Peter Gochman;Rebecca A. Berman;Lorie Shora;Deanna M. Barch;Francois M. Lalonde;Xueping Zhou,4,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85039994457&origin=inward,10.1016/j.schres.2018.01.003,2018-07-01,"('2-s2.0-85039994457', 'Martin')",NIMH,219-225,29310911.0,85039994457,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85039994457&origin=inward,Martin,Schizophrenia Research,Attenuated resting-state functional connectivity in patients with childhood- and adult-onset schizophrenia,Article,Martin,NIMH +https://api.elsevier.com/content/abstract/scopus_id/85049149728,Joelle E. Sarlls;S. Lalith Talagala;Dan Rettmann;Vinai Roopchansingh;Francois Lalonde;Ajit Shankaranarayanan,2,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85049149728&origin=inward,10.1371/journal.pone.0199372,2018-06-01,"('2-s2.0-85049149728', 'Talagala')",NIMH,,29953459.0,85049149728,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85049149728&origin=inward,Talagala,PLoS ONE,Effectiveness of navigator-based prospective motion correction in mprage data acquired at 3T,Article,Talagala,NINDS +https://api.elsevier.com/content/abstract/scopus_id/85030184023,Nicole Mlynaryk;Leslie G. Ungerleider;Shruti Japee;Xilin Zhang,5,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85030184023&origin=inward,10.1016/j.neuroimage.2017.09.050,2017-12-01,"('2-s2.0-85030184023', 'Ungerleider')",NIMH,231-243,28951352.0,85030184023,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85030184023&origin=inward,Ungerleider,NeuroImage,Attentional selection of multiple objects in the human visual system,Article,Ungerleider,NIMH +https://api.elsevier.com/content/abstract/scopus_id/85038221196,Jozien Goense;David C. Jangraw;Maria Guidi;Benedikt A. Poser;Gang Chen;Javier Gonzalez-Castillo;Daniel A. Handwerker;Peter A. Bandettini;Laurentius Huber;Sean Marrett;Dimo Ivanov;Carsten Stüber;Andrew Hall,61,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85038221196&origin=inward,10.1016/j.neuron.2017.11.005,2017-12-20,"('2-s2.0-85038221196', 'Bandettini')",EC,1253-1263.e7,29224727.0,85038221196,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85038221196&origin=inward,Bandettini,Neuron,High-Resolution CBV-fMRI Allows Mapping of Laminar Activity and Connectivity of Cortical Input and Output in Human M1,Article,Bandettini,NIMH +https://api.elsevier.com/content/abstract/scopus_id/67649135107,Nikolaus Kriegeskorte;Patrick S. Bellgowan;W. Kyle Simmons;Chris I. Baker,1558,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=67649135107&origin=inward,10.1038/nn.2303,2009-01-01,"('2-s2.0-67649135107', 'Baker')",,535-540,19396166.0,67649135107,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=67649135107&origin=inward,Baker,Nature Neuroscience,Circular analysis in systems neuroscience: The dangers of double dipping,Article,Baker,NIMH +https://api.elsevier.com/content/abstract/scopus_id/79956306362,Cynthia S. Peng;Chris I. Baker;Dwight J. Kravitz,168,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79956306362&origin=inward,10.1523/JNEUROSCI.4588-10.2011,2011-05-18,"('2-s2.0-79956306362', 'Baker')",,7322-7333,21593316.0,79956306362,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79956306362&origin=inward,Baker,Journal of Neuroscience,Real-world scene representations in high-level visual cortex: It's the spaces more than the places,Article,Baker,NIMH +https://api.elsevier.com/content/abstract/scopus_id/78349249010,Nikolaus Kriegeskorte;Chris I. Baker;Dwight J. Kravitz,107,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=78349249010&origin=inward,10.1093/cercor/bhq042,2010-12-01,"('2-s2.0-78349249010', 'Baker')",,2916-2925,20351021.0,78349249010,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=78349249010&origin=inward,Baker,Cerebral Cortex,High-level visual object representations are constrained by position,Article,Baker,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84875135931,Chris I. Baker;Assaf Harel;Dwight J. Kravitz,80,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84875135931&origin=inward,10.1093/cercor/bhs091,2013-04-01,"('2-s2.0-84875135931', 'Baker')",,947-957,22473894.0,84875135931,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84875135931&origin=inward,Baker,Cerebral Cortex,Deconstructing visual scenes in cortex: Gradients of object and spatial layout information,Article,Baker,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84880919127,Sue Hyun Lee;Chris I. Baker;Dwight J. Kravitz,88,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84880919127&origin=inward,10.1038/nn.3452,2013-08-01,"('2-s2.0-84880919127', 'Baker')",,997-999,23817547.0,84880919127,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84880919127&origin=inward,Baker,Nature Neuroscience,Goal-dependent dissociation of visual and prefrontal cortices during working memory,Article,Baker,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84896301173,Chris I. Baker;Assaf Harel;Dwight J. Kravitz,75,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84896301173&origin=inward,10.1073/pnas.1312567111,2014-03-11,"('2-s2.0-84896301173', 'Baker')",,,24567402.0,84896301173,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84896301173&origin=inward,Baker,Proceedings of the National Academy of Sciences of the United States of America,Task context impacts visual object processing differentially across the cortex,Article,Baker,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84857030698,Sue Hyun Lee;Chris I. Baker;Dwight J. Kravitz,84,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84857030698&origin=inward,10.1016/j.neuroimage.2011.10.055,2012-02-15,"('2-s2.0-84857030698', 'Baker')",NIMH,4064-4073,22040738.0,84857030698,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84857030698&origin=inward,Baker,NeuroImage,Disentangling visual imagery and perception of real-world objects,Article,Baker,NIMH +https://api.elsevier.com/content/abstract/scopus_id/77950189801,Sandra Truong;Annie W.Y. Chan;Joseph Arizpe;Chris I. Baker;Dwight J. Kravitz,55,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77950189801&origin=inward,10.1038/nn.2502,2010-04-01,"('2-s2.0-77950189801', 'Baker')",NIMH,417-418,20208528.0,77950189801,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77950189801&origin=inward,Baker,Nature Neuroscience,Cortical representations of bodies and faces are strongest in commonly experienced configurations,Article,Baker,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84906662244,Gregory L. Wallace;Simon Baron-Cohen;Caroline E. Robertson;Chris I. Baker;Alex Martin;Dwight J. Kravitz;Cibu Thomas,56,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84906662244&origin=inward,10.1093/brain/awu189,2014-01-01,"('2-s2.0-84906662244', 'Martin')",NIMH,2588-2599,25060095.0,84906662244,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84906662244&origin=inward,Martin,Brain,Global motion perception deficits in autism are reflected as early as primary visual cortex,Article,Martin,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84940426288,Edward Harry Silson;Dwight Jacob Kravitz;Richard Craig Reynolds;Chris Ian Baker;Annie Wai Yiu Chan,50,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84940426288&origin=inward,10.1523/JNEUROSCI.0137-15.2015,2015-01-01,"('2-s2.0-84940426288', 'Baker')",,11921-11935,26311774.0,84940426288,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84940426288&origin=inward,Baker,Journal of Neuroscience,A retinotopic basis for the division of high-level scene processing between lateral and ventral human occipitotemporal cortex,Article,Baker,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84891657349,Dwight Kravitz;Chris I. Baker;Assaf Harel,30,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84891657349&origin=inward,10.3389/fnhum.2013.00885,2013-12-27,"('2-s2.0-84891657349', 'Baker')",,,,84891657349,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84891657349&origin=inward,Baker,Frontiers in Human Neuroscience,Beyond perceptual expertise: Revisiting the neural substrates of expert object recognition,Review,Baker,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84921908336,Annie W.Y. Chan;Chris I. Baker,22,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84921908336&origin=inward,10.1523/JNEUROSCI.3621-14.2015,2015-01-01,"('2-s2.0-84921908336', 'Baker')",,1468-1480,25632124.0,84921908336,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84921908336&origin=inward,Baker,Journal of Neuroscience,Seeing is not feeling: Posterior parietal but not somatosensory cortex engagement during touch observation,Article,Baker,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84992162473,Dwight J. Kravitz;Iris I.A. Groen;Chris I. Baker;Edward H. Silson,23,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84992162473&origin=inward,10.1167/16.6.14,2016-01-01,"('2-s2.0-84992162473', 'Baker')",NIMH,,27105060.0,84992162473,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84992162473&origin=inward,Baker,Journal of Vision,"Evaluating the correspondence between face-, scene-, and object-selectivity and retinotopic organization within lateral occipitotemporal cortex",Article,Baker,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84961777771,Neda Sadeghi;Chris I. Baker;Adam G. Thomas;Aaron Trefler;Carlo Pierpaoli;Cibu Thomas,25,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84961777771&origin=inward,10.1016/j.neuroimage.2016.02.034,2016-06-01,"('2-s2.0-84961777771', 'Thomas')",NICHD,41-52,26921714.0,84961777771,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84961777771&origin=inward,Thomas,NeuroImage,Impact of time-of-day on brain morphometric measures derived from T1-weighted magnetic resonance imaging,Article,Thomas,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84983801250,Chris I. Baker;Edward H. Silson;Adam D. Steel,26,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84983801250&origin=inward,10.3389/fnhum.2016.00412,2016-08-18,"('2-s2.0-84983801250', 'Baker')",NIH,17,,84983801250,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84983801250&origin=inward,Baker,Frontiers in Human Neuroscience,Scene-selectivity and retinotopy in medial parietal cortex,Article,Baker,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84924560199,Dwight Kravitz;Hans P. Op de Beeck;Chris Baker;Annelies Baeck,15,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84924560199&origin=inward,10.1016/j.neuroimage.2015.01.060,2015-05-01,"('2-s2.0-84924560199', 'Baker')",FWO,321-328,25665965.0,84924560199,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84924560199&origin=inward,Baker,NeuroImage,Influence of lexical status and orthographic similarity on the multi-voxel response of the visual word form area,Article,Baker,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84993994703,Charlotte J. Stagg;Chris I. Baker;Edward H. Silson;Adam Steel,14,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84993994703&origin=inward,10.1038/srep36056,2016-10-27,"('2-s2.0-84993994703', 'Baker')",,,27786302.0,84993994703,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84993994703&origin=inward,Baker,Scientific Reports,The impact of reward and punishment on skill learning depends on task demands,Article,Baker,NIMH +https://api.elsevier.com/content/abstract/scopus_id/57649158932,Rasmus M. Birn;Tyler B. Jones;Kevin Murphy;Daniel A. Handwerker;Peter A. Bandettini,1469,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=57649158932&origin=inward,10.1016/j.neuroimage.2008.09.036,2009-02-01,"('2-s2.0-57649158932', 'Bandettini')",NIMH,893-905,18976716.0,57649158932,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=57649158932&origin=inward,Bandettini,NeuroImage,The impact of global signal regression on resting state correlations: Are anti-correlated networks introduced?,Article,Bandettini,NIMH +https://api.elsevier.com/content/abstract/scopus_id/33644870032,Nikolaus Kriegeskorte;Peter Bandettini;Rainer Goebel,1160,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33644870032&origin=inward,10.1073/pnas.0600244103,2006-03-07,"('2-s2.0-33644870032', 'Bandettini')",,3863-3868,16537458.0,33644870032,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33644870032&origin=inward,Bandettini,Proceedings of the National Academy of Sciences of the United States of America,Information-based functional brain mapping,Article,Bandettini,NIMH +https://api.elsevier.com/content/abstract/scopus_id/33746852686,Monica A. Smith;Rasmus M. Birn;Peter A. Bandettini;Jason B. Diamond,861,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33746852686&origin=inward,10.1016/j.neuroimage.2006.02.048,2006-07-15,"('2-s2.0-33746852686', 'Bandettini')",NIMH,1536-1548,16632379.0,33746852686,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33746852686&origin=inward,Bandettini,NeuroImage,Separating respiratory-variation-related fluctuations from neuronal-activity-related fluctuations in fMRI,Article,Bandettini,NIMH +https://api.elsevier.com/content/abstract/scopus_id/57649196582,Nikolaus Kriegeskorte;Hossein Esteky;Keiji Tanaka;Douglas A. Ruff;Marieke Mur;Jerzy Bodurka;Peter A. Bandettini;Roozbeh Kiani,605,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=57649196582&origin=inward,10.1016/j.neuron.2008.10.043,2008-12-26,"('2-s2.0-57649196582', 'Bandettini')",NIMH,1126-1141,19109916.0,57649196582,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=57649196582&origin=inward,Bandettini,Neuron,Matching Categorical Object Representations in Inferior Temporal Cortex of Man and Monkey,Article,Bandettini,NIMH +https://api.elsevier.com/content/abstract/scopus_id/40649083494,Monica A. Smith;Rasmus M. Birn;Peter A. Bandettini;Tyler B. Jones,316,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=40649083494&origin=inward,10.1016/j.neuroimage.2007.11.059,2008-04-01,"('2-s2.0-40649083494', 'Bandettini')",,644-654,18234517.0,40649083494,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=40649083494&origin=inward,Bandettini,NeuroImage,The respiration response function: The temporal dynamics of fMRI signal fluctuations related to changes in respiration,Article,Bandettini,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84880332316,Kevin Murphy;Rasmus M. Birn;Peter A. Bandettini,319,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84880332316&origin=inward,10.1016/j.neuroimage.2013.04.001,2013-10-15,"('2-s2.0-84880332316', 'Bandettini')",WCMR,349-359,23571418.0,84880332316,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84880332316&origin=inward,Bandettini,NeuroImage,Resting-state fMRI confounds and cleanup,Article,Bandettini,NIMH +https://api.elsevier.com/content/abstract/scopus_id/63349109274,Nikolaus Kriegeskorte;Marieke Mur;Peter A. Bandettini,243,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=63349109274&origin=inward,10.1093/scan/nsn044,2009-04-03,"('2-s2.0-63349109274', 'Bandettini')",,101-109,19151374.0,63349109274,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=63349109274&origin=inward,Bandettini,Social Cognitive and Affective Neuroscience,Revealing representational content with pattern-information fMRI - An introductory guide,Article,Bandettini,NIMH +https://api.elsevier.com/content/abstract/scopus_id/77955307443,Nikolaus Kriegeskorte;Youn Kim;Peter A. Bandettini;Masaya Misaki,261,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77955307443&origin=inward,10.1016/j.neuroimage.2010.05.051,2010-10-01,"('2-s2.0-77955307443', 'Bandettini')",NIMH,103-118,20580933.0,77955307443,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77955307443&origin=inward,Bandettini,NeuroImage,Comparison of multivariate classifiers and response normalizations for pattern-information fMRI,Article,Bandettini,NIMH +https://api.elsevier.com/content/abstract/scopus_id/44949194744,Kevin Murphy;Rasmus M. Birn;Peter A. Bandettini,213,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=44949194744&origin=inward,10.1002/hbm.20577,2008-07-01,"('2-s2.0-44949194744', 'Bandettini')",,740-750,18438886.0,44949194744,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=44949194744&origin=inward,Bandettini,Human Brain Mapping,The effect of respiration variations on independent component analysis results of resting state functional connectivity,Article,Bandettini,NIMH +https://api.elsevier.com/content/abstract/scopus_id/0034816846,Ziad S. Saad;Rasmus M. Birn;Peter A. Bandettini,176,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0034816846&origin=inward,10.1006/nimg.2001.0873,2001-01-01,"('2-s2.0-0034816846', 'Bandettini')",,817-826,11554800.0,34816846,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0034816846&origin=inward,Bandettini,NeuroImage,Spatial heterogeneity of the nonlinear dynamics in the FMRI BOLD response,Article,Bandettini,NIMH +https://api.elsevier.com/content/abstract/scopus_id/34548840105,Kevin Murphy;Jerzy Bodurka;Peter A. Bandettini,198,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34548840105&origin=inward,10.1016/j.neuroimage.2006.09.032,2007-01-15,"('2-s2.0-34548840105', 'Bandettini')",NIMH,565-574,17126038.0,34548840105,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34548840105&origin=inward,Bandettini,NeuroImage,How long to scan? The relationship between fMRI temporal signal to noise ratio and necessary scan duration,Article,Bandettini,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84866507939,Javier Gonzalez-Castillo;Daniel A. Handwerker;Vinai Roopchansingh;Peter A. Bandettini,221,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84866507939&origin=inward,10.1016/j.neuroimage.2012.06.078,2012-11-15,"('2-s2.0-84866507939', 'Bandettini')",NIH,1712-1719,22796990.0,84866507939,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84866507939&origin=inward,Bandettini,NeuroImage,Periodic changes in fMRI connectivity,Article,Bandettini,NIMH +https://api.elsevier.com/content/abstract/scopus_id/0034025737,Robert W. Cox;Peter A. Bandettini,154,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0034025737&origin=inward,10.1002/(SICI)1522-2594(200004)43:4<540::AID-MRM8>3.0.CO;2-R,2000-04-18,"('2-s2.0-0034025737', 'Bandettini')",,540-548,10748429.0,34025737,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0034025737&origin=inward,Bandettini,Magnetic Resonance in Medicine,Event-related fMRI contrast when using constant interstimulus interval: Theory and experiment,Article,Bandettini,NIMH +https://api.elsevier.com/content/abstract/scopus_id/0036322924,Robert W. Cox;Rasmus M. Birn;Peter A. Bandettini,160,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0036322924&origin=inward,10.1006/nimg.2001.0964,2002-01-01,"('2-s2.0-0036322924', 'Bandettini')",,252-264,,36322924,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0036322924&origin=inward,Bandettini,NeuroImage,Detection versus estimation in event-related fMRI: Choosing the optimal stimulus timing,Article,Bandettini,NIMH +https://api.elsevier.com/content/abstract/scopus_id/0036267186,Jerzy Bodurka;Peter A. Bandettini,147,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0036267186&origin=inward,10.1002/mrm.10159,2002-06-13,"('2-s2.0-0036267186', 'Bandettini')",,1052-1058,12111950.0,36267186,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0036267186&origin=inward,Bandettini,Magnetic Resonance in Medicine,"Toward direct mapping of neuronal activity: MRI detection of ultraweak, transient magnetic field changes",Article,Bandettini,NIMH +https://api.elsevier.com/content/abstract/scopus_id/63449097461,Peter A. Bandettini,166,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=63449097461&origin=inward,10.1111/j.1749-6632.2009.04420.x,2009-01-01,"('2-s2.0-63449097461', 'Bandettini')",,260-293,19338512.0,63449097461,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=63449097461&origin=inward,Bandettini,Annals of the New York Academy of Sciences,What's new in neuroimaging methods?,Article,Bandettini,NIMH +https://api.elsevier.com/content/abstract/scopus_id/35448999574,Nikolaus Kriegeskorte;Peter Bandettini,165,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=35448999574&origin=inward,10.1016/j.neuroimage.2007.02.022,2007-12-01,"('2-s2.0-35448999574', 'Bandettini')",,649-662,17804260.0,35448999574,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=35448999574&origin=inward,Bandettini,NeuroImage,"Analyzing for information, not activation, to exploit high-resolution fMRI",Note,Bandettini,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84859451115,Noah Brenowitz;Javier Gonzalez-Castillo;Daniel A. Handwerker;Souheil J. Inati;Ziad S. Saad;Peter A. Bandettini,162,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84859451115&origin=inward,10.1073/pnas.1121049109,2012-04-03,"('2-s2.0-84859451115', 'Bandettini')",,5487-5492,22431587.0,84859451115,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84859451115&origin=inward,Bandettini,Proceedings of the National Academy of Sciences of the United States of America,"Whole-brain, time-locked activation with simple tasks revealed using massive averaging and model-free analysis",Article,Bandettini,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84857738843,Prantik Kundu;Souheil J. Inati;Jennifer W. Evans;Wen Ming Luh;Peter A. Bandettini,195,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84857738843&origin=inward,10.1016/j.neuroimage.2011.12.028,2012-04-15,"('2-s2.0-84857738843', 'Bandettini')",NIMH,1759-1770,22209809.0,84857738843,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84857738843&origin=inward,Bandettini,NeuroImage,Differentiating BOLD and non-BOLD signals in fMRI time series using multi-echo EPI,Article,Bandettini,NIMH +https://api.elsevier.com/content/abstract/scopus_id/71849089178,Nikolaus Kriegeskorte;Peter Bandettini;Rhodri Cusack,122,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=71849089178&origin=inward,10.1016/j.neuroimage.2009.09.059,2010-02-01,"('2-s2.0-71849089178', 'Bandettini')",,1965-1976,19800408.0,71849089178,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=71849089178&origin=inward,Bandettini,NeuroImage,How does an fMRI voxel sample the neuronal activity pattern: Compact-kernel or complex spatiotemporal filter?,Note,Bandettini,NIMH +https://api.elsevier.com/content/abstract/scopus_id/20444420898,David C. Knight;Hanh T. Nguyen;Peter A. Bandettini,128,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=20444420898&origin=inward,10.1016/j.neuroimage.2005.03.020,2005-07-15,"('2-s2.0-20444420898', 'Bandettini')",,1193-1200,15961053.0,20444420898,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=20444420898&origin=inward,Bandettini,NeuroImage,The role of the human amygdala in the production of conditioned fear responses,Article,Bandettini,NIMH +https://api.elsevier.com/content/abstract/scopus_id/0033937960,B. Douglas Ward;James S. Hyde;Wen Ming Luh;Peter A. Bandettini;Eric C. Wong,110,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0033937960&origin=inward,10.1002/1522-2594(200007)44:1<137::AID-MRM20>3.0.CO;2-R,2000-07-18,"('2-s2.0-0033937960', 'Bandettini')",,137-143,10893532.0,33937960,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0033937960&origin=inward,Bandettini,Magnetic Resonance in Medicine,Comparison of simultaneously measured perfusion and bold signal increases during brain activation with T1-based tissue identification,Article,Bandettini,NIMH +https://api.elsevier.com/content/abstract/scopus_id/7444229260,Robert W. Cox;Rasmus M. Birn;Peter A. Bandettini,118,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=7444229260&origin=inward,10.1016/j.neuroimage.2004.07.039,2004-11-01,"('2-s2.0-7444229260', 'Bandettini')",,1046-1058,15528105.0,7444229260,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=7444229260&origin=inward,Bandettini,NeuroImage,Experimental designs and processing strategies for fMRI studies involving overt verbal responses,Article,Bandettini,NIMH +https://api.elsevier.com/content/abstract/scopus_id/0036939697,Leslie G. Ungerleider;Peter A. Bandettini;James C. Patterson,104,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0036939697&origin=inward,10.1006/nimg.2002.1306,2002-01-01,"('2-s2.0-0036939697', 'Ungerleider')",,1797-1806,12498753.0,36939697,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0036939697&origin=inward,Ungerleider,NeuroImage,Task-independent functional brain activity correlation with skin conductance changes: An fMRI study,Article,Ungerleider,NIMH +https://api.elsevier.com/content/abstract/scopus_id/34548813221,K. Murphy;J. Bodurka;P. A. Bandettini;F. Ye;N. Petridou,100,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34548813221&origin=inward,10.1016/j.neuroimage.2006.09.039,2007-01-15,"('2-s2.0-34548813221', 'Bandettini')",NINDS,542-549,17101280.0,34548813221,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34548813221&origin=inward,Bandettini,NeuroImage,Mapping the MRI voxel volume in which thermal noise matches physiological noise-Implications for fMRI,Article,Bandettini,NIMH +https://api.elsevier.com/content/abstract/scopus_id/67651051881,Kevin Murphy;Daniel A. Handwerker;Rasmus M. Birn;Peter A. Bandettini,97,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=67651051881&origin=inward,10.1016/j.neuroimage.2009.05.030,2009-09-01,"('2-s2.0-67651051881', 'Bandettini')",,1092-1104,19460443.0,67651051881,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=67651051881&origin=inward,Bandettini,NeuroImage,fMRI in the presence of task-correlated breathing variations,Article,Bandettini,NIMH +https://api.elsevier.com/content/abstract/scopus_id/0037417820,Z. S. Saad;P. A. Bandettini;P. S.F. Bellgowan,83,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0037417820&origin=inward,10.1073/pnas.0337747100,2003-02-04,"('2-s2.0-0037417820', 'Bandettini')",,1415-1419,12552093.0,37417820,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0037417820&origin=inward,Bandettini,Proceedings of the National Academy of Sciences of the United States of America,"Understanding neural system dynamics through task modulation and measurement of functional MRI amplitude, latency, and width",Article,Bandettini,NIMH +https://api.elsevier.com/content/abstract/scopus_id/34548862403,Joseph E. Dunsmoor;David C. Knight;Peter A. Bandettini,81,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34548862403&origin=inward,10.1037/0735-7044.121.4.635,2007-08-01,"('2-s2.0-34548862403', 'Bandettini')",,635-642,17663589.0,34548862403,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34548862403&origin=inward,Bandettini,Behavioral Neuroscience,Impact of Continuous Versus Intermittent CS-UCS Pairing on Human Brain Activation During Pavlovian Fear Conditioning,Article,Bandettini,NIMH +https://api.elsevier.com/content/abstract/scopus_id/0345598028,David C. Knight;Hanh T. Nguyen;Peter A. Bandettini,82,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0345598028&origin=inward,10.1073/pnas.2535780100,2003-12-09,"('2-s2.0-0345598028', 'Bandettini')",,15280-15283,14657356.0,345598028,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0345598028&origin=inward,Bandettini,Proceedings of the National Academy of Sciences of the United States of America,Expression of conditional fear with and without awareness,Article,Bandettini,NIMH +https://api.elsevier.com/content/abstract/scopus_id/40649102903,Joseph E. Dunsmoor;David C. Knight;Peter A. Bandettini,79,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=40649102903&origin=inward,10.1016/j.neuroimage.2007.11.042,2008-04-01,"('2-s2.0-40649102903', 'Bandettini')",NIMH,811-817,18203622.0,40649102903,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=40649102903&origin=inward,Bandettini,NeuroImage,Neural correlates of unconditioned response diminution during Pavlovian conditioning,Article,Bandettini,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84885024283,Valerie Voon;Yulia Worbe;Edward T. Bullmore;Prantik Kundu;Noah D. Brenowitz;Souheil J. Inati;Ziad S. Saad;Petra E. Vértes;Peter A. Bandettini,130,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84885024283&origin=inward,10.1073/pnas.1301725110,2013-10-01,"('2-s2.0-84885024283', 'Bandettini')",,16187-16192,24038744.0,84885024283,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84885024283&origin=inward,Bandettini,Proceedings of the National Academy of Sciences of the United States of America,Integrated strategy for improving functional connectivity mapping using multiecho fMRI,Article,Bandettini,NIMH +https://api.elsevier.com/content/abstract/scopus_id/68049112343,Douglas A. Ruff;Ziad S. Saad;Peter A. Bandettini;Adam G. Thomas;Alex Martin;Sean Marrett,71,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=68049112343&origin=inward,10.1016/j.neuroimage.2009.05.097,2009-10-15,"('2-s2.0-68049112343', 'Thomas')",NIMH,117-125,19520171.0,68049112343,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=68049112343&origin=inward,Thomas,NeuroImage,Functional but not structural changes associated with learning: An exploration of longitudinal Voxel-Based Morphometry (VBM),Article,Thomas,NIMH +https://api.elsevier.com/content/abstract/scopus_id/33750449651,Natalia Petridou;Afonso C. Silva;Jerzy Bodurka;Peter A. Bandettini;Murray Loew;Dietmar Plenz,73,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33750449651&origin=inward,10.1073/pnas.0603219103,2006-10-24,"('2-s2.0-33750449651', 'Bandettini')",,16015-16020,17038505.0,33750449651,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33750449651&origin=inward,Bandettini,Proceedings of the National Academy of Sciences of the United States of America,Direct magnetic resonance detection of neuronal electrical activity,Article,Bandettini,NIMH +https://api.elsevier.com/content/abstract/scopus_id/26044450303,P. A. Bandettini;N. Petridou;J. Bodurka,69,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=26044450303&origin=inward,10.1007/BF03166956,2005-01-01,"('2-s2.0-26044450303', 'Bandettini')",,65-88,,26044450303,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=26044450303&origin=inward,Bandettini,Applied Magnetic Resonance,"Direct detection of neuronal activity with MRI: Fantasy, possibility, or reality?",Review,Bandettini,NIMH +https://api.elsevier.com/content/abstract/scopus_id/0034873064,P. A. Bandettini;L. G. Ungerleider,66,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0034873064&origin=inward,10.1038/nn0901-864,2001-09-12,"('2-s2.0-0034873064', 'Bandettini')",,864-866,11528412.0,34873064,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0034873064&origin=inward,Bandettini,Nature Neuroscience,From neuron to BOLD: New connections,Short Survey,Bandettini,NIMH +https://api.elsevier.com/content/abstract/scopus_id/34247099877,Gian Domenico Iannetti;Marta Maieron;Jerzy Bodurka;Peter A. Bandettini;Carlo A. Porro;Irene Tracey,67,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34247099877&origin=inward,10.1523/JNEUROSCI.3910-06.2007,2007-04-11,"('2-s2.0-34247099877', 'Bandettini')",,4182-4190,17428996.0,34247099877,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34247099877&origin=inward,Bandettini,Journal of Neuroscience,Functional responses in the human spinal cord during willed motor actions: Evidence for side- and rate-dependent activity,Article,Bandettini,NIMH +https://api.elsevier.com/content/abstract/scopus_id/60149087776,David C. Knight;Peter A. Bandettini;Najah S. Waters,78,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=60149087776&origin=inward,10.1016/j.neuroimage.2008.11.015,2009-03-01,"('2-s2.0-60149087776', 'Bandettini')",NIMH,208-214,19100329.0,60149087776,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=60149087776&origin=inward,Bandettini,NeuroImage,Neural substrates of explicit and implicit fear memory,Article,Bandettini,NIMH +https://api.elsevier.com/content/abstract/scopus_id/0038100597,Edgar A. DeYoe;Ziad S. Saad;Kristina M. Ropella;Peter A. Bandettini,60,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0038100597&origin=inward,10.1016/S1053-8119(03)00016-8,2003-05-01,"('2-s2.0-0038100597', 'Bandettini')",NIH,132-144,12781733.0,38100597,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0038100597&origin=inward,Bandettini,NeuroImage,The spatial extent of the BOLD response,Article,Bandettini,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84862978455,Javier Gonzalez-Castillo;Daniel A. Handwerker;Mark D'Esposito;Peter A. Bandettini,77,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84862978455&origin=inward,10.1016/j.neuroimage.2012.02.015,2012-08-15,"('2-s2.0-84862978455', 'Bandettini')",NIMH,1017-1023,22366081.0,84862978455,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84862978455&origin=inward,Bandettini,NeuroImage,The continuing challenge of understanding and modeling hemodynamic variation in fMRI,Review,Bandettini,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84890516699,Catie Chang;Ting Xu;Lili Jiang;Xi Nian Zuo;Zhi Yang;F. Xavier Castellanos;Daniel A. Handwerker;Peter A. Bandettini;Michael P. Milham,86,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84890516699&origin=inward,10.1016/j.neuroimage.2013.10.039,2014-04-01,"('2-s2.0-84890516699', 'Bandettini')",NIH,45-56,24287438.0,84890516699,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84890516699&origin=inward,Bandettini,NeuroImage,Connectivity trajectory across lifespan differentiates the precuneus from the default network,Article,Bandettini,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84937242922,Meghan E. Robinson;Laura C. Buchanan;Colin W. Hoy;Javier Gonzalez-Castillo;Daniel A. Handwerker;Ziad S. Saad;Peter A. Bandettini,125,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84937242922&origin=inward,10.1073/pnas.1501242112,2015-07-14,"('2-s2.0-84937242922', 'Bandettini')",NIH,8762-8767,26124112.0,84937242922,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84937242922&origin=inward,Bandettini,Proceedings of the National Academy of Sciences of the United States of America,"Tracking ongoing cognition in individuals using brief, whole-brain functional connectivity patterns",Article,Bandettini,NIMH +https://api.elsevier.com/content/abstract/scopus_id/33748451366,David C. Knight;Hanh T. Nguyen;Peter A. Bandettini,57,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33748451366&origin=inward,10.3758/CABN.6.2.157,2006-06-01,"('2-s2.0-33748451366', 'Bandettini')",,157-162,17007236.0,33748451366,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33748451366&origin=inward,Bandettini,"Cognitive, Affective and Behavioral Neuroscience",The role of awareness in delay and trace fear conditioning in humans,Article,Bandettini,NIMH +https://api.elsevier.com/content/abstract/scopus_id/78650931643,V. Roopchansingh;J. Gonzalez-Castillo;P. A. Bandettini;J. Bodurka,62,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=78650931643&origin=inward,10.1016/j.neuroimage.2010.11.020,2011-02-14,"('2-s2.0-78650931643', 'Bandettini')",,2764-2778,21073963.0,78650931643,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=78650931643&origin=inward,Bandettini,NeuroImage,Physiological noise effects on the flip angle selection in BOLD fMRI,Article,Bandettini,NIMH +https://api.elsevier.com/content/abstract/scopus_id/77955934165,Nikolaus Kriegeskorte;Douglas A. Ruff;Marieke Mur;Jerzy Bodurka;Peter A. Bandettini,52,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77955934165&origin=inward,10.1093/cercor/bhp272,2010-09-01,"('2-s2.0-77955934165', 'Bandettini')",NIH,2027-2042,20051364.0,77955934165,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77955934165&origin=inward,Bandettini,Cerebral Cortex,"Face-identity change activation outside the face system: ""Release from adaptation"" may not always indicate neuronal selectivity",Article,Bandettini,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84905043991,Meghan E. Robinson;Laura C. Buchanan;Colin Weir Hoy;Javier Gonzalez-Castillo;Daniel A. Handwerker;Ziad S. Saad;Peter A. Bandettini,70,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84905043991&origin=inward,10.3389/fnins.2014.00138,2014-01-01,"('2-s2.0-84905043991', 'Bandettini')",,,,84905043991,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84905043991&origin=inward,Bandettini,Frontiers in Neuroscience,The spatial structure of resting state connectivity stability on the scale of minutes,Article,Bandettini,NIMH +https://api.elsevier.com/content/abstract/scopus_id/47949117197,Rasmus M. Birn;Peter A. Bandettini;Tyler B. Jones,53,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=47949117197&origin=inward,10.1016/j.neuroimage.2008.05.019,2008-08-15,"('2-s2.0-47949117197', 'Bandettini')",,582-590,18583155.0,47949117197,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=47949117197&origin=inward,Bandettini,NeuroImage,Integration of motion correction and physiological noise regression in fMRI,Article,Bandettini,NIMH +https://api.elsevier.com/content/abstract/scopus_id/22044456021,Rasmus M. Birn;Peter A. Bandettini,46,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=22044456021&origin=inward,10.1016/j.neuroimage.2005.03.040,2005-08-01,"('2-s2.0-22044456021', 'Bandettini')",NIMH,70-82,15914032.0,22044456021,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=22044456021&origin=inward,Bandettini,NeuroImage,"The effect of stimulus duty cycle and ""off"" duration on BOLD response linearity",Article,Bandettini,NIMH +https://api.elsevier.com/content/abstract/scopus_id/14744290317,F. Q. Ye;Keith S. St. Lawrence;J. A. Frank;P. A. Bandettini,42,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=14744290317&origin=inward,10.1002/mrm.20396,2005-03-01,"('2-s2.0-14744290317', 'Bandettini')",,735-738,15723412.0,14744290317,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=14744290317&origin=inward,Bandettini,Magnetic Resonance in Medicine,Noise reduction in multi-slice arterial spin tagging imaging,Article,Bandettini,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84862858651,Nikolaus Kriegeskorte;Peter De Weerd;Douglas A. Ruff;Marieke Mur;Jerzy Bodurka;Peter A. Bandettini,45,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84862858651&origin=inward,10.1523/JNEUROSCI.2334-11.2012,2012-06-20,"('2-s2.0-84862858651', 'Bandettini')",,8649-8662,22723705.0,84862858651,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84862858651&origin=inward,Bandettini,Journal of Neuroscience,"Categorical, yet graded-single-image activation profiles of human category-selective cortical regions",Article,Bandettini,NIMH +https://api.elsevier.com/content/abstract/scopus_id/70349972745,Margaret K. King;David C. Knight;Peter A. Bandettini;Najah S. Waters,41,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=70349972745&origin=inward,10.1016/j.neuroimage.2009.07.012,2010-01-01,"('2-s2.0-70349972745', 'Bandettini')",NIMH,843-848,19616105.0,70349972745,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=70349972745&origin=inward,Bandettini,NeuroImage,Learning-related diminution of unconditioned SCR and fMRI signal responses,Article,Bandettini,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84878784896,Rainer Goebel;Nikolaus Kriegeskorte;Marieke Mur;Jerzy Bodurka;Peter A. Bandettini;Mirjam Meys,56,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84878784896&origin=inward,10.3389/fpsyg.2013.00128,2013-01-01,"('2-s2.0-84878784896', 'Bandettini')",MRC,,,84878784896,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84878784896&origin=inward,Bandettini,Frontiers in Psychology,Human object-similarity judgments reflect and transcend the primate-IT object representation,Article,Bandettini,NIMH +https://api.elsevier.com/content/abstract/scopus_id/35448983424,Nikolaus Kriegeskorte;Peter Bandettini,35,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=35448983424&origin=inward,10.1016/j.neuroimage.2007.06.030,2007-12-01,"('2-s2.0-35448983424', 'Bandettini')",,666-668,17976583.0,35448983424,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=35448983424&origin=inward,Bandettini,NeuroImage,Combining the tools: Activation- and information-based fMRI analysis,Note,Bandettini,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84955575520,Mark Jenkinson;Sean Foxley;Shannon H. Kolind;Helen Dawes;Nancy B. Rawlings;Charlotte J. Stagg;Peter A. Bandettini;Adam G. Thomas;Lucy Matthews;Thomas E. Nichols;Heidi Johansen-Berg;Andrea Dennis;Martyn Morris,48,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84955575520&origin=inward,10.1016/j.neuroimage.2015.10.090,2016-05-01,"('2-s2.0-84955575520', 'Thomas')",NHRI,162-170,26654786.0,84955575520,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84955575520&origin=inward,Thomas,NeuroImage,Multi-modal characterization of rapid anterior hippocampal volume increase associated with aerobic exercise,Article,Thomas,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84857946258,Gregory L. Wallace;Masaya Misaki;Peter A. Bandettini;Alex Martin;Nathan Dankner,26,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84857946258&origin=inward,10.1016/j.neuroimage.2012.01.120,2012-04-15,"('2-s2.0-84857946258', 'Martin')",NIH,1890-1901,22326986.0,84857946258,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84857946258&origin=inward,Martin,NeuroImage,Characteristic cortical thickness patterns in adolescents with autism spectrum disorders: Interactions with age and intellectual ability revealed by canonical correlation analysis,Article,Martin,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84903954873,Ting Xu;Xi Nian Zuo;Georg Northoff;Zhi Yang;Colin W. Hoy;Yong Xu;Gang Chen;Daniel A. Handwerker;Peter A. Bandettini,32,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84903954873&origin=inward,10.1038/srep05549,2014-07-03,"('2-s2.0-84903954873', 'Bandettini')",NIMH,,24989351.0,84903954873,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84903954873&origin=inward,Bandettini,Scientific Reports,Brain network informed subject community detection in early-onset schizophrenia,Article,Bandettini,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84910022208,Prantik Kundu;Jennifer W. Evans;Silvina G. Horovitz;Peter A. Bandettini,31,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84910022208&origin=inward,10.1016/j.neuroimage.2014.10.051,2015-01-05,"('2-s2.0-84910022208', 'Bandettini')",,189-197,25449746.0,84910022208,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84910022208&origin=inward,Bandettini,NeuroImage,Separating slow BOLD from non-BOLD baseline drifts using multi-echo fMRI,Article,Bandettini,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84872973394,Wen Ming Luh;S. Lalith Talagala;Tie Qiang Li;Peter A. Bandettini,28,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84872973394&origin=inward,10.1002/mrm.24266,2013-02-01,"('2-s2.0-84872973394', 'Talagala')",,402-410,22488568.0,84872973394,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84872973394&origin=inward,Talagala,Magnetic Resonance in Medicine,Pseudo-continuous arterial spin labeling at 7 T for human brain: Estimation and correction for off-resonance effects using a Prescan,Article,Talagala,NINDS +https://api.elsevier.com/content/abstract/scopus_id/76449106575,Peter A. Bandettini,20,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=76449106575&origin=inward,10.1142/S0219635209002186,2009-09-01,"('2-s2.0-76449106575', 'Bandettini')",,371-403,19938211.0,76449106575,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=76449106575&origin=inward,Bandettini,Journal of Integrative Neuroscience,Seven topics in functional magnetic resonance imaging,Review,Bandettini,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84965097479,R. Cameron Craddock;Xi Nian Zuo;Zhi Yang;Katie L. McMahon;Greig I. De Zubicaray;F. Xavier Castellanos;Ian Hickie;Peter A. Bandettini;Clare Kelly;Michael P. Milham;Margaret J. Wright,41,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84965097479&origin=inward,10.1093/cercor/bhw027,2016-05-01,"('2-s2.0-84965097479', 'Bandettini')",NIH,2341-2352,26891986.0,84965097479,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84965097479&origin=inward,Bandettini,Cerebral Cortex,Genetic and Environmental Contributions to Functional Connectivity Architecture of the Human Brain,Article,Bandettini,NIMH +https://api.elsevier.com/content/abstract/scopus_id/85027128247,Javier Gonzalez-Castillo;Peter A. Bandettini,50,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85027128247&origin=inward,10.1016/j.neuroimage.2017.08.006,2018-10-15,"('2-s2.0-85027128247', 'Bandettini')",NIH,526-533,28780401.0,85027128247,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85027128247&origin=inward,Bandettini,NeuroImage,Task-based dynamic functional connectivity: Recent findings and open questions,Review,Bandettini,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84903538597,Georg Northoff;Zhi Yang;Peter Bandettini;Javier Gonzalez-Castillo;Rui Dai;Zirui Huang,14,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84903538597&origin=inward,10.1016/j.neuroimage.2014.05.034,2014-10-01,"('2-s2.0-84903538597', 'Bandettini')",NIMH,80-92,24844742.0,84903538597,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84903538597&origin=inward,Bandettini,NeuroImage,Using fMRI to decode true thoughts independent of intention to conceal,Article,Bandettini,NIMH +https://api.elsevier.com/content/abstract/scopus_id/57549102118,Nikolaus Kriegeskorte;Jerzy Bodurka;Peter Bandettini,11,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=57549102118&origin=inward,10.1002/ima.20166,2008-12-17,"('2-s2.0-57549102118', 'Bandettini')",,345-349,,57549102118,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=57549102118&origin=inward,Bandettini,International Journal of Imaging Systems and Technology,Artifactual time-course correlations in echo-planar fMRI with implications for studies of brain function,Article,Bandettini,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84871027595,Carlton Chu;Javier Gonzalez-Castillo;Ziad S. Saad;Peter A. Bandettini;Wen Ming Luh;Kristen N. Duthie,11,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84871027595&origin=inward,10.1016/j.neuroimage.2012.10.076,2013-02-15,"('2-s2.0-84871027595', 'Bandettini')",NIMH,163-174,23128074.0,84871027595,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84871027595&origin=inward,Bandettini,NeuroImage,Effects of image contrast on functional MRI image registration,Article,Bandettini,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84930180212,Ronald M. Harper;Daniel A. Handwerker;Peter A. Bandettini;Paula Wu,11,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84930180212&origin=inward,10.1038/jcbfm.2015.20,2015-01-01,"('2-s2.0-84930180212', 'Bandettini')",,1024-1032,25712496.0,84930180212,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84930180212&origin=inward,Bandettini,Journal of Cerebral Blood Flow and Metabolism,Effects of thoracic pressure changes on MRI signals in the brain,Article,Bandettini,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84959440808,Robert W. Cox;Vinai Roopchansingh;Colin W. Hoy;Javier Gonzalez-Castillo;Daniel A. Handwerker;Souheil J. Inati;Ziad S. Saad;Peter A. Bandettini,9,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84959440808&origin=inward,10.1093/cercor/bhu148,2015-01-01,"('2-s2.0-84959440808', 'Bandettini')",,4667-4677,25405938.0,84959440808,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84959440808&origin=inward,Bandettini,Cerebral Cortex,"Task dependence, tissue specificity, and spatial distribution of widespread activations in large single-subject functional MRI datasets at 7T",Article,Bandettini,NIMH +https://api.elsevier.com/content/abstract/scopus_id/85007356582,Maria Guidi;Kâmil Uludağ;Benedikt A. Poser;Daniel A. Handwerker;Peter A. Bandettini;Laurentius Huber;Sean Marrett;Dimo Ivanov,30,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85007356582&origin=inward,10.1016/j.neuroimage.2016.11.039,2018-01-01,"('2-s2.0-85007356582', 'Bandettini')",EC,131-143,27867088.0,85007356582,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85007356582&origin=inward,Bandettini,NeuroImage,Techniques for blood volume fMRI with VASO: From low-resolution mapping towards sub-millimeter layer-dependent applications,Article,Bandettini,NIMH +https://api.elsevier.com/content/abstract/scopus_id/80051970198,John Ashburner;Daniel A. Handwerker;Peter A. Bandettini;Carlton Chu,6,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=80051970198&origin=inward,10.1109/PRNI.2011.11,2011-08-29,"('2-s2.0-80051970198', 'Bandettini')",,41-44,,80051970198,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=80051970198&origin=inward,Bandettini,"Proceedings - International Workshop on Pattern Recognition in NeuroImaging, PRNI 2011",Measuring the consistency of global functional connectivity using kernel regression methods,Conference Paper,Bandettini,NIMH +https://api.elsevier.com/content/abstract/scopus_id/46949096201,August S. Tuan;Geoffrey M. Boynton;Rasmus M. Birn;Peter A. Bandettini,6,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=46949096201&origin=inward,10.1002/ima.20144,2008-07-16,"('2-s2.0-46949096201', 'Bandettini')",,17-28,,46949096201,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=46949096201&origin=inward,Bandettini,International Journal of Imaging Systems and Technology,Differential transient MEG and fMRI responses to visual stimulation onset rate,Article,Bandettini,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84981186502,John A. Derbyshire;Cesar Caballero-Gaudes;David C. Jangraw;Laura C. Buchanan;Vinai Roopchansingh;Puja Panwar;Javier Gonzalez-Castillo;Daniel A. Handwerker;Peter A. Bandettini;Souheil Inati;Valentinos Zachariou,14,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84981186502&origin=inward,10.1016/j.neuroimage.2016.07.049,2016-11-01,"('2-s2.0-84981186502', 'Bandettini')",NIMH,452-468,27475290.0,84981186502,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84981186502&origin=inward,Bandettini,NeuroImage,"Evaluation of multi-echo ICA denoising for task based fMRI studies: Block designs, rapid event-related designs, and cardiac-gated fMRI",Article,Bandettini,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84872258736,Wen Ming Luh;Peter A. Bandettini;Masaya Misaki,4,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84872258736&origin=inward,10.1016/j.neuroimage.2012.10.069,2013-02-01,"('2-s2.0-84872258736', 'Bandettini')",NIMH,623-633,23128073.0,84872258736,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84872258736&origin=inward,Bandettini,NeuroImage,Accurate decoding of sub-TR timing differences in stimulations of sub-voxel regions from multi-voxel response patterns,Article,Bandettini,NIMH +https://api.elsevier.com/content/abstract/scopus_id/85007106979,Javier Gonzalez-Castillo;Peter A. Bandettini;Gang Chen;Thomas E. Nichols,7,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85007106979&origin=inward,10.1016/j.neuroimage.2016.10.024,2017-07-01,"('2-s2.0-85007106979', 'Bandettini')",,206-218,27773827.0,85007106979,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85007106979&origin=inward,Bandettini,NeuroImage,Variance decomposition for single-subject task-based fMRI activity estimates across many sessions,Article,Bandettini,NIMH +https://api.elsevier.com/content/abstract/scopus_id/85031756535,Cesar Caballero-Gaudes;Vince Calhoun;Peter Bandettini;Gustavo Deco;Shella Keilholz,30,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85031756535&origin=inward,10.1089/brain.2017.0543,2017-10-01,"('2-s2.0-85031756535', 'Bandettini')",,465-481,28874061.0,85031756535,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85031756535&origin=inward,Bandettini,Brain Connectivity,"Time-Resolved Resting-State Functional Magnetic Resonance Imaging Analysis: Current Status, Challenges, and New Directions",Review,Bandettini,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84899413629,Xuchu Weng;Peter A. Bandettini;Paula Wu;Zhi Yang,4,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84899413629&origin=inward,10.1142/S0219635214500010,2014-01-01,"('2-s2.0-84899413629', 'Bandettini')",NIH,1-17,24738536.0,84899413629,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84899413629&origin=inward,Bandettini,Journal of Integrative Neuroscience,Cerebellum engages in automation of verb-generation skill,Article,Bandettini,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84878327205,Masaya Misaki;Prantik Kundu;Paul Guillod;Javier Gonzalez-Castillo;Peter A. Bandettini,0,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84878327205&origin=inward,10.1117/12.2012737,2013-06-03,"('2-s2.0-84878327205', 'Bandettini')",,,,84878327205,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84878327205&origin=inward,Bandettini,Progress in Biomedical Optics and Imaging - Proceedings of SPIE,"Characterizing and utilizing fMRI fluctuations, patterns, and dynamics",Conference Paper,Bandettini,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84960849135,Joelle E. Sarlls;Evren Özarslan;Peter J. Basser;Alexandru V. Avram;M. Okan Irfanoglu;Elizabeth Hutchinson;Carlo Pierpaoli;Alan S. Barnett;Cibu Thomas,30,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84960849135&origin=inward,10.1016/j.neuroimage.2015.11.027,2016-02-15,"('2-s2.0-84960849135', 'Pierpaoli')",NIH,422-434,26584864.0,84960849135,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84960849135&origin=inward,Pierpaoli,NeuroImage,Clinical feasibility of using mean apparent propagator (MAP) MRI to characterize brain tissue microstructure,Article,Pierpaoli,NIBIB +https://api.elsevier.com/content/abstract/scopus_id/84973530104,Uri Nevo;Peter J. Basser;Dan Benjamini;Michal E. Komlosh;Lynne A. Holtzclaw,35,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84973530104&origin=inward,10.1016/j.neuroimage.2016.04.052,2016-07-15,"('2-s2.0-84973530104', 'Basser')",NICHD,333-344,27126002.0,84973530104,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84973530104&origin=inward,Basser,NeuroImage,White matter microstructure from nonparametric axon diameter distribution mapping,Article,Basser,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84949256230,Terrence R. Oakes;Cheng Guan Koay;Peter J. Basser;Gerard Riedy;M. Okan Irfanoğlu;Carlo Pierpaoli;John M. Ollinger;Ping Hong Yeh,1,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84949256230&origin=inward,10.1016/j.neuroimage.2015.11.046,2016-02-01,"('2-s2.0-84949256230', 'Pierpaoli')",NICHD,151-163,26638985.0,84949256230,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84949256230&origin=inward,Pierpaoli,NeuroImage,Tract Orientation and Angular Dispersion Deviation Indicator (TOADDI): A framework for single-subject analysis in diffusion tensor imaging,Article,Pierpaoli,NIBIB +https://api.elsevier.com/content/abstract/scopus_id/0036869232,Peter J. Basser;Derek K. Jones,1026,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0036869232&origin=inward,10.1002/nbm.783,2002-11-01,"('2-s2.0-0036869232', 'Basser')",,456-467,12489095.0,36869232,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0036869232&origin=inward,Basser,NMR in Biomedicine,"Diffusion-tensor MRI: Theory, experimental design and data analysis - A technical review",Review,Basser,NINDS +https://api.elsevier.com/content/abstract/scopus_id/0034973970,Alan Barnett;Robert Chen;Anette Virta;La Roy Penix;Sinisa Pajevic;Peter Basser;Carlo Pierpaoli,739,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0034973970&origin=inward,10.1006/nimg.2001.0765,2001-01-01,"('2-s2.0-0034973970', 'Pierpaoli')",NICHD,1174-1185,11352623.0,34973970,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0034973970&origin=inward,Pierpaoli,NeuroImage,Water diffusion changes in wallerian degeneration and their dependence on white matter architecture,Article,Pierpaoli,NIBIB +https://api.elsevier.com/content/abstract/scopus_id/18244400115,Lin Ching Chang;Derek K. Jones;Carlo Pierpaoli,408,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=18244400115&origin=inward,10.1002/mrm.20426,2005-05-01,"('2-s2.0-18244400115', 'Pierpaoli')",,1088-1095,15844157.0,18244400115,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=18244400115&origin=inward,Pierpaoli,Magnetic Resonance in Medicine,RESTORE: Robust estimation of tensors by outlier rejection,Article,Pierpaoli,NIBIB +https://api.elsevier.com/content/abstract/scopus_id/0345742636,A. S. Barnett;P. J. Basser;Gustavo Kunde Rohde;C. Pierpaoli;S. Marenco,361,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0345742636&origin=inward,10.1002/mrm.10677,2004-01-01,"('2-s2.0-0345742636', 'Basser')",,103-114,14705050.0,345742636,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0345742636&origin=inward,Basser,Magnetic Resonance in Medicine,Comprehensive Approach for Correction of Motion and Distortion in Diffusion-Weighted MRI,Article,Basser,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84915758306,Frank Q. Ye;M. Okan Irfanoglu;David A. Leopold;Kadharbatcha S. Saleem;Pooja Modi;Carlo Pierpaoli;Cibu Thomas,335,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84915758306&origin=inward,10.1073/pnas.1405672111,2014-11-18,"('2-s2.0-84915758306', 'Pierpaoli')",,16574-16579,25368179.0,84915758306,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84915758306&origin=inward,Pierpaoli,Proceedings of the National Academy of Sciences of the United States of America,Anatomical accuracy of brain connections derived from diffusion MRI tractography is inherently limited,Article,Pierpaoli,NIBIB +https://api.elsevier.com/content/abstract/scopus_id/0041702764,Sinisa Pajevic;Peter J. Basser,124,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0041702764&origin=inward,10.1016/S1090-7807(02)00178-7,2003-03-01,"('2-s2.0-0041702764', 'Basser')",,1-14,12660106.0,41702764,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0041702764&origin=inward,Basser,Journal of Magnetic Resonance,Parametric and non-parametric statistical analysis of DT-MRI data,Article,Basser,NINDS +https://api.elsevier.com/content/abstract/scopus_id/18244362334,Derek K. Jones;Carlo Pierpaoli,114,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=18244362334&origin=inward,10.1002/mrm.20466,2005-05-01,"('2-s2.0-18244362334', 'Pierpaoli')",,1143-1149,15844149.0,18244362334,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=18244362334&origin=inward,Pierpaoli,Magnetic Resonance in Medicine,Confidence mapping in diffusion tensor magnetic resonance imaging tractography using a bootstrap approach,Article,Pierpaoli,NIBIB +https://api.elsevier.com/content/abstract/scopus_id/84877006595,Cheng Guan Koay;Timothy M. Shepherd;Evren Özarslan;M. Okan Irfanoǧlu;Peter J. Basser;Carlo Pierpaoli;Michal E. Komlosh,153,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84877006595&origin=inward,10.1016/j.neuroimage.2013.04.016,2013-09-01,"('2-s2.0-84877006595', 'Pierpaoli')",NICHD,16-32,23587694.0,84877006595,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84877006595&origin=inward,Pierpaoli,NeuroImage,Mean apparent propagator (MAP) MRI: A novel diffusion imaging method for mapping tissue microstructure,Article,Pierpaoli,NIBIB +https://api.elsevier.com/content/abstract/scopus_id/84859091395,Lindsay Walker;Stefano Marenco;M. Okan Irfanoglu;Joelle Sarlls;Carlo Pierpaoli,117,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84859091395&origin=inward,10.1016/j.neuroimage.2012.02.054,2012-05-15,"('2-s2.0-84859091395', 'Pierpaoli')",NICHD,275-288,22401760.0,84859091395,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84859091395&origin=inward,Pierpaoli,NeuroImage,Effects of image distortions originating from susceptibility variations and concomitant fields on diffusion MRI tractography results,Article,Pierpaoli,NIBIB +https://api.elsevier.com/content/abstract/scopus_id/84865661488,Lin Ching Chang;Carlo Pierpaoli;Lindsay Walker,71,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84865661488&origin=inward,10.1002/mrm.24173,2012-11-01,"('2-s2.0-84865661488', 'Pierpaoli')",,1654-1663,22287298.0,84865661488,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84865661488&origin=inward,Pierpaoli,Magnetic Resonance in Medicine,Informed RESTORE: A method for robust estimation of diffusion tensor from low redundancy datasets in the presence of physiological noise artifacts,Article,Pierpaoli,NIBIB +https://api.elsevier.com/content/abstract/scopus_id/41849083445,M. J. Lizak;F. Horkay;P. J. Basser;Michal E. Komlosh;R. Z. Freidlin,54,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=41849083445&origin=inward,10.1002/mrm.21528,2008-04-01,"('2-s2.0-41849083445', 'Basser')",,803-809,18383293.0,41849083445,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=41849083445&origin=inward,Basser,Magnetic Resonance in Medicine,Observation of microscopic diffusion anisotropy in the spinal cord using double-pulsed gradient spin echo MRI,Article,Basser,NINDS +https://api.elsevier.com/content/abstract/scopus_id/33750978683,Peter J. Basser;Sinisa Pajevic,56,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33750978683&origin=inward,10.1016/j.sigpro.2006.02.050,2007-02-01,"('2-s2.0-33750978683', 'Basser')",NICHD,220-236,,33750978683,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33750978683&origin=inward,Basser,Signal Processing,Spectral decomposition of a 4th-order covariance tensor: Applications to diffusion tensor MRI,Article,Basser,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84869093751,Babak Behseta;Marta Gozzi;Carlo Pierpaoli;Lindsay Walker;Rhoshel Lenroot;Audrey Thurm;Susan Swedo,63,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84869093751&origin=inward,10.1016/j.biopsych.2012.08.001,2012-12-15,"('2-s2.0-84869093751', 'Thurm')",CNRM,1043-1051,22906515.0,84869093751,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84869093751&origin=inward,Thurm,Biological Psychiatry,Diffusion tensor imaging in young children with autism: Biological effects and potential confounds,Article,Thurm,NIMH +https://api.elsevier.com/content/abstract/scopus_id/28444469213,Gloria Chi-Fishman;Alan S. Barnett;Carlo Pierpaoli;Sungheon Kim,59,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=28444469213&origin=inward,10.1002/mrm.20676,2005-12-01,"('2-s2.0-28444469213', 'Pierpaoli')",,1387-1396,16265644.0,28444469213,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=28444469213&origin=inward,Pierpaoli,Magnetic Resonance in Medicine,Dependence on diffusion time of apparent diffusion tensor of ex vivo calf tongue and heart,Article,Pierpaoli,NIBIB +https://api.elsevier.com/content/abstract/scopus_id/78649646790,Nik Sharma;Cheng Guan Koay;Lindsay Walker;Lin Ching Chang;Ragini Verma;Carlo Pierpaoli;Leonardo Cohen,47,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=78649646790&origin=inward,10.1016/j.neuroimage.2010.08.048,2011-01-15,"('2-s2.0-78649646790', 'Cohen')",NICHD,1168-1177,20804850.0,78649646790,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=78649646790&origin=inward,Cohen,NeuroImage,Effects of physiological noise in population analysis of diffusion tensor MRI data,Article,Cohen,NINDS +https://api.elsevier.com/content/abstract/scopus_id/20444494054,Gustavo K. Rohde;Alan S. Barnett;Peter J. Basser;Carlo Pierpaoli,40,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=20444494054&origin=inward,10.1016/j.neuroimage.2005.02.023,2005-07-01,"('2-s2.0-20444494054', 'Basser')",,673-684,15955477.0,20444494054,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=20444494054&origin=inward,Basser,NeuroImage,Estimating intensity variance due to noise in registered images: Applications to diffusion tensor MRI,Article,Basser,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84920153111,M. Okan Irfanoglu;Joelle Sarlls;Elizabeth B. Hutchinson;Pooja Modi;Carlo Pierpaoli;Amritha Nayak,67,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84920153111&origin=inward,10.1016/j.neuroimage.2014.11.042,2015-02-01,"('2-s2.0-84920153111', 'Pierpaoli')",NINDS,284-299,25433212.0,84920153111,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84920153111&origin=inward,Pierpaoli,NeuroImage,DR-BUDDI (Diffeomorphic Registration for Blip-Up blip-Down Diffusion Imaging) method for correcting echo planar imaging distortions,Article,Pierpaoli,NIBIB +https://api.elsevier.com/content/abstract/scopus_id/84867460313,Peter J. Basser;Alexandru V. Avram;Evren Özarslan;Joelle E. Sarlls,46,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84867460313&origin=inward,10.1016/j.neuroimage.2012.08.048,2013-01-01,"('2-s2.0-84867460313', 'Basser')",NINDS,229-239,22939872.0,84867460313,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84867460313&origin=inward,Basser,NeuroImage,In vivo detection of microscopic anisotropy using quadruple pulsed-field gradient (qPFG) diffusion MRI on a clinical scanner,Article,Basser,NINDS +https://api.elsevier.com/content/abstract/scopus_id/35648946356,Evren Özarslan;Cheng Guan Koay;Peter J. Basser;Raisa Z. Freidlin;Lin Ching Chang;Michal E. Komlosh;Derek K. Jones,19,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=35648946356&origin=inward,10.1109/TMI.2007.907294,2007-11-01,"('2-s2.0-35648946356', 'Basser')",CIT,1576-1584,18041272.0,35648946356,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=35648946356&origin=inward,Basser,IEEE Transactions on Medical Imaging,Parsimonious model selection for tissue segmentation and classification applications: A study using simulated and experimental DTI data,Article,Basser,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84883753710,Nicholas Lange;Michael Curry;Lindsay Walker;Carlo Pierpaoli;Amritha Nayak,26,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84883753710&origin=inward,10.1002/hbm.22081,2013-10-01,"('2-s2.0-84883753710', 'Pierpaoli')",NICHD,2439-2454,22461391.0,84883753710,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84883753710&origin=inward,Pierpaoli,Human Brain Mapping,A framework for the analysis of phantom data in multicenter diffusion tensor imaging studies,Article,Pierpaoli,NIBIB +https://api.elsevier.com/content/abstract/scopus_id/49049110253,Joelle E. Sarlls;Carlo Pierpaoli,14,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=49049110253&origin=inward,10.1002/mrm.21639,2008-08-01,"('2-s2.0-49049110253', 'Pierpaoli')",,270-276,18666119.0,49049110253,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=49049110253&origin=inward,Pierpaoli,Magnetic Resonance in Medicine,Diffusion-weighted radial fast spin-echo for high-resolution diffusion tensor imaging at 3T,Article,Pierpaoli,NIBIB +https://api.elsevier.com/content/abstract/scopus_id/67651017508,Joelle E. Sarlls;Carlo Pierpaoli,14,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=67651017508&origin=inward,10.1016/j.neuroimage.2009.05.098,2009-10-01,"('2-s2.0-67651017508', 'Pierpaoli')",NIMH,1244-1251,19520170.0,67651017508,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=67651017508&origin=inward,Pierpaoli,NeuroImage,In vivo diffusion tensor imaging of the human optic chiasm at sub-millimeter resolution,Article,Pierpaoli,NIBIB +https://api.elsevier.com/content/abstract/scopus_id/84903650018,Joelle E. Sarlls;Lindsay Walker;Joanna H. Shih;Carlo Pierpaoli;Katherine E. Warren;Robyn S. Bent;Emilie A. Steffen-Smith,10,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84903650018&origin=inward,10.1155/2014/647356,2014-01-01,"('2-s2.0-84903650018', 'Pierpaoli')",,,25006580.0,84903650018,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84903650018&origin=inward,Pierpaoli,BioMed Research International,Diffusion tensor histogram analysis of pediatric diffuse intrinsic pontine glioma,Article,Pierpaoli,NIBIB +https://api.elsevier.com/content/abstract/scopus_id/84906978503,M. Okan Irfanoglu;Joelle Sarlls;Andrew Knutsen;Pooja Modi;Carlo Pierpaoli;Amritha Nayak,5,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84906978503&origin=inward,10.1007/978-3-319-10404-1_28,2014-01-01,"('2-s2.0-84906978503', 'Pierpaoli')",,218-226,25333121.0,84906978503,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84906978503&origin=inward,Pierpaoli,Lecture Notes in Computer Science (including subseries Lecture Notes in Artificial Intelligence and Lecture Notes in Bioinformatics),DR-BUDDI: Diffeomorphic registration for blip up-down diffusion imaging,Conference Paper,Pierpaoli,NIBIB +https://api.elsevier.com/content/abstract/scopus_id/36248937190,Peter J. Basser;Michal E. Komlosh;Raisa Z. Freidlin;Murray H. Loew,0,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=36248937190&origin=inward,10.1117/12.708312,2007-11-23,"('2-s2.0-36248937190', 'Basser')",,,,36248937190,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=36248937190&origin=inward,Basser,Progress in Biomedical Optics and Imaging - Proceedings of SPIE,Parsimonious model selection for tissue classification: A DTI study of zebrafish,Conference Paper,Basser,NINDS +https://api.elsevier.com/content/abstract/scopus_id/0035154055,M. F. Egan;J. L. Holt;D. R. Weinberger;A. Meyer-Lindenberg;P. D. Kohn;K. F. Berman;J. B. Polin,404,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0035154055&origin=inward,10.1176/appi.ajp.158.11.1809,2001-11-24,"('2-s2.0-0035154055', 'Berman')",,1809-1817,11691686.0,35154055,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0035154055&origin=inward,Berman,American Journal of Psychiatry,Evidence for abnormal cortical functional connectivity during working memory in schizophrenia,Article,Berman,NIMH +https://api.elsevier.com/content/abstract/scopus_id/16344390356,Timothy Brown;Michael F. Egan;Philip D. Kohn;Rosanna K. Olsen;Andreas S. Meyer-Lindenberg;Karen Faith Berman;Daniel R. Weinberger,418,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=16344390356&origin=inward,10.1001/archpsyc.62.4.379,2005-04-01,"('2-s2.0-16344390356', 'Berman')",,379-386,15809405.0,16344390356,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=16344390356&origin=inward,Berman,Archives of General Psychiatry,Regionally specific disturbance of dorsolateral prefrontal-hippocampal functional connectivity in schizophrenia,Article,Berman,NIMH +https://api.elsevier.com/content/abstract/scopus_id/33847771238,David Rubinow;Daniella Furman;Peter J. Schmidt;Philip Kohn;Jean Claude Dreher;Karen Faith Berman,323,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33847771238&origin=inward,10.1073/pnas.0605569104,2007-02-13,"('2-s2.0-33847771238', 'Schmidt')",,2465-2470,17267613.0,33847771238,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33847771238&origin=inward,Schmidt,Proceedings of the National Academy of Sciences of the United States of America,Menstrual cycle phase modulates reward-related neural function in women,Article,Schmidt,NIMH +https://api.elsevier.com/content/abstract/scopus_id/33745698871,Andreas Meyer-Lindenberg;Karen Faith Berman;Carolyn B. Mervis,299,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33745698871&origin=inward,10.1038/nrn1906,2006-05-01,"('2-s2.0-33745698871', 'Faith Berman')",NICHD,380-393,16760918.0,33745698871,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33745698871&origin=inward,Berman,Nature Reviews Neuroscience,Neural mechanisms in Williams syndrome: A unique window to genetic influences on cognition and behaviour,Review,Berman,NIMH +https://api.elsevier.com/content/abstract/scopus_id/23044456645,Carolyn B. Mervis;Ahmad R. Hariri;Karen E. Munoz;Andreas Meyer-Lindenberg;Colleen A. Morris;Karen Faith Berman;Venkata S. Mattay,274,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=23044456645&origin=inward,10.1038/nn1494,2005-08-01,"('2-s2.0-23044456645', 'Berman')",NINDS,991-993,16007084.0,23044456645,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=23044456645&origin=inward,Berman,Nature Neuroscience,Neural correlates of genetically abnormal social cognition in Williams syndrome,Article,Berman,NIMH +https://api.elsevier.com/content/abstract/scopus_id/18544391151,Stephanie Greer;Wei Li Chang;Bradley R. Buchsbaum;Karen Faith Berman,295,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=18544391151&origin=inward,10.1002/hbm.20128,2005-05-01,"('2-s2.0-18544391151', 'Berman')",,35-45,15846821.0,18544391151,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=18544391151&origin=inward,Berman,Human Brain Mapping,Meta-analysis of neuroimaging studies of the Wisconsin Card-Sorting Task and component processes,Conference Paper,Berman,NIMH +https://api.elsevier.com/content/abstract/scopus_id/58849166796,Philip Kohn;Jean Claude Dreher;Bhaskar Kolachana;Karen Faith Berman;Daniel R. Weinberger,268,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=58849166796&origin=inward,10.1073/pnas.0805517106,2009-01-13,"('2-s2.0-58849166796', 'Berman')",,617-622,19104049.0,58849166796,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=58849166796&origin=inward,Berman,Proceedings of the National Academy of Sciences of the United States of America,Variation in dopamine genes influences responsivity of the human reward system,Article,Berman,NIMH +https://api.elsevier.com/content/abstract/scopus_id/4444331998,Carolyn B. Mervis;Philip Kohn;J. Shane Kippenhan;Rosanna K. Olsen;Andreas Meyer-Lindenberg;Colleen A. Morris;Karen Faith Berman,247,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=4444331998&origin=inward,10.1016/j.neuron.2004.08.014,2004-09-02,"('2-s2.0-4444331998', 'Berman')",NINDS,623-631,15339645.0,4444331998,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=4444331998&origin=inward,Berman,Neuron,Neural basis of genetically determined visuospatial construction deficit in Williams syndrome,Article,Berman,NIMH +https://api.elsevier.com/content/abstract/scopus_id/27844556998,Paul Koch;Bradley R. Buchsbaum;Karen Faith Berman;Rosanna K. Olsen,200,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=27844556998&origin=inward,10.1016/j.neuron.2005.09.029,2005-11-23,"('2-s2.0-27844556998', 'Berman')",,687-697,16301183.0,27844556998,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=27844556998&origin=inward,Berman,Neuron,Human dorsal and ventral auditory streams subserve rehearsal-based and echoic processes during verbal working memory,Article,Berman,NIMH +https://api.elsevier.com/content/abstract/scopus_id/79551658486,Karen F. Berman;Mark D'Esposito;Bradley R. Buchsbaum;Nina Dronkers;Juliana Baldo;Kayoko Okada;Gregory Hickok,181,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79551658486&origin=inward,10.1016/j.bandl.2010.12.001,2011-12-01,"('2-s2.0-79551658486', 'Berman')",NIH,119-128,21256582.0,79551658486,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79551658486&origin=inward,Berman,Brain and Language,"Conduction aphasia, sensory-motor integration, and phonological short-term memory - An aggregate analysis of lesion and fMRI data",Article,Berman,NIMH +https://api.elsevier.com/content/abstract/scopus_id/33644918886,Philip Kohn;Jean Claude Dreher;Karen Faith Berman,136,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33644918886&origin=inward,10.1093/cercor/bhj004,2006-04-01,"('2-s2.0-33644918886', 'Berman')",,561-573,16033924.0,33644918886,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33644918886&origin=inward,Berman,Cerebral Cortex,Neural coding of distinct statistical properties of reward information in humans,Article,Berman,NIMH +https://api.elsevier.com/content/abstract/scopus_id/0037195076,Jean Claude Dreher;Karen Faith Berman,130,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0037195076&origin=inward,10.1073/pnas.222193299,2002-10-29,"('2-s2.0-0037195076', 'Berman')",,14595-14600,12391312.0,37195076,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0037195076&origin=inward,Berman,Proceedings of the National Academy of Sciences of the United States of America,Fractionating the neural substrate of cognitive control processes,Article,Berman,NIMH +https://api.elsevier.com/content/abstract/scopus_id/54449089027,Philip Kohn;Andreas Meyer-Lindenberg;Jean Claude Dreher;Karen Faith Berman,125,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=54449089027&origin=inward,10.1073/pnas.0802127105,2008-09-30,"('2-s2.0-54449089027', 'Berman')",,15106-15111,18794529.0,54449089027,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=54449089027&origin=inward,Berman,Proceedings of the National Academy of Sciences of the United States of America,Age-related changes in midbrain dopaminergic regulation of the human reward system,Article,Berman,NIMH +https://api.elsevier.com/content/abstract/scopus_id/22144453872,Carolyn B. Mervis;Colleen A. Morris;Stefano Marenco;Saumitra Das;Philip Kohn;Sonya Steele;Karen Faith Berman;Shane Kippenhan;Andreas Meyer-Lindenberg;Paul Koch;Deepak Sarpal;Venkata S. Mattay;Daniel R. Weinberger,113,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=22144453872&origin=inward,10.1172/JCI24892,2005-07-01,"('2-s2.0-22144453872', 'Berman')",,1888-1895,15951840.0,22144453872,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=22144453872&origin=inward,Berman,Journal of Clinical Investigation,"Functional, structural, and metabolic abnormalities of the hippocampal formation in Williams syndrome",Article,Berman,NIMH +https://api.elsevier.com/content/abstract/scopus_id/23944487203,Carolyn B. Mervis;Philip Kohn;J. Shane Kippenhan;Rosanna K. Olsen;Andreas Meyer-Lindenberg;Colleen A. Morris;Karen Faith Berman,102,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=23944487203&origin=inward,10.1523/JNEUROSCI.1722-05.2005,2005-08-24,"('2-s2.0-23944487203', 'Berman')",,7840-7846,16120786.0,23944487203,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=23944487203&origin=inward,Berman,Journal of Neuroscience,Genetic contributions to human gyrification: Sulcal morphometry in Williams syndrome,Article,Berman,NIMH +https://api.elsevier.com/content/abstract/scopus_id/35448967833,Carolyn B. Mervis;Michael A. Siuta;Stefano Marenco;Samuel Grodofsky;J. Shane Kippenhan;Wei Li Chang;Philip Kohn;Carlo Pierpaoli;Andreas Meyer-Lindenberg;Colleen A. Morris;Karen Faith Berman;Daniel R. Weinberger,72,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=35448967833&origin=inward,10.1073/pnas.0704311104,2007-09-18,"('2-s2.0-35448967833', 'Pierpaoli')",,15117-15122,17827280.0,35448967833,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=35448967833&origin=inward,Pierpaoli,Proceedings of the National Academy of Sciences of the United States of America,Genetic contributions to white matter architecture revealed by diffusion tensor imaging in Williams syndrome,Article,Pierpaoli,NIBIB +https://api.elsevier.com/content/abstract/scopus_id/16244380802,Bradley R. Buchsbaum;Paul F. Koch;Philip Kohn;J. Shane Kippenhan;Rosanna K. Olsen;Karen Faith Berman,65,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=16244380802&origin=inward,10.1016/j.neuroimage.2004.08.025,2005-01-15,"('2-s2.0-16244380802', 'Berman')",,444-454,15627586.0,16244380802,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=16244380802&origin=inward,Berman,NeuroImage,"Reading, hearing, and the planum temporale",Article,Berman,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84864659715,Catherine Groden;Karen F. Berman;Joseph C. Masdeu;Edythe Wiggs;Molly C. Chapman;Brett Cropp;Grisel Lopez;Philip D. Kohn;Joie Davis;Emerson D. Maniwang;Daniel P. Eisenberg;Angela Ianni;Ozlem Goker-Alpan;Ellen Sidransky,50,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84864659715&origin=inward,10.1093/brain/aws174,2012-01-01,"('2-s2.0-84864659715', 'Berman')",NHGRI,2440-2448,,84864659715,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84864659715&origin=inward,Berman,Brain,The neurobiology of glucocerebrosidase-associated parkinsonism: A positron emission tomography study of dopamine synthesis and regional cerebral blood flow,Article,Berman,NIMH +https://api.elsevier.com/content/abstract/scopus_id/58149176754,Carolyn B. Mervis;Bradley R. Buchsbaum;J. Shane Kippenhan;Philip D. Kohn;Karen Faith Berman;Andreas Meyer-Lindenberg;Colleen A. Morris;Deepak Sarpal,41,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=58149176754&origin=inward,10.1093/cercor/bhn004,2008-10-01,"('2-s2.0-58149176754', 'Berman')",,2402-2409,18308711.0,58149176754,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=58149176754&origin=inward,Berman,Cerebral Cortex,A genetic model for understanding higher order visual processing: Functional interactions of the ventral visual stream in williams syndrome,Article,Berman,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84874773299,Shau Ming Wei;Karen F. Berman;David R. Rubinow;Peter J. Schmidt;Gabriela Alarcón;Philip D. Kohn;Erica B. Baller,41,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84874773299&origin=inward,10.1176/appi.ajp.2012.12030385,2013-03-01,"('2-s2.0-84874773299', 'Schmidt')",,305-314,,84874773299,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84874773299&origin=inward,Schmidt,American Journal of Psychiatry,Abnormalities of dorsolateral prefrontal function in women with premenstrual dysphoric disorder: A multimodal neuroimaging study,Article,Schmidt,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84859465051,Carolyn B. Mervis;Stefano Marenco;Philip Kohn;J. Shane Kippenhan;Mbemba Jabbi;Andreas Meyer-Lindenberg;Colleen A. Morris;Karen Faith Berman,40,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84859465051&origin=inward,10.1073/pnas.1114774109,2012-04-03,"('2-s2.0-84859465051', 'Berman')",,,22411788.0,84859465051,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84859465051&origin=inward,Berman,Proceedings of the National Academy of Sciences of the United States of America,"The Williams syndrome chromosome 7q11.23 hemideletion confers hypersocial, anxious personality coupled with altered insula structure and function",Article,Berman,NIMH +https://api.elsevier.com/content/abstract/scopus_id/75449118703,Carolyn B. Mervis;Ahmad R. Hariri;Karen E. Muñoz;Andreas Meyer-Lindenberg;Colleen A. Morris;Karen Faith Berman;Venkata S. Mattay,32,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=75449118703&origin=inward,10.1016/j.neuroimage.2009.11.069,2010-03-01,"('2-s2.0-75449118703', 'Berman')",NARSAD,340-346,20004252.0,75449118703,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=75449118703&origin=inward,Berman,NeuroImage,Abnormalities in neural processing of emotional stimuli in Williams syndrome vary according to social vs. non-social content,Article,Berman,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84865530442,Matthew Emery;Karen F. Berman;Brita Elvevåg;Joseph C. Masdeu;Fabio Sambataro;Philip Kohn;Bhaskar Kolachana;Shane Kippenhan;Lisa M. Nichols;Venkata S. Mattay;Daniel R. Weinberger,35,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84865530442&origin=inward,10.1001/archgenpsychiatry.2011.1893,2012-08-01,"('2-s2.0-84865530442', 'Berman')",,804-813,22868934.0,84865530442,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84865530442&origin=inward,Berman,Archives of General Psychiatry,Interactive effect of apolipoprotein E genotype and age on hippocampal activation during memory processing in healthy adults,Article,Berman,NIMH +https://api.elsevier.com/content/abstract/scopus_id/77956222262,Mbemba Jabbi;Daniel Paul Eisenberg;Karen Faith Berman,21,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77956222262&origin=inward,10.1016/j.neuroimage.2010.02.070,2010-11-01,"('2-s2.0-77956222262', 'Berman')",NIH,857-869,20206275.0,77956222262,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77956222262&origin=inward,Berman,NeuroImage,Bridging the gene-behavior divide through neuroimaging deletion syndromes: Velocardiofacial (22q11.2 Deletion) and Williams (7q11.23 Deletion) syndromes,Review,Berman,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84964316597,Josep Dalmau;Karen F. Berman;Joseph C. Masdeu,33,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84964316597&origin=inward,10.1016/j.tins.2016.02.006,2016-05-01,"('2-s2.0-84964316597', 'Berman')",NIMH,300-310,,84964316597,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84964316597&origin=inward,Berman,Trends in Neurosciences,NMDA Receptor Internalization by Autoantibodies: A Reversible Mechanism Underlying Psychosis?,Review,Berman,NIMH +https://api.elsevier.com/content/abstract/scopus_id/78650789664,Bradley R. Buchsbaum;Karen Faith Berman;Aarthi Padmanabhan,23,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=78650789664&origin=inward,10.1162/jocn.2010.21496,2011-04-01,"('2-s2.0-78650789664', 'Berman')",,978-991,20350181.0,78650789664,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=78650789664&origin=inward,Berman,Journal of Cognitive Neuroscience,The neural substrates of recognition memory for verbal information: Spanning the divide between short- and long-term memory,Article,Berman,NIMH +https://api.elsevier.com/content/abstract/scopus_id/73849130620,Dylan Wint;Daniel Paul Eisenberg;Philip D. Kohn;Bhaskar Kolachana;José Apud;Karen Faith Berman;Andreas Meyer-Lindenberg;Deepak Sarpal;Daniel R. Weinberger,18,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=73849130620&origin=inward,10.1016/j.biopsych.2009.08.039,2010-02-01,"('2-s2.0-73849130620', 'Berman')",NIMH,287-290,19892319.0,73849130620,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=73849130620&origin=inward,Berman,Biological Psychiatry,Catechol-O-Methyltransferase Valine158Methionine Genotype and Resting Regional Cerebral Blood Flow in Medication-Free Patients with Schizophrenia,Article,Berman,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84878223109,A. M. Ianni;S. M. Wei;D. P. Eisenberg;B. Kolachana;D. R. Weinberger;P. D. Kohn;K. F. Berman;J. Apud,22,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84878223109&origin=inward,10.1038/mp.2012.187,2013-06-01,"('2-s2.0-84878223109', 'Berman')",NIMH,713-720,23319002.0,84878223109,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84878223109&origin=inward,Berman,Molecular Psychiatry,Brain-derived neurotrophic factor (BDNF) Val66Met polymorphism differentially predicts hippocampal function in medication-free patients with schizophrenia,Article,Berman,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84879623565,Joseph H. Callicott;Karen F. Berman;David A.A. Baranger;Bai Lu;Hongjun Song;Guo Li Ming;Emer L. Feighery;Michael G. White;Qiang Chen;Venkata S. Mattay;Daniel R. Weinberger,21,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84879623565&origin=inward,10.1172/JCI67510,2013-07-01,"('2-s2.0-84879623565', 'Berman')",NIMH,2961-2964,23921125.0,84879623565,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84879623565&origin=inward,Berman,Journal of Clinical Investigation,DISC1 and SLC12A2 interaction affects human hippocampal function and connectivity,Article,Berman,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84902159877,Karen F. Berman;Joo Heon Shin;Yuan Gao;Bhaskar Kolachana;Daniel R. Weinberger;Kristin L. Bigos;Masatoshi Takeda;Ningping Feng;Dan Rujescu;Joey W. Trampush;Richard E. Straub;Joseph H. Callicott;Joel E. Kleinman;Ryota Hashimoto;Graham L. Baum;Thomas M. Hyde;Bin Xie;Hun Ki Lim;Dwight Dickinson;Gianluca Ursini,25,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84902159877&origin=inward,10.1001/jamapsychiatry.2014.157,2014-01-01,"('2-s2.0-84902159877', 'Berman')",NIMH,647-656,24718902.0,84902159877,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84902159877&origin=inward,Berman,JAMA Psychiatry,"Differential effects of common variants in SCN2A on general cognitive ability, brain physiology, and messenger RNA expression in schizophrenia cases and control individuals",Article,Berman,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84860113976,Philip Kohn;Jean Claude Dreher;Jose Apud;Paul Koch;Karen Faith Berman;Daniel R. Weinberger,22,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84860113976&origin=inward,10.1016/j.biopsych.2012.01.002,2012-05-15,"('2-s2.0-84860113976', 'Berman')",NIMH,890-897,22341369.0,84860113976,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84860113976&origin=inward,Berman,Biological Psychiatry,Common and differential pathophysiological features accompany comparable cognitive impairments in medication-free patients with schizophrenia and in healthy aging subjects,Article,Berman,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84861131741,Shau Ming Wei;Karen F. Berman;Philip D. Kohn;Jonathan S. Kippenhan;Bhaskar S. Kolachana;Daniel P. Eisenberg;Daniel R. Weinberger,19,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84861131741&origin=inward,10.1523/JNEUROSCI.5375-11.2012,2012-05-16,"('2-s2.0-84861131741', 'Berman')",,7074-7081,22593075.0,84861131741,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84861131741&origin=inward,Berman,Journal of Neuroscience,Brain-derived neurotrophic factor Val 66 met polymorphism affects resting regional cerebral blood flow and functional connectivity differentially in women versus men,Article,Berman,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84936804404,Richard Coppola;Tiffany Nash;Karen F. Berman;Tom Holroyd;Stephen E. Robinson;Christopher Coutlee;Frederick W. Carver;J. Shane Kippenhan;Mbemba Jabbi;Brett Cropp;Philip D. Kohn;Qiang Chen;Angela Ianni,18,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84936804404&origin=inward,10.1093/cercor/bht427,2015-01-01,"('2-s2.0-84936804404', 'Berman')",NIH,1878-1888,24464944.0,84936804404,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84936804404&origin=inward,Berman,Cerebral Cortex,Convergent BOLD and Beta-Band Activity in Superior Temporal Sulcus and Frontolimbic Circuitry Underpins Human Emotion Cognition,Article,Berman,NIMH +https://api.elsevier.com/content/abstract/scopus_id/64849086835,Carolyn B. Mervis;Shruti Japee;Philip Kohn;J. Shane Kippenhan;Ziad S. Saad;Rosanna K. Olsen;Andreas Meyer-Lindenberg;Colleen A. Morris;Karen Faith Berman,14,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=64849086835&origin=inward,10.1093/brain/awn362,2009-01-01,"('2-s2.0-64849086835', 'Berman')",,635-644,19255058.0,64849086835,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=64849086835&origin=inward,Berman,Brain,Retinotopically defined primary visual cortex in Williams syndrome,Article,Berman,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84961629620,Roberta Rasetti;Joseph H. Callicott;Karen F. Berman;Venkata S. Mattay;Yunxia Tong;Thomas E. Nichols;Qiang Chen;Daniel R. Weinberger,22,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84961629620&origin=inward,10.1371/journal.pone.0151391,2016-03-01,"('2-s2.0-84961629620', 'Berman')",MRC,,26974435.0,84961629620,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84961629620&origin=inward,Berman,PLoS ONE,Seeking optimal region-of-interest (ROI) single-value summary measures for fMRI studies in imaging genetics,Article,Berman,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84991010759,M. White;P. Kohn;V. Mattay;N. Turner;B. Kolachana;D. R. Weinberger;K. F. Berman;Q. Chen;D. Dickinson;J. S. Kippenhan;M. Jabbi,15,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84991010759&origin=inward,10.1038/tp.2015.98,2015-08-25,"('2-s2.0-84991010759', 'Berman')",NIH,,26285132.0,84991010759,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84991010759&origin=inward,Berman,Translational Psychiatry,Variation in the Williams syndrome GTF2I gene and anxiety proneness interactively affect prefrontal cortical response to aversive stimuli,Article,Berman,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84965123814,Susan Kuo;Karen F. Berman;Christian Meyer;Stefano Marenco;Jun Shen;Jan Willem Van Der Veen;Katherine DeJong;Jose A. Apud;Dwight Dickinson;Alan S. Barnett;Daniel R. Weinberger,23,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84965123814&origin=inward,10.1176/appi.ajp.2015.15020190,2016-05-01,"('2-s2.0-84965123814', 'Berman')",,527-534,26806873.0,84965123814,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84965123814&origin=inward,Berman,American Journal of Psychiatry,Prefrontal GABA levels measured with magnetic resonance spectroscopy in patients with psychosis and unaffected siblings,Conference Paper,Berman,NIMH +https://api.elsevier.com/content/abstract/scopus_id/85011105698,Ricardo A. Pizarro;Alan Barnett;Joseph H. Callicott;Karen F. Berman;Herve Lemaitre;Qian Luo;Venkata S. Mattay;Xi Cheng;Ena Xiao;Beth A. Verchinski;Aaron L. Goldman;Daniel R. Weinberger,28,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85011105698&origin=inward,10.3389/fninf.2016.00052,2016-12-19,"('2-s2.0-85011105698', 'Berman')",NIMH,,,85011105698,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85011105698&origin=inward,Berman,Frontiers in Neuroinformatics,Automated quality assessment of structural magnetic resonance brain images based on a supervised machine learning algorithm,Article,Berman,NIMH +https://api.elsevier.com/content/abstract/scopus_id/85017509522,S. M. Wei;D. R. Rubinow;E. B. Baller;S. J. Soldin;B. Kolachana;P. J. Schmidt;P. D. Kohn;K. F. Berman;J. S. Kippenhan,17,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85017509522&origin=inward,10.1038/mp.2017.72,2017-04-18,"('2-s2.0-85017509522', 'Schmidt')",,,28416813.0,85017509522,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85017509522&origin=inward,Schmidt,Molecular Psychiatry,Brain-derived neurotrophic factor Val66Met genotype and ovarian steroids interactively modulate working memory-related hippocampal function in women: a multimodal neuroimaging study,,Schmidt,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84964596780,Karen F. Berman;Jessica Carrasco;J. Shane Kippenhan;Michael D. Gregory;Dwight Dickinson;Venkata S. Mattay;Daniel R. Weinberger,30,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84964596780&origin=inward,10.1016/j.cub.2016.03.021,2016-05-23,"('2-s2.0-84964596780', 'Berman')",NIMH,1301-1305,27133866.0,84964596780,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84964596780&origin=inward,Berman,Current Biology,Regional variations in brain gyrification are associated with general cognitive ability in humans,Article,Berman,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84871299789,T. Nash;A. Ianni;T. Holroyd;P. Kohn;D. Rubinstein;R. Coppola;J. Shane Kippenhan;K. F. Berman;S. E. Robinson;J. C. Masdeu;F. W. Carver;M. Jabbi,7,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84871299789&origin=inward,10.1038/mp.2012.12,2013-01-01,"('2-s2.0-84871299789', 'Berman')",MEXT,4-6,22411228.0,84871299789,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84871299789&origin=inward,Berman,Molecular Psychiatry,"Midbrain presynaptic dopamine tone predicts sustained and transient neural response to emotional salience in humans: fMRI, MEG and FDOPA PET",Letter,Berman,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84880799337,Roberta Rasetti;Joseph H. Callicott;Karen F. Berman;Venkata S. Mattay;José A. Apud;Jingshan Chen;Sophia C. Magalona;Heather Decot;Qiang Chen;Daniel R. Weinberger;Ian Gold,6,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84880799337&origin=inward,10.1007/s40263-013-0082-x,2013-08-01,"('2-s2.0-84880799337', 'Berman')",NIMH,663-673,,84880799337,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84880799337&origin=inward,Berman,CNS Drugs,"Effect of tolcapone on brain activity during a variable attentional control task: A double-blind, placebo-controlled, counter-balanced trial in healthy volunteers",Review,Berman,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84961391858,Catherine E. Hegarty;Karen F. Berman;Joseph C. Masdeu;Philip D. Kohn;Bhaskar Kolachana;Michael D. Gregory;Angela M. Ianni;Daniel P. Eisenberg,9,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84961391858&origin=inward,10.1038/npp.2016.31,2016-08-01,"('2-s2.0-84961391858', 'Berman')",NIH,2303-2308,26924680.0,84961391858,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84961391858&origin=inward,Berman,Neuropsychopharmacology,Common variation in the DOPA decarboxylase (DDC) gene and human striatal DDC activity in vivo,Article,Berman,NIMH +https://api.elsevier.com/content/abstract/scopus_id/85025842379,Karen F. Berman;J. Shane Kippenhan;Ziad S. Saad;Philip D. Kohn;Michael D. Gregory;Dwight Dickinson;Qiang Chen;Daniel P. Eisenberg;Venkata S. Mattay;Daniel R. Weinberger,13,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85025842379&origin=inward,10.1038/s41598-017-06587-0,2017-12-01,"('2-s2.0-85025842379', 'Berman')",NIH,,28740249.0,85025842379,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85025842379&origin=inward,Berman,Scientific Reports,Neanderthal-Derived Genetic Variation Shapes Modern Human Cranium and Brain,Article,Berman,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84878226412,A. M. Ianni;S. M. Wei;D. P. Eisenberg;B. Kolachana;D. R. Weinberger;P. D. Kohn;K. F. Berman;J. Apud,3,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84878226412&origin=inward,10.1038/mp.2013.53,2013-06-01,"('2-s2.0-84878226412', 'Berman')",,631,23698315.0,84878226412,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84878226412&origin=inward,Berman,Molecular Psychiatry,Hippocampal dysfunction in schizophrenia: Association with brain-derived neurotrophic factor genotype,Note,Berman,NIMH +https://api.elsevier.com/content/abstract/scopus_id/85017375448,Stefano Marenco;Jun Shen;Karen F. Berman;Jan Willem van der Veen,8,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85017375448&origin=inward,10.1002/nbm.3725,2017-08-01,"('2-s2.0-85017375448', 'Berman')",,,28370463.0,85017375448,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85017375448&origin=inward,Berman,NMR in Biomedicine,Retrospective correction of frequency drift in spectral editing: The GABA editing example,Article,Berman,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84892776847,D. P. Wint;D. Sarpal;Karen F. Berman;C. B. Mervis;A. Meyer-Lindenberg;J. A. Butman;J. C. Masdeu;C. A. Morris,3,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84892776847&origin=inward,10.3174/ajnr.A3641,2014-01-01,"('2-s2.0-84892776847', 'Berman')",NINDS,90-94,23868161.0,84892776847,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84892776847&origin=inward,Berman,American Journal of Neuroradiology,Intracranial arteries in individuals with the elastin gene hemideletion of Williams syndrome,Article,Berman,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84893435489,Daniel Paul Eisenberg;Karen F. Berman,0,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84893435489&origin=inward,10.1016/j.biopsych.2013.12.011,2014-03-01,"('2-s2.0-84893435489', 'Berman')",NIMH,346-347,24507568.0,84893435489,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84893435489&origin=inward,Berman,Biological Psychiatry,Catechol-O-methyltransferase and genetic variation under hemizygosity,Note,Berman,NIMH +https://api.elsevier.com/content/abstract/scopus_id/44949188705,Ellen Leibenluft;Courtney Sims;David S. Kosson;Daniel S. Pine;Abigail A. Marsh;Elizabeth C. Finger;R. J.R. Blair;Marguerite E. Reid;Kenneth E. Towbin;Derek G.V. Mitchell,500,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=44949188705&origin=inward,10.1176/appi.ajp.2007.07071145,2008-01-01,"('2-s2.0-44949188705', 'Leibenluft')",,712-720,18281412.0,44949188705,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=44949188705&origin=inward,Leibenluft,American Journal of Psychiatry,Reduced amygdala response to fearful expressions in children and adolescents with callous-unemotional traits and disruptive behavior disorders,Article,Leibenluft,NIMH +https://api.elsevier.com/content/abstract/scopus_id/33846995991,D. G.V. Mitchell;K. S. Blair;W. C. Drevets;E. E. Nelson;B. W. Smith;M. Vythilingam;A. Zametkin;D. Fridberg;J. Morton;R. J.R. Blair;D. S. Pine;A. Martin;D. Sturman;L. Pessoa,254,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33846995991&origin=inward,10.1016/j.neuroimage.2006.11.048,2007-03-01,"('2-s2.0-33846995991', 'Pine')",NIH,430-440,17239620.0,33846995991,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33846995991&origin=inward,Pine,NeuroImage,Modulation of emotion by cognition and cognition by emotion,Article,Pine,NIMH +https://api.elsevier.com/content/abstract/scopus_id/43149088492,Ellen Leibenluft;James R. Blair;Courtney Sims;David S. Kosson;Daniel S. Pine;Gang Chen;Elizabeth C. Finger;Abigail A. Marsh;Derek G. Mitchell;Marguerite E. Reid;Kenneth E. Towbin;Salima Budhani,218,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=43149088492&origin=inward,10.1001/archpsyc.65.5.586,2008-05-01,"('2-s2.0-43149088492', 'Leibenluft')",,586-594,18458210.0,43149088492,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=43149088492&origin=inward,Leibenluft,Archives of General Psychiatry,Abnormal ventromedial prefrontal cortex function in children with psychopathic traits during reversal learning,Article,Leibenluft,NIMH +https://api.elsevier.com/content/abstract/scopus_id/33646470423,R. James R. Blair;Qian Luo;Rebecca Richell;Marina Nakic;Thalia Wheatley;Alex Martin,127,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33646470423&origin=inward,10.1016/j.neuroimage.2005.11.005,2006-05-01,"('2-s2.0-33646470423', 'Martin')",,1449-1457,16418007.0,33646470423,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33646470423&origin=inward,Martin,NeuroImage,The neural basis of implicit moral attitude-An IAT study using event-related fMRI,Article,Martin,NIMH +https://api.elsevier.com/content/abstract/scopus_id/33750952524,Karina Blair;Krystal Mondillo;James R. Blair;John Morton;Wayne C. Drevets;Daniel C. Pine;Abigail A. Marsh;Matthew Jones;Meena Vythilingam,110,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33750952524&origin=inward,10.1523/JNEUROSCI.1640-06.2006,2006-11-01,"('2-s2.0-33750952524', 'Pine')",,11379-11386,17079666.0,33750952524,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33750952524&origin=inward,Pine,Journal of Neuroscience,"Choosing the lesser of two evils, the better of two goods: Specifying the roles of ventromedial prefrontal cortex and dorsal anterior cingulate in object choice",Article,Pine,NIMH +https://api.elsevier.com/content/abstract/scopus_id/77955084298,R. J.R. Blair,126,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77955084298&origin=inward,10.1348/000712609X418480,2010-08-01,"('2-s2.0-77955084298', 'Blair')",,383-399,19321035.0,77955084298,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77955084298&origin=inward,Blair,British Journal of Psychology,"Psychopathy, frustration, and reactive aggression: The role of ventromedial prefrontal cortex",Article,Blair,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84880573200,Jean Decety;Ilana T.N. Jurkowitz;Julia C. Schechter;Abigail A. Marsh;Elizabeth C. Finger;Katherine A. Fowler;R. J.R. Blair;Christopher J. Adalio;Daniel S. Pine,140,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84880573200&origin=inward,10.1111/jcpp.12063,2013-08-01,"('2-s2.0-84880573200', 'Pine')",,900-910,23488588.0,84880573200,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84880573200&origin=inward,Pine,Journal of Child Psychology and Psychiatry and Allied Disciplines,Empathic responsiveness in amygdala and anterior cingulate cortex in youths with psychopathic traits,Article,Pine,NIMH +https://api.elsevier.com/content/abstract/scopus_id/33846180689,D. G.V. Mitchell;D. Fridberg;N. Kamel;M. Nakic;D. S. Pine;R. J.R. Blair,107,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33846180689&origin=inward,10.1016/j.neuroimage.2006.10.012,2007-02-01,"('2-s2.0-33846180689', 'Pine')",NIH,1299-1309,17161627.0,33846180689,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33846180689&origin=inward,Pine,NeuroImage,The impact of processing load on emotion,Article,Pine,NIMH +https://api.elsevier.com/content/abstract/scopus_id/56349088838,R. James R. Blair;Michael G. Hardin;Bruce W. Smith;Sandra Jazbec;Monique Ernst;Derek G.V. Mitchell;Daniel Fridberg,105,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=56349088838&origin=inward,10.1016/j.neuroimage.2008.08.016,2009-01-15,"('2-s2.0-56349088838', 'Blair')",NIMH,600-609,18804540.0,56349088838,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=56349088838&origin=inward,Blair,NeuroImage,"Neural substrates of reward magnitude, probability, and risk during a wheel of fortune decision-making task",Article,Blair,NIMH +https://api.elsevier.com/content/abstract/scopus_id/33846811290,D. S. Pine;S. Budhani;A. A. Marsh;R. J.R. Blair,81,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33846811290&origin=inward,10.1016/j.neuroimage.2006.08.060,2007-02-15,"('2-s2.0-33846811290', 'Pine')",,1754-1765,17188518.0,33846811290,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33846811290&origin=inward,Pine,NeuroImage,Neural correlates of response reversal: Considering acquisition,Article,Pine,NIMH +https://api.elsevier.com/content/abstract/scopus_id/33745437135,R. James R. Blair;Marina Nakic;Bruce W. Smith;Sarah Busis;Meena Vythilingam,84,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33745437135&origin=inward,10.1016/j.neuroimage.2006.02.022,2006-07-15,"('2-s2.0-33745437135', 'Blair')",NIH,1752-1761,16647271.0,33745437135,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33745437135&origin=inward,Blair,NeuroImage,The impact of affect and frequency on lexical decision: The role of the amygdala and inferior frontal cortex,Article,Blair,NIMH +https://api.elsevier.com/content/abstract/scopus_id/82455212996,Henry H. Yu;Ilana T.N. Jurkowitz;Julia C. Schechter;Abigail A. Marsh;Elizabeth C. Finger;Katherine A. Fowler;R. J.R. Blair;Daniel S. Pine,96,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=82455212996&origin=inward,10.1016/j.pscychresns.2011.07.008,2011-12-30,"('2-s2.0-82455212996', 'Pine')",NIH,279-286,22047730.0,82455212996,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=82455212996&origin=inward,Pine,Psychiatry Research - Neuroimaging,Reduced amygdala-orbitofrontal connectivity during moral judgments in youths with disruptive behavior disorders and psychopathic traits,Article,Pine,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84863908499,R. James R. Blair;Kayla Pope;Stephen Sinclair;Julia C. Schechter;Abigail A. Marsh;Christopher Adalio;Stuart F. White;Katherine A. Fowler;Daniel S. Pine,102,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84863908499&origin=inward,10.1176/appi.ajp.2012.11081270,2012-07-01,"('2-s2.0-84863908499', 'Pine')",,750-758,22456823.0,84863908499,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84863908499&origin=inward,Pine,American Journal of Psychiatry,Reduced amygdala response in youths with disruptive behavior disorders and psychopathic traits: Decreased emotional response versus increased top-down attention to nonemotional features,Article,Pine,NIMH +https://api.elsevier.com/content/abstract/scopus_id/65449173956,Matthew M. Jones;Abigail A. Marsh;R. J.R. Blair;Niveen Soliman;Karina S. Blair,83,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=65449173956&origin=inward,10.1162/jocn.2009.21052,2009-04-01,"('2-s2.0-65449173956', 'Blair')",,713-724,18578604.0,65449173956,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=65449173956&origin=inward,Blair,Journal of Cognitive Neuroscience,Dominance and submission: The ventrolateral prefrontal cortex and responses to status cues,Article,Blair,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84874768960,R. James R. Blair;Kayla Pope;Stephen Sinclair;Sarah J. Brislin;Stuart F. White;Katherine A. Fowler;W. Craig Williams;Daniel S. Pine,81,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84874768960&origin=inward,10.1176/appi.ajp.2012.12060840,2013-03-01,"('2-s2.0-84874768960', 'Pine')",,315-323,,84874768960,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84874768960&origin=inward,Pine,American Journal of Psychiatry,Disrupted expected value and prediction error signaling in Youths with disruptive behavior disorders during a passive avoidance task,Article,Pine,NIMH +https://api.elsevier.com/content/abstract/scopus_id/40849087841,D. G.V. Mitchell;K. Mondillo;E. C. Finger;Q. Luo;M. Vythilingam;R. J.R. Blair,67,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=40849087841&origin=inward,10.1016/j.neuroimage.2007.08.002,2008-04-01,"('2-s2.0-40849087841', 'Blair')",NIH,859-868,18234519.0,40849087841,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=40849087841&origin=inward,Blair,NeuroImage,The interference of operant task performance by emotional distracters: An antagonistic relationship between the amygdala and frontoparietal cortices,Article,Blair,NIMH +https://api.elsevier.com/content/abstract/scopus_id/33748864036,James R. Blair;Elizabeth C. Finger;Abigail A. Marsh;Niveen Kamel;Derek G.V. Mitchell,61,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33748864036&origin=inward,10.1016/j.neuroimage.2006.06.011,2006-10-15,"('2-s2.0-33748864036', 'Blair')",NIH,414-421,16891125.0,33748864036,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33748864036&origin=inward,Blair,NeuroImage,Caught in the act: The impact of audience on the neural response to morally and socially inappropriate behavior,Article,Blair,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84896491377,Gregory L. Wallace;R. James R. Blair;Stephen Sinclair;Stuart F. White;Alex Martin;Briana Robustelli;Soonjo Hwang,71,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84896491377&origin=inward,10.1016/j.jaac.2013.12.008,2014-01-01,"('2-s2.0-84896491377', 'Martin')",NIMH,,24655655.0,84896491377,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84896491377&origin=inward,Martin,Journal of the American Academy of Child and Adolescent Psychiatry,Cortical and subcortical abnormalities in youths with conduct disorder and elevated callous-unemotional traits,Article,Martin,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84865177635,Robert James Blair;Karan Gupta;Kayla Pope;Courtney Sims;Stephen Sinclair;Catherine Majestic;Marguerite Reid Schneider;Karina Simone Blair;Iordanis Evangelou;Daniel Pine;Abigail Marsh;Katherine Fowler;Fernanda Tovar-Moll;Elizabeth Carrie Finger,59,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84865177635&origin=inward,10.1016/j.pscychresns.2011.11.002,2012-06-30,"('2-s2.0-84865177635', 'Pine')",NIMH,239-244,22819939.0,84865177635,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84865177635&origin=inward,Pine,Psychiatry Research - Neuroimaging,Impaired functional but preserved structural connectivity in limbic white matter tracts in youth with conduct disorder or oppositional defiant disorder plus psychopathic traits,Article,Pine,NIMH +https://api.elsevier.com/content/abstract/scopus_id/33947284907,Abigail A. Marsh;Sarah Busis;R. J.R. Blair;Meena Vythilingam;Karina S. Blair,54,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33947284907&origin=inward,10.1016/j.neuroimage.2006.11.044,2007-04-01,"('2-s2.0-33947284907', 'Blair')",NIH,979-988,17292631.0,33947284907,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33947284907&origin=inward,Blair,NeuroImage,Response options and expectations of reward in decision-making: The differential roles of dorsal and rostral anterior cingulate cortex,Article,Blair,NIMH +https://api.elsevier.com/content/abstract/scopus_id/31844440020,D. S. Kosson;S. Budhani;G. Chen;M. Vythilingam;Z. S. Saad;R. J.R. Blair;M. Nakic;D. S. Pine,41,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=31844440020&origin=inward,10.1016/j.neuroimage.2005.07.060,2006-02-15,"('2-s2.0-31844440020', 'Pine')",NIMH,1161-1172,16387514.0,31844440020,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=31844440020&origin=inward,Pine,NeuroImage,The role of the amygdala and rostral anterior cingulate in encoding expected outcomes during learning,Article,Pine,NIMH +https://api.elsevier.com/content/abstract/scopus_id/78650626347,Megan N. Kozak;Henry H. Yu;Abigail A. Marsh;R. J.R. Blair;Marguerite E. Reid;Daniel M. Wegner,33,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=78650626347&origin=inward,10.1093/scan/nsq004,2010-12-01,"('2-s2.0-78650626347', 'Blair')",,392-403,20150343.0,78650626347,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=78650626347&origin=inward,Blair,Social Cognitive and Affective Neuroscience,The neural substrates of action identification,Article,Blair,NIMH +https://api.elsevier.com/content/abstract/scopus_id/69749103853,R. James R. Blair;Karanvir Gupta;Qian Luo;Shelley B. Avny;Gang Chen;Elizabeth C. Finger;Tomasz Kasprzycki;Derek G.V. Mitchell,41,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=69749103853&origin=inward,10.1523/JNEUROSCI.0963-09.2009,2009-09-02,"('2-s2.0-69749103853', 'Blair')",,10827-10834,19726640.0,69749103853,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=69749103853&origin=inward,Blair,Journal of Neuroscience,"Adapting to dynamic stimulus-response values: Differential contributions of inferior frontal, dorsomedial, and dorsolateral regions of prefrontal cortex to decision making",Article,Blair,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84898046836,Sarah J. Brislin;Stuart F. White;Stephen Sinclair;James R. Blair,35,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84898046836&origin=inward,10.1002/hbm.22316,2014-01-01,"('2-s2.0-84898046836', 'Blair')",NIH,2137-2147,23868733.0,84898046836,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84898046836&origin=inward,Blair,Human Brain Mapping,Punishing unfairness: Rewarding or the organization of a reactively aggressive response?,Article,Blair,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84868131048,P. Ng;C. C. Wu;K. Mondillo;K. S. Blair;M. Scaramozza;D. S. Charney;M. Vythilingam;R. J.R. Blair;S. L. Crowe;D. S. Pine;D. E. McCaffrey,52,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84868131048&origin=inward,10.1017/S0033291712000840,2013-01-01,"('2-s2.0-84868131048', 'Pine')",,85-95,22571775.0,84868131048,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84868131048&origin=inward,Pine,Psychological Medicine,Cognitive control of attention is differentially affected in trauma-exposed individuals with and without post-traumatic stress disorder,Article,Pine,NIMH +https://api.elsevier.com/content/abstract/scopus_id/54849405917,Elizabeth C. Finger;Matthew Jones;Derek G.V. Mitchell;R. J.R. Blair,33,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=54849405917&origin=inward,10.1016/j.neuroimage.2008.08.021,2008-12-01,"('2-s2.0-54849405917', 'Blair')",NIMH,748-755,18793731.0,54849405917,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=54849405917&origin=inward,Blair,NeuroImage,Dissociable roles of medial orbitofrontal cortex in human operant extinction learning,Article,Blair,NIMH +https://api.elsevier.com/content/abstract/scopus_id/36849000840,D. G.V. Mitchell;R. A. Rhodes;D. S. Pine;R. J.R. Blair,30,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=36849000840&origin=inward,10.1016/j.bbr.2007.08.034,2008-02-11,"('2-s2.0-36849000840', 'Pine')",NIH,80-87,17950474.0,36849000840,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=36849000840&origin=inward,Pine,Behavioural Brain Research,The contribution of ventrolateral and dorsolateral prefrontal cortex to response reversal,Article,Pine,NIMH +https://api.elsevier.com/content/abstract/scopus_id/35148862140,R. James R. Blair;Krystal Mondillo;Qian Luo;Matthew Jones;Derek Mitchell;Meena Vythilingam,30,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=35148862140&origin=inward,10.1016/j.neuroimage.2007.07.051,2007-11-15,"('2-s2.0-35148862140', 'Blair')",NIMH,631-639,17889565.0,35148862140,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=35148862140&origin=inward,Blair,NeuroImage,Common regions of dorsal anterior cingulate and prefrontal-parietal cortices provide attentional control of distracters varying in emotionality and visibility,Article,Blair,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84872915251,R. James R. Blair;Harma Meffert;Stephen Sinclair;Sarah J. Brislin;Stuart F. White,30,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84872915251&origin=inward,10.1521/pedi.2013.27.1.99,2013-01-31,"('2-s2.0-84872915251', 'Blair')",,99-112,23342960.0,84872915251,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84872915251&origin=inward,Blair,Journal of Personality Disorders,Callous-unemotional traits modulate the neural response associated with punishing another individual during social exchange: A preliminary investigation,Article,Blair,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84863959324,Kayla Pope;Stephen Sinclair;R. James Blair;W. Craig Williams;Stuart F. White;Sarah J. Brislin;Katherine A. Fowler;Karina S. Blair;Daniel S. Pine,29,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84863959324&origin=inward,10.1017/S0954579412000569,2012-08-01,"('2-s2.0-84863959324', 'Pine')",,1105-1116,22781874.0,84863959324,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84863959324&origin=inward,Pine,Development and Psychopathology,Reduced activity within the dorsal endogenous orienting of attention network to fearful expressions in youth with disruptive behavior disorders and psychopathic traits,Article,Pine,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84877081144,Marcela Otero;Cindy Teng;Stephanie Odenheimer;Madeline Jacobs;R. J.R. Blair;Karina S. Blair;Daniel S. Pine,26,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84877081144&origin=inward,10.1016/j.neuroimage.2013.03.063,2013-09-01,"('2-s2.0-84877081144', 'Pine')",NIH,103-110,23567883.0,84877081144,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84877081144&origin=inward,Pine,NeuroImage,Dissociable roles of ventromedial prefrontal cortex (vmPFC) and rostral anterior cingulate cortex (rACC) in value representation and optimistic bias,Article,Pine,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84898813425,Stephen Sinclair;R. James Blair;Julia C. Schechter;Stuart F. White;Katherine A. Fowler;Catherine M. Majestic;Daniel S. Pine,28,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84898813425&origin=inward,10.1016/j.jaac.2013.12.023,2014-01-01,"('2-s2.0-84898813425', 'Pine')",NIMH,579-588.e9,24745957.0,84898813425,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84898813425&origin=inward,Pine,Journal of the American Academy of Child and Adolescent Psychiatry,Disrupted expected value signaling in youth with disruptive behavior disorders to environmental reinforcers,Article,Pine,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84876293348,R. James R. Blair;Kayla Pope;Stephen Sinclair;Sarah Brislin;Stuart F. White;Katherine A. Fowler,26,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84876293348&origin=inward,10.1111/j.1469-7610.2012.02603.x,2013-05-01,"('2-s2.0-84876293348', 'Blair')",,575-581,22934662.0,84876293348,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84876293348&origin=inward,Blair,Journal of Child Psychology and Psychiatry and Allied Disciplines,"The relationship between large cavum septum pellucidum and antisocial behavior, callous-unemotional traits and psychopathy in adolescents",Article,Blair,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84887081359,Roberta Clanton;Dionne S. Coker-Appiah;Stuart F. White;R. J.R. Blair;Alex Martin;Jiongjong Yang,30,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84887081359&origin=inward,10.1080/17470919.2013.839480,2013-11-01,"('2-s2.0-84887081359', 'Martin')",NIMH,621-630,24066700.0,84887081359,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84887081359&origin=inward,Martin,Social Neuroscience,Looming animate and inanimate threats: The response of the amygdala and periaqueductal gray,Article,Martin,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84907427850,James R. Blair;Lars Michels;Ulrich Schnyder;Michael Rufer;Thomas Zeffiro;Matthis Schick;Chantal Martin-Soelch;Gregor Hasler;Christoph Mueller-Pfeiffer;Ruth O'Gorman;Thomas Schulte-Vels,26,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84907427850&origin=inward,10.1016/j.nicl.2013.08.009,2013-01-01,"('2-s2.0-84907427850', 'Blair')",UZH,531-538,,84907427850,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84907427850&origin=inward,Blair,NeuroImage: Clinical,Atypical visual processing in posttraumatic stress disorder,Article,Blair,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84926469280,Sarah J. Brislin;Stuart F. White;Harma Meffert;James R. Blair,19,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84926469280&origin=inward,10.1093/scan/nsu085,2013-01-01,"('2-s2.0-84926469280', 'Blair')",,537-544,24939872.0,84926469280,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84926469280&origin=inward,Blair,Social Cognitive and Affective Neuroscience,Prediction errors to emotional expressions: The roles of the amygdala in social referencing,Article,Blair,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84903149862,Albert A. Rizzo;Michelle E. Costanzo;Michael J. Roy;James R. Blair,20,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84903149862&origin=inward,10.3233/978-1-61499-401-5-61,2014-01-01,"('2-s2.0-84903149862', 'Blair')",,61-65,,84903149862,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84903149862&origin=inward,Blair,Studies in Health Technology and Informatics,Compelling evidence that exposure therapy for PTSD normalizes brain function,Article,Blair,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84944675838,Stephen Sinclair;W. Craig Williams;Stuart F. White;R. J.R. Blair;Soonjo Hwang;Zachary T. Nolan,16,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84944675838&origin=inward,10.1016/j.nicl.2015.10.005,2015-01-01,"('2-s2.0-84944675838', 'Blair')",NIH,545-554,26640766.0,84944675838,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84944675838&origin=inward,Blair,NeuroImage: Clinical,Executive attention control and emotional responding in attention-deficit/hyperactivity disorder - A functional MRI study,Article,Blair,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84933679505,Harma Meffert;James R. Blair;Laura Blanken;Stuart F. White;Karina S. Blair,8,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84933679505&origin=inward,10.3389/fnhum.2013.00046,2013-02-05,"('2-s2.0-84933679505', 'Blair')",,,,84933679505,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84933679505&origin=inward,Blair,Frontiers in Human Neuroscience,The influence of valence and decision difficulty on selfreferential processing,Article,Blair,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84863897254,R. J.R. Blair,7,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84863897254&origin=inward,10.1176/appi.ajp.2012.12030396,2012-07-01,"('2-s2.0-84863897254', 'Blair')",,684-687,22760187.0,84863897254,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84863897254&origin=inward,Blair,American Journal of Psychiatry,Cortical thinning and functional connectivity in psychopathy,Editorial,Blair,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84933673781,James R. Blair;Jiongjiong Yang;Christopher Adalio;Stuart F. White;Alex Martin;Zachary T. Nolan,4,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84933673781&origin=inward,10.3389/fnhum.2014.00714,2014-09-11,"('2-s2.0-84933673781', 'Martin')",,,,84933673781,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84933673781&origin=inward,Martin,Frontiers in Human Neuroscience,The amygdala's response to face and emotional information and potential category-specific modulation of temporal cortex as a function of emotion,Article,Martin,NIMH +https://api.elsevier.com/content/abstract/scopus_id/77955067280,R. J.R. Blair,2,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77955067280&origin=inward,10.1348/000712610X512122,2010-08-01,"('2-s2.0-77955067280', 'Blair')",,407-410,20594400.0,77955067280,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77955067280&origin=inward,Blair,British Journal of Psychology,"Reactive aggression and functional, not neural, specificity",Article,Blair,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84958581839,Harma Meffert;James R. Blair;Gang Chen;Soonjo Hwang;Zachary T. Nolan,0,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84958581839&origin=inward,10.1016/j.dib.2016.02.011,2016-06-01,"('2-s2.0-84958581839', 'Blair')",NIMH,66-70,,84958581839,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84958581839&origin=inward,Blair,Data in Brief,BOLD data representing activation and connectivity for rare no-go versus frequent go cues,,Blair,NIMH +https://api.elsevier.com/content/abstract/scopus_id/14544293518,Stephen Fromm;Allen Braun;Anthony Boemio;David Poeppel,359,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=14544293518&origin=inward,10.1038/nn1409,2005-03-01,"('2-s2.0-14544293518', 'Blair')",NIH,389-395,15723061.0,14544293518,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=14544293518&origin=inward,Blair,Nature Neuroscience,Hierarchical and asymmetric temporal sensitivity in human auditory cortices,Article,Blair,NIMH +https://api.elsevier.com/content/abstract/scopus_id/16244371035,Grace Park;Stefan Kemeny;Carol Frattali;Jiang Xu;Allen Braun,290,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=16244371035&origin=inward,10.1016/j.neuroimage.2004.12.013,2005-04-15,"('2-s2.0-16244371035', 'Blair')",,1002-1015,15809000.0,16244371035,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=16244371035&origin=inward,Blair,NeuroImage,"Language in context: Emergent features of word, sentence, and narrative comprehension",Article,Blair,NIMH +https://api.elsevier.com/content/abstract/scopus_id/45949108217,Allen R. Braun;Charles J. Limb,331,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=45949108217&origin=inward,10.1371/journal.pone.0001679,2008-02-27,"('2-s2.0-45949108217', 'Blair')",,,18301756.0,45949108217,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=45949108217&origin=inward,Blair,PLoS ONE,Neural substrates of spontaneous musical performance: An fMRI study of jazz improvisation,Article,Blair,NIMH +https://api.elsevier.com/content/abstract/scopus_id/73949084794,Patrick J. Gannon;Jason F. Smith;Jiang Xu;Allen R. Braun;Karen Emmorey,153,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=73949084794&origin=inward,10.1073/pnas.0909197106,2009-12-08,"('2-s2.0-73949084794', 'Blair')",,20664-20669,19923436.0,73949084794,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=73949084794&origin=inward,Blair,Proceedings of the National Academy of Sciences of the United States of America,Symbolic gestures and spoken language are processed by a common neural system,Article,Blair,NIMH +https://api.elsevier.com/content/abstract/scopus_id/33747593338,Jonathan B. Fritz;Ricardo Gil-Da-Costa;Allen R. Braun;Alex Martin;Marco A. Lopes;Monica Mũoz,104,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33747593338&origin=inward,10.1038/nn1741,2006-08-01,"('2-s2.0-33747593338', 'Martin')",FRCT,1064-1070,16862150.0,33747593338,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33747593338&origin=inward,Martin,Nature Neuroscience,Species-specific calls activate homologs of Broca's and Wernicke's areas in the macaque,Article,Martin,NIMH +https://api.elsevier.com/content/abstract/scopus_id/77952037980,Dante Picchioni;Joe McArdle;Whitney Anne Postman-Caucheteux;Rasmus M. Birn;Allen R. Braun;Randall H. Pursley;Jeffrey M. Solomon;John A. Butman,114,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77952037980&origin=inward,10.1162/jocn.2009.21261,2010-06-01,"('2-s2.0-77952037980', 'Martin')",,1299-1318,19413476.0,77952037980,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77952037980&origin=inward,Martin,Journal of Cognitive Neuroscience,Single-trial fMRI shows contralesional activity linked to overt naming errors in chronic aphasic patients,Article,Martin,NIMH +https://api.elsevier.com/content/abstract/scopus_id/1842609633,B. Horwitz;A. R. Braun;M. A. Tagamets;F. T. Husain;S. J. Fromm,72,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=1842609633&origin=inward,10.1016/j.neuroimage.2003.11.012,2004-04-01,"('2-s2.0-1842609633', 'Horwitz')",NIDCD,1701-1720,15050592.0,1842609633,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=1842609633&origin=inward,Horwitz,NeuroImage,Relating neuronal dynamics for auditory object processing to neuroimaging activity: A computational modeling and an fMRI study,Article,Horwitz,NIDCD +https://api.elsevier.com/content/abstract/scopus_id/84870804382,Daniel A. Rizik-Baer;Katherine E. Swett;Yisheng Xu;Ho Ming Chow;Allen R. Braun;Michael G. Erkkinen;Michael W. Eagle;Siyuan Liu,95,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84870804382&origin=inward,10.1038/srep00834,2012-12-14,"('2-s2.0-84870804382', 'Horwitz')",NIH,,23155479.0,84870804382,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84870804382&origin=inward,Horwitz,Scientific Reports,Neural correlates of lyrical improvisation: An fMRI study of freestyle rap,Article,Horwitz,NIDCD +https://api.elsevier.com/content/abstract/scopus_id/14744281224,Frank Q. Ye;Stefan Kemeny;Allen R. Braun;Rasmus Birn,69,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=14744281224&origin=inward,10.1002/hbm.20078,2005-03-01,"('2-s2.0-14744281224', 'Horwitz')",,173-183,15486986.0,14744281224,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=14744281224&origin=inward,Horwitz,Human Brain Mapping,Comparison of continuous overt speech fMRI using BOLD and arterial spin labeling,Article,Horwitz,NIDCD +https://api.elsevier.com/content/abstract/scopus_id/84879298616,Dante Picchioni;Silvina G. Horovitz;Thomas J. Balkin;Walter S. Carr;Ho Ming Chow;Yisheng Xu;Allen R. Braun;Nate Coddington;Masaki Fukunaga;Jeff H. Duyn,70,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84879298616&origin=inward,10.1073/pnas.1217691110,2013-06-18,"('2-s2.0-84879298616', 'Duyn')",,10300-10305,23733938.0,84879298616,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84879298616&origin=inward,Duyn,Proceedings of the National Academy of Sciences of the United States of America,Rhythmic alternating patterns of brain activity distinguish rapid eye movement sleep from other states of consciousness,Article,Duyn,NINDS +https://api.elsevier.com/content/abstract/scopus_id/33646337862,Barry Horwitz;Fatima T. Husain;Lara A. Hosey;Allen R. Braun;Randall H. Pursley;Stephen J. Fromm,45,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33646337862&origin=inward,10.1002/hbm.20207,2006-08-01,"('2-s2.0-33646337862', 'Horwitz')",,636-651,16281285.0,33646337862,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33646337862&origin=inward,Horwitz,Human Brain Mapping,Neural bases of categorization of simple speech and nonspeech sounds,Article,Horwitz,NIDCD +https://api.elsevier.com/content/abstract/scopus_id/33644898132,Stefan Kemeny;Jiang Xu;Grace H. Park;Lara A. Hosey;Allen R. Braun;Carla M. Wettig,47,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33644898132&origin=inward,10.1093/cercor/bhj006,2006-04-01,"('2-s2.0-33644898132', 'Horwitz')",,587-595,16049190.0,33644898132,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33644898132&origin=inward,Horwitz,Cerebral Cortex,Temporal dissociation of early lexical access and articulation using a delayed naming task - An fMRI study,Article,Horwitz,NIDCD +https://api.elsevier.com/content/abstract/scopus_id/70349969798,Jiang Xu;Patrick Gannon;Susan Goldin-Meadow;Karen Emmorey;Allen Braun,45,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=70349969798&origin=inward,10.1016/j.neuroimage.2009.08.001,2010-01-01,"('2-s2.0-70349969798', 'Horwitz')",NIH,994-1005,19679192.0,70349969798,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=70349969798&origin=inward,Horwitz,NeuroImage,CNS activation and regional connectivity during pantomime observation: No engagement of the mirror neuron system for deaf signers,Article,Horwitz,NIDCD +https://api.elsevier.com/content/abstract/scopus_id/77955945045,Jed A. Meltzer;Robin J. Schafer;Allen R. Braun;Joseph J. McArdle,49,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77955945045&origin=inward,10.1093/cercor/bhp249,2010-08-01,"('2-s2.0-77955945045', 'Horwitz')",,1853-1864,19920058.0,77955945045,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77955945045&origin=inward,Horwitz,Cerebral Cortex,"Neural aspects of sentence comprehension: Syntactic complexity, reversibility, and reanalysis",Article,Horwitz,NIDCD +https://api.elsevier.com/content/abstract/scopus_id/0036303445,Andrei Sevostianov;Stephen Fromm;Barry Horwitz;Rihana Williams;Allen R. Braun;Vladimir Nechaev,36,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0036303445&origin=inward,10.1002/hbm.10037,2002-07-18,"('2-s2.0-0036303445', 'Horwitz')",,168-175,12112770.0,36303445,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0036303445&origin=inward,Horwitz,Human Brain Mapping,fMRI study comparing names versus pictures of objects,Article,Horwitz,NIDCD +https://api.elsevier.com/content/abstract/scopus_id/33645730628,Sherin Rouhani;Stefan Kemeny;Allen R. Braun;Charles J. Limb;Eric B. Ortigoza,35,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33645730628&origin=inward,10.1002/ar.a.20298,2006-04-01,"('2-s2.0-33645730628', 'Horwitz')",,382-389,16550585.0,33645730628,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33645730628&origin=inward,Horwitz,"Anatomical Record - Part A Discoveries in Molecular, Cellular, and Evolutionary Biology",Left hemispheric lateralization of brain activity during passive rhythm perception in musicians,Article,Horwitz,NIDCD +https://api.elsevier.com/content/abstract/scopus_id/79251616988,Dante Picchioni;Silvina G. Horovitz;Thomas J. Balkin;Jed A. Meltzer;Allen R. Braun;Walter S. Carr;Masaki Fukunaga;Jeff H. Duyn,37,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79251616988&origin=inward,10.1016/j.brainres.2010.12.035,2011-02-16,"('2-s2.0-79251616988', 'Duyn')",,63-72,21168395.0,79251616988,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79251616988&origin=inward,Duyn,Brain Research,Infraslow EEG oscillations organize large-scale cortical-subcortical interactions during sleep: A combined EEG/fMRI study,Article,Duyn,NINDS +https://api.elsevier.com/content/abstract/scopus_id/67449119154,Jed A. Meltzer;Allen R. Braun;Whitney A. Postman-Caucheteux;Joseph J. McArdle,34,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=67449119154&origin=inward,10.1016/j.neuroimage.2009.04.089,2009-08-15,"('2-s2.0-67449119154', 'Duyn')",NIDCD,745-755,19427907.0,67449119154,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=67449119154&origin=inward,Duyn,NeuroImage,Strategies for longitudinal neuroimaging studies of overt language production,Article,Duyn,NINDS +https://api.elsevier.com/content/abstract/scopus_id/0035987996,Andrei Sevostianov;Stephen Fromm;Barry Horwitz;Allen Braun;Vladimir Nechaev,31,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0035987996&origin=inward,10.1080/00207450290025671,2002-01-01,"('2-s2.0-0035987996', 'Horwitz')",,587-606,12325392.0,35987996,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0035987996&origin=inward,Horwitz,International Journal of Neuroscience,Effect of attention on central auditory processing: An fMRI study,Article,Horwitz,NIDCD +https://api.elsevier.com/content/abstract/scopus_id/58149199141,A. Braun;M. Mukherjee;P. Hauser;M. Boutla;A. J. Newman;D. Bavelier;S. Kemeny,31,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=58149199141&origin=inward,10.1093/cercor/bhm248,2008-10-01,"('2-s2.0-58149199141', 'Horwitz')",JSMF,2263-2274,18245041.0,58149199141,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=58149199141&origin=inward,Horwitz,Cerebral Cortex,"Encoding, rehearsal, and recall in signers and speakers: Shared network but differential engagement",Article,Horwitz,NIDCD +https://api.elsevier.com/content/abstract/scopus_id/84900857907,Jessica Carson;Nuria Y. AbdulSabur;Ho Ming Chow;Yisheng Xu;Allen R. Braun;Miranda Baxter;Siyuan Liu,34,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84900857907&origin=inward,10.1016/j.cortex.2014.01.017,2014-01-01,"('2-s2.0-84900857907', 'Horwitz')",NIDCD,107-127,24845161.0,84900857907,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84900857907&origin=inward,Horwitz,Cortex,Neural correlates and network connectivity underlying narrative production and comprehension: A combined fMRI and PET study,Article,Horwitz,NIDCD +https://api.elsevier.com/content/abstract/scopus_id/77953516605,Rasmus Birn;Allen Braun;Bruce A. Swett;Jose L. Contreras-Vidal,19,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77953516605&origin=inward,10.1152/jn.00449.2009,2010-06-01,"('2-s2.0-77953516605', 'Horwitz')",,3366-3377,20375250.0,77953516605,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77953516605&origin=inward,Horwitz,Journal of Neurophysiology,Neural substrates of graphomotor sequence learning: A combined fMRI and kinematic study,Article,Horwitz,NIDCD +https://api.elsevier.com/content/abstract/scopus_id/79953737154,Allen Braun;Karen Emmorey;Jiang Xu,17,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79953737154&origin=inward,10.1016/j.bandl.2010.10.003,2011-04-01,"('2-s2.0-79953737154', 'Horwitz')",NIDCD,34-38,21094525.0,79953737154,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79953737154&origin=inward,Horwitz,Brain and Language,Neural responses to meaningless pseudosigns: Evidence for sign-based phonetic processing in superior temporal cortex,Article,Horwitz,NIDCD +https://api.elsevier.com/content/abstract/scopus_id/84877838200,Jennifer Ryder;Jed A. Meltzer;Allen R. Braun;Suraji Wagage;Beth Solomon,14,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84877838200&origin=inward,10.1016/j.neuropsychologia.2013.03.007,2013-06-01,"('2-s2.0-84877838200', 'Horwitz')",NIDCD,1248-1259,23566891.0,84877838200,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84877838200&origin=inward,Horwitz,Neuropsychologia,Adaptive significance of right hemisphere activation in aphasic language comprehension,Article,Horwitz,NIDCD +https://api.elsevier.com/content/abstract/scopus_id/84907500432,Govind S. Mattay;Nuria Y. AbdulSabur;Ho Ming Chow;Yisheng Xu;Allen R. Braun;Yunxia Tong;Siyuan Liu,15,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84907500432&origin=inward,10.1016/j.neuroimage.2014.09.013,2014-12-01,"('2-s2.0-84907500432', 'Horwitz')",NIH,33-47,25225001.0,84907500432,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84907500432&origin=inward,Horwitz,NeuroImage,Denoising the speaking brain: Toward a robust technique for correcting artifact-contaminated fMRI data under severe motion,Article,Horwitz,NIDCD +https://api.elsevier.com/content/abstract/scopus_id/67349168707,Debra J. Patkin;Barry Horwitz;Fatima T. Husain;Allen R. Braun;Hung Thai-Van,9,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=67349168707&origin=inward,10.1016/j.brainres.2009.04.034,2009-06-18,"('2-s2.0-67349168707', 'Horwitz')",,140-150,19397900.0,67349168707,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=67349168707&origin=inward,Horwitz,Brain Research,Distinguishing the processing of gestures from signs in deaf individuals: An fMRI study,Article,Horwitz,NIDCD +https://api.elsevier.com/content/abstract/scopus_id/84933674816,Michelle E. Costanzo;Stefan Kemeny;Jiang Xu;Allen R. Braun;Bruce Swett;Vladimir Nechaev;Joseph J. McArdle,8,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84933674816&origin=inward,10.3389/fnhum.2013.00293,2013-06-03,"('2-s2.0-84933674816', 'Horwitz')",,,,84933674816,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84933674816&origin=inward,Horwitz,Frontiers in Human Neuroscience,Spatial and temporal features of superordinate semantic processing studied with fMRI and EEG,Article,Horwitz,NIDCD +https://api.elsevier.com/content/abstract/scopus_id/84891871099,Grace Park;Siyuan Liu;Therese Kling;Allen Braun;Jeffrey Solomon;Yasmeen Faroqi-Shah,9,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84891871099&origin=inward,10.1080/02687038.2013.853023,2014-01-01,"('2-s2.0-84891871099', 'Horwitz')",,258-277,,84891871099,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84891871099&origin=inward,Horwitz,Aphasiology,Lesion analysis of language production deficits in aphasia,Article,Horwitz,NIDCD +https://api.elsevier.com/content/abstract/scopus_id/84925061170,Raymond A. Mar;Ho Ming Chow;Yisheng Xu;Allen R. Braun;Siyuan Liu;Suraji Wagage,10,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84925061170&origin=inward,10.1002/hbm.22718,2015-04-01,"('2-s2.0-84925061170', 'Horwitz')",,1494-1505,25545633.0,84925061170,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84925061170&origin=inward,Horwitz,Human Brain Mapping,Personal experience with narrated events modulates functional connectivity within visual and motor systems during story comprehension,Article,Horwitz,NIDCD +https://api.elsevier.com/content/abstract/scopus_id/58149528283,Stefan Kemeny;Barry Horwitz;Fatima T. Husain;Jiang Xu;Allen R. Braun;Antonio Ulloa,5,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=58149528283&origin=inward,10.1142/S021963520800199X,2008-12-01,"('2-s2.0-58149528283', 'Horwitz')",,501-527,19132798.0,58149528283,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=58149528283&origin=inward,Horwitz,Journal of Integrative Neuroscience,Neural mechanisms of auditory discrimination of long-duration tonal patterns: A neural modeling and FMRI study,Article,Horwitz,NIDCD +https://api.elsevier.com/content/abstract/scopus_id/84928121502,Jed A. Meltzer;Allen R. Braun;Ron K.O. Chu,9,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84928121502&origin=inward,10.1016/j.nicl.2015.03.019,2015-01-01,"('2-s2.0-84928121502', 'Horwitz')",HSF,157-169,26106540.0,84928121502,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84928121502&origin=inward,Horwitz,NeuroImage: Clinical,MEG-based detection and localization of perilesional dysfunction in chronic stroke,Article,Horwitz,NIDCD +https://api.elsevier.com/content/abstract/scopus_id/0037378803,Leonardo G. Cohen;Silke Anders;Martin Lotze;Christoph Braun;Niels Birbaumer,443,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0037378803&origin=inward,10.1093/brain/awg079,2003-04-01,"('2-s2.0-0037378803', 'Cohen')",DFG,866-872,12615644.0,37378803,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0037378803&origin=inward,Cohen,Brain,Motor learning elicited by voluntary drive,Article,Cohen,NINDS +https://api.elsevier.com/content/abstract/scopus_id/41249093155,Leonardo G. Cohen;Tyler Ard;Surjo Soekadar;Alissa Fourkas;Cornelia Weber;Jurgen Mellinger;Christoph Braun;Michael A. Dimyan;Ethan Buch;Niels Birbaumer;Andrea Caria,391,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=41249093155&origin=inward,10.1161/STROKEAHA.107.505313,2008-01-01,"('2-s2.0-41249093155', 'Cohen')",,910-917,18258825.0,41249093155,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=41249093155&origin=inward,Cohen,Stroke,Think to move: A neuromagnetic brain-computer interface (BCI) system for chronic stroke,Article,Cohen,NINDS +https://api.elsevier.com/content/abstract/scopus_id/0141870057,Leonardo G. Cohen;Adriana B. Conforto;Mark Hallett;Nadja Kadom;Konrad J. Werhahn,205,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0141870057&origin=inward,10.1002/ana.10686,2003-10-01,"('2-s2.0-0141870057', 'Hallett')",,464-472,14520658.0,141870057,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0141870057&origin=inward,Hallett,Annals of Neurology,Contribution of the ipsilateral motor cortex to recovery after chronic stroke,Article,Hallett,NINDS +https://api.elsevier.com/content/abstract/scopus_id/0034072443,Babak Boroojerdi;Leonardo G. Cohen;Brian Corwell;Fortunato Battaglia;Khalaf O. Bushara;Ilka Immisch;Wolf Muellbacher,174,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0034072443&origin=inward,10.1093/cercor/10.5.529,2000-01-01,"('2-s2.0-0034072443', 'Cohen')",,529-534,10847602.0,34072443,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0034072443&origin=inward,Cohen,Cerebral Cortex,Enhanced excitability of the human visual cortex induced by short-term light deprivation,Article,Cohen,NINDS +https://api.elsevier.com/content/abstract/scopus_id/8144223995,Joan Ohayon;Leonardo G. Cohen;Joseph Frank;Katrin Morgen;Alessandro Tessitore;Lumy Sawaki;Henry McFarland;Roland Martin;Nadja Kadom,95,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=8144223995&origin=inward,10.1093/brain/awh266,2004-01-01,"('2-s2.0-8144223995', 'McFarland')",,2506-2517,15456705.0,8144223995,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=8144223995&origin=inward,McFarland,Brain,Training-dependent plasticity in patients with multiple sclerosis,Article,McFarland,NINDS +https://api.elsevier.com/content/abstract/scopus_id/24944493256,Leonardo G. Cohen;Carolyn W.H. Wu;Peter Van Gelderen;Takashi Hanakawa;Zaneb Yaseen,81,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=24944493256&origin=inward,10.1016/j.neuroimage.2005.05.055,2005-10-01,"('2-s2.0-24944493256', 'Cohen')",,872-884,16084740.0,24944493256,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=24944493256&origin=inward,Cohen,NeuroImage,Enduring representational plasticity after somatosensory stimulation,Article,Cohen,NINDS +https://api.elsevier.com/content/abstract/scopus_id/35548961930,M. A. Perez;D. T. Willingham;N. Sadato;S. Tanaka;L. G. Cohen;H. C. Tanabe;S. P. Wise,93,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=35548961930&origin=inward,10.1016/j.cub.2007.09.058,2007-11-06,"('2-s2.0-35548961930', 'Cohen')",,1896-1902,17964167.0,35548961930,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=35548961930&origin=inward,Cohen,Current Biology,Neural Substrates of Intermanual Transfer of a Newly Acquired Motor Skill,Article,Cohen,NINDS +https://api.elsevier.com/content/abstract/scopus_id/69249147388,Benjamin Xu;Leonardo G. Cohen;Herta Flor;Michael Schaefer,83,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=69249147388&origin=inward,10.1002/hbm.20701,2009-09-15,"('2-s2.0-69249147388', 'Cohen')",,2722-2730,19172650.0,69249147388,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=69249147388&origin=inward,Cohen,Human Brain Mapping,Effects of different viewing perspectives on somatosensory activations during observation of touch,Article,Cohen,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84857227822,Leonardo G. Cohen;Ethan R. Buch;Cornelia Weber;Alissa D. Fourkas;Amirali Modir Shanechi;Niels Birbaumer,83,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84857227822&origin=inward,10.1093/brain/awr331,2012-01-01,"('2-s2.0-84857227822', 'Cohen')",,596-614,,84857227822,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84857227822&origin=inward,Cohen,Brain,Parietofrontal integrity determines neural modulation associated with grasping imagery after stroke,Article,Cohen,NINDS +https://api.elsevier.com/content/abstract/scopus_id/0037307528,H. Topka;W. Grodd;M. Lotze;L. G. Cohen;M. Erb;R. J. Kaethner,65,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0037307528&origin=inward,10.1016/s1388-2457(02)00380-2,2003-02-01,"('2-s2.0-0037307528', 'Cohen')",,306-312,12559238.0,37307528,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0037307528&origin=inward,Cohen,Clinical Neurophysiology,Comparison of representational maps using functional magnetic resonance imaging and transcranial magnetic stimulation,Article,Cohen,NINDS +https://api.elsevier.com/content/abstract/scopus_id/33747389805,Bruce Dobkin;Leonardo G. Cohen;Timea Hodics;Benjamin Xu;Joseph Hidler,43,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33747389805&origin=inward,10.1016/j.jneumeth.2006.01.016,2006-09-15,"('2-s2.0-33747389805', 'Cohen')",USAMRAA,300-307,16490258.0,33747389805,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33747389805&origin=inward,Cohen,Journal of Neuroscience Methods,MR compatible force sensing system for real-time monitoring of wrist moments during fMRI testing,Article,Cohen,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84891823186,Silvina G. Horovitz;Nitzan Censor;Leonardo G. Cohen,35,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84891823186&origin=inward,10.1016/j.neuron.2013.10.042,2014-01-08,"('2-s2.0-84891823186', 'Cohen')",NINDS,69-76,24411732.0,84891823186,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84891823186&origin=inward,Cohen,Neuron,Interference with Existing Memories Alters Offline Intrinsic Functional Brain Connectivity,Article,Cohen,NINDS +https://api.elsevier.com/content/abstract/scopus_id/32244437609,P. W. Schönle;W. Grodd;B. Kardatzki;E. Gut;Martin Lotze;L. G. Cohen;F. A. Rodden,25,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=32244437609&origin=inward,10.1177/1545968305282919,2006-03-01,"('2-s2.0-32244437609', 'Cohen')",,14-23,16467275.0,32244437609,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=32244437609&origin=inward,Cohen,Neurorehabilitation and Neural Repair,Neuroimaging patterns associated with motor control in traumatic brain injury,Article,Cohen,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84862857617,Ethan R. Buch;Sunbin Song;Nikhil Sharma;Leonardo G. Cohen,27,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84862857617&origin=inward,10.1093/cercor/bhr247,2012-07-01,"('2-s2.0-84862857617', 'Cohen')",NIH,1671-1677,21914632.0,84862857617,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84862857617&origin=inward,Cohen,Cerebral Cortex,White matter microstructural correlates of superior long-term skill gained implicitly under randomized practice,Article,Cohen,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84969262338,Pierre Nicolo;Leonardo G. Cohen;Armin Schnider;Adrian G. Guggisberg;Ethan R. Buch;Sviatlana Rizk,29,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84969262338&origin=inward,10.1212/WNL.0000000000002675,2016-05-17,"('2-s2.0-84969262338', 'Cohen')",,1924-1925,27164664.0,84969262338,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84969262338&origin=inward,Cohen,Neurology,Predicting motor improvement after stroke with clinical assessment and diffusion tensor imaging,Short Survey,Cohen,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84978113405,Ranganatha Sitaram;Leonardo G. Cohen;Marcos Fortunato De Barros Filho;Mohit Rana;Surjo R. Soekadar;Sook Lei Liew;Niels Birbaumer;Sonja Cornelsen,41,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84978113405&origin=inward,10.1177/1545968315619699,2016-08-01,"('2-s2.0-84978113405', 'Cohen')",,671-675,26671217.0,84978113405,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84978113405&origin=inward,Cohen,Neurorehabilitation and Neural Repair,Improving Motor Corticothalamic Communication after Stroke Using Real-Time fMRI Connectivity-Based Neurofeedback,Article,Cohen,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84982947783,Leonardo G. Cohen;Joelle E. Sarlls;Barry Horwitz;Jason F. Smith;Benjamin Xu;Wen Tung Wang;Marco Sandrini;John A. Butman;Oluwole Awosika,13,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84982947783&origin=inward,10.1002/hbm.23236,2016-09-01,"('2-s2.0-84982947783', 'Horwitz')",NIDCD,3236-3249,27144466.0,84982947783,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84982947783&origin=inward,Horwitz,Human Brain Mapping,PreSMA stimulation changes task-free functional connectivity in the fronto-basal-ganglia that correlates with response inhibition efficiency,Article,Horwitz,NIDCD +https://api.elsevier.com/content/abstract/scopus_id/84914693457,Leonardo G. Cohen;Bruno B. Averbeck;Eran Dayan;Janne M. Hamann,12,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84914693457&origin=inward,10.1523/JNEUROSCI.3141-14.2014,2014-12-03,"('2-s2.0-84914693457', 'Cohen')",NIH,16433-16441,25471581.0,84914693457,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84914693457&origin=inward,Cohen,Journal of Neuroscience,Brain structural substrates of reward dependence during behavioral performance,Article,Cohen,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84933511306,Stephen J. Gotts;Sunbin Song;Eran Dayan;Leonardo G. Cohen,11,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84933511306&origin=inward,10.1162/jocn_a_00796,2015-08-29,"('2-s2.0-84933511306', 'Cohen')",NIH,1503-1512,25761004.0,84933511306,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84933511306&origin=inward,Cohen,Journal of Cognitive Neuroscience,Practice structure improves unconscious transitional memories by increasing synchrony in a premotor network,Article,Cohen,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84988418840,Karim Nader;Nitzan Censor;Leonardo G. Cohen;Ethan R. Buch,9,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84988418840&origin=inward,10.1093/cercor/bhv180,2016-09-01,"('2-s2.0-84988418840', 'Cohen')",,3828-3837,26271110.0,84988418840,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84988418840&origin=inward,Cohen,Cerebral Cortex,Altered human memory modification in the presence of normal consolidation,Article,Cohen,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84911456053,Leonardo G. Cohen;Eran Dayan;Janne M. Hamann;Friedhelm C. Hummel,11,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84911456053&origin=inward,10.1002/hbm.22594,2014-01-01,"('2-s2.0-84911456053', 'Cohen')",NIH,5921-5931,25078102.0,84911456053,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84911456053&origin=inward,Cohen,Human Brain Mapping,Baseline frontostriatal-limbic connectivity predicts reward-based memory formation,Article,Cohen,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84985946996,Ethan R. Buch;Ryan M. Thompson;Leonardo G. Cohen;Eran Dayan,1,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84985946996&origin=inward,10.1016/j.clinph.2016.08.011,2016-10-01,"('2-s2.0-84985946996', 'Cohen')",NINDS,3341-3342,27614003.0,84985946996,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84985946996&origin=inward,Cohen,Clinical Neurophysiology,3D-printed head models for navigated non-invasive brain stimulation,Letter,Cohen,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84989636431,Leonardo G. Cohen;Lewis Sudarsky;Mark Hallett,1,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84989636431&origin=inward,10.1002/mds.870020311,1987-01-01,"('2-s2.0-84989636431', 'Cohen')",,224-225,,84989636431,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84989636431&origin=inward,Cohen,Movement Disorders,"A single family with writer's cramp, essential tremor, and primary writing tremor",Erratum,Cohen,NINDS +https://api.elsevier.com/content/abstract/scopus_id/33846877408,Toni Tumonis;Jun Shen;Wayne C. Drevets;Noah Meyers;Jan Willem Van Der Veen;Gregor Hasler,528,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33846877408&origin=inward,10.1001/archpsyc.64.2.193,2007-02-01,"('2-s2.0-33846877408', 'Cohen')",,193-200,17283286.0,33846877408,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33846877408&origin=inward,Cohen,Archives of General Psychiatry,Reduced prefrontal glutamate/glutamine and γ-aminobutyric acid levels in major depression determined using proton magnetic resonance spectroscopy,Article,Cohen,NINDS +https://api.elsevier.com/content/abstract/scopus_id/78149330930,Maura L. Furey;Wayne C. Drevets;Teresa A. Victor;Stephen J. Fromm;Arne Öhman,256,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=78149330930&origin=inward,10.1001/archgenpsychiatry.2010.144,2010-11-01,"('2-s2.0-78149330930', 'Cohen')",,1128-1138,21041614.0,78149330930,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=78149330930&origin=inward,Cohen,Archives of General Psychiatry,Relationship between amygdala responses to masked faces and mood state and treatment in major depressive disorder,Article,Cohen,NINDS +https://api.elsevier.com/content/abstract/scopus_id/3543136066,Markus Schwarz;Earle E. Bain;Alexander Neumeister;Peter Herscovitch;Wayne C. Drevets;Omer Bonne;David A. Luckenbaugh;Dennis S. Charney;Allison C. Nugent;Tracy Waldeck;Marilla Geraci,217,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=3543136066&origin=inward,10.1001/archpsyc.61.8.765,2004-08-01,"('2-s2.0-3543136066', 'Nugent')",,765-773,15289275.0,3543136066,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=3543136066&origin=inward,Nugent,Archives of General Psychiatry,Neural and behavioral responses to tryptophan depletion in unmedicated patients with remitted major depressive disorder and controls,Article,Nugent,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84899930958,Martin Alda;Barbara Franke;David G. Brohawn;Nicholas G. Martin;Peter T. Fox;Christopher R.K. Ching;Kazima Bulayeva;Benedicto Crespo-Facorro;Nicola J. Armstrong;Jason L. Stein;Roberto Toro;Jan Buitelaar;Han G. Brunner;Eco J.C. de Geus;Michael Bauer;Randy L. Gollub;Saud Alhusaini;Giovanni Coppola;Joanne E. Curran;Gianpiero L. Cavalleri;Eva Maria Frey;Derrek P. Hibar;Beata Godlewska;Liana G. Apostolova;Nancy C. Andreasen;Vincent Frouin;Thomas Frodl;Dara M. Cannon;Hongwei Dong;Margaret J. Wright;Louise Emsell;Rita M. Cantor;Ole A. Andreassen;Sudheer Giddaluru;Giuseppe Delvecchio;Chantal Depondt;Clyde Francks;Sven Cichon;Stefan Ehrlich;Susanne Erk;Vince D. Calhoun;Kiki D. Chang;Srdjan Djurovic;Guillén Fernández;Tom Booth;Rachel M. Brouwer;Jorge Almeida;Patricia Conrod;Gary Donohoe;Anouk den Braber;Kathryn Alpert;Erlend Bøen;Torbjørn Elvsåshagen;Carrie E. Bearden;Janita Bralten;Melanie A. Carless;Rali Dimitrova;Ørjan Bergmann;Dorret I. Boomsma;Alejandro Arias Vasquez;David C. Glahn;M. Mallar Chakravarty;Greig I. de Zubicaray;Danai Dima;Gunter Schumann;Catherine Bois;Ingrid Agartz;Paul M. Thompson;Miguel E. Renteria;Ian J. Deary;Rita Z. Goldstein;Carl Johan Ekman;Iryna Fedko;Ravindranath Duggirala;Benjamin Aribisala;Neda Jahanshad;Vincent P. Clark;Tatiana Foroud;Sarah E. Medland;Simon E. Fisher;Scott Fears;Xavier Caseras;Thomas D. Dyer;Jesen Fagerness;Elisabeth B. Binder;Lieuwe de Haan;Randy L. Buckner;Henry J. Bockholt;Sophia Frangou;Juan R. Bustillo;Michael Czisch;Katja Appel;John Blangero;Hans J. Grabe;Hugh Garavan;Andrea Christoforou;Thomas Espeseth;Ian J. Bowman;Mark E. Bastin;Laura Almasy,338,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84899930958&origin=inward,10.1007/s11682-013-9269-5,2014-01-01,"('2-s2.0-84899930958', 'Nugent')",ADNI,153-182,24399358.0,84899930958,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84899930958&origin=inward,Nugent,Brain Imaging and Behavior,The ENIGMA Consortium: Large-scale collaborative analyses of neuroimaging and genetic data,Article,Nugent,NIMH +https://api.elsevier.com/content/abstract/scopus_id/16844385523,Earle E. Bain;Alexander Neumeister;Wayne C. Drevets;Theresa Young;Omer Bonne;David A. Luckenbaugh;Suzanne Wood;Dennis S. Charney;Allison C. Nugent,208,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=16844385523&origin=inward,10.1016/j.biopsych.2005.01.016,2005-04-15,"('2-s2.0-16844385523', 'Nugent')",,935-937,15820716.0,16844385523,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=16844385523&origin=inward,Nugent,Biological Psychiatry,"Reduced hippocampal volume in unmedicated, remitted patients with major depression versus control subjects",Article,Nugent,NIMH +https://api.elsevier.com/content/abstract/scopus_id/34748836926,Denise Rollis;Wayne C. Drevets;Masanori Ichise;Shilpa K. Gandhi;Husseini K. Manji;Dennis S. Charney;Dara M. Cannon;Jacqueline M. Klaver,175,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34748836926&origin=inward,10.1016/j.biopsych.2007.03.016,2007-10-15,"('2-s2.0-34748836926', 'Nugent')",,870-877,17678634.0,34748836926,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34748836926&origin=inward,Nugent,Biological Psychiatry,Elevated Serotonin Transporter Binding in Major Depressive Disorder Assessed Using Positron Emission Tomography and [11C]DASB; Comparison with Bipolar Disorder,Article,Nugent,NIMH +https://api.elsevier.com/content/abstract/scopus_id/33645131763,Carlos A. Zarate;Earle E. Bain;Sean Marrett;Wayne C. Drevets;Linda Mah;Allison C. Nugent;Dara M. Cannon;Michael P. Milham;Joseph L. Price;Daniel S. Pine,156,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33645131763&origin=inward,10.1016/j.neuroimage.2005.09.029,2006-04-01,"('2-s2.0-33645131763', 'Nugent')",NIH,485-497,16256376.0,33645131763,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33645131763&origin=inward,Nugent,NeuroImage,Cortical abnormalities in bipolar disorder investigated with MRI and voxel-based morphometry,Article,Nugent,NIMH +https://api.elsevier.com/content/abstract/scopus_id/48749096220,Maura L. Furey;Wayne C. Drevets;Luke Clark;Joana V. Taylor Tavares;Guy B. Williams;Barbara J. Sahakian,150,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=48749096220&origin=inward,10.1016/j.neuroimage.2008.05.049,2008-09-01,"('2-s2.0-48749096220', 'Nugent')",WT,1118-1126,18586109.0,48749096220,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=48749096220&origin=inward,Nugent,NeuroImage,Neural basis of abnormal response to negative feedback in unmedicated mood disorders,Article,Nugent,NIMH +https://api.elsevier.com/content/abstract/scopus_id/33748290041,Markus Schwarz;Alexander Neumeister;Peter Herscovitch;Wayne C. Drevets;Omer Bonne;David A. Luckenbaugh;Xian Zhang Hu;David Goldman;Dennis S. Charney;Allison C. Nugent,125,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33748290041&origin=inward,10.1001/archpsyc.63.9.978,2006-09-11,"('2-s2.0-33748290041', 'Nugent')",,978-986,16953000.0,33748290041,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33748290041&origin=inward,Nugent,Archives of General Psychiatry,Differential effects of 5-HTTLPR genotypes on the behavioral and neural responses to tryptophan depletion in patients with major depression and controls,Article,Nugent,NIMH +https://api.elsevier.com/content/abstract/scopus_id/33746218062,Denise Rollis;Wayne C. Drevets;Masanori Ichise;Shilpa K. Gandhi;Jacqueline M. Klaver;Husseini K. Manji;Dennis S. Charney;Allison C. Nugent;Dara M. Cannon;Stephen J. Fromm,128,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33746218062&origin=inward,10.1016/j.biopsych.2006.05.005,2006-08-01,"('2-s2.0-33746218062', 'Nugent')",NIH,207-217,16875929.0,33746218062,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33746218062&origin=inward,Nugent,Biological Psychiatry,Serotonin Transporter Binding in Bipolar Disorder Assessed using [11C]DASB and Positron Emission Tomography,Article,Nugent,NIMH +https://api.elsevier.com/content/abstract/scopus_id/79958139969,Steven P. Wise;Elisabeth A. Murray;Wayne C. Drevets,125,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79958139969&origin=inward,10.1016/j.biopsych.2010.09.041,2011-06-15,"('2-s2.0-79958139969', 'Murray')",NIMH,,21111403.0,79958139969,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79958139969&origin=inward,Murray,Biological Psychiatry,Localization of dysfunction in major depressive disorder: Prefrontal cortex and amygdala,Review,Murray,NIMH +https://api.elsevier.com/content/abstract/scopus_id/78650929772,Carlos A. Zarate;Herve Lemaitre;Giacomo Salvadore;Alexander Neumeister;Wayne C. Drevets;Ruth Tinsley;David A. Luckenbaugh;Allison C. Nugent;Dara M. Cannon,101,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=78650929772&origin=inward,10.1016/j.neuroimage.2010.11.011,2011-02-14,"('2-s2.0-78650929772', 'Nugent')",NIMH,2643-2651,21073959.0,78650929772,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=78650929772&origin=inward,Nugent,NeuroImage,Prefrontal cortical abnormalities in currently depressed versus currently remitted patients with major depressive disorder,Article,Nugent,NIMH +https://api.elsevier.com/content/abstract/scopus_id/79151474290,Carlos A. Zarate;Jonathan P. Roiser;Fritz Henn;Wendy Bogers;Jonathan B. Savitz;Earle E. Bain;Alexander Neumeister;Wayne C. Drevets;Dennis S. Charney;Allison C. Nugent;Husseini K. Manji;Sean Marrett;Dara M. Cannon,100,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79151474290&origin=inward,10.1016/j.biopsych.2010.09.027,2011-02-15,"('2-s2.0-79151474290', 'Nugent')",NIH,336-343,21094939.0,79151474290,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79151474290&origin=inward,Nugent,Biological Psychiatry,Habenula volume in bipolar disorder and major depressive disorder: A high-resolution magnetic resonance imaging study,Article,Nugent,NIMH +https://api.elsevier.com/content/abstract/scopus_id/29044439012,Toni Tumonis;Earle E. Bain;Alexander Neumeister;Jun Shen;Wayne C. Drevets;Jan Willem Van Der Veen;Dennis S. Charney;Gregor Hasler,93,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=29044439012&origin=inward,10.1016/j.biopsych.2005.05.017,2005-12-15,"('2-s2.0-29044439012', 'Nugent')",,969-973,16043137.0,29044439012,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=29044439012&origin=inward,Nugent,Biological Psychiatry,Normal prefrontal gamma-aminobutyric acid levels in remitted depressed subjects determined by proton magnetic resonance spectroscopy,Article,Nugent,NIMH +https://api.elsevier.com/content/abstract/scopus_id/68049127793,Jonathan P. Roiser;S. Lalith Talagala;Jamey Levy;Wayne C. Drevets;Fritz A. Henn;Allison C. Nugent;Gregor Hasler;Stephen J. Fromm;Barbara J. Sahakian,79,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=68049127793&origin=inward,10.1016/j.biopsych.2009.05.002,2009-09-01,"('2-s2.0-68049127793', 'Nugent')",NIH,441-450,19539268.0,68049127793,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=68049127793&origin=inward,Nugent,Biological Psychiatry,The Effects of Tryptophan Depletion on Neural Responses to Emotional Words in Remitted Depression,Article,Nugent,NIMH +https://api.elsevier.com/content/abstract/scopus_id/33746310877,Alexander Neumeister;Wayne C. Drevets;Peter Herscovitch;Omer Bonne;David A. Luckenbaugh;Dennis S. Charney;Shannan Henry;David Goldman;Inna Belfer,76,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33746310877&origin=inward,10.1038/sj.npp.1301010,2006-08-09,"('2-s2.0-33746310877', 'Nugent')",,1750-1756,16407897.0,33746310877,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33746310877&origin=inward,Nugent,Neuropsychopharmacology,Effects of a α2C-adrenoreceptor gene polymorphism on neural responses to facial expressions in depression,Article,Nugent,NIMH +https://api.elsevier.com/content/abstract/scopus_id/73749084524,Rebecca Sills;Wendy Bogers;Earle E. Bain;Sean Marrett;Wayne C. Drevets;David A. Luckenbaugh;Alice Liu;Jonathan Savitz;Dennis S. Charney;Allison C. Nugent;Husseini K. Manji;Joseph L. Price;Dara M. Cannon;Carlos Zarate,76,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=73749084524&origin=inward,10.1016/j.neuroimage.2009.11.025,2010-02-15,"('2-s2.0-73749084524', 'Nugent')",,2966-2976,19931399.0,73749084524,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=73749084524&origin=inward,Nugent,NeuroImage,Amygdala volume in depressed patients with bipolar disorder assessed using high resolution 3T MRI: The impact of medication,Article,Nugent,NIMH +https://api.elsevier.com/content/abstract/scopus_id/33745712727,Shilpa Gandhi;Joan Williams;Richard E. Carson;Denise Rollis;Wayne C. Drevets;Michele Drevets;William C. Eckelman;Allison C. Nugent;Dara M. Cannon;Dale O. Kiesewetter;Gerardo Solorio,73,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33745712727&origin=inward,10.1001/archpsyc.63.7.741,2006-07-12,"('2-s2.0-33745712727', 'Nugent')",,741-747,16818863.0,33745712727,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33745712727&origin=inward,Nugent,Archives of General Psychiatry,Reduced muscarinic type 2 receptor binding in subjects with bipolar disorder,Article,Nugent,NIMH +https://api.elsevier.com/content/abstract/scopus_id/62349134479,Summer A. Peck;Wayne C. Drevets;Kristine Erickson;Denise Rallis-Voak;Dara M. Cannon;Jacqueline M. Klaver,73,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=62349134479&origin=inward,10.1038/npp.2008.194,2009-04-01,"('2-s2.0-62349134479', 'Nugent')",,1277-1287,18946469.0,62349134479,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=62349134479&origin=inward,Nugent,Neuropsychopharmacology,Dopamine type-1 receptor binding in major depressive disorder assessed using positron emission tomography and [11C]NNC-112,Article,Nugent,NIMH +https://api.elsevier.com/content/abstract/scopus_id/13444278544,Earle Bain;Alexander Neumeister;Richard E. Carson;William Eckelman;Peter Herscovitch;Wayne C. Drevets;Omer Bonne;David A. Luckenbaugh;Dennis S. Charney;Allison C. Nugent;Meena Vythilingam,59,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=13444278544&origin=inward,10.1176/appi.ajp.162.2.383,2005-02-01,"('2-s2.0-13444278544', 'Nugent')",,383-385,15677606.0,13444278544,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=13444278544&origin=inward,Nugent,American Journal of Psychiatry,No change in serotonin type 1A receptor binding in patients with posttraumatic stress disorder,Article,Nugent,NIMH +https://api.elsevier.com/content/abstract/scopus_id/77958001705,Ashish Khanna;Maura L. Furey;Elana M. Hoffman;Wayne C. Drevets,76,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77958001705&origin=inward,10.1038/npp.2010.131,2010-11-01,"('2-s2.0-77958001705', 'Nugent')",,2479-2488,20736989.0,77958001705,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77958001705&origin=inward,Nugent,Neuropsychopharmacology,Scopolamine produces larger antidepressant and antianxiety effects in women than in men,Article,Nugent,NIMH +https://api.elsevier.com/content/abstract/scopus_id/62149122946,Eric E. Nelson;Wayne Drevets;Monique Ernst;Dennis S. Charney;Gary Hazlett;Matthew Scaramozza;Tracy Waldeck;Meena Vythilingam;Daniel S. Pine;Steven M. Southwick,58,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=62149122946&origin=inward,10.1016/j.pscychresns.2008.06.008,2009-04-30,"('2-s2.0-62149122946', 'Pine')",NIH,75-77,19243926.0,62149122946,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=62149122946&origin=inward,Pine,Psychiatry Research - Neuroimaging,Reward circuitry in resilience to severe trauma: An fMRI investigation of resilient special forces soldiers,Article,Pine,NIMH +https://api.elsevier.com/content/abstract/scopus_id/79955549915,Peter Herscovitch;Richard E. Carson;Wayne C. Drevets;Krystle Barhaghi;Chantal Martin-Soelch;Allison Nugent;Joanna Szczepanik;Denise Rallis,61,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79955549915&origin=inward,10.1111/j.1460-9568.2011.07642.x,2011-05-01,"('2-s2.0-79955549915', 'Nugent')",,1706-1715,21453423.0,79955549915,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79955549915&origin=inward,Nugent,European Journal of Neuroscience,Lateralization and gender differences in the dopaminergic response to unpredictable reward in the human ventral striatum,Article,Nugent,NIMH +https://api.elsevier.com/content/abstract/scopus_id/58149301402,Jun Shen;Wayne C. Drevets;Jan Willem van der Veen;Daniel Pine;Gregor Hasler;Marilla Geraci,41,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=58149301402&origin=inward,10.1016/j.biopsych.2008.06.023,2009-02-01,"('2-s2.0-58149301402', 'Pine')",,273-275,18692172.0,58149301402,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=58149301402&origin=inward,Pine,Biological Psychiatry,Prefrontal Cortical Gamma-Aminobutyric Acid Levels in Panic Disorder Determined by Proton Magnetic Resonance Spectroscopy,Article,Pine,NIMH +https://api.elsevier.com/content/abstract/scopus_id/78650172495,Allison Carol Nugent;Earle Eugene Bain;Julian Francis Thayer;Wayne Curtis Drevets;John James Sollers,30,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=78650172495&origin=inward,10.1016/j.pscychresns.2010.08.013,2011-01-30,"('2-s2.0-78650172495', 'Nugent')",,1-8,21129936.0,78650172495,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=78650172495&origin=inward,Nugent,Psychiatry Research - Neuroimaging,Heart rate variability during motor and cognitive tasks in females with major depressive disorder,Article,Nugent,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84876454339,Jacco A. de Zwart;J. Martijn Jansma;Maura L. Furey;Wayne C. Drevets;Peter van Gelderen;Jeff H. Duyn,7,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84876454339&origin=inward,10.1016/j.jneumeth.2013.02.017,2013-05-15,"('2-s2.0-84876454339', 'Duyn')",NIH,190-195,23473798.0,84876454339,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84876454339&origin=inward,Duyn,Journal of Neuroscience Methods,In vivo evaluation of the effect of stimulus distribution on FIR statistical efficiency in event-related fMRI,Article,Duyn,NINDS +https://api.elsevier.com/content/abstract/scopus_id/77953462218,Marieke L. Schölvinck;Frank Q. Ye;David A. Leopold;Alexander Maier;Jeff H. Duyn,526,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77953462218&origin=inward,10.1073/pnas.0913110107,2010-06-01,"('2-s2.0-77953462218', 'Duyn')",,10238-10243,20439733.0,77953462218,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77953462218&origin=inward,Duyn,Proceedings of the National Academy of Sciences of the United States of America,Neural basis of global resting-state fMRI activity,Article,Duyn,NINDS +https://api.elsevier.com/content/abstract/scopus_id/77649257562,Dragan Maric;Bing Yao;Tie Qiang Li;Peter Van Gelderen;Guofeng Zhang;Hellmut Merkle;Jeff H. Duyn;Karin Shmueli;Jacco A. De Zwart;Masaki Fukunaga;Jongho Lee;John F. Schenck;Maria A. Aronova;Richard D. Leapman,236,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77649257562&origin=inward,10.1073/pnas.0911177107,2010-02-23,"('2-s2.0-77649257562', 'Duyn')",,3834-3839,20133720.0,77649257562,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77649257562&origin=inward,Duyn,Proceedings of the National Academy of Sciences of the United States of America,Layer-specific variation of iron content in cerebral cortex as a source of MRI contrast,Article,Duyn,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84875045497,Xiao Liu;Jeff H. Duyn,261,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84875045497&origin=inward,10.1073/pnas.1216856110,2013-03-12,"('2-s2.0-84875045497', 'Duyn')",,4392-4397,23440216.0,84875045497,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84875045497&origin=inward,Duyn,Proceedings of the National Academy of Sciences of the United States of America,Time-varying functional network information extracted from brief instances of spontaneous brain activity,Article,Duyn,NINDS +https://api.elsevier.com/content/abstract/scopus_id/77950456760,Peter Van Gelderen;Afonso C. Silva;Hellmut Merkle;Karin Shmueli;Masaki Fukunaga;Jongho Lee;Jeff H. Duyn,180,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77950456760&origin=inward,10.1073/pnas.0910222107,2010-03-16,"('2-s2.0-77950456760', 'Duyn')",,5130-5135,20202922.0,77950456760,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77950456760&origin=inward,Duyn,Proceedings of the National Academy of Sciences of the United States of America,Sensitivity of MRI resonance frequency to the orientation of brain tissue microstructure,Article,Duyn,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84874541551,Catie Chang;Xiao Liu;Michael C. Chen;Zhongming Liu;Jeff H. Duyn,188,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84874541551&origin=inward,10.1016/j.neuroimage.2013.01.049,2013-05-05,"('2-s2.0-84874541551', 'Duyn')",NIH,227-236,23376790.0,84874541551,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84874541551&origin=inward,Duyn,NeuroImage,EEG correlates of time-varying BOLD functional connectivity,Article,Duyn,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84871829601,Catie Chang;Gary H. Glover;Hans Jochen Heinze;Coraline D. Metzger;Martin Walter;Jeff H. Duyn,154,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84871829601&origin=inward,10.1016/j.neuroimage.2012.11.038,2013-03-01,"('2-s2.0-84871829601', 'Duyn')",OVGU,93-104,23246859.0,84871829601,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84871829601&origin=inward,Duyn,NeuroImage,Association between heart rate variability and fluctuations in resting-state functional connectivity,Article,Duyn,NINDS +https://api.elsevier.com/content/abstract/scopus_id/77950544458,Masaki Fukunaga;Jacco A. de Zwart;Zhongming Liu;Jeff H. Duyn,102,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77950544458&origin=inward,10.1016/j.neuroimage.2010.01.092,2010-05-01,"('2-s2.0-77950544458', 'Duyn')",NIH,102-111,20123024.0,77950544458,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77950544458&origin=inward,Duyn,NeuroImage,Large-scale spontaneous fluctuations and correlations in brain electrical activity observed with magnetoencephalography,Article,Duyn,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84877044901,Pascal Sati;Daniel S. Reich;Afonso C. Silva;Peter van Gelderen;Hellmut Merkle;Jacco A. De Zwart;Jeff H. Duyn,112,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84877044901&origin=inward,10.1016/j.neuroimage.2013.03.005,2013-08-15,"('2-s2.0-84877044901', 'Reich')",NINDS,268-278,23528924.0,84877044901,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84877044901&origin=inward,Reich,NeuroImage,Micro-compartment specific T2* relaxation in the brain,Article,Reich,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84255175912,Pascal Sati;Daniel S. Reich;Peter Van Gelderen;Jacco A. De Zwart;Jongho Lee;Jeff H. Duyn,75,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84255175912&origin=inward,10.1002/mrm.22990,2012-01-01,"('2-s2.0-84255175912', 'Reich')",,110-117,21630352.0,84255175912,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84255175912&origin=inward,Reich,Magnetic Resonance in Medicine,Nonexponential T 2* decay in white matter,Article,Reich,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84855435144,Jacco A. de Zwart;Peter van Gelderen;Li Wei Kuo;Zhongming Liu;Jeff H. Duyn,58,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84855435144&origin=inward,10.1016/j.neuroimage.2011.10.042,2012-02-01,"('2-s2.0-84855435144', 'Duyn')",NIH,2073-2087,22036675.0,84855435144,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84855435144&origin=inward,Duyn,NeuroImage,Statistical feature extraction for artifact removal from concurrent fMRI-EEG recordings,Article,Duyn,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84889605075,Catie Chang;Xiao Liu;Jeff H. Duyn,69,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84889605075&origin=inward,10.3389/fnsys.2013.00101,2013-12-04,"('2-s2.0-84889605075', 'Duyn')",,,,84889605075,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84889605075&origin=inward,Duyn,Frontiers in Systems Neuroscience,Decomposition of spontaneous brain activity into distinct fMRI co-activation patterns,Article,Duyn,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84866060086,Jacco A. de Zwart;Bing Yao;Peter van Gelderen;Li Wei Kuo;Zhongming Liu;Jeff H. Duyn,46,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84866060086&origin=inward,10.1016/j.neuroimage.2012.08.025,2012-11-15,"('2-s2.0-84866060086', 'Duyn')",NIH,1060-1069,22986355.0,84866060086,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84866060086&origin=inward,Duyn,NeuroImage,Finding thalamic BOLD correlates to posterior alpha EEG,Article,Duyn,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84893446105,Dante Picchioni;Morgan L. Pixa;Silvina G. Horovitz;Allen R. Braun;Walter S. Carr;Masaki Fukunaga;Jeff H. Duyn,37,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84893446105&origin=inward,10.5665/sleep.3422,2014-02-01,"('2-s2.0-84893446105', 'Duyn')",,387-397,24497667.0,84893446105,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84893446105&origin=inward,Duyn,Sleep,Decreased connectivity between the thalamus and the neocortex during human nonrapid eye movement sleep,Article,Duyn,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84908425865,Ryan Brown;Peter Van Gelderen;Natalia Gudino;Daniel K. Sodickson;Qi Duan;Jacco A. De Zwart;Jeff H. Duyn,33,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84908425865&origin=inward,10.1118/1.4895823,2014-10-01,"('2-s2.0-84908425865', 'Duyn')",,,25281973.0,84908425865,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84908425865&origin=inward,Duyn,Medical Physics,Characterization of a dielectric phantom for high-field magnetic resonance imaging applications,Article,Duyn,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84954217985,Xu Jiang;Peter van Gelderen;Jeff H. Duyn,32,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84954217985&origin=inward,10.1016/j.neuroimage.2015.12.032,2016-03-01,"('2-s2.0-84954217985', 'Duyn')",NINDS,85-95,26724780.0,84954217985,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84954217985&origin=inward,Duyn,NeuroImage,Effects of magnetization transfer on T1 contrast in human brain white matter,Article,Duyn,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84882268901,Jeff Duyn;Peter van Gelderen;Qi Duan,16,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84882268901&origin=inward,10.1002/nbm.2920,2013-09-01,"('2-s2.0-84882268901', 'Duyn')",,1070-1078,23355474.0,84882268901,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84882268901&origin=inward,Duyn,NMR in Biomedicine,Improved Bloch-Siegert based B1 mapping by reducing off-resonance shift,Article,Duyn,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84945441349,Jeff H. Duyn;Hendrik Mandelkow;Peter Van Gelderen;Jacco A. De Zwart,15,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84945441349&origin=inward,10.1002/mrm.25524,2015-01-01,"('2-s2.0-84945441349', 'Duyn')",,1388-1396,25399830.0,84945441349,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84945441349&origin=inward,Duyn,Magnetic Resonance in Medicine,A torque balance measurement of anisotropy of the magnetic susceptibility in white matter,Article,Duyn,NINDS +https://api.elsevier.com/content/abstract/scopus_id/78650936663,Masaki Fukunaga;Jongho Lee;Jeff H. Duyn,11,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=78650936663&origin=inward,10.1016/j.neuroimage.2010.10.071,2011-02-14,"('2-s2.0-78650936663', 'Duyn')",NINDS,2779-2788,21040793.0,78650936663,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=78650936663&origin=inward,Duyn,NeuroImage,Improving contrast to noise ratio of resonance frequency contrast images (phase images) using balanced steady-state free precession,Article,Duyn,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84964772093,Jeff H. Duyn;Hendrik Mandelkow;Jacco A. De Zwart,20,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84964772093&origin=inward,10.3389/fnhum.2016.00128,2016-03-31,"('2-s2.0-84964772093', 'Duyn')",,1-12,,84964772093,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84964772093&origin=inward,Duyn,Frontiers in Human Neuroscience,Linear discriminant analysis achieves high classification accuracy for the BOLD fMRI response to naturalistic movie stimuli,Article,Duyn,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84890933895,Jacco A. de Zwart;Marta Bianciardi;Kevin Murphy;Molly G. Bright;Jeff H. Duyn,16,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84890933895&origin=inward,10.1016/j.neuroimage.2013.10.055,2014-02-15,"('2-s2.0-84890933895', 'Duyn')",WT,287-296,24211818.0,84890933895,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84890933895&origin=inward,Duyn,NeuroImage,Early anti-correlated BOLD signal changes of physiologic origin,Article,Duyn,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84973444604,John Schenck;Jeff H. Duyn,44,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84973444604&origin=inward,10.1002/nbm.3546,2017-04-01,"('2-s2.0-84973444604', 'Duyn')",,,27240118.0,84973444604,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84973444604&origin=inward,Duyn,NMR in Biomedicine,Contributions to magnetic susceptibility of brain tissue,Review,Duyn,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84857243554,Jeff Duyn;Peter Van Gelderen;Qi Duan,7,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84857243554&origin=inward,10.1002/mrm.23278,2012-03-01,"('2-s2.0-84857243554', 'Duyn')",,601-608,22222623.0,84857243554,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84857243554&origin=inward,Duyn,Magnetic Resonance in Medicine,Tailored excitation using nonlinear B 0-shims,Article,Duyn,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84924815051,Pascal Sati;Daniel S. Reich;Peter Van Gelderen;Xiaozhen Li;Jacco A. De Zwart;Jeff H. Duyn,12,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84924815051&origin=inward,10.1016/j.nicl.2015.02.021,2015-01-01,"('2-s2.0-84924815051', 'Reich')",NINDS,709-714,26594617.0,84924815051,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84924815051&origin=inward,Reich,NeuroImage: Clinical,Detection of demyelination in multiple sclerosis by analysis of T 2 ∗ relaxation at 7 T,Article,Reich,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84885052576,Jeff H. Duyn;Zhongming Liu;Peter Van Gelderen;Jacco A. De Zwart,6,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84885052576&origin=inward,10.1007/s10548-013-0290-1,2013-10-01,"('2-s2.0-84885052576', 'Duyn')",NIH,525-537,23660870.0,84885052576,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84885052576&origin=inward,Duyn,Brain Topography,Independent sources of spontaneous BOLD fluctuation along the visual pathway,Article,Duyn,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84939254120,Francesca Bagnato;Joan M. Ohayon;Bing Yao;Vasiliki N. Ikonomidou;Fredric K. Cantor;Jeff Duyn,10,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84939254120&origin=inward,10.1111/jon.12193,2015-01-01,"('2-s2.0-84939254120', 'Duyn')",,799-806,25657078.0,84939254120,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84939254120&origin=inward,Duyn,Journal of Neuroimaging,Heterogeneity of Multiple Sclerosis White Matter Lesions Detected With T2*-Weighted Imaging at 7.0 Tesla,Article,Duyn,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84974824221,Jacco A. de Zwart;Natalia Gudino;Peter van Gelderen;Hellmut Merkle;Jeff H. Duyn;Joe Murphy-Boesch;Stephen J. Dodd;Qi Duan,7,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84974824221&origin=inward,10.1002/mrm.25857,2016-07-01,"('2-s2.0-84974824221', 'Duyn')",,340-349,26256671.0,84974824221,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84974824221&origin=inward,Duyn,Magnetic Resonance in Medicine,Optically controlled switch-mode current-source amplifiers for on-coil implementation in high-field parallel transmission,Article,Duyn,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84977108816,Xu Jiang;Peter van Gelderen;Jeff H. Duyn,11,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84977108816&origin=inward,10.1002/mrm.26304,2017-06-01,"('2-s2.0-84977108816', 'Duyn')",,2174-2185,27342121.0,84977108816,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84977108816&origin=inward,Duyn,Magnetic Resonance in Medicine,Rapid measurement of brain macromolecular proton fraction with transient saturation transfer MRI,Article,Duyn,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84884541852,Francesca Bagnato;Natalie E. Cook;Bibiana Bielekova;Vasiliki N. Ikonomidou;Alexander Vortmeyer;Fernanda Tovar-Moll;Nancy D. Richert;Jeff H. Duyn,1,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84884541852&origin=inward,10.1177/1352458513498124,2013-01-01,"('2-s2.0-84884541852', 'Bielekova')",NINDS,1539-1543,24062416.0,84884541852,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84884541852&origin=inward,Bielekova,Multiple Sclerosis Journal,Evolution of tumefactive lesions in multiple sclerosis: A 12-year study with serial imaging in a single patient,Article,Bielekova,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84963818868,P. van Gelderen;S. J. Dodd;K. Shmueli;J. H. Duyn,2,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84963818868&origin=inward,10.1002/nbm.3525,2017-04-01,"('2-s2.0-84963818868', 'Duyn')",EPSRC,,27076394.0,84963818868,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84963818868&origin=inward,Duyn,NMR in Biomedicine,Investigating lipids as a source of chemical exchange-induced MRI frequency shifts,Article,Duyn,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84943277181,J. Duyn;J. A. de Zwart,0,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84943277181&origin=inward,10.1016/B978-0-12-397025-1.00009-9,2015-02-14,"('2-s2.0-84943277181', 'Duyn')",,89-96,,84943277181,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84943277181&origin=inward,Duyn,Brain Mapping: An Encyclopedic Reference,Evolution of Instrumentation for Functional Magnetic Resonance Imaging,Chapter,Duyn,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84948650823,Peter Van Gelderen;Patrick J. Ledden;Yuxi Pang;Renxin Chu;Peter Keilman;Jacco A. De Zwart;Jeff H. Duyn,0,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84948650823&origin=inward,10.1109/ISBI.2002.1029423,2002-01-01,"('2-s2.0-84948650823', 'Duyn')",,966-969,,84948650823,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84948650823&origin=inward,Duyn,Proceedings - International Symposium on Biomedical Imaging,Optimization of a high sensitivity MRI receive coil for parallel human brain imaging,Conference Paper,Duyn,NINDS +https://api.elsevier.com/content/abstract/scopus_id/77952398184,Peter Van Gelderen;Afonso C. Silva;Hellmut Merkle;Karin Shmueli;Masaki Fukunaga;Jongho Lee;Jeff H. Duyn,0,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77952398184&origin=inward,10.1073/pnas.1003440107,2010-05-04,"('2-s2.0-77952398184', 'Duyn')",,8498,,77952398184,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77952398184&origin=inward,Duyn,Proceedings of the National Academy of Sciences of the United States of America,"Erratum: Sensitivity of MRI resonance frequency to the orientation of brain tissue microstructure (Proceedings National Academy Science USA (2010) 107, (5130-5135) DOI: 10.1073/pnas.0910222107)",Erratum,Duyn,NINDS +https://api.elsevier.com/content/abstract/scopus_id/85011700174,Xu Jiang;Peter van Gelderen;Jeff H. Duyn,5,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85011700174&origin=inward,10.1002/mrm.26594,2017-11-01,"('2-s2.0-85011700174', 'Duyn')",,1950-1958,28150877.0,85011700174,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85011700174&origin=inward,Duyn,Magnetic Resonance in Medicine,Spectral characteristics of semisolid protons in human brain white matter at 7 T,Article,Duyn,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84872699821,Justin Y. Kwan;Tianxia Wu;Avner Meoded;Laura E. Danielian;Mary Kay Floeter,49,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84872699821&origin=inward,10.1016/j.nicl.2012.12.003,2013-01-28,"('2-s2.0-84872699821', 'Duyn')",NIH,151-160,,84872699821,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84872699821&origin=inward,Duyn,NeuroImage: Clinical,Structural imaging differences and longitudinal changes in primary lateral sclerosis and amyotrophic lateral sclerosis,Article,Duyn,NINDS +https://api.elsevier.com/content/abstract/scopus_id/85002411690,Bryan J. Traynor;Laura E. Braun;Justin Y. Kwan;Devin Bageac;Laura E. Danielian;Mary Kay Floeter,27,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85002411690&origin=inward,10.1016/j.nicl.2016.10.014,2016-01-01,"('2-s2.0-85002411690', 'Duyn')",ATSDR,1035-1043,27995069.0,85002411690,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85002411690&origin=inward,Duyn,NeuroImage: Clinical,Longitudinal imaging in C9orf72 mutation carriers: Relationship to phenotype,Article,Duyn,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84907424554,Laura Danielian;Rohan Katipally;Tianxia Wu;Edward D. Huey;Avner Meoded;Matthew Stephen;Mary Kay Floeter;Meredith P. Kim;Olivia Schanz,19,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84907424554&origin=inward,10.1212/WNL.0000000000000693,2014-01-01,"('2-s2.0-84907424554', 'Duyn')",NINDS,620-627,25008395.0,84907424554,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84907424554&origin=inward,Duyn,Neurology,Impaired corticopontocerebellar tracts underlie pseudobulbar affect in motor neuron disorders,Article,Duyn,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84920842790,Stephen J. Gotts;Rohan Katipally;Avner Meoded;Arthur E. Morrissette;Mary Kay Floeter;Olivia Schanz,19,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84920842790&origin=inward,10.1016/j.nicl.2014.12.009,2015-01-01,"('2-s2.0-84920842790', 'Duyn')",NINDS,288-296,25610792.0,84920842790,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84920842790&origin=inward,Duyn,NeuroImage: Clinical,Cerebro-cerebellar connectivity is increased in primary lateral sclerosis,Article,Duyn,NINDS +https://api.elsevier.com/content/abstract/scopus_id/85019030136,Hao Wei Wang;Joelle E. Sarlls;Justin Y. Kwan;Abhik Ray-Chaudhury;Robert C. Welsh;Sean Foxley;Zachary S. Gala;Saad Jbabdi;Devin Bageac;Laura E. Danielian;Mary Kay Floeter;Karla L. Miller;Agustin M. Cardenas,17,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85019030136&origin=inward,10.1016/j.nicl.2017.04.024,2017-01-01,"('2-s2.0-85019030136', 'Duyn')",UMD,200-208,28529876.0,85019030136,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85019030136&origin=inward,Duyn,NeuroImage: Clinical,"Pathology of callosal damage in ALS: An ex-vivo, 7 T diffusion tensor MRI study",Article,Duyn,NINDS +https://api.elsevier.com/content/abstract/scopus_id/2542597718,Judith L. Rapoport;Liv S. Clasen;Nitin Gogtay;Arthur W. Toga;A. Catherine Vaituzis;Kiralee M. Hayashi;Leslie Lusk;Tom F. Nugent;Paul M. Thompson;David H. Herman;Jay N. Giedd;Deanna Greenstein,3330,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=2542597718&origin=inward,10.1073/pnas.0402680101,2004-05-21,"('2-s2.0-2542597718', 'Rapoport')",,8174-8179,15148381.0,2542597718,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=2542597718&origin=inward,Rapoport,Proceedings of the National Academy of Sciences of the United States of America,Dynamic mapping of human cortical development during childhood through early adulthood,Article,Rapoport,NIMH +https://api.elsevier.com/content/abstract/scopus_id/0037048693,Christen L. Ebens;Liv S. Clasen;Judith L. Rapoport;Patti P. Lee;Regina S. James;Alex Zijdenbos;F. Xavier Castellanos;James M. Walter;Alan C. Evans;Neal O. Jeffries;Jonathan D. Blumenthal;Wendy Sharp;Jay N. Giedd;Deanna K. Greenstein,1116,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0037048693&origin=inward,10.1001/jama.288.14.1740,2002-10-09,"('2-s2.0-0037048693', 'Rapoport')",NIMH,1740-1748,12365958.0,37048693,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0037048693&origin=inward,Rapoport,Journal of the American Medical Association,Developmental trajectories of brain volume abnormalities in children and adolescents with attention-deficit/hyperactivity disorder,Article,Rapoport,NIMH +https://api.elsevier.com/content/abstract/scopus_id/56549127348,Matcheri Keshavan;Jay N. Giedd;Tomáš Paus,1335,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=56549127348&origin=inward,10.1038/nrn2513,2008-12-01,"('2-s2.0-56549127348', 'Rapoport')",CIHR,947-957,19002191.0,56549127348,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=56549127348&origin=inward,Rapoport,Nature Reviews Neuroscience,Why do many psychiatric disorders emerge during adolescence?,Review,Rapoport,NIMH +https://api.elsevier.com/content/abstract/scopus_id/3042749798,Jay N. Giedd,1015,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=3042749798&origin=inward,10.1196/annals.1308.009,2004-01-01,"('2-s2.0-3042749798', 'Rapoport')",,77-85,15251877.0,3042749798,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=3042749798&origin=inward,Rapoport,Annals of the New York Academy of Sciences,Structural magnetic resonance imaging of the adolescent brain,Conference Paper,Rapoport,NIMH +https://api.elsevier.com/content/abstract/scopus_id/33645453807,A. Evans;P. Shaw;L. Clasen;R. Lenroot;D. Greenstein;N. Gogtay;J. Giedd;J. Rapoport;J. Lerch,998,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33645453807&origin=inward,10.1038/nature04513,2006-03-30,"('2-s2.0-33645453807', 'Shaw')",NIH,676-679,16572172.0,33645453807,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33645453807&origin=inward,Shaw,Nature,Intellectual ability and cortical development in children and adolescents,Article,Shaw,NHGRI +https://api.elsevier.com/content/abstract/scopus_id/0034306447,Kathleen M. Thomas;Jay N. Giedd;B. J. Casey,972,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0034306447&origin=inward,10.1016/S0301-0511(00)00058-2,2000-01-01,"('2-s2.0-0034306447', 'Shaw')",NIMH,241-257,11035225.0,34306447,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0034306447&origin=inward,Shaw,Biological Psychology,Structural and functional brain development and its relation to cognitive development,Article,Shaw,NHGRI +https://api.elsevier.com/content/abstract/scopus_id/43649097736,Noor J. Kabani;Judith L. Rapoport;Nitin Gogtay;Steve P. Wise;Alan Evans;Kristen Eckstrand;Rhoshel Lenroot;Jason P. Lerch;Philip Shaw;Liv Clasen;Jay N. Giedd;Deanna Greenstein,997,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=43649097736&origin=inward,10.1523/JNEUROSCI.5309-07.2008,2008-04-02,"('2-s2.0-43649097736', 'Shaw')",,3586-3594,18385317.0,43649097736,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=43649097736&origin=inward,Shaw,Journal of Neuroscience,Neurodevelopmental trajectories of the human cerebral cortex,Article,Shaw,NHGRI +https://api.elsevier.com/content/abstract/scopus_id/33747885370,Jay N. Giedd;Rhoshel K. Lenroot,1021,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33747885370&origin=inward,10.1016/j.neubiorev.2006.06.001,2006-09-01,"('2-s2.0-33747885370', 'Shaw')",,718-729,16887188.0,33747885370,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33747885370&origin=inward,Shaw,Neuroscience and Biobehavioral Reviews,Brain development in children and adolescents: Insights from anatomical magnetic resonance imaging,Review,Shaw,NHGRI +https://api.elsevier.com/content/abstract/scopus_id/0034624843,Jay N. Gledd;Arthur W. Toga;Paul M. Thompson;David MacDonald;Alan C. Evans;Roger P. Woods,673,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0034624843&origin=inward,10.1038/35004593,2000-03-09,"('2-s2.0-0034624843', 'Shaw')",,190-193,10724172.0,34624843,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0034624843&origin=inward,Shaw,Nature,Growth patterns in the developing brain detected by using continuum mechanical tensor maps,Article,Shaw,NHGRI +https://api.elsevier.com/content/abstract/scopus_id/34347240342,Gregory L. Wallace;Liv S. Clasen;Nitin Gogtay;Elizabeth Molloy Wells;Jason Lerch;Alex P. Zijdenbos;Rhoshel K. Lenroot;Paul M. Thompson;Alan C. Evans;Jonathan D. Blumenthal;Jay N. Giedd;Deanna K. Greenstein,723,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34347240342&origin=inward,10.1016/j.neuroimage.2007.03.053,2007-07-15,"('2-s2.0-34347240342', 'Shaw')",NIMH,1065-1073,17513132.0,34347240342,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34347240342&origin=inward,Shaw,NeuroImage,Sexual dimorphism of brain developmental trajectories during childhood and adolescence,Article,Shaw,NHGRI +https://api.elsevier.com/content/abstract/scopus_id/0037162380,K. R. Maravilla;E. H. Aylward;S. D. Friedman;B. F. Sparks;D. Echelard;J. Munson;G. Dawson;A. A. Artru;D. W. Shaw;S. R. Dager;J. N. Giedd,637,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0037162380&origin=inward,10.1212/WNL.59.2.184,2002-07-23,"('2-s2.0-0037162380', 'Shaw')",,184-192,12136055.0,37162380,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0037162380&origin=inward,Shaw,Neurology,Brain structural abnormalities in young children with autism spectrum disorder,Article,Shaw,NHGRI +https://api.elsevier.com/content/abstract/scopus_id/40749109804,Jay N. Giedd,473,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=40749109804&origin=inward,10.1016/j.jadohealth.2008.01.007,2008-04-01,"('2-s2.0-40749109804', 'Shaw')",,335-343,18346658.0,40749109804,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=40749109804&origin=inward,Shaw,Journal of Adolescent Health,The Teen Brain: Insights from Neuroimaging,Review,Shaw,NHGRI +https://api.elsevier.com/content/abstract/scopus_id/33744902596,W. Philip Shaw;Rhoshel K. Lenroot;Jay Giedd;Jason P. Lerch;Alan C. Evans;Keith Worsley;Deanna K. Greenstein,346,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33744902596&origin=inward,10.1016/j.neuroimage.2006.01.042,2006-07-01,"('2-s2.0-33744902596', 'Shaw')",,993-1003,16624590.0,33744902596,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33744902596&origin=inward,Shaw,NeuroImage,Mapping anatomical correlations across cerebral cortex (MACACC) using cortical thickness from MRI,Article,Shaw,NHGRI +https://api.elsevier.com/content/abstract/scopus_id/7044253600,Judith L. Rapoport;Arthur W. Toga;Nitin Gogtay;Stephen E. Rose;Yalin Wang;Andrew L. Janke;Kiralee M. Hayashi;James Semple;David M. Doddrell;Theo G.M. Van Erp;Greig I. De Zubicaray;Paul M. Thompson;Elizabeth R. Sowell;Jay N. Giedd;Tyrone D. Cannon,300,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=7044253600&origin=inward,10.1016/j.neuroimage.2004.07.071,2004-11-08,"('2-s2.0-7044253600', 'Rapoport')",NIA,,15501091.0,7044253600,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=7044253600&origin=inward,Rapoport,NeuroImage,"Mapping cortical change in Alzheimer's disease, brain development, and schizophrenia",Conference Paper,Rapoport,NIMH +https://api.elsevier.com/content/abstract/scopus_id/0034875926,Jan K. Buitelaar;Sarah Durston;B. J. Casey;Herman Van Engeland;Jay N. Giedd;Hilleke E. Hulshoff Pol,310,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0034875926&origin=inward,10.1097/00004583-200109000-00009,2001-01-01,"('2-s2.0-0034875926', 'Rapoport')",,1012-1020,11556624.0,34875926,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0034875926&origin=inward,Rapoport,Journal of the American Academy of Child and Adolescent Psychiatry,Anatomical MRI of the developing human brain: What have we learned?,Article,Rapoport,NIMH +https://api.elsevier.com/content/abstract/scopus_id/3042606335,Nathalie L. Dumont;Catherine Vaituzis;Martin H. Teicher;Yutaka Ito;Jay N. Giedd;Susan L. Andersen,313,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=3042606335&origin=inward,10.1016/j.biopsych.2004.03.016,2004-07-15,"('2-s2.0-3042606335', 'Rapoport')",NIDA,80-85,15231439.0,3042606335,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=3042606335&origin=inward,Rapoport,Biological Psychiatry,Childhood neglect is associated with reduced corpus callosum area,Article,Rapoport,NIMH +https://api.elsevier.com/content/abstract/scopus_id/79956325555,Gregory L. Wallace;Phillip Shaw;Nitin Gogtay;Dede Greenstein;Mike Stockman;Armin Raznahan;Francois Lalonde;Liv Clasen;Jay N. Giedd,361,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79956325555&origin=inward,10.1523/JNEUROSCI.0054-11.2011,2011-05-11,"('2-s2.0-79956325555', 'Raznahan')",,7174-7177,21562281.0,79956325555,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79956325555&origin=inward,Raznahan,Journal of Neuroscience,How does your cortex grow?,Article,Raznahan,NIMH +https://api.elsevier.com/content/abstract/scopus_id/0034952122,F. Xavier Castellanos;Jay N. Giedd;Elizabeth Molloy;Jonathan Blumenthal,278,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0034952122&origin=inward,10.1111/j.1749-6632.2001.tb05772.x,2001-01-01,"('2-s2.0-0034952122', 'Raznahan')",NIMH,33-49,11462751.0,34952122,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0034952122&origin=inward,Raznahan,Annals of the New York Academy of Sciences,Brain imaging of attention deficit/hyperactivity disorder,Review,Raznahan,NIMH +https://api.elsevier.com/content/abstract/scopus_id/43549089992,Michael Windle;Jane D. Brown;Andrew J. Fuligni;Ronald E. Dahl;Daniel Pine;Adrian Angold;Linda P. Spear;Jay Giedd;Greg T. Smith,263,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=43549089992&origin=inward,10.1542/peds.2007-2243C,2008-04-01,"('2-s2.0-43549089992', 'Pine')",,,18381494.0,43549089992,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=43549089992&origin=inward,Pine,Pediatrics,Transitions into underage and problem drinking: Developmental processes and mechanisms between 10 and 15 years of age,Conference Paper,Pine,NIMH +https://api.elsevier.com/content/abstract/scopus_id/33750449331,Judith L. Rapoport;Arthur W. Toga;Nitin Gogtay;Kiralee M. Hayashi;Tom F. Nugent;Paul M. Thompson;David H. Herman;Liv Clasen;Anna Ordonez;Jay N. Giedd;Deanna Greenstein,277,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33750449331&origin=inward,10.1002/hipo.20193,2006-11-06,"('2-s2.0-33750449331', 'Rapoport')",,664-672,16826559.0,33750449331,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33750449331&origin=inward,Rapoport,Hippocampus,Dynamic mapping of normal human hippocampal development,Article,Rapoport,NIMH +https://api.elsevier.com/content/abstract/scopus_id/72649104366,Jay N. Giedd;Rhoshel K. Lenroot,267,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=72649104366&origin=inward,10.1016/j.bandc.2009.10.008,2010-02-01,"('2-s2.0-72649104366', 'Rapoport')",,46-55,19913969.0,72649104366,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=72649104366&origin=inward,Rapoport,Brain and Cognition,Sex differences in the adolescent brain,Review,Rapoport,NIMH +https://api.elsevier.com/content/abstract/scopus_id/0033950798,Judith L. Rapoport;Susan E. Swedo;Marjorie A. Garvey;Susan Perlmutter;Jay N. Giedd,201,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0033950798&origin=inward,10.1176/appi.ajp.157.2.281,2000-02-01,"('2-s2.0-0033950798', 'Rapoport')",,281-283,10671403.0,33950798,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0033950798&origin=inward,Rapoport,American Journal of Psychiatry,MRI assessment of children with obsessive-compulsive disorder or tics associated with streptococcal infection,Article,Rapoport,NIMH +https://api.elsevier.com/content/abstract/scopus_id/58149340253,Gregory L. Wallace;Sarah J. Ordaz;Kenneth S. Kendler;Rhoshel K. Lenroot;Michael C. Neale;Jason P. Lerch;Alan C. Evans;Jay N. Giedd;James E. Schmitt,214,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=58149340253&origin=inward,10.1002/hbm.20494,2009-01-01,"('2-s2.0-58149340253', 'Rapoport')",,163-174,18041741.0,58149340253,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=58149340253&origin=inward,Rapoport,Human Brain Mapping,Differences in genetic and environmental influences on the human cerebral cortex associated with development during childhood and adolescence,Article,Rapoport,NIMH +https://api.elsevier.com/content/abstract/scopus_id/34248324435,Judith L. Rapoport;Kristin N. Taylor;Alan Evans;A. Blythe Rose;Jens C. Pruessner;Jason P. Lerch;Philip Shaw;Liv Clasen;Jay N. Giedd;Deanna Greenstein,208,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34248324435&origin=inward,10.1016/S1474-4422(07)70106-0,2007-06-01,"('2-s2.0-34248324435', 'Shaw')",NIH,494-500,17509484.0,34248324435,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34248324435&origin=inward,Shaw,Lancet Neurology,Cortical morphology in children and adolescents with different apolipoprotein E gene polymorphisms: an observational study,Article,Shaw,NHGRI +https://api.elsevier.com/content/abstract/scopus_id/70349962939,Ronald Pierson;Rhoshel K. Lenroot;Lan Tran;Henning Tiemeier;Jay N. Giedd;Deanna K. Greenstein,231,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=70349962939&origin=inward,10.1016/j.neuroimage.2009.08.016,2010-01-01,"('2-s2.0-70349962939', 'Shaw')",NIMH,63-70,19683586.0,70349962939,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=70349962939&origin=inward,Shaw,NeuroImage,Cerebellum development during childhood and adolescence: A longitudinal morphometric MRI study,Article,Shaw,NHGRI +https://api.elsevier.com/content/abstract/scopus_id/33745927160,Gregory L. Wallace;Liv S. Clasen;Julia W. Tossell;Dinggang Shen;George P. Chrousos;Catherine Stayer;Dede Greenstein;Sarah Ordaz;Carole A. Samango-Sprouse;Christos Davatzikos;Deborah Merke;Rhoshel Lenroot;Elizabeth A. Molloy;Jay N. Giedd;Jonathan D. Blumenthal,187,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33745927160&origin=inward,10.1016/j.mce.2006.04.016,2006-07-25,"('2-s2.0-33745927160', 'Shaw')",,154-162,16765510.0,33745927160,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33745927160&origin=inward,Shaw,Molecular and Cellular Endocrinology,Puberty-related influences on brain development,Article,Shaw,NHGRI +https://api.elsevier.com/content/abstract/scopus_id/68749110681,Robert W. Blum;Jay N. Giedd;Sara B. Johnson,236,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=68749110681&origin=inward,10.1016/j.jadohealth.2009.05.016,2009-09-01,"('2-s2.0-68749110681', 'Shaw')",,216-221,19699416.0,68749110681,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=68749110681&origin=inward,Shaw,Journal of Adolescent Health,Adolescent Maturity and the Brain: The Promise and Pitfalls of Neuroscience Research in Adolescent Health Policy,Review,Shaw,NHGRI +https://api.elsevier.com/content/abstract/scopus_id/67650308858,Gregory L. Wallace;Samantha L. White;Rhoshel K. Lenroot;Nancy R. Lee;Mark J. Celano;Jay N. Giedd;Francois M. Lalonde,183,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=67650308858&origin=inward,10.1097/CHI.0b013e31819f2715,2009-01-01,"('2-s2.0-67650308858', 'Shaw')",,465-470,19395901.0,67650308858,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=67650308858&origin=inward,Shaw,Journal of the American Academy of Child and Adolescent Psychiatry,Anatomical brain magnetic resonance imaging of typically developing children and adolescents,Article,Shaw,NHGRI +https://api.elsevier.com/content/abstract/scopus_id/79952727568,Maria Liverpool;Alan Evans;Wendy Sharp;Mary Gilliam;Meaghan Malek;Jay Giedd;Philip Shaw;Judith Rapoport;Catherine Weddle;Deanna Greenstein,189,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79952727568&origin=inward,10.1176/appi.ajp.2010.10030385,2011-02-01,"('2-s2.0-79952727568', 'Shaw')",,143-151,21159727.0,79952727568,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79952727568&origin=inward,Shaw,American Journal of Psychiatry,Cortical development in typically developing children with symptoms of hyperactivity and impulsivity: Support for a dimensional view of attention deficit hyperactivity disorder,Article,Shaw,NHGRI +https://api.elsevier.com/content/abstract/scopus_id/78049277844,Judith L. Rapoport;Yohan Lee;Nitin Gogtay;Dede Greenstein;Anjene Addington;Reva Stidd;Armin Raznahan;Robert Long;Liv Clasen;Jay N. Giedd,171,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=78049277844&origin=inward,10.1073/pnas.1006025107,2010-09-28,"('2-s2.0-78049277844', 'Raznahan')",MRC,16988-16993,20841422.0,78049277844,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=78049277844&origin=inward,Raznahan,Proceedings of the National Academy of Sciences of the United States of America,Longitudinally mapping the influence of sex and androgen signaling on the dynamics of human cortical maturation in adolescence,Article,Raznahan,NIMH +https://api.elsevier.com/content/abstract/scopus_id/83255194563,Gregory L. Wallace;Dede Greenstein;Phillip W. Shaw;Michael Stockman;Armin Raznahan;Jason P. Lerch;Nancy Lee;Jay N. Giedd;Liv Clasen,172,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=83255194563&origin=inward,10.1016/j.neuron.2011.09.028,2011-12-08,"('2-s2.0-83255194563', 'Raznahan')",,873-884,22153381.0,83255194563,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=83255194563&origin=inward,Raznahan,Neuron,Patterns of coordinated anatomical change in human cortical development: A longitudinal neuroimaging study of maturational coupling,Article,Raznahan,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84873694011,Armin Raznahan;Aaron Alexander-Bloch;Ed Bullmore;Jay Giedd,195,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84873694011&origin=inward,10.1523/JNEUROSCI.3554-12.2013,2013-02-13,"('2-s2.0-84873694011', 'Raznahan')",NIMH,2889-2899,23407947.0,84873694011,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84873694011&origin=inward,Raznahan,Journal of Neuroscience,The convergence of maturational change and structural covariance in human cortical networks,Article,Raznahan,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84870818294,Nitin Gogtay;François Lalonde;Edward T. Bullmore;Reva Stidd;Jay Giedd;Petra E. Vértes;Aaron F. Alexander-Bloch;Judith Rapoport;Liv Clasen,172,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84870818294&origin=inward,10.1093/cercor/bhr388,2013-01-01,"('2-s2.0-84870818294', 'Rapoport')",NIH,127-138,22275481.0,84870818294,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84870818294&origin=inward,Rapoport,Cerebral Cortex,The anatomical distance of functional connections predicts brain network topology in health and schizophrenia,Article,Rapoport,NIMH +https://api.elsevier.com/content/abstract/scopus_id/10744225919,Catherine Staessen;Jay Giedd;Huntingdon F. Willard;Terry Hassold;Bonnie Brinton;Carole Samango-Sprouse;Ronald S. Swerdloff;Heino F.L. Meyer-Bahlburg;Judith G. Hall;John M. Graham;C. Alvin Paulsen;Alan Rogol;Adrian S. Dobs;Dan Geschwind;Joe Leigh Simpson;Kyle Boone;Wael Salameh;Felix De La Cruz;Melissa Aylstock;Niels E. Skakkebaek,141,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=10744225919&origin=inward,10.1097/01.GIM.0000095626.54201.D0,2003-11-01,"('2-s2.0-10744225919', 'Rapoport')",,460-468,14614399.0,10744225919,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=10744225919&origin=inward,Rapoport,Genetics in Medicine,Klinefelter syndrome: Expanding the phenotype and identifying new research directions,Review,Rapoport,NIMH +https://api.elsevier.com/content/abstract/scopus_id/29844439581,Judith L. Rapoport;Arthur W. Toga;Yasaman Alaghband;Lauren E. McLemore;Nitin Gogtay;Yihong Sui;Kiralee M. Hayashi;Rob Nicolson;Jonathan Blumenthal;Peter Gochman;Paul M. Thompson;Jay N. Giedd;Christine N. Vidal;Jennifer A. Geaga,121,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=29844439581&origin=inward,10.1001/archpsyc.63.1.25,2006-01-01,"('2-s2.0-29844439581', 'Rapoport')",NINDS,25-34,16389194.0,29844439581,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=29844439581&origin=inward,Rapoport,Archives of General Psychiatry,Dynamically spreading frontal and cingulate deficits mapped in adolescents with schizophrenia,Article,Rapoport,NIMH +https://api.elsevier.com/content/abstract/scopus_id/47649122268,J. E. Schmitt;J. P. Lerch;S. Ordaz;G. L. Wallace;K. N. Taylor;M. C. Neale;J. N. Giedd;K. S. Kendler;R. K. Lenroot;N. Kabani;D. Greenstein,128,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=47649122268&origin=inward,10.1093/cercor/bhm211,2008-08-01,"('2-s2.0-47649122268', 'Rapoport')",NIH,1737-1747,18234689.0,47649122268,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=47649122268&origin=inward,Rapoport,Cerebral Cortex,Identification of genetically mediated cortical networks: A multivariate study of pediatric twins and siblings,Article,Rapoport,NIMH +https://api.elsevier.com/content/abstract/scopus_id/33750395407,Nitin Gogtay;Jason Lerch;Peter Gochman;Deanna Greenstein;Philip Shaw;Liv Clasen;Judith Rapoport;Jay Giedd,116,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33750395407&origin=inward,10.1111/j.1469-7610.2006.01658.x,2006-11-01,"('2-s2.0-33750395407', 'Shaw')",,1003-1012,17073979.0,33750395407,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33750395407&origin=inward,Shaw,Journal of Child Psychology and Psychiatry and Allied Disciplines,Childhood onset schizophrenia: Cortical brain abnormalities as young adults,Article,Shaw,NHGRI +https://api.elsevier.com/content/abstract/scopus_id/33750413136,Gregory L. Wallace;Liv S. Clasen;Essi Viding;Sarah Ordaz;Michael A. Rosenthal;J. Eric Schmitt;Kenneth S. Kendler;Michael C. Neale;Rhoshel Lenroot;Elizabeth A. Molloy;Jay N. Giedd,120,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33750413136&origin=inward,10.1111/j.1469-7610.2006.01676.x,2006-11-01,"('2-s2.0-33750413136', 'Shaw')",,987-993,17073977.0,33750413136,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33750413136&origin=inward,Shaw,Journal of Child Psychology and Psychiatry and Allied Disciplines,A pediatric twin study of brain morphometry,Article,Shaw,NHGRI +https://api.elsevier.com/content/abstract/scopus_id/84893429469,Liv S. Clasen;Mallar M. Chakravarty;Armin Raznahan;Jon Pipitone;Jason P. Lerch;Phillip W. Shaw;Jay N. Giedd;Deanna Greenstein;Rebecca Berman,154,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84893429469&origin=inward,10.1073/pnas.1316911111,2014-01-28,"('2-s2.0-84893429469', 'Raznahan')",,1592-1597,24474784.0,84893429469,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84893429469&origin=inward,Raznahan,Proceedings of the National Academy of Sciences of the United States of America,Longitudinal four-dimensional mapping of subcortical anatomy in human development,Article,Raznahan,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84891314298,Liv S. Clasen;Kathryn L. Mills;Sarah Jayne Blakemore;Francois Lalonde;Jay N. Giedd,145,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84891314298&origin=inward,10.1093/scan/nss113,2014-01-01,"('2-s2.0-84891314298', 'Raznahan')",NIH,123-131,23051898.0,84891314298,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84891314298&origin=inward,Raznahan,Social Cognitive and Affective Neuroscience,Developmental changes in the structure of the social brain in late childhood and adolescence,Article,Raznahan,NIMH +https://api.elsevier.com/content/abstract/scopus_id/33846914971,Gregory L. Wallace;Liv S. Clasen;Julia W. Tossell;Elizabeth Molloy Wells;Catherine Stayer;Carole A. Samango-Sprouse;Rhoshel K. Lenroot;Jean E. Nelson;Jason P. Lerch;Alan C. Evans;Jay N. Giedd;Jonathan D. Blumenthal,97,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33846914971&origin=inward,10.1542/peds.2005-2969,2007-01-01,"('2-s2.0-33846914971', 'Raznahan')",NIMH,,17200249.0,33846914971,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33846914971&origin=inward,Raznahan,Pediatrics,XXY (Klinefelter syndrome): A pediatric quantitative brain magnetic resonance imaging case-control study,Article,Raznahan,NIMH +https://api.elsevier.com/content/abstract/scopus_id/0035092027,J. H. Krystal;T. R. Kosten;C. Gottschalk;L. K. Jacobsen;J. N. Giedd,92,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0035092027&origin=inward,10.1176/appi.ajp.158.3.486,2001-03-21,"('2-s2.0-0035092027', 'Raznahan')",,486-489,11229995.0,35092027,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0035092027&origin=inward,Raznahan,American Journal of Psychiatry,Quantitative morphology of the caudate and putamen in patients with cocaine dependence,Article,Raznahan,NIMH +https://api.elsevier.com/content/abstract/scopus_id/0038697900,George P. Chrousos;A. Catherine Vaituzis;Margaret F. Keil;Deborah P. Merke;Jeremy D. Fields;Jay N. Giedd,89,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0038697900&origin=inward,10.1210/jc.2002-021730,2003-04-01,"('2-s2.0-0038697900', 'Raznahan')",,1760-1765,12679470.0,38697900,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0038697900&origin=inward,Raznahan,Journal of Clinical Endocrinology and Metabolism,Children with classic congenital adrenal hyperplasia have decreased amygdala volume: Potential prenatal and postnatal hormonal effects,Article,Raznahan,NIMH +https://api.elsevier.com/content/abstract/scopus_id/62149117941,Sara Jane Webb;Stephen R. Dager;Dennis W.W. Shaw;Bobbi Faun Sparks;Geraldine Dawson;Seth D. Friedman;Jay Giedd,92,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=62149117941&origin=inward,10.1016/j.pscychresns.2008.06.001,2009-04-30,"('2-s2.0-62149117941', 'Raznahan')",NICHD,61-67,19243924.0,62149117941,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=62149117941&origin=inward,Raznahan,Psychiatry Research - Neuroimaging,Cerebellar vermal volumes and behavioral correlates in children with autism spectrum disorder,Article,Raznahan,NIMH +https://api.elsevier.com/content/abstract/scopus_id/33746639780,Bobbi F. Sparks;Alan A. Artru;Inbal Boger-Megiddo;Stephen R. Dager;Dennis W.W. Shaw;Geraldine Dawson;Seth D. Friedman;Jay N. Giedd,77,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33746639780&origin=inward,10.1007/s10803-006-0121-2,2006-08-01,"('2-s2.0-33746639780', 'Raznahan')",NICHD,733-739,16625438.0,33746639780,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33746639780&origin=inward,Raznahan,Journal of Autism and Developmental Disorders,Corpus callosum morphometrics in young children with autism spectrum disorder,Article,Raznahan,NIMH +https://api.elsevier.com/content/abstract/scopus_id/79951674630,Gregory L. Wallace;Aaron Alexander-Bloch;Maria Liverpool;Rhoshel K. Lenroot;Nancy R. Lee;Francois Lalonde;Michael Stockman;Catherine Weddle;Jay N. Giedd,82,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79951674630&origin=inward,10.1007/s11065-010-9151-9,2010-12-01,"('2-s2.0-79951674630', 'Raznahan')",NIMH,349-361,21069466.0,79951674630,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79951674630&origin=inward,Raznahan,Neuropsychology Review,Anatomic magnetic resonance imaging of the developing child and adolescent brain and effects of genetic variation,Review,Raznahan,NIMH +https://api.elsevier.com/content/abstract/scopus_id/21044458995,Sarah L. Mehlinger;George P. Chrousos;E. A. Wiggs;A. Catherine Vaituzis;Margaret F. Keil;Deborah P. Merke;Erin Rawson;Constantine A. Stratakis;Stuart Holzer;Jay N. Giedd,84,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=21044458995&origin=inward,10.1210/jc.2004-2488,2005-05-01,"('2-s2.0-21044458995', 'Raznahan')",,2531-2536,15741254.0,21044458995,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=21044458995&origin=inward,Raznahan,Journal of Clinical Endocrinology and Metabolism,Children experience cognitive decline despite reversal of brain atrophy one year after resolution of Cushing syndrome,Article,Raznahan,NIMH +https://api.elsevier.com/content/abstract/scopus_id/5744220126,Dinggang Shen;Dengfeng Liu;Christos Davatzikos;Hong Liu;Liv Clasen;Jay Giedd,69,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=5744220126&origin=inward,10.1016/j.neuroimage.2004.08.018,2004-10-01,"('2-s2.0-5744220126', 'Raznahan')",,648-653,15488414.0,5744220126,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=5744220126&origin=inward,Raznahan,NeuroImage,Automated morphometric study of brain variation in XXY males,Article,Raznahan,NIMH +https://api.elsevier.com/content/abstract/scopus_id/33646366688,Judith L. Rapoport;Arthur W. Toga;Nitin Gogtay;Alex Leow;Kiralee M. Hayashi;Rob Nicolson;Paul M. Thompson;Elizabeth R. Sowell;Jay N. Giedd;Christine N. Vidal,72,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33646366688&origin=inward,10.1016/S0074-7742(05)67009-2,2005-12-01,"('2-s2.0-33646366688', 'Rapoport')",NIA,285-323,16291026.0,33646366688,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33646366688&origin=inward,Rapoport,International Review of Neurobiology,Structural MRI and Brain Development,Review,Rapoport,NIMH +https://api.elsevier.com/content/abstract/scopus_id/0033925811,Anil J. Patwardhan;Allan L. Reiss;J. Eric Schmitt;Stephan Eliez;Judith M. Rumsey;Jay N. Giedd,65,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0033925811&origin=inward,10.1111/1469-7610.00650,2000-01-01,"('2-s2.0-0033925811', 'Rapoport')",,637-644,10946755.0,33925811,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0033925811&origin=inward,Rapoport,Journal of Child Psychology and Psychiatry and Allied Disciplines,Morphological alteration of temporal lobe gray matter in dyslexia: An MRI study,Article,Rapoport,NIMH +https://api.elsevier.com/content/abstract/scopus_id/2442677843,Judith M. Rumsey;Julio Araque;Jay Giedd;Manuel F. Casanova,62,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=2442677843&origin=inward,10.1177/088307380401900407,2004-01-01,"('2-s2.0-2442677843', 'Rapoport')",,275-281,15163094.0,2442677843,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=2442677843&origin=inward,Rapoport,Journal of Child Neurology,Reduced brain size and gyrification in the brains of dyslexic patients,Article,Rapoport,NIMH +https://api.elsevier.com/content/abstract/scopus_id/35348991547,J. Eric Schmitt;Kenneth S. Kendler;Michael C. Neale;William S. Kremen;Lisa T. Eyler;Jay N. Giedd,66,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=35348991547&origin=inward,10.1375/twin.10.5.683,2007-10-01,"('2-s2.0-35348991547', 'Rapoport')",NIH,683-694,17903108.0,35348991547,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=35348991547&origin=inward,Rapoport,Twin Research and Human Genetics,Review of twin and family studies on neuroanatomic phenotypes and typical neurodevelopment,Review,Rapoport,NIMH +https://api.elsevier.com/content/abstract/scopus_id/79958107525,Bobbi F. Sparks;Matthew Bryan;Stephen R. Dager;Dennis W.W. Shaw;Geraldine Dawson;Annette Estes;Jay N. Giedd;Seth Friedman,83,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79958107525&origin=inward,10.1002/aur.193,2011-06-01,"('2-s2.0-79958107525', 'Rapoport')",,212-220,21480545.0,79958107525,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79958107525&origin=inward,Rapoport,Autism Research,Basal ganglia morphometry and repetitive behavior in young children with autism spectrum disorder,Article,Rapoport,NIMH +https://api.elsevier.com/content/abstract/scopus_id/53849133096,Jay N. Giedd;Rhoshel K. Lenroot,71,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=53849133096&origin=inward,10.1017/S0954579408000552,2008-10-20,"('2-s2.0-53849133096', 'Rapoport')",,1161-1175,18838036.0,53849133096,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=53849133096&origin=inward,Rapoport,Development and Psychopathology,The changing impact of genes and environment on brain development during childhood and adolescence: Initial findings from a neuroimaging study of pediatric twins,Article,Rapoport,NIMH +https://api.elsevier.com/content/abstract/scopus_id/67349203979,Manuel F. Casanova;Hossam Hassan;Andrew E. Switala;Ayman El-Baz;Judith M. Rumsey;Glenn Mannheim;Meghan Mott;Rachid Fahmi;Jay Giedd;Aly Farag,58,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=67349203979&origin=inward,10.1007/s10803-008-0681-4,2009-05-01,"('2-s2.0-67349203979', 'Rapoport')",,751-764,19148739.0,67349203979,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=67349203979&origin=inward,Rapoport,Journal of Autism and Developmental Disorders,Reduced gyral window and corpus callosum size in autism: Possible macroscopic correlates of a minicolumnopathy,Article,Rapoport,NIMH +https://api.elsevier.com/content/abstract/scopus_id/34249795175,Michael C. Neale;James Eric Schmitt;Jay N. Giedd,57,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34249795175&origin=inward,10.1002/hbm.20403,2007-06-01,"('2-s2.0-34249795175', 'Rapoport')",,474-481,17437295.0,34249795175,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34249795175&origin=inward,Rapoport,Human Brain Mapping,Structural brain magnetic resonance imaging of pediatric twins,Review,Rapoport,NIMH +https://api.elsevier.com/content/abstract/scopus_id/33846946830,Gregory L. Wallace;Liv S. Clasen;Sarah Ordaz;Michael A. Rosenthal;J. Eric Schmitt;Kenneth S. Kendler;Michael C. Neale;Rhoshel Lenroot;Elizabeth A. Molloy;Jay N. Giedd;Jonathan D. Blumenthal,51,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33846946830&origin=inward,10.1016/j.neuroimage.2006.04.232,2007-03-01,"('2-s2.0-33846946830', 'Rapoport')",NIH,70-82,17208460.0,33846946830,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33846946830&origin=inward,Rapoport,NeuroImage,A multivariate analysis of neuroanatomic relationships in a genetically informative pediatric sample,Article,Rapoport,NIMH +https://api.elsevier.com/content/abstract/scopus_id/0033920114,Jay N. Giedd,46,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0033920114&origin=inward,,2000-07-25,"('2-s2.0-0033920114', 'Rapoport')",,31-34,10826658.0,33920114,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0033920114&origin=inward,Rapoport,Journal of Clinical Psychiatry,Bipolar disorder and attention-deficit/hyperactivity disorder in children and adolescents,Review,Rapoport,NIMH +https://api.elsevier.com/content/abstract/scopus_id/0036331288,Alex Zijdenbos;Jay N. Giedd;Elizabeth Molloy;Jonathan D. Blumenthal,58,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0036331288&origin=inward,10.1006/nimg.2002.1076,2002-01-01,"('2-s2.0-0036331288', 'Rapoport')",,89-92,,36331288,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0036331288&origin=inward,Rapoport,NeuroImage,Motion artifact in magnetic resonance imaging: Implications for automated analysis,Article,Rapoport,NIMH +https://api.elsevier.com/content/abstract/scopus_id/48849100747,Julia Tossell;Nitin Gogtay;Anjene Addington;Rhoshel K. Lenroot;Francois Lalonde;Philip Shaw;Samantha White;Mark Celano;Jay N. Giedd,39,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=48849100747&origin=inward,,2008-11-19,"('2-s2.0-48849100747', 'Shaw')",,101-112,18497098.0,48849100747,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=48849100747&origin=inward,Shaw,Novartis Foundation Symposium,Trajectories of anatomic brain development as a phenotype,Conference Paper,Shaw,NHGRI +https://api.elsevier.com/content/abstract/scopus_id/73749084874,David H. Skuse;J. P. Lerch;Dene Robertson;Armin Raznahan;Francois Lalonde;William Cutter;Judith Ross;Eileen Daly;Gerard S. Conway;Jay N. Giedd;Declan D.G.M. Murphy,46,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=73749084874&origin=inward,10.1016/j.neuroimage.2009.11.057,2010-02-15,"('2-s2.0-73749084874', 'Raznahan')",MRC,2915-2923,19948228.0,73749084874,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=73749084874&origin=inward,Raznahan,NeuroImage,Cortical anatomy in human X monosomy,Article,Raznahan,NIMH +https://api.elsevier.com/content/abstract/scopus_id/73849105651,Nancy Raitano Lee;Jay N. Giedd;Rhoshel K. Lenroot,41,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=73849105651&origin=inward,10.1002/ddrr.86,2009-01-01,"('2-s2.0-73849105651', 'Raznahan')",,318-327,,73849105651,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=73849105651&origin=inward,Raznahan,Developmental Disabilities Research Reviews,Effects of sex chromosome aneuploidies on brain development: Evidence from neuroimaging studies,Article,Raznahan,NIMH +https://api.elsevier.com/content/abstract/scopus_id/0036086106,Alex Zijdenbos;Jonathan Blumenthal;Elizabeth A. Molloy;Christiana M. Leonard;Mark A. Eckert;Jay N. Giedd,35,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0036086106&origin=inward,10.1093/cercor/12.7.749,2002-01-01,"('2-s2.0-0036086106', 'Raznahan')",NIDCD,749-755,12050086.0,36086106,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0036086106&origin=inward,Raznahan,Cerebral Cortex,The epigenesis of planum temporale asymmetry in twins,Article,Raznahan,NIMH +https://api.elsevier.com/content/abstract/scopus_id/67349236042,Gregory L. Wallace;Sarah E. Ordaz;J. Eric Schmitt;Kenneth S. Kendler;Rhoshel K. Lenroot;Elizabeth C. Prom;Michael C. Neale;Jason P. Lerch;Alan C. Evans;Jay N. Giedd,40,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=67349236042&origin=inward,10.1016/j.neuroimage.2008.06.039,2009-08-01,"('2-s2.0-67349236042', 'Raznahan')",NIH,56-64,18672072.0,67349236042,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=67349236042&origin=inward,Raznahan,NeuroImage,Variance decomposition of MRI-based covariance maps using genetically informative samples and structural equation modeling,Article,Raznahan,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84859340821,Gregory L. Wallace;Liv S. Clasen;Rhoshel K. Lenroot;Armin Raznahan;Philip Shaw;Alex Martin;Jay N. Giedd;Nancy Raitano Lee,40,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84859340821&origin=inward,10.1523/JNEUROSCI.6214-11.2012,2012-04-04,"('2-s2.0-84859340821', 'Shaw')",,4856-4860,22492041.0,84859340821,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84859340821&origin=inward,Shaw,Journal of Neuroscience,Distinct cortical correlates of autistic versus antisocial traits in a longitudinal sample of typically developing youth,Article,Shaw,NHGRI +https://api.elsevier.com/content/abstract/scopus_id/66149108700,Gregory L. Wallace;Jay N. Giedd;Francesca Happé,32,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=66149108700&origin=inward,10.1098/rstb.2008.0330,2009-01-01,"('2-s2.0-66149108700', 'Shaw')",,1425-1432,19528026.0,66149108700,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=66149108700&origin=inward,Shaw,Philosophical Transactions of the Royal Society B: Biological Sciences,A case study of a multiply talented savant with an autism spectrum disorder: Neuropsychological functioning and brain morphometry,Article,Shaw,NHGRI +https://api.elsevier.com/content/abstract/scopus_id/70349995040,Michael Windle;Jane D. Brown;Andrew J. Fuligni;Ronald E. Dahl;Daniel Pine;Adrian Angold;Linda P. Spear;Jay Giedd;Greg T. Smith,32,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=70349995040&origin=inward,,2009-10-20,"('2-s2.0-70349995040', 'Pine')",,30-40,,70349995040,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=70349995040&origin=inward,Pine,Alcohol Research and Health,Transitions into underage and problem drinking: Summary of developmental processes and mechanisms: Ages 10-15,Article,Pine,NIMH +https://api.elsevier.com/content/abstract/scopus_id/62849124525,A. Evans;P. Shaw;G. L. Wallace;A. Addington;J. Rapoport;J. N. Giedd,31,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=62849124525&origin=inward,10.1038/mp.2008.121,2009-04-01,"('2-s2.0-62849124525', 'Shaw')",,348-349,19308019.0,62849124525,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=62849124525&origin=inward,Shaw,Molecular Psychiatry,Effects of the Val158Met catechol-O-methyltransferase polymorphism on cortical structure in children and adolescents,Letter,Shaw,NHGRI +https://api.elsevier.com/content/abstract/scopus_id/84867076609,Gregory L. Wallace;Liv S. Clasen;Elizabeth I. Adeyemi;Katherine C. Lopez;Jay N. Giedd;Jonathan D. Blumenthal;Nancy Raitano Lee,39,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84867076609&origin=inward,10.1111/j.1469-7610.2012.02573.x,2012-10-01,"('2-s2.0-84867076609', 'Shaw')",,1072-1081,22827287.0,84867076609,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84867076609&origin=inward,Shaw,Journal of Child Psychology and Psychiatry and Allied Disciplines,Dosage effects of X and y chromosomes on language and social functioning in children with supernumerary sex chromosome aneuploidies: Implications for idiopathic language impairment and autism spectrum disorders,Article,Shaw,NHGRI +https://api.elsevier.com/content/abstract/scopus_id/84871442139,Gregory L. Wallace;Yohan Lee;Alexis Hedrick;Armin Raznahan;Liv Clasen;Jay N. Giedd;Deanna Greenstein,29,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84871442139&origin=inward,10.1002/aur.1256,2012-12-01,"('2-s2.0-84871442139', 'Raznahan')",,434-439,23097380.0,84871442139,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84871442139&origin=inward,Raznahan,Autism Research,Autism Risk Gene MET Variation and Cortical Thickness in Typically Developing Children and Adolescents,Article,Raznahan,NIMH +https://api.elsevier.com/content/abstract/scopus_id/77949264840,Gregory L. Wallace;Dede Greenstein;Sarah E. Ordaz;J. Eric Schmitt;Kenneth S. Kendler;Rhoshel K. Lenroot;Michael C. Neale;Liv Clasen;Jay N. Giedd,24,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77949264840&origin=inward,10.1007/s10519-010-9332-6,2010-03-01,"('2-s2.0-77949264840', 'Raznahan')",NIH,114-124,20112130.0,77949264840,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77949264840&origin=inward,Raznahan,Behavior Genetics,A twin study of intracerebral volumetric relationships,Article,Raznahan,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84871724113,Susan E. Swedo;Marta Gozzi;Sarah J. Spence;Armin Raznahan;Rhoshel Lenroot;Audrey Thurm;Jay N. Giedd;Allison Hanley,31,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84871724113&origin=inward,10.1016/j.nicl.2012.10.005,2013-01-07,"('2-s2.0-84871724113', 'Raznahan')",,111-119,,84871724113,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84871724113&origin=inward,Raznahan,NeuroImage: Clinical,Mapping cortical anatomy in preschool aged children with autism using surface-based morphometry,Article,Raznahan,NIMH +https://api.elsevier.com/content/abstract/scopus_id/0141870005,Jay N. Giedd,21,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0141870005&origin=inward,10.1521/bumc.67.2.132.23445,2003-03-01,"('2-s2.0-0141870005', 'Raznahan')",,132-142,14604098.0,141870005,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0141870005&origin=inward,Raznahan,Bulletin of the Menninger Clinic,The anatomy of mentalization: A view from developmental neuroimaging,Conference Paper,Raznahan,NIMH +https://api.elsevier.com/content/abstract/scopus_id/14544289969,Gregory L. Wallace;Liv S. Clasen;A. Catherine Vaituzis;Michael A. Rosenthal;Deborah P. Merke;A. Blythe Rose;Jeremy D. Fields;Jay N. Giedd,21,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=14544289969&origin=inward,10.1196/annals.1314.027,2004-01-01,"('2-s2.0-14544289969', 'Raznahan')",,231-233,15677417.0,14544289969,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=14544289969&origin=inward,Raznahan,Annals of the New York Academy of Sciences,Effects of hormones and sex chromosomes on stress-influenced regions of the developing pediatric brain,Conference Paper,Raznahan,NIMH +https://api.elsevier.com/content/abstract/scopus_id/77949267592,Gregory L. Wallace;Liv S. Clasen;Sarah E. Medland;Rhoshel K. Lenroot;Michael C. Neale;Elizabeth C. Prom-Wormley;Jay N. Giedd;Nancy Raitano Lee;James E. Schmitt,21,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77949267592&origin=inward,10.1007/s10519-009-9329-1,2010-03-01,"('2-s2.0-77949267592', 'Raznahan')",NIMH,125-134,20112131.0,77949267592,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77949267592&origin=inward,Raznahan,Behavior Genetics,A bivariate twin study of regional brain volumes and verbal and nonverbal intellectual skills during childhood and adolescence,Article,Raznahan,NIMH +https://api.elsevier.com/content/abstract/scopus_id/70349101247,Jay N. Giedd,20,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=70349101247&origin=inward,10.1016/j.jadohealth.2009.07.007,2009-10-01,"('2-s2.0-70349101247', 'Raznahan')",,319-320,19766933.0,70349101247,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=70349101247&origin=inward,Raznahan,Journal of Adolescent Health,"Linking Adolescent Sleep, Brain Maturation, and Behavior",Editorial,Raznahan,NIMH +https://api.elsevier.com/content/abstract/scopus_id/0035002285,Anil J. Patwardhan;Donald C. Rojas;Chris D. White;Bradley S. Peterson;Allan L. Reiss;Gary H. Glover;Stephan Eliez;Ilana S. Warsofsky;Jay N. Giedd,18,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0035002285&origin=inward,10.1097/00004728-200105000-00020,2001-05-26,"('2-s2.0-0035002285', 'Raznahan')",,452-457,11351198.0,35002285,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0035002285&origin=inward,Raznahan,Journal of Computer Assisted Tomography,Effects of image orientation on the comparability of pediatric brain volumes using three-dimensional MR data,Article,Raznahan,NIMH +https://api.elsevier.com/content/abstract/scopus_id/0035283391,Leslie K. Jacobsen;Thomas R. Kosten;Mary Jeanne Kreek;Christopher Gottschalk;Jay N. Giedd,17,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0035283391&origin=inward,10.1016/S0376-8716(00)00159-9,2001-03-01,"('2-s2.0-0035283391', 'Raznahan')",VA,49-56,11173167.0,35283391,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0035283391&origin=inward,Raznahan,Drug and Alcohol Dependence,Quantitative medial temporal lobe brain morphology and hypothalamic-pituitary-adrenal axis function in cocaine dependence: A preliminary report,Article,Raznahan,NIMH +https://api.elsevier.com/content/abstract/scopus_id/32644444942,Nicholas Lange;Louise M. Ryan;Jay N. Giedd;Jaroslaw Harezlak,19,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=32644444942&origin=inward,10.1111/j.1541-0420.2005.00376.x,2005-12-01,"('2-s2.0-32644444942', 'Raznahan')",,1037-1048,16401277.0,32644444942,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=32644444942&origin=inward,Raznahan,Biometrics,Individual and population penalized regression splines for accelerated longitudinal designs,Article,Raznahan,NIMH +https://api.elsevier.com/content/abstract/scopus_id/77249137696,Manuel F. Casanova;Andrew E. Switala;Judith M. Rumsey;Ayman S. El-Baz;Jay Giedd,16,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77249137696&origin=inward,10.1007/s10803-009-0817-1,2010-01-01,"('2-s2.0-77249137696', 'Raznahan')",NIH,21-29,19609661.0,77249137696,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77249137696&origin=inward,Raznahan,Journal of Autism and Developmental Disorders,Increased white matter gyral depth in dyslexia: Implications for corticocortical connectivity,Article,Raznahan,NIMH +https://api.elsevier.com/content/abstract/scopus_id/77950800300,J. E. Schmitt;J. D. Blumenthal;L. S. Clasen;G. L. Wallace;R. K. Lenroot;S. J. Ordaz;J. N. Giedd,16,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77950800300&origin=inward,10.1111/j.1601-183X.2009.00558.x,2010-04-01,"('2-s2.0-77950800300', 'Raznahan')",,288-295,20100212.0,77950800300,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77950800300&origin=inward,Raznahan,"Genes, Brain and Behavior",Are there differences in brain morphometry between twins and unrelated singletons? A pediatric MRI study,Article,Raznahan,NIMH +https://api.elsevier.com/content/abstract/scopus_id/31144441383,Gregory C. Postel;James D. Christensen;Manuel F. Cassanova;Judith M. Ramsey;David L. Garver;Jay Giedd,11,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=31144441383&origin=inward,10.1177/08830738050200101401,2005-10-01,"('2-s2.0-31144441383', 'Raznahan')",,842-847,16417884.0,31144441383,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=31144441383&origin=inward,Raznahan,Journal of Child Neurology,Magnetic resonance imaging study of brain asymmetries in dyslexic patients,Article,Raznahan,NIMH +https://api.elsevier.com/content/abstract/scopus_id/79952347304,Manuel F. Casanova;Emily L. Williams;Andrew E. Switala;Ayman El-Baz;Judith M. Rumsey;Ahmed Elnakib;Jay Giedd,13,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79952347304&origin=inward,10.2478/v10134-010-0017-8,2010-06-01,"('2-s2.0-79952347304', 'Raznahan')",,124-130,,79952347304,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79952347304&origin=inward,Raznahan,Translational Neuroscience,Corpus callosum shape analysis with application to dyslexia,Article,Raznahan,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84873427415,Liv S. Clasen;Rhoshel K. Lenroot;Eva H. Baker;Benjamin Wade;Jay N. Giedd;Jonathan D. Blumenthal;Nancy Raitano Lee,13,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84873427415&origin=inward,10.1016/j.nicl.2013.01.003,2013-02-12,"('2-s2.0-84873427415', 'Raznahan')",NIMH,197-203,,84873427415,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84873427415&origin=inward,Raznahan,NeuroImage: Clinical,"Brain morphological abnormalities in 49,XXXXY syndrome: A pediatric magnetic resonance imaging study",Article,Raznahan,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84865338870,Yohan Lee;Dede Greenstein;Ron Pierson;Armin Raznahan;Francois Lalonde;Catherine Vaituzis;Lan Tran;Liv Clasen;Henning Tiemeier;Jay N. Giedd;Susan Mackie,9,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84865338870&origin=inward,10.1002/aur.238,2012-04-01,"('2-s2.0-84865338870', 'Raznahan')",,93-100,22359339.0,84865338870,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84865338870&origin=inward,Raznahan,Autism Research,Allelic variation within the putative autism spectrum disorder risk gene homeobox A1 and cerebellar maturation in typically developing children and adolescents,Article,Raznahan,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84875380678,Judith Rapoport;Francois Lalonde;Anand Mattai;Katherine C. Lopez;Liv Clasen;Benjamin Wade;Jay N. Giedd,8,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84875380678&origin=inward,10.1016/j.pscychresns.2012.10.012,2013-04-30,"('2-s2.0-84875380678', 'Rapoport')",,1-6,23453697.0,84875380678,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84875380678&origin=inward,Rapoport,Psychiatry Research - Neuroimaging,Quantitative morphology of the corpus callosum in obsessive-compulsive disorder,Article,Rapoport,NIMH +https://api.elsevier.com/content/abstract/scopus_id/0035019475,J. N. Giedd,6,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0035019475&origin=inward,10.1001/archpsyc.58.5.443,2001-01-01,"('2-s2.0-0035019475', 'Rapoport')",,443-444,11343522.0,35019475,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0035019475&origin=inward,Rapoport,Archives of General Psychiatry,Neuroimaging of pediatric neuropsychiatric disorders: Is a picture really worth a thousand words?,Note,Rapoport,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84875364569,Benjamin Seavey Cutler Wade;Michael Joseph McLaughlin;Armin Raznahan;Francois Lalonde;Jay Norman Giedd;Michael Stockman,5,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84875364569&origin=inward,10.1016/j.pscychresns.2012.05.004,2013-03-30,"('2-s2.0-84875364569', 'Raznahan')",,221-225,23149042.0,84875364569,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84875364569&origin=inward,Raznahan,Psychiatry Research - Neuroimaging,Improved corpus callosum area measurements by analysis of adjoining parasagittal slices,Article,Raznahan,NIMH +https://api.elsevier.com/content/abstract/scopus_id/68749109390,Stacy S. Drury;Jay Giedd,0,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=68749109390&origin=inward,10.1097/CHI.0b013e3181a5e413,2009-01-01,"('2-s2.0-68749109390', 'Raznahan')",,677-678,19542819.0,68749109390,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=68749109390&origin=inward,Raznahan,Journal of the American Academy of Child and Adolescent Psychiatry,In this issue/abstract thinking: Inside the adolescent brain,Article,Raznahan,NIMH +https://api.elsevier.com/content/abstract/scopus_id/37149022852,Nitin Gogtay,80,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=37149022852&origin=inward,10.1093/schbul/sbm103,2008-01-01,"('2-s2.0-37149022852', 'Raznahan')",,30-36,17906336.0,37149022852,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=37149022852&origin=inward,Raznahan,Schizophrenia Bulletin,Cortical brain development in schizophrenia: Insights from neuroimaging studies in childhood-onset schizophrenia,Review,Raznahan,NIMH +https://api.elsevier.com/content/abstract/scopus_id/33750325819,Matteo Pardini;Ricardo De Oliveira-Souza;Jordan Grafman;Frank Krueger;Jorge Moll;Roland Zahn,507,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33750325819&origin=inward,10.1073/pnas.0604475103,2006-10-17,"('2-s2.0-33750325819', 'Raznahan')",,15623-15628,17030808.0,33750325819,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33750325819&origin=inward,Raznahan,Proceedings of the National Academy of Sciences of the United States of America,Human fronto-mesolimbic networks guide decisions about charitable donation,Article,Raznahan,NIMH +https://api.elsevier.com/content/abstract/scopus_id/0037315630,Jacqueline N. Wood;Jordan Grafman,449,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0037315630&origin=inward,10.1038/nrn1033,2003-01-01,"('2-s2.0-0037315630', 'Raznahan')",,139-147,12563285.0,37315630,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0037315630&origin=inward,Raznahan,Nature Reviews Neuroscience,Human prefrontal cortex: Processing and representational perspectives,Article,Raznahan,NIMH +https://api.elsevier.com/content/abstract/scopus_id/0036335669,Ivanei E. Bramati;Ricardo De Oliveira-Souza;Jorge Moll;Jordan Grafman,316,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0036335669&origin=inward,10.1006/nimg.2002.1118,2002-01-01,"('2-s2.0-0036335669', 'Raznahan')",,696-703,,36335669,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0036335669&origin=inward,Raznahan,NeuroImage,Functional networks in emotional moral and nonmoral social judgments,Article,Raznahan,NIMH +https://api.elsevier.com/content/abstract/scopus_id/34547511134,Griselda Garrido;Jordan Grafman;Frank Krueger;Edward D. Huey;Jorge Moll;Roland Zahn,290,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34547511134&origin=inward,10.1073/pnas.0607061104,2007-04-10,"('2-s2.0-34547511134', 'Raznahan')",,6430-6435,17404215.0,34547511134,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34547511134&origin=inward,Raznahan,Proceedings of the National Academy of Sciences of the United States of America,Social concepts are represented in the superior anterior temporal cortex,Article,Raznahan,NIMH +https://api.elsevier.com/content/abstract/scopus_id/38049112572,Nikolaus Kriegeskorte;Jordan Grafman;Armin Heinecke;Maren Strenziok;Frank Krueger;Kevin McCabe;Jorge Moll;Roland Zahn,226,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=38049112572&origin=inward,10.1073/pnas.0710103104,2007-12-11,"('2-s2.0-38049112572', 'Raznahan')",,20084-20089,18056800.0,38049112572,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=38049112572&origin=inward,Raznahan,Proceedings of the National Academy of Sciences of the United States of America,Neural correlates of trust,Article,Raznahan,NIMH +https://api.elsevier.com/content/abstract/scopus_id/58449086165,Griselda Garrido;Jordan Grafman;Frank Krueger;Edward D. Huey;Jorge Moll;Mirella Paiva;Roland Zahn,199,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=58449086165&origin=inward,10.1093/cercor/bhn080,2009-02-01,"('2-s2.0-58449086165', 'Raznahan')",BMBF,276-283,18502730.0,58449086165,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=58449086165&origin=inward,Raznahan,Cerebral Cortex,The neural basis of human social values: Evidence from functional MRI,Article,Raznahan,NIMH +https://api.elsevier.com/content/abstract/scopus_id/54049108530,E. D. Huey;P. F. Nichelli;F. Krueger;G. Zamboni;J. Grafman,168,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=54049108530&origin=inward,10.1212/01.wnl.0000324920.96835.95,2008-09-02,"('2-s2.0-54049108530', 'Raznahan')",,736-742,18765649.0,54049108530,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=54049108530&origin=inward,Raznahan,Neurology,Apathy and disinhibition in frontotemporal dementia: Insights into their neural correlates,Article,Raznahan,NIMH +https://api.elsevier.com/content/abstract/scopus_id/34447525749,Ivanei E. Bramati;Mirella L.M.F. Paiva;Ricardo de Oliveira-Souza;Jordan Grafman;Egas M.A. Caparelli-Daquer;Jorge Moll;Roland Zahn;Griselda J. Garrido,150,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34447525749&origin=inward,10.1080/17470910701392024,2007-01-01,"('2-s2.0-34447525749', 'Raznahan')",CNPq,336-352,18633822.0,34447525749,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34447525749&origin=inward,Raznahan,Social Neuroscience,The self as a moral agent: Linking the neural bases of social agency and moral sensitivity,Article,Raznahan,NIMH +https://api.elsevier.com/content/abstract/scopus_id/0036741224,Etienne Koechlin;Jean Claude Dreher;Jordan Grafman;Syed Omar Ali,134,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0036741224&origin=inward,10.1006/nimg.2002.1169,2002-01-01,"('2-s2.0-0036741224', 'Raznahan')",,95-109,12482070.0,36741224,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0036741224&origin=inward,Raznahan,NeuroImage,The roles of timing and task order during task switching,Article,Raznahan,NIMH +https://api.elsevier.com/content/abstract/scopus_id/63849207252,Michael Su;Dimitrios Kapogiannis;Aron K. Barbey;Jordan Grafman;Frank Krueger;Giovanna Zamboni,151,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=63849207252&origin=inward,10.1073/pnas.0811717106,2009-03-24,"('2-s2.0-63849207252', 'Raznahan')",,4876-4881,19273839.0,63849207252,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=63849207252&origin=inward,Raznahan,Proceedings of the National Academy of Sciences of the United States of America,Cognitive and neural foundations of religious belief,Article,Raznahan,NIMH +https://api.elsevier.com/content/abstract/scopus_id/0037379819,Jean Claude Dreher;Jordan Grafman,120,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0037379819&origin=inward,10.1093/cercor/13.4.329,2003-04-01,"('2-s2.0-0037379819', 'Raznahan')",,329-339,12631562.0,37379819,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0037379819&origin=inward,Raznahan,Cerebral Cortex,Dissociating the roles of the rostral anterior cingulate and the lateral prefrontal cortices in performing two tasks simultaneously or successively,Article,Raznahan,NIMH +https://api.elsevier.com/content/abstract/scopus_id/0036428729,Jean Claude Dreher;Jordan Grafman,117,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0036428729&origin=inward,10.1046/j.1460-9568.2002.02212.x,2002-01-01,"('2-s2.0-0036428729', 'Raznahan')",,1609-1619,12405975.0,36428729,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0036428729&origin=inward,Raznahan,European Journal of Neuroscience,The roles of the cerebellum and basal ganglia in timing and error prediction,Article,Raznahan,NIMH +https://api.elsevier.com/content/abstract/scopus_id/64849090602,Michael Tierney;Jordan Grafman;Edward D. Huey;Frank Krueger;Jorge Moll;Roland Zahn;Vijeth Iyengar,119,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=64849090602&origin=inward,10.1093/brain/awn343,2009-03-01,"('2-s2.0-64849090602', 'Raznahan')",NINDS,604-616,19153155.0,64849090602,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=64849090602&origin=inward,Raznahan,Brain,Social conceptual impairments in frontotemporal lobar degeneration with right anterior temporal hypometabolism,Article,Raznahan,NIMH +https://api.elsevier.com/content/abstract/scopus_id/35148839423,Kristine M. Knutson;Charlotte F. Manly;Linda Mah;Jordan Grafman,104,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=35148839423&origin=inward,10.1002/hbm.20320,2007-10-01,"('2-s2.0-35148839423', 'Raznahan')",,915-930,17133388.0,35148839423,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=35148839423&origin=inward,Raznahan,Human Brain Mapping,Neural correlates of automatic beliefs about gender and race,Article,Raznahan,NIMH +https://api.elsevier.com/content/abstract/scopus_id/28244480421,Laurence Fiddick;Jordan Grafman;Maria Vittoria Spampinato,69,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=28244480421&origin=inward,10.1016/j.neuroimage.2005.05.033,2005-12-01,"('2-s2.0-28244480421', 'Raznahan')",,778-786,15994098.0,28244480421,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=28244480421&origin=inward,Raznahan,NeuroImage,Social contracts and precautions activate different neurological systems: An fMRI investigation of deontic reasoning,Article,Raznahan,NIMH +https://api.elsevier.com/content/abstract/scopus_id/0037130475,Yves Burnod;Adrian Danek;Etienne Koechlin;Jordan Grafman,65,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0037130475&origin=inward,10.1016/S0896-6273(02)00742-0,2002-07-18,"('2-s2.0-0037130475', 'Raznahan')",,371-381,,37130475,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0037130475&origin=inward,Raznahan,Neuron,Medial prefrontal and subcortical mechanisms underlying the acquisition of motor and cognitive action sequences in humans,Article,Raznahan,NIMH +https://api.elsevier.com/content/abstract/scopus_id/34047224991,P. Pietrini;J. C. Troncoso;B. Ghetti;E. D. Huey;M. A. Baraibar;S. Spina;A. G. Barbeito;E. M. Wassermann;R. Vidal;J. R. Murrell;J. Grafman,62,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34047224991&origin=inward,10.1212/01.wnl.0000254460.31273.2d,2007-01-01,"('2-s2.0-34047224991', 'Wassermann')",,820-827,17202431.0,34047224991,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34047224991&origin=inward,Wassermann,Neurology,Clinicopathologic features of frontotemporal dementia with Progranulin sequence variation,Article,Wassermann,NINDS +https://api.elsevier.com/content/abstract/scopus_id/33847043309,Kristine M. Knutson;Jacqueline N. Wood;Maria V. Spampinato;Jordan Grafman,60,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33847043309&origin=inward,10.1080/17470910600670603,2006-01-01,"('2-s2.0-33847043309', 'Wassermann')",NIH,25-40,17372621.0,33847043309,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33847043309&origin=inward,Wassermann,Social neuroscience,Politics on the brain: an FMRI investigation.,Article,Wassermann,NINDS +https://api.elsevier.com/content/abstract/scopus_id/34948857902,Jordan Grafman;Armin Heinecke;Frank Krueger;Jorge Moll;Roland Zahn,59,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34948857902&origin=inward,10.1093/cercor/bhl143,2007-10-01,"('2-s2.0-34948857902', 'Wassermann')",NINDS,2346-2353,17190970.0,34948857902,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34948857902&origin=inward,Wassermann,Cerebral Cortex,Event frequency modulates the processing of daily life activities in human medial prefrontal cortex,Article,Wassermann,NINDS +https://api.elsevier.com/content/abstract/scopus_id/13844310732,Kristine M. Knutson;Jacqueline N. Wood;Jordan Grafman,53,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=13844310732&origin=inward,10.1016/j.neuroimage.2004.08.012,2004-01-01,"('2-s2.0-13844310732', 'Wassermann')",NINDS,1299-1307,15589094.0,13844310732,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=13844310732&origin=inward,Wassermann,NeuroImage,Brain activation in processing temporal sequence: An fMRI study,Article,Wassermann,NINDS +https://api.elsevier.com/content/abstract/scopus_id/2442437936,Vinod Goel;Jordan Grafman;Milan Makale,60,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=2442437936&origin=inward,10.1162/089892904323057362,2004-05-01,"('2-s2.0-2442437936', 'Wassermann')",,654-664,15165354.0,2442437936,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=2442437936&origin=inward,Wassermann,Journal of Cognitive Neuroscience,The hippocampal system mediates logical reasoning about familiar spatial environments,Article,Wassermann,NINDS +https://api.elsevier.com/content/abstract/scopus_id/0037440872,M. Makale;J. N. Wood;Jordan Grafman;S. G. Romero,45,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0037440872&origin=inward,10.1162/089892903321208178,2003-02-15,"('2-s2.0-0037440872', 'Wassermann')",,236-248,12676061.0,37440872,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0037440872&origin=inward,Wassermann,Journal of Cognitive Neuroscience,Category-specific representations of social and nonsocial knowledge in the human prefrontal cortex,Article,Wassermann,NINDS +https://api.elsevier.com/content/abstract/scopus_id/0037472345,Gianpaolo Basso;Matthew Peterson;Jordan Grafman;Paolo Nichelli;Charles M. Wharton,38,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0037472345&origin=inward,10.1016/S0361-9230(02)00941-3,2003-01-30,"('2-s2.0-0037472345', 'Wassermann')",,405-411,12507693.0,37472345,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0037472345&origin=inward,Wassermann,Brain Research Bulletin,Distributed neural systems for temporal production: A functional MRI study,Article,Wassermann,NINDS +https://api.elsevier.com/content/abstract/scopus_id/33750966722,Adrian Danek;Jordan Grafman;Jan Kassubek;Karsten Henkel;John Butman,40,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33750966722&origin=inward,10.1002/mds.21046,2006-10-01,"('2-s2.0-33750966722', 'Wassermann')",,1728-1731,16874760.0,33750966722,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33750966722&origin=inward,Wassermann,Movement Disorders,Head of the caudate nucleus is most vulnerable in Chorea - Acanthocytosis: A voxel-based morphometry study,Article,Wassermann,NINDS +https://api.elsevier.com/content/abstract/scopus_id/13544274265,Kristine M. Knutson;Jacqueline N. Wood;Jordan Grafman;Stephen G. Romero,31,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=13544274265&origin=inward,10.1016/j.neuropsychologia.2004.11.011,2005-01-01,"('2-s2.0-13544274265', 'Wassermann')",,249-259,15707909.0,13544274265,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=13544274265&origin=inward,Wassermann,Neuropsychologia,"Representation of attitudinal knowledge: Role of prefrontal cortex, amygdala and parahippocampal gyrus",Conference Paper,Wassermann,NINDS +https://api.elsevier.com/content/abstract/scopus_id/70249145763,Jordan Grafman;Marina Nakic;Kris Knutson;Vinod Goel;Melanie Stollstorff,37,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=70249145763&origin=inward,10.1016/j.neuropsychologia.2009.06.002,2009-11-01,"('2-s2.0-70249145763', 'Wassermann')",,2790-2797,19523967.0,70249145763,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=70249145763&origin=inward,Wassermann,Neuropsychologia,A role for right ventrolateral prefrontal cortex in reasoning about indeterminate relations,Article,Wassermann,NINDS +https://api.elsevier.com/content/abstract/scopus_id/25444512196,Kristine M. Knutson;Jacqueline N. Wood;Jordan Grafman,32,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=25444512196&origin=inward,10.1093/cercor/bhh215,2005-08-01,"('2-s2.0-25444512196', 'Wassermann')",,1155-1161,15563720.0,25444512196,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=25444512196&origin=inward,Wassermann,Cerebral Cortex,Psychological structure and neural correlates of event knowledge,Article,Wassermann,NINDS +https://api.elsevier.com/content/abstract/scopus_id/79960942747,Elke Van der meer;Gopikrishna Deshpande;Rhoshel K. Lenroot;Jordan Grafman;Maren Strenziok;Frank Krueger,37,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79960942747&origin=inward,10.1093/scan/nsq079,2011-10-01,"('2-s2.0-79960942747', 'Wassermann')",,537-547,20934985.0,79960942747,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79960942747&origin=inward,Wassermann,Social Cognitive and Affective Neuroscience,Fronto-parietal regulation of media violence exposure in adolescents: A multi-method study,Article,Wassermann,NINDS +https://api.elsevier.com/content/abstract/scopus_id/49949115092,Matteo Pardini;Jacqueline N. Wood;Jordan Grafman;Maria Vittoria Spampinato;Sinisa Pajevic;Frank Krueger;George H. Weiss;Steffen Landgraf,30,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=49949115092&origin=inward,10.1097/WNR.0b013e328303fd85,2008-07-16,"('2-s2.0-49949115092', 'Wassermann')",,1095-1099,18596607.0,49949115092,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=49949115092&origin=inward,Wassermann,NeuroReport,Integral calculus problem solving: An fMRI investigation,Article,Wassermann,NINDS +https://api.elsevier.com/content/abstract/scopus_id/76149120432,K. M. Knutson;E. D. Huey;F. Krueger;G. Zamboni;J. Grafman,31,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=76149120432&origin=inward,10.1159/000255141,2010-02-01,"('2-s2.0-76149120432', 'Wassermann')",,88-96,20150729.0,76149120432,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=76149120432&origin=inward,Wassermann,Dementia and Geriatric Cognitive Disorders,Anosognosia for behavioral disturbances in frontotemporal dementia and corticobasal syndrome: A voxel-based morphometry study,Article,Wassermann,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84905697935,Frank Krueger;Jordan Grafman;Henrik Walter;Morris Hoffman,30,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84905697935&origin=inward,10.1093/scan/nst092,2014-08-01,"('2-s2.0-84905697935', 'Wassermann')",,1143-1149,23887810.0,84905697935,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84905697935&origin=inward,Wassermann,Social Cognitive and Affective Neuroscience,An fMRI investigation of the effects of belief in free will on third-party punishment,Article,Wassermann,NINDS +https://api.elsevier.com/content/abstract/scopus_id/45449089254,Kristine M. Knutson;Erin M. McClellan;Jordan Grafman,18,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=45449089254&origin=inward,10.1007/s00221-008-1352-6,2008-06-01,"('2-s2.0-45449089254', 'Wassermann')",NIH,187-198,18483724.0,45449089254,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=45449089254&origin=inward,Wassermann,Experimental Brain Research,Observing social gestures: An fMRI study,Article,Wassermann,NINDS +https://api.elsevier.com/content/abstract/scopus_id/78751679930,Kristine M. Knutson;Rhoshel K. Lenroot;Armin Heinecke;Maren Strenziok;Frank Krueger;Jordan Grafman;Elke van der Meer,17,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=78751679930&origin=inward,10.1093/scan/nsp036,2011-01-01,"('2-s2.0-78751679930', 'Wassermann')",,2-11,19770220.0,78751679930,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=78751679930&origin=inward,Wassermann,Social Cognitive and Affective Neuroscience,Developmental effects of aggressive behavior in male adolescents assessed with structural and functional brain imaging,Article,Wassermann,NINDS +https://api.elsevier.com/content/abstract/scopus_id/68249110401,Thomas Morland;Aron K. Barbey;Jordan Grafman;Maria Vittoria Spampinato;Frank Krueger;Edward D. Huey,18,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=68249110401&origin=inward,10.1097/WNR.0b013e32832e7ea5,2009-08-05,"('2-s2.0-68249110401', 'Wassermann')",NINDS,1093-1097,19590392.0,68249110401,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=68249110401&origin=inward,Wassermann,NeuroReport,The frontopolar cortex mediates event knowledge complexity: A parametric functional MRI study,Article,Wassermann,NINDS +https://api.elsevier.com/content/abstract/scopus_id/79959975905,Jordan Grafman;Maren Strenziok;Frank Krueger;Sarah Pulaski;Giovanna Zamboni;Deborah Clawson,17,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79959975905&origin=inward,10.1097/WNN.0b013e3182255a7c,2011-06-01,"('2-s2.0-79959975905', 'Wassermann')",,59-67,21697710.0,79959975905,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79959975905&origin=inward,Wassermann,Cognitive and Behavioral Neurology,Regional brain atrophy and impaired decision making on the Balloon Analog Risk Task in behavioral variant frontotemporal dementia,Article,Wassermann,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84907284993,Gopikrishna Deshpande;Dimitrios Kapogiannis;Frank Krueger;Jordan Henry Grafman;Matthew P. Thornburg,19,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84907284993&origin=inward,10.1089/brain.2013.0172,2014-02-01,"('2-s2.0-84907284993', 'Wassermann')",,70-79,24279687.0,84907284993,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84907284993&origin=inward,Wassermann,Brain Connectivity,Brain networks shaping religious belief,Article,Wassermann,NINDS +https://api.elsevier.com/content/abstract/scopus_id/78649602256,Frank Krueger;Marta Gozzi;Giovanna Zamboni;Jordan Grafman,16,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=78649602256&origin=inward,10.1002/hbm.20976,2010-11-01,"('2-s2.0-78649602256', 'Wassermann')",,1763-1771,20162603.0,78649602256,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=78649602256&origin=inward,Wassermann,Human Brain Mapping,Interest in politics modulates neural activity in the amygdala and ventral striatum,Article,Wassermann,NINDS +https://api.elsevier.com/content/abstract/scopus_id/28444499651,Jacqueline N. Wood;Michael Tierney;Laura A. Bidwell;Jordan Grafman,12,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=28444499651&origin=inward,10.1016/S0010-9452(08)70298-3,2005-01-01,"('2-s2.0-28444499651', 'Wassermann')",NINDS,796-804,16350660.0,28444499651,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=28444499651&origin=inward,Wassermann,Cortex,Neural correlates of script event knowledge: A neuropsychological study following prefrontal injury,Article,Wassermann,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84928686467,Jorge Moll;Roland Zahn;Jordan Grafman;Griselda Garrido,11,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84928686467&origin=inward,10.1093/scan/nst158,2014-01-01,"('2-s2.0-84928686467', 'Wassermann')",,1676-1683,24106333.0,84928686467,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84928686467&origin=inward,Wassermann,Social Cognitive and Affective Neuroscience,Individual differences in posterior cortical volume correlate with proneness to pride and gratitude,Article,Wassermann,NINDS +https://api.elsevier.com/content/abstract/scopus_id/77952104766,Anne E. Openshaw;Jordan Grafman;Maren Strenziok;Frank Krueger;Giovanna Zamboni;Sarah J. Pulaski;Elke van der Meer,9,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77952104766&origin=inward,10.1016/j.jadohealth.2009.11.196,2010-06-01,"('2-s2.0-77952104766', 'Wassermann')",NIH,607-609,20472220.0,77952104766,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77952104766&origin=inward,Wassermann,Journal of Adolescent Health,Lower Lateral Orbitofrontal Cortex Density Associated With More Frequent Exposure to Television and Movie Violence in Male Adolescents,Article,Wassermann,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84922760522,Frank Krueger;Aron K. Barbey;Jordan Grafman,5,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84922760522&origin=inward,10.1093/acprof:oso/9780195395518.003.0018,2011-09-22,"('2-s2.0-84922760522', 'Wassermann')",,,,84922760522,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84922760522&origin=inward,Wassermann,Predictions in the Brain: Using Our Past to Generate a Future,Architecture of Counterfactual Thought in the Prefrontal Cortex,Chapter,Wassermann,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84920616344,Ivanei E. Bramati;Ricardo De Oliveira-Souza;Jorge Moll;Jordan Grafman,0,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84920616344&origin=inward,10.4324/9780203496190,2013-01-01,"('2-s2.0-84920616344', 'Wassermann')",,63-72,,84920616344,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84920616344&origin=inward,Wassermann,Social Neuroscience: Key Readings,Functional networks in emotional moral and nonmoral social judgments,Chapter,Wassermann,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84920753092,Jordan Grafman,0,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84920753092&origin=inward,10.1093/acprof:oso/9780195177619.003.0011,2009-05-01,"('2-s2.0-84920753092', 'Wassermann')",,,,84920753092,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84920753092&origin=inward,Wassermann,Neuroergonomics: The brain at work,Executive Functions,Chapter,Wassermann,NINDS +https://api.elsevier.com/content/abstract/scopus_id/78951492017,Christian Grillon;Raphael Kaplan;Gang Chen;Ruben P. Alvarez;Jerzy Bodurka,182,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=78951492017&origin=inward,10.1016/j.neuroimage.2010.11.057,2011-03-01,"('2-s2.0-78951492017', 'Grillon')",NIMH,389-400,21111828.0,78951492017,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=78951492017&origin=inward,Grillon,NeuroImage,Phasic and sustained fear in humans elicits distinct patterns of brain activity,Article,Grillon,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84857134559,Christian Grillon;Danielle R. Charney;Katherine Vytal;Oliver J. Robinson;Cassie Overstreet,107,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84857134559&origin=inward,10.1016/j.neuroimage.2011.11.096,2012-03-01,"('2-s2.0-84857134559', 'Grillon')",,523-529,22178453.0,84857134559,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84857134559&origin=inward,Grillon,NeuroImage,The adaptive threat bias in anxiety: Amygdala-dorsomedial prefrontal cortex coupling and aversive amplification,Article,Grillon,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84905921226,Richard C. Reynolds;Christian Grillon;Daniel E. Bradford;Ruben P. Alvarez;Shmuel Lissek;Philip Burton;Tori Espensen-Sturges,105,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84905921226&origin=inward,10.1093/scan/nst096,2014-01-01,"('2-s2.0-84905921226', 'Grillon')",NIMH,1134-1142,23748500.0,84905921226,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84905921226&origin=inward,Grillon,Social Cognitive and Affective Neuroscience,Neural substrates of classically conditioned fear-generalization in humans: A parametric fMRI study,Article,Grillon,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84874635488,Christian Grillon;Danielle R. Charney;Katherine Vytal;Oliver J. Robinson;Cassie Overstreet,50,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84874635488&origin=inward,10.1073/pnas.1213923110,2013-03-05,"('2-s2.0-84874635488', 'Grillon')",,4129-4133,23401511.0,84874635488,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84874635488&origin=inward,Grillon,Proceedings of the National Academy of Sciences of the United States of America,Stress increases aversive prediction error signal in the ventral striatum,Article,Grillon,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84920087047,Marissa Krimsky;Phillip Allen;Lynne Lieberman;Christian Grillon;Katherine Vytal;Oliver J. Robinson,65,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84920087047&origin=inward,10.1016/S2215-0366(14)70305-0,2014-01-01,"('2-s2.0-84920087047', 'Grillon')",NIH,294-302,,84920087047,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84920087047&origin=inward,Grillon,The Lancet Psychiatry,The dorsal medial prefrontal (anterior cingulate) cortex-amygdala aversive amplification circuit in unmedicated generalised and social anxiety disorders: An observational study,Article,Grillon,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84964285132,Christian Grillon;Elizabeth A. Hale;Salvatore Torrisi;Monique Ernst;Nicholas Balderston,42,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84964285132&origin=inward,10.1146/annurev-clinpsy-032814-112753,2015-03-01,"('2-s2.0-84964285132', 'Grillon')",,361-377,25581237.0,84964285132,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84964285132&origin=inward,Grillon,Annual Review of Clinical Psychology,FMRI functional connectivity applied to adolescent neurodevelopment,Article,Grillon,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84906815839,Christian Grillon;Danielle R. Charney;Oliver J. Robinson;Katherine E. Vytal;Cassie Overstreet,39,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84906815839&origin=inward,10.1503/jpn.130145,2014-01-01,"('2-s2.0-84906815839', 'Grillon')",,321-329,24886788.0,84906815839,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84906815839&origin=inward,Grillon,Journal of Psychiatry and Neuroscience,Sustained anxiety increases amygdala-dorsomedial prefrontal coupling: A mechanism for maintaining an anxious state in healthy adults,Article,Grillon,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84942233711,Richard Reynolds;Christian Grillon;Salvatore Torrisi;Monique Ernst;Julie L. Fudge;Andrew Davis;Katherine O'Connell;Nicholas Balderston,44,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84942233711&origin=inward,10.1002/hbm.22899,2015-10-01,"('2-s2.0-84942233711', 'Grillon')",,4076-4088,26178381.0,84942233711,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84942233711&origin=inward,Grillon,Human Brain Mapping,Resting state connectivity of the bed nucleus of the stria terminalis at ultra-high field,Article,Grillon,NIMH +https://api.elsevier.com/content/abstract/scopus_id/79954415976,Christian Grillon;Raphael Kaplan;Ruben P. Alvarez;Shmuel Lissek;Monique Ernst;Brian R. Cornwell,27,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79954415976&origin=inward,10.1016/j.neuropsychologia.2011.02.049,2011-04-01,"('2-s2.0-79954415976', 'Grillon')",NIMH,1363-1368,21376745.0,79954415976,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79954415976&origin=inward,Grillon,Neuropsychologia,Anxiety overrides the blocking effects of high perceptual load on amygdala reactivity to threat-related distractors,Article,Grillon,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84892446743,B. R. Cornwell;C. Grillon;C. Overstreet,9,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84892446743&origin=inward,10.1016/j.bbr.2013.12.031,2014-03-15,"('2-s2.0-84892446743', 'Grillon')",NIMH,258-264,24388977.0,84892446743,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84892446743&origin=inward,Grillon,Behavioural Brain Research,Spontaneous fast gamma activity in the septal hippocampal region correlates with spatial learning in humans,Article,Grillon,NIMH +https://api.elsevier.com/content/abstract/scopus_id/85011629261,Harma Meffert;James R. Blair;Christian Grillon;Joseph Leshin;Bruno Averbeck;Stuart F. White;Elizabeth Lewis;Cindy Teng;Monique Ernst;Marilla Geraci;Karina S. Blair,22,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85011629261&origin=inward,10.1176/appi.ajp.2016.15111410,2017-02-01,"('2-s2.0-85011629261', 'Blair')",,110-117,27631963.0,85011629261,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85011629261&origin=inward,Blair,American Journal of Psychiatry,Prediction error representation in individuals with generalized anxiety disorder during passive avoidance,Article,Blair,NIMH +https://api.elsevier.com/content/abstract/scopus_id/85006341547,Jonathan P. Roiser;Camilla L. Nord;Christian Grillon;Salvatore Torrisi;Nicholas L. Balderston;Monique Ernst,22,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85006341547&origin=inward,10.1016/j.neuroimage.2016.10.034,2017-02-15,"('2-s2.0-85006341547', 'Blair')",,872-879,27780778.0,85006341547,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85006341547&origin=inward,Blair,NeuroImage,Resting state connectivity of the human habenula at ultra-high field,Article,Blair,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84996843168,Christian Grillon;Salvatore Torrisi;Monique Ernst;Andrew Davis;Katherine O'Connell;Oliver Robinson;Nicholas Balderston,13,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84996843168&origin=inward,10.1093/scan/nsw088,2016-11-01,"('2-s2.0-84996843168', 'Blair')",,1677-1686,27369069.0,84996843168,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84996843168&origin=inward,Blair,Social Cognitive and Affective Neuroscience,The neural basis of improved cognitive performance by threat of shock,Article,Blair,NIMH +https://api.elsevier.com/content/abstract/scopus_id/85021407223,Richard Coppola;Tom Holroyd;Christian Grillon;Salvatore Torrisi;Frederick W. Carver;Nicholas L. Balderston;Elizabeth Hale;Monique Ernst;Abigail Hsiung,9,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85021407223&origin=inward,10.7554/eLife.23608,2017-05-30,"('2-s2.0-85021407223', 'Blair')",NIMH,,28555565.0,85021407223,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85021407223&origin=inward,Blair,eLife,Threat of shock increases excitability and connectivity of the intraparietal sulcus,Article,Blair,NIMH +https://api.elsevier.com/content/abstract/scopus_id/85017434759,Adam X. Gorka;Christian Grillon;Salvatore Torrisi;Alexander J. Shackman;Monique Ernst,20,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85017434759&origin=inward,10.1016/j.neuroimage.2017.03.007,2018-03-01,"('2-s2.0-85017434759', 'Blair')",NIH,392-402,28392491.0,85017434759,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85017434759&origin=inward,Blair,NeuroImage,Intrinsic functional connectivity of the central nucleus of the amygdala and bed nucleus of the stria terminalis,Article,Blair,NIMH +https://api.elsevier.com/content/abstract/scopus_id/85015218683,M. Geraci;K. S. Blair;C. Teng;C. Grillon;M. Otero;M. Ernst;R. J.R. Blair;D. S. Pine,7,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85015218683&origin=inward,10.1017/S0033291717000265,2017-07-01,"('2-s2.0-85015218683', 'Blair')",NIMH,1806-1815,28290265.0,85015218683,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85015218683&origin=inward,Blair,Psychological medicine,"Reduced optimism and a heightened neural response to everyday worries are specific to generalized anxiety disorder, and not seen in social anxiety",Article,Blair,NIMH +https://api.elsevier.com/content/abstract/scopus_id/0037322777,Peter Van Gelderen;Keiichiro Toma;Takashi Hanakawa;Mark Hallett;Michael A. Dimyan;Ilka Immisch,415,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0037322777&origin=inward,10.1152/jn.00132.2002,2003-02-01,"('2-s2.0-0037322777', 'Hallett')",,989-1002,12574475.0,37322777,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0037322777&origin=inward,Hallett,Journal of Neurophysiology,Functional properties of brain areas associated with motor execution and imagery,Article,Hallett,NINDS +https://api.elsevier.com/content/abstract/scopus_id/33244467864,Robert Chen;Daniel Waldvogel;Leonardo G. Cohen;Takahiro Matsuoka;Christian Gerloff;Kenji Ishii;George F. Wittenberg;Mark Hallett;Alexandra Sailer;Eric M. Wassermann;Khalaf Bushara,327,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33244467864&origin=inward,10.1093/brain/awh713,2006-01-01,"('2-s2.0-33244467864', 'Wassermann')",NIH,791-808,16364955.0,33244467864,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33244467864&origin=inward,Wassermann,Brain,Multimodal imaging of brain reorganization in motor areas of the contralesional hemisphere of well recovered patients after capsular stroke,Article,Wassermann,NINDS +https://api.elsevier.com/content/abstract/scopus_id/26044458489,Tao Wu;Mark Hallett,293,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=26044458489&origin=inward,10.1093/brain/awh569,2005-10-01,"('2-s2.0-26044458489', 'Hallett')",NINDS,2250-2259,15958505.0,26044458489,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=26044458489&origin=inward,Hallett,Brain,A functional MRI study of automatic movements in patients with Parkinson's disease,Article,Hallett,NINDS +https://api.elsevier.com/content/abstract/scopus_id/33747885219,R. Wurzman;S. Matteson;K. Kansaku;M. Hallett;S. Bohlhalter;T. Hanakawa;A. Goldfine;G. Garraux,266,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33747885219&origin=inward,10.1093/brain/awl050,2006-01-01,"('2-s2.0-33747885219', 'Hallett')",NINDS,2029-2037,16520330.0,33747885219,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33747885219&origin=inward,Hallett,Brain,Neural correlates of tic generation in Tourette syndrome: An event-related functional MRI study,Article,Hallett,NINDS +https://api.elsevier.com/content/abstract/scopus_id/54149106730,Takashi Hanakawa;Michael A. Dimyan;Mark Hallett,282,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=54149106730&origin=inward,10.1093/cercor/bhn036,2008-12-01,"('2-s2.0-54149106730', 'Hallett')",NINDS,2775-2788,18359777.0,54149106730,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=54149106730&origin=inward,Hallett,Cerebral Cortex,"Motor planning, imagery, and execution in the distributed motor network: A time-course study with functional MRI",Article,Hallett,NINDS +https://api.elsevier.com/content/abstract/scopus_id/0034739056,Daniel Waldvogel;Peter Van Gelderen;Ulf Ziemann;Mark Hallett;Ilka Immisch;Wolf Muellbacher,230,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0034739056&origin=inward,10.1038/35023171,2000-08-31,"('2-s2.0-0034739056', 'Hallett')",,995-998,10984053.0,34739056,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0034739056&origin=inward,Hallett,Nature,The relative metabolic demand of inhibition and excitation,Article,Hallett,NINDS +https://api.elsevier.com/content/abstract/scopus_id/0035144735,Mark Hallett;Jordan Grafman;Khalafalla O. Bushara,241,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0035144735&origin=inward,10.1523/jneurosci.21-01-00300.2001,2001-01-01,"('2-s2.0-0035144735', 'Hallett')",NINDS,300-304,11150347.0,35144735,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0035144735&origin=inward,Hallett,Journal of Neuroscience,Neural correlates of auditory-visual stimulus onset asynchrony detection,Article,Hallett,NINDS +https://api.elsevier.com/content/abstract/scopus_id/73549113279,Raymond J. Dolan;Christina Brezing;Valerie Voon;Hubert H. Fernandez;Cecile Gallea;Mark Hallett;Mathias Pessiglione,211,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=73549113279&origin=inward,10.1016/j.neuron.2009.12.027,2010-01-14,"('2-s2.0-73549113279', 'Hallett')",WT,135-142,20152119.0,73549113279,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=73549113279&origin=inward,Hallett,Neuron,Mechanisms Underlying Dopamine-Mediated Reward Bias in Compulsive Behaviors,Article,Hallett,NINDS +https://api.elsevier.com/content/abstract/scopus_id/77951920955,Christina Brezing;Valerie Voon;W. Curt Lafrance;Karin Roelofs;Rezvan Ameli;Cecile Gallea;Mark Hallett,198,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77951920955&origin=inward,10.1093/brain/awq054,2010-01-01,"('2-s2.0-77951920955', 'Hallett')",NIH,1526-1536,20371508.0,77951920955,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77951920955&origin=inward,Hallett,Brain,Emotional stimuli and motor conversion disorder,Article,Hallett,NINDS +https://api.elsevier.com/content/abstract/scopus_id/1542720537,Kenji Kansaku;Tao Wu;Mark Hallett,183,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=1542720537&origin=inward,10.1152/jn.01052.2003,2004-04-01,"('2-s2.0-1542720537', 'Hallett')",,1690-1698,14645385.0,1542720537,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=1542720537&origin=inward,Hallett,Journal of Neurophysiology,How Self-Initiated Memorized Movements Become Automatic: A Functional MRI Study,Article,Hallett,NINDS +https://api.elsevier.com/content/abstract/scopus_id/0037315153,Kenji Kansaku;Keiichiro Toma;Takashi Hanakawa;Khalafalla O. Bushara;Mark Hallett;Ilka Immisch,161,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0037315153&origin=inward,10.1038/nn993,2003-02-01,"('2-s2.0-0037315153', 'Hallett')",VA,190-195,12496761.0,37315153,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0037315153&origin=inward,Hallett,Nature Neuroscience,Neural correlates of cross-modal binding,Article,Hallett,NINDS +https://api.elsevier.com/content/abstract/scopus_id/0036135109,Lucien M. Levy;Mark Hallett,152,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0036135109&origin=inward,10.1002/ana.10073,2002-01-12,"('2-s2.0-0036135109', 'Hallett')",,93-101,11782988.0,36135109,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0036135109&origin=inward,Hallett,Annals of Neurology,Impaired brain GABA in focal dystonia,Article,Hallett,NINDS +https://api.elsevier.com/content/abstract/scopus_id/74949105990,M. Bruno;C. Gallea;N. Hattori;M. Hallett;V. Voon;V. Ekanayake,168,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=74949105990&origin=inward,10.1212/WNL.0b013e3181ca00e9,2010-01-01,"('2-s2.0-74949105990', 'Hallett')",,223-228,,74949105990,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=74949105990&origin=inward,Hallett,Neurology,The involuntary nature of conversion disorder,Article,Hallett,NINDS +https://api.elsevier.com/content/abstract/scopus_id/72049085005,Raymond J. Dolan;Meliha Skaljic;Christina Brezing;Valerie Voon;Hubert Fernandez;Brady Reynolds;Vindhya Ekanayake;Cecile Gallea;Mark Hallett;Marc N. Potenza,151,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=72049085005&origin=inward,10.1007/s00213-009-1697-y,2010-01-01,"('2-s2.0-72049085005', 'Hallett')",NINDS,645-659,19838863.0,72049085005,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=72049085005&origin=inward,Hallett,Psychopharmacology,Impulsive choice and response in dopamine agonist-related impulse control behaviors,Article,Hallett,NINDS +https://api.elsevier.com/content/abstract/scopus_id/2142714500,Gaëtan Garraux;Andrew Bauer;Kenji Kansaku;Takashi Hanakawa;Mark Hallett;Tao Wu,125,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=2142714500&origin=inward,10.1002/ana.20113,2004-05-01,"('2-s2.0-2142714500', 'Hallett')",,736-739,15122716.0,2142714500,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=2142714500&origin=inward,Hallett,Annals of Neurology,Changes in Brain Anatomy in Focal Hand Dystonia,Article,Hallett,NINDS +https://api.elsevier.com/content/abstract/scopus_id/12744277987,Tao Wu;Mark Hallett,134,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=12744277987&origin=inward,10.1113/jphysiol.2004.076042,2005-01-15,"('2-s2.0-12744277987', 'Hallett')",,605-615,15513939.0,12744277987,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=12744277987&origin=inward,Hallett,Journal of Physiology,The influence of normal human ageing on automatic movements,Article,Hallett,NINDS +https://api.elsevier.com/content/abstract/scopus_id/79957464908,Raymond J. Dolan;Mkael Symmonds;Christina Brezing;Valerie Voon;Jennifer Gao;Hubert Fernandez;Vindhya Ekanayake;Mark Hallett,143,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79957464908&origin=inward,10.1093/brain/awr080,2011-01-01,"('2-s2.0-79957464908', 'Hallett')",NIH,1438-1446,,79957464908,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79957464908&origin=inward,Hallett,Brain,Dopamine agonists and risk: Impulse control disorders in Parkinson's; Disease,Article,Hallett,NINDS +https://api.elsevier.com/content/abstract/scopus_id/46249083043,T. Wu;Mark Hallett,123,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=46249083043&origin=inward,10.1136/jnnp.2007.126599,2008-07-01,"('2-s2.0-46249083043', 'Hallett')",,760-766,18006652.0,46249083043,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=46249083043&origin=inward,Hallett,"Journal of Neurology, Neurosurgery and Psychiatry",Neural correlates of dual task performance in patients with Parkinson's disease,Article,Hallett,NINDS +https://api.elsevier.com/content/abstract/scopus_id/30344470810,Daniel Waldvogel;Kenji Kansaku;Takashi Hanakawa;Lewis Wheaton;Stephan Bohlhalter;Mark Hallett;Esteban A. Fridman;Ilka Immisch;Tao Wu,106,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=30344470810&origin=inward,10.1016/j.neuroimage.2005.07.026,2006-01-15,"('2-s2.0-30344470810', 'Hallett')",,417-428,16154363.0,30344470810,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=30344470810&origin=inward,Hallett,NeuroImage,The role of the dorsal stream for gesture production,Article,Hallett,NINDS +https://api.elsevier.com/content/abstract/scopus_id/0037461351,James M. Dambrosia;John A. Butman;Fernando L. Pagan;Mark Hallett,102,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0037461351&origin=inward,10.1212/01.WNL.0000065885.15875.0D,2003-04-22,"('2-s2.0-0037461351', 'Hallett')",,1344-1347,12707440.0,37461351,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0037461351&origin=inward,Hallett,Neurology,Evaluation of essential tremor with multi-voxel magnetic resonance spectroscopy,Article,Hallett,NINDS +https://api.elsevier.com/content/abstract/scopus_id/0034867619,Daniel Waldvogel;Ilka Immisch;Peter Van Gelderen;Mark Hallett,84,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0034867619&origin=inward,10.1006/nimg.2001.0856,2001-01-01,"('2-s2.0-0034867619', 'Hallett')",DFG,674-684,,34867619,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0034867619&origin=inward,Hallett,NeuroImage,The role of the medial wall and its anatomical variations for bimanual antiphase and in-phase movements,Article,Hallett,NINDS +https://api.elsevier.com/content/abstract/scopus_id/78651321585,John Kakareka;Tom Pohida;Prantik Kundu;Cecile Gallea;Jason Friedman;Randy Pursley;Mark Hallett;Fatta B. Nahab;Nathaniel Miletta,93,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=78651321585&origin=inward,10.1093/cercor/bhq059,2011-01-01,"('2-s2.0-78651321585', 'Hallett')",,48-55,20378581.0,78651321585,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=78651321585&origin=inward,Hallett,Cerebral Cortex,The neural processes underlying self-agency,Article,Hallett,NINDS +https://api.elsevier.com/content/abstract/scopus_id/17644375470,Takashi Hanakawa;Michiko K. Bruno;Sachin Parikh;Mark Hallett,72,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=17644375470&origin=inward,10.1152/jn.00784.2004,2005-05-01,"('2-s2.0-17644375470', 'Hallett')",,2950-2958,15625099.0,17644375470,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=17644375470&origin=inward,Hallett,Journal of Neurophysiology,Finger and face representations in the ipsilateral precentral motor areas in humans,Article,Hallett,NINDS +https://api.elsevier.com/content/abstract/scopus_id/0036742170,Daniel Waldvogel;Benjamin Koshy;Keiichiro Toma;Takahiro Matsuoka;Takashi Hanakawa;Ilka Immisch;Mark Hallett;Tatsuya Mima;Holly Shill,62,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0036742170&origin=inward,10.1006/nimg.2002.1165,2002-01-01,"('2-s2.0-0036742170', 'Hallett')",,161-173,12482074.0,36742170,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0036742170&origin=inward,Hallett,NeuroImage,Generators of movement-related cortical potentials: fMRI-constrained EEG dipole source analysis,Article,Hallett,NINDS +https://api.elsevier.com/content/abstract/scopus_id/51749110708,Piu Chan;Tao Wu;Mark Hallett,62,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=51749110708&origin=inward,10.1113/jphysiol.2008.153445,2008-09-19,"('2-s2.0-51749110708', 'Hallett')",,4295-4304,18617569.0,51749110708,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=51749110708&origin=inward,Hallett,Journal of Physiology,Modifications of the interactions in the motor networks when a movement becomes automatic,Article,Hallett,NINDS +https://api.elsevier.com/content/abstract/scopus_id/66549096839,E. A. Shamim;N. Hattori;L. Wheaton;E. Fridman;M. Hallett;S. Bohlhalter;G. Garraux,60,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=66549096839&origin=inward,10.1093/cercor/bhn168,2009-06-01,"('2-s2.0-66549096839', 'Hallett')",NIH,1256-1262,18796430.0,66549096839,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=66549096839&origin=inward,Hallett,Cerebral Cortex,Gesture subtype-dependent left lateralization of praxis planning: An event-related fMRI study,Article,Hallett,NINDS +https://api.elsevier.com/content/abstract/scopus_id/83055194569,Silvina G. Horovitz;Gaurav Venkataraman;Brian D. Berman;Mark Hallett,67,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=83055194569&origin=inward,10.1016/j.neuroimage.2011.07.035,2012-01-16,"('2-s2.0-83055194569', 'Hallett')",,917-925,21803163.0,83055194569,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=83055194569&origin=inward,Hallett,NeuroImage,Self-modulation of primary motor cortex activity with motor and motor imagery tasks using real-time fMRI-based neurofeedback,Article,Hallett,NINDS +https://api.elsevier.com/content/abstract/scopus_id/32044475419,Gaëtan Garraux;Takashi Hanakawa;Alicja Lerner;Stephan Bohlhalter;Mark Hallett;Andrew Goldfine,49,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=32044475419&origin=inward,10.1002/ana.20765,2006-02-01,"('2-s2.0-32044475419', 'Hallett')",,381-385,16437578.0,32044475419,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=32044475419&origin=inward,Hallett,Annals of Neurology,Increased midbrain gray matter in Tourette's syndrome,Article,Hallett,NINDS +https://api.elsevier.com/content/abstract/scopus_id/20044382622,Gaëtan Garraux;Kenji Kansaku;Guido Nolte;Christopher McKinney;Mark Hallett;Tao Wu,45,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=20044382622&origin=inward,10.1523/JNEUROSCI.0340-05.2005,2005-06-01,"('2-s2.0-20044382622', 'Hallett')",,5290-5297,15930376.0,20044382622,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=20044382622&origin=inward,Hallett,Journal of Neuroscience,Shared brain areas but not functional connections controlling movement timing and order,Article,Hallett,NINDS +https://api.elsevier.com/content/abstract/scopus_id/0033846858,L. Maillard;A. E. Schulman;K. Ishii;K. Bushara;D. Waldvogel;Mark Hallett,49,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0033846858&origin=inward,10.1212/WNL.55.3.377,2000-01-01,"('2-s2.0-0033846858', 'Hallett')",,377-383,10932271.0,33846858,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0033846858&origin=inward,Hallett,Neurology,"Mapping the basal ganglia: fMRI evidence for somatotopic representation of face, hand, and foot",Article,Hallett,NINDS +https://api.elsevier.com/content/abstract/scopus_id/0034722689,Daniel Waldvogel;Peter Van Gelderen;Mark Hallett;Ilka Immisch;Christopher Pfeiffer,42,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0034722689&origin=inward,10.1097/00001756-200011270-00048,2000-11-27,"('2-s2.0-0034722689', 'Hallett')",,3843-3847,11117501.0,34722689,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0034722689&origin=inward,Hallett,NeuroReport,The variability of serial fMRI data: Correlation between a visual and a motor task,Article,Hallett,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84974186226,Leonardo G. Cohen;Norihiro Sadato;Jordan Fieldman;Mark Hallett;Alvaro Pascual-Leone,37,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84974186226&origin=inward,10.1017/S0140525X00034130,1994-01-01,"('2-s2.0-84974186226', 'Hallett')",,210,,84974186226,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84974186226&origin=inward,Hallett,Behavioral and Brain Sciences,Involvement of primary motor cortex in motor imagery and mental practice,Article,Hallett,NINDS +https://api.elsevier.com/content/abstract/scopus_id/66149095129,Fatta B. Nahab;Ziad S. Saad;Noriaki Hattori;Mark Hallett,34,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=66149095129&origin=inward,10.1002/hbm.20638,2009-05-01,"('2-s2.0-66149095129', 'Hallett')",,1744-1751,18937281.0,66149095129,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=66149095129&origin=inward,Hallett,Human Brain Mapping,Contagious yawning and the frontal lobe: An fMRI study,Article,Hallett,NINDS +https://api.elsevier.com/content/abstract/scopus_id/0343566427,Vicente Ibañez;Norihiro Sadato;Marie Pierre Deiber;Mark Hallett,31,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0343566427&origin=inward,10.1006/nimg.2000.0566,2000-01-01,"('2-s2.0-0343566427', 'Hallett')",JSPS,532-540,10806038.0,343566427,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0343566427&origin=inward,Hallett,NeuroImage,Gender difference in premotor activity during active tactile discrimination,Article,Hallett,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84861331638,Cecile Gallea;Ryan D. Moore;Silvina G. Horovitz;Mark Hallett,34,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84861331638&origin=inward,10.1016/j.neuroimage.2012.03.066,2012-07-16,"('2-s2.0-84861331638', 'Hallett')",,823-831,22484405.0,84861331638,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84861331638&origin=inward,Hallett,NeuroImage,Individuated finger control in focal hand dystonia: An fMRI study,Article,Hallett,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84911413373,Piu Chan;Yanan Hou;Mark Hallett;Tao Wu;Xuemin Wu,42,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84911413373&origin=inward,10.1002/hbm.22587,2014-01-01,"('2-s2.0-84911413373', 'Hallett')",,5815-5833,25045127.0,84911413373,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84911413373&origin=inward,Hallett,Human Brain Mapping,Frequency-dependent neural activity in Parkinson's disease,Article,Hallett,NINDS +https://api.elsevier.com/content/abstract/scopus_id/33644798876,Semyon Slobounov;Tao Wu;Mark Hallett,32,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33644798876&origin=inward,10.1123/mcj.10.1.69,2006-01-01,"('2-s2.0-33644798876', 'Hallett')",,69-89,16571908.0,33644798876,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33644798876&origin=inward,Hallett,Motor Control,Neural basis subserving the detection of postural instability: An fMRI study,Article,Hallett,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84912001601,Thomas Neuberger;Brian Johnson;Michael Gay;Mark Hallett;Semyon Slobounov,56,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84912001601&origin=inward,10.1089/neu.2014.3415,2014-01-01,"('2-s2.0-84912001601', 'Hallett')",,1907-1913,25010992.0,84912001601,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84912001601&origin=inward,Hallett,Journal of Neurotrauma,Effects of subconcussive head trauma on the default mode network of the brain,Article,Hallett,NINDS +https://api.elsevier.com/content/abstract/scopus_id/33645014385,Elena Slobounov;Karl Newell;Hiroshi Shibasaki;Mark Hallett;Semyon Slobounov;Tao Wu,31,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33645014385&origin=inward,10.1016/j.biopsycho.2005.10.005,2006-05-01,"('2-s2.0-33645014385', 'Hallett')",,188-197,16338048.0,33645014385,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33645014385&origin=inward,Hallett,Biological Psychology,Neural underpinning of postural responses to visual field motion,Article,Hallett,NINDS +https://api.elsevier.com/content/abstract/scopus_id/40849130954,Takashi Hanakawa;Michael A. Dimyan;Mark Hallett,30,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=40849130954&origin=inward,10.1093/cercor/bhm129,2008-04-01,"('2-s2.0-40849130954', 'Hallett')",NIH,930-937,17652462.0,40849130954,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=40849130954&origin=inward,Hallett,Cerebral Cortex,The representation of blinking movement in cingulate motor areas: A functional magnetic resonance imaging study,Article,Hallett,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84911391886,Patrick Malone;Beth A. Belluscio;Silvina G. Horovitz;Jan Willem van der Veen;Sule Tinaz;Mark Hallett,40,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84911391886&origin=inward,10.1002/hbm.22588,2014-12-01,"('2-s2.0-84911391886', 'Hallett')",NIH,5834-5846,25044024.0,84911391886,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84911391886&origin=inward,Hallett,Human Brain Mapping,Role of the sensorimotor cortex in tourette syndrome using multimodal imaging,Article,Hallett,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84883677448,Kristina Simonyan;Peter Herscovitch;Brian D. Berman;Mark Hallett,37,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84883677448&origin=inward,10.1523/JNEUROSCI.0407-13.2013,2013-09-16,"('2-s2.0-84883677448', 'Hallett')",,14705-14714,24027271.0,84883677448,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84883677448&origin=inward,Hallett,Journal of Neuroscience,Abnormal striatal dopaminergic neurotransmission during rest and task production in spasmodic dysphonia,Article,Hallett,NINDS +https://api.elsevier.com/content/abstract/scopus_id/64749114659,Masao Matsuhashi;Noriaki Hattori;Lewis Wheaton;Hiroshi Shibasaki;Mark Hallett;Tao Wu,23,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=64749114659&origin=inward,10.1152/jn.90249.2008,2009-03-01,"('2-s2.0-64749114659', 'Hallett')",,1267-1282,19109459.0,64749114659,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=64749114659&origin=inward,Hallett,Journal of Neurophysiology,Discrete parieto-frontal functional connectivity related to grasping,Article,Hallett,NINDS +https://api.elsevier.com/content/abstract/scopus_id/83055188065,Silvina G. Horovitz;Mark Hallett;Brian D. Berman;Brent Morel,37,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=83055188065&origin=inward,10.1016/j.neuroimage.2011.08.050,2012-01-16,"('2-s2.0-83055188065', 'Hallett')",,1441-1450,21906689.0,83055188065,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=83055188065&origin=inward,Hallett,NeuroImage,Neural correlates of blink suppression and the buildup of a natural bodily urge,Article,Hallett,NINDS +https://api.elsevier.com/content/abstract/scopus_id/33744951823,Giancarlo Zito;Manabu Honda;Takashi Hanakawa;Mark Hallett;Michael A. Dimyan,22,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33744951823&origin=inward,10.1007/s00221-005-0336-z,2006-07-01,"('2-s2.0-33744951823', 'Hallett')",MEXT,275-282,16418844.0,33744951823,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33744951823&origin=inward,Hallett,Experimental Brain Research,Brain activity during visuomotor behavior triggered by arbitrary and spatially constrained cues: An fMRI study in humans,Article,Hallett,NINDS +https://api.elsevier.com/content/abstract/scopus_id/2942561100,Takashi Hanakawa;Kenji Kansaku;Tao Wu;Mark Hallett,22,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=2942561100&origin=inward,10.1016/j.neuroimage.2004.02.006,2004-06-01,"('2-s2.0-2942561100', 'Hallett')",NINDS,904-911,15193621.0,2942561100,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=2942561100&origin=inward,Hallett,NeuroImage,A shared neural network for simple reaction time,Article,Hallett,NINDS +https://api.elsevier.com/content/abstract/scopus_id/33947324029,Kenji Kansaku;Keiji Matsuda;Norihiro Sadato;Ari Johnson;Mark Hallett;Benjamin Carver,18,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33947324029&origin=inward,10.1007/s00221-006-0736-8,2007-04-01,"('2-s2.0-33947324029', 'Hallett')",NINDS,339-350,17051376.0,33947324029,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33947324029&origin=inward,Hallett,Experimental Brain Research,The role of the human ventral premotor cortex in counting successive stimuli,Article,Hallett,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84879769291,Silvina G. Horovitz;Muslimah Ali Najee-ullah;Cecile Gallea;Mark Hallett,21,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84879769291&origin=inward,10.1371/journal.pone.0067931,2013-07-02,"('2-s2.0-84879769291', 'Hallett')",NINDS,,23844132.0,84879769291,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84879769291&origin=inward,Hallett,PLoS ONE,Functional Anatomy of Writing with the Dominant Hand,Article,Hallett,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84925003407,Sahana N. Kukke;Ana Carolina De Campos;Tianxia Wu;Han Wang;Chi Chao Chao;Mark Hallett;Anke Ninija Karabanov;Rainer Paine,27,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84925003407&origin=inward,10.1093/cercor/bht230,2015-01-01,"('2-s2.0-84925003407', 'Hallett')",NIH,365-373,23968834.0,84925003407,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84925003407&origin=inward,Hallett,Cerebral Cortex,Induction of motor associative plasticity in the posterior parietal cortex-primary motor network,Article,Hallett,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84886410404,Silvina G. Horovitz;Brian D. Berman;Mark Hallett,20,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84886410404&origin=inward,10.3389/fnhum.2013.00638,2013-10-10,"('2-s2.0-84886410404', 'Hallett')",,,,84886410404,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84886410404&origin=inward,Hallett,Frontiers in Human Neuroscience,Modulation of functionally localized right insular cortex activity using real-time fMRI-based neurofeedback,Article,Hallett,NINDS +https://api.elsevier.com/content/abstract/scopus_id/78650227717,Silvina G. Horovitz;Jan Willem Van Der Veen;Cecile Gallea;Priyantha Herath;Mark Hallett,15,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=78650227717&origin=inward,10.1002/mds.23306,2010-12-15,"('2-s2.0-78650227717', 'Hallett')",,2800-2808,20979122.0,78650227717,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=78650227717&origin=inward,Hallett,Movement Disorders,In vivo neurochemistry of primary focal hand dystonia: A magnetic resonance spectroscopic neurometabolite profiling study at 3T,Article,Hallett,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84927698944,Piu Chan;Jiarong Zhang;Yanan Hou;Mark Hallett;Tao Wu,20,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84927698944&origin=inward,10.1002/hbm.22743,2015-05-01,"('2-s2.0-84927698944', 'Hallett')",NIH,1878-1891,25644527.0,84927698944,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84927698944&origin=inward,Hallett,Human Brain Mapping,Lateralization of brain activity pattern during unilateral movement in Parkinson's disease,Article,Hallett,NINDS +https://api.elsevier.com/content/abstract/scopus_id/78349256624,Cecile Gallea;Henrik Foltys;Ingo G. Meister;Mark Hallett,16,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=78349256624&origin=inward,10.1093/cercor/bhq048,2010-12-01,"('2-s2.0-78349256624', 'Hallett')",IZKF Würzburg,2996-3004,20356959.0,78349256624,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=78349256624&origin=inward,Hallett,Cerebral Cortex,How the brain handles temporally uncoupled bimanual movements,Article,Hallett,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84922359577,Silvina G. Horovitz;Mark Hallett;Sule Tinaz;Peter Lauro,19,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84922359577&origin=inward,10.1007/s00429-014-0981-8,2016-04-01,"('2-s2.0-84922359577', 'Hallett')",,1413-1425,25567420.0,84922359577,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84922359577&origin=inward,Hallett,Brain Structure and Function,Deficits in task-set maintenance and execution networks in Parkinson’s disease,Article,Hallett,NINDS +https://api.elsevier.com/content/abstract/scopus_id/78650819014,Silvina G. Horovitz;Brian D. Berman;Mark Hallett,7,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=78650819014&origin=inward,10.1109/IEMBS.2010.5627170,2010-12-01,"('2-s2.0-78650819014', 'Hallett')",,4270-4273,21096645.0,78650819014,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=78650819014&origin=inward,Hallett,"2010 Annual International Conference of the IEEE Engineering in Medicine and Biology Society, EMBC'10",Real time BOLD functional MRI neuro-feedback affects functional connectivity,Conference Paper,Hallett,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84937726021,Ana Carolina de Campos;Nicholas Patronas;Katharine E. Alter;Sahana N. Kukke;Diane Damiano;Mark Hallett,12,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84937726021&origin=inward,10.1016/j.clinph.2014.11.002,2015-08-01,"('2-s2.0-84937726021', 'Hallett')",NIH,1589-1598,25499610.0,84937726021,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84937726021&origin=inward,Hallett,Clinical Neurophysiology,Cortical activation and inter-hemispheric sensorimotor coherence in individuals with arm dystonia due to childhood stroke,Article,Hallett,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84918505366,Sanjay Pandey;Debra L. Byler;Mark Hallett,1,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84918505366&origin=inward,10.1001/jamaneurol.2014.1077,2014-01-01,"('2-s2.0-84918505366', 'Hallett')",NIH,1574-1575,25347119.0,84918505366,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84918505366&origin=inward,Hallett,JAMA Neurology,Hemidystonia with one eye-of-the-tiger sign,Article,Hallett,NINDS +https://api.elsevier.com/content/abstract/scopus_id/85018320139,Carine Maurer;Qian Shen;Prantik Kundu;Mark Hallett;Fatta B. Nahab,10,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85018320139&origin=inward,10.1371/journal.pone.0172502,2017-04-01,"('2-s2.0-85018320139', 'Hallett')",,,28448504.0,85018320139,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85018320139&origin=inward,Hallett,PLoS ONE,Impaired sense of agency in functional movement disorders: An fMRI study,Article,Hallett,NINDS +https://api.elsevier.com/content/abstract/scopus_id/0035964792,M. I. Gobbini;J. L. Schouten;P. Pietrini;J. V. Haxby;M. L. Furey;A. Ishai,2338,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0035964792&origin=inward,10.1126/science.1063736,2001-09-28,"('2-s2.0-0035964792', 'Hallett')",,2425-2430,11577229.0,35964792,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0035964792&origin=inward,Hallett,Science,Distributed and overlapping representations of faces and objects in ventral temporal cortex,Article,Hallett,NINDS +https://api.elsevier.com/content/abstract/scopus_id/0036150870,James V. Haxby;Elizabeth A. Hoffman;M. Ida Gobbini,836,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0036150870&origin=inward,10.1016/S0006-3223(01)01330-0,2002-01-01,"('2-s2.0-0036150870', 'Hallett')",NIMH,59-67,11801231.0,36150870,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0036150870&origin=inward,Hallett,Biological Psychiatry,Human neural systems for face recognition and social communication,Review,Hallett,NINDS +https://api.elsevier.com/content/abstract/scopus_id/1842732156,Emiliano Ricciardi;Maura L. Furey;M. Ida Gobbini;James V. Haxby;Pietro Pietrini;W. H.Carolyn Wu;Leonardo Cohen;Mario Guazzelli,316,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=1842732156&origin=inward,10.1073/pnas.0400707101,2004-04-13,"('2-s2.0-1842732156', 'Cohen')",,5658-5663,15064396.0,1842732156,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=1842732156&origin=inward,Cohen,Proceedings of the National Academy of Sciences of the United States of America,Beyond sensory images: Object-based representation in the human ventral pathway,Article,Cohen,NINDS +https://api.elsevier.com/content/abstract/scopus_id/4143076897,James V. Haxby;Tara Harrison;Ellen Leibenluft;M. Ida Gobbini,312,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=4143076897&origin=inward,10.1016/j.biopsych.2004.05.017,2004-08-15,"('2-s2.0-4143076897', 'Leibenluft')",,225-232,15312809.0,4143076897,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=4143076897&origin=inward,Leibenluft,Biological Psychiatry,Mothers' neural activation in response to pictures of their children and other children,Article,Leibenluft,NIMH +https://api.elsevier.com/content/abstract/scopus_id/0034899091,John Ingeholm;Timothy M. Ellmore;Laurent Petit;James V. Haxby;Michael S. Beauchamp,244,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0034899091&origin=inward,10.1006/nimg.2001.0788,2001-01-01,"('2-s2.0-0034899091', 'Leibenluft')",,310-321,,34899091,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0034899091&origin=inward,Leibenluft,NeuroImage,A parametric fMRI study of overt and covert shifts of visuospatial attention,Article,Leibenluft,NIMH +https://api.elsevier.com/content/abstract/scopus_id/3242736839,James V. Haxby;Ellen Leibenluft;Neil Santiago;M. Ida Gobbini,203,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=3242736839&origin=inward,10.1016/j.neuroimage.2004.03.049,2004-01-01,"('2-s2.0-3242736839', 'Leibenluft')",,1628-1635,15275919.0,3242736839,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=3242736839&origin=inward,Leibenluft,NeuroImage,Social and emotional attachment in the neural representation of faces,Article,Leibenluft,NIMH +https://api.elsevier.com/content/abstract/scopus_id/32244444938,Topi Tanskanen;Sari Avikainen;Maura L. Furey;Kimmo Uutela;James V. Haxby;Riitta Hari;Michael S. Beauchamp,93,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=32244444938&origin=inward,10.1073/pnas.0510124103,2006-01-24,"('2-s2.0-32244444938', 'Leibenluft')",,1065-1070,16415158.0,32244444938,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=32244444938&origin=inward,Leibenluft,Proceedings of the National Academy of Sciences of the United States of America,Dissociation of face-selective cortical responses by attention,Article,Leibenluft,NIMH +https://api.elsevier.com/content/abstract/scopus_id/0035148422,James V. Haxby;Annamaria Berardi;Raja Parasuraman,46,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0035148422&origin=inward,10.1080/036107301750046124,2001-01-01,"('2-s2.0-0035148422', 'Leibenluft')",,19-39,11205528.0,35148422,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0035148422&origin=inward,Leibenluft,Experimental Aging Research,Overall vigilance and sustained attention decrements in healthy aging,Article,Leibenluft,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84883313318,Daniel Arteaga;Biyu J. He;Megan Wang,44,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84883313318&origin=inward,10.1073/pnas.1221945110,2013-08-27,"('2-s2.0-84883313318', 'Leibenluft')",NIH,,23942129.0,84883313318,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84883313318&origin=inward,Leibenluft,Proceedings of the National Academy of Sciences of the United States of America,Brain mechanisms for simple perception and bistable perception,Article,Leibenluft,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84929379416,Zachary H. Douglas;Brian Maniscalco;Biyu J. He;Mark Hallett;Eric M. Wassermann,22,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84929379416&origin=inward,10.1523/JNEUROSCI.4894-14.2015,2015-01-01,"('2-s2.0-84929379416', 'Hallett')",NSFC,7239-7255,25948272.0,84929379416,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84929379416&origin=inward,Hallett,Journal of Neuroscience,Modulating conscious movement intention by noninvasive brain stimulation and the underlying neural mechanisms,Article,Hallett,NINDS +https://api.elsevier.com/content/abstract/scopus_id/0035882897,B. Knutson;G. W. Fong;C. M. Adams;D. Hommer,1342,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0035882897&origin=inward,10.1523/jneurosci.21-16-j0002.2001,2001-01-01,"('2-s2.0-0035882897', 'Hommer')",NIAAA,,11459880.0,35882897,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0035882897&origin=inward,Hommer,The Journal of neuroscience : the official journal of the Society for Neuroscience,Anticipation of increasing monetary reward selectively recruits nucleus accumbens.,Article,Hommer,NIAAA +https://api.elsevier.com/content/abstract/scopus_id/0035807944,Daniel Hommer;Grace W. Fong;Charles M. Adams;Brian Knutson;Jerald L. Varner,905,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0035807944&origin=inward,10.1097/00001756-200112040-00016,2001-12-04,"('2-s2.0-0035807944', 'Hommer')",,3683-3687,11726774.0,35807944,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0035807944&origin=inward,Hommer,NeuroReport,Dissociation of reward anticipation and outcome with event-related fMRI,Article,Hommer,NIAAA +https://api.elsevier.com/content/abstract/scopus_id/0033860711,Erica Kaiser;Brian Knutson;Andrew Westdorp;Daniel Hommer,766,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0033860711&origin=inward,10.1006/nimg.2000.0593,2000-01-01,"('2-s2.0-0033860711', 'Hommer')",NIAAA,20-27,10875899.0,33860711,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0033860711&origin=inward,Hommer,NeuroImage,FMRI visualization of brain activity during a monetary incentive delay task,Article,Hommer,NIAAA +https://api.elsevier.com/content/abstract/scopus_id/1442275743,James M. Bjork;Daniel W. Hommer;Grace W. Fong;Shannon M. Bennett;Brian Knutson;Daniel M. Caggiano,391,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=1442275743&origin=inward,10.1523/JNEUROSCI.4862-03.2004,2004-02-25,"('2-s2.0-1442275743', 'Hommer')",,1793-1802,14985419.0,1442275743,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=1442275743&origin=inward,Hommer,Journal of Neuroscience,Incentive-Elicited Brain Activation in Adolescents: Similarities and Differences from Young Adults,Article,Hommer,NIAAA +https://api.elsevier.com/content/abstract/scopus_id/0035142459,R. Momenan;R. R. Rawlings;D. W. Hommer;E. Kaiser,252,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0035142459&origin=inward,10.1176/appi.ajp.158.2.198,2001-02-14,"('2-s2.0-0035142459', 'Hommer')",,198-204,11156801.0,35142459,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0035142459&origin=inward,Hommer,American Journal of Psychiatry,Evidence for a gender-related effect of alcoholism on brain volumes,Article,Hommer,NIAAA +https://api.elsevier.com/content/abstract/scopus_id/44649095315,James M. Bjork;Daniel W. Hommer;Jodi M. Gilman;Megan B. Davis;Vijay A. Ramchandani,149,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=44649095315&origin=inward,10.1523/JNEUROSCI.0086-08.2008,2008-04-30,"('2-s2.0-44649095315', 'Hommer')",,4583-4591,18448634.0,44649095315,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=44649095315&origin=inward,Hommer,Journal of Neuroscience,Why we like to drink: A functional magnetic resonance imaging study of the rewarding and anxiolytic effects of alcohol,Article,Hommer,NIAAA +https://api.elsevier.com/content/abstract/scopus_id/55349098780,Ashley R. Smith;James M. Bjork;Daniel W. Hommer,117,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=55349098780&origin=inward,10.1016/j.neuroimage.2008.06.035,2008-10-01,"('2-s2.0-55349098780', 'Hommer')",NIAAA,1609-1621,18672069.0,55349098780,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=55349098780&origin=inward,Hommer,NeuroImage,Striatal sensitivity to reward deliveries and omissions in substance dependent patients,Article,Hommer,NIAAA +https://api.elsevier.com/content/abstract/scopus_id/0034965354,D. J. Drobes;I. Agartz;A. Heinz;K. Mann;C. Harper;G. Mundle;R. R. Rawlings;R. Bares;M. S. George;A. Pfefferbaum;E. V. Sullivan;H. J. Machulla;R. Momenan;S. Shoaf;D. W. Hommer;M. Reimold;R. F. Anton,90,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0034965354&origin=inward,10.1111/j.1530-0277.2001.tb02383.x,2001-01-01,"('2-s2.0-0034965354', 'Momenan')",,,11391058.0,34965354,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0034965354&origin=inward,Momenan,Alcoholism: Clinical and Experimental Research,Neuroimaging in alcoholism: Ethanol and brain damage,Conference Paper,Momenan,NIAAA +https://api.elsevier.com/content/abstract/scopus_id/47549110235,Brian Knutson;James M. Bjork;Daniel W. Hommer,91,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=47549110235&origin=inward,10.1111/j.1360-0443.2008.02250.x,2008-08-01,"('2-s2.0-47549110235', 'Hommer')",,1308-1319,18851716.0,47549110235,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=47549110235&origin=inward,Hommer,Addiction,Incentive-elicited striatal activation in adolescent children of alcoholics,Article,Hommer,NIAAA +https://api.elsevier.com/content/abstract/scopus_id/33845993627,James M. Bjork;Daniel W. Hommer,79,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33845993627&origin=inward,10.1016/j.bbr.2006.10.034,2007-02-12,"('2-s2.0-33845993627', 'Hommer')",NIAAA,165-170,17140674.0,33845993627,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33845993627&origin=inward,Hommer,Behavioural Brain Research,Anticipating instrumentally obtained and passively-received rewards: A factorial fMRI investigation,Article,Hommer,NIAAA +https://api.elsevier.com/content/abstract/scopus_id/34548209896,Robert Rawlings;David George;Daniel W. Hommer;Jasmin B. Salloum;Vijay A. Ramchandani;Jerzy Bodurka;Reza Momenan,84,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34548209896&origin=inward,10.1111/j.1530-0277.2007.00447.x,2007-09-01,"('2-s2.0-34548209896', 'Momenan')",,1490-1504,17624997.0,34548209896,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34548209896&origin=inward,Momenan,Alcoholism: Clinical and Experimental Research,Blunted rostral anterior cingulate response during a simplified decoding task of negative emotional facial expressions in alcoholic patients,Article,Momenan,NIAAA +https://api.elsevier.com/content/abstract/scopus_id/62749093177,Reza Momenan;James M. Bjork;Daniel W. Hommer,84,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=62749093177&origin=inward,10.1016/j.biopsych.2008.11.023,2009-04-15,"('2-s2.0-62749093177', 'Momenan')",,710-713,19121516.0,62749093177,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=62749093177&origin=inward,Momenan,Biological Psychiatry,Delay Discounting Correlates with Proportional Lateral Frontal Cortex Volumes,Article,Momenan,NIAAA +https://api.elsevier.com/content/abstract/scopus_id/34247882872,Cinnamon L. Danube;Ashley R. Smith;James M. Bjork;Daniel W. Hommer,68,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34247882872&origin=inward,10.1523/JNEUROSCI.5469-06.2007,2007-05-02,"('2-s2.0-34247882872', 'Hommer')",,4839-4849,17475792.0,34247882872,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34247882872&origin=inward,Hommer,Journal of Neuroscience,Developmental differences in posterior mesofrontal cortex recruitment by risky rewards,Article,Hommer,NIAAA +https://api.elsevier.com/content/abstract/scopus_id/49349090929,Jodi M. Gilman;Daniel W. Hommer,78,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=49349090929&origin=inward,10.1111/j.1369-1600.2008.00111.x,2008-09-01,"('2-s2.0-49349090929', 'Hommer')",,423-434,18507736.0,49349090929,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=49349090929&origin=inward,Hommer,Addiction Biology,Modulation of brain response to emotional images by alcohol cues in alcohol-dependent patients,Article,Hommer,NIAAA +https://api.elsevier.com/content/abstract/scopus_id/77953210452,Ashley R. Smith;James M. Bjork;Daniel W. Hommer;Gang Chen,74,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77953210452&origin=inward,10.1111/j.1469-7610.2009.02201.x,2010-07-01,"('2-s2.0-77953210452', 'Hommer')",NIMH,827-837,20025620.0,77953210452,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77953210452&origin=inward,Hommer,Journal of Child Psychology and Psychiatry and Allied Disciplines,Incentive-elicited mesolimbic activation and externalizing symptomatology in adolescents,Article,Hommer,NIAAA +https://api.elsevier.com/content/abstract/scopus_id/0242668386,Shannon Bennett;Daniel W. Hommer;Grace W. Fong;Charles M. Adams;Brian Knutson;Jerald L. Varner,45,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0242668386&origin=inward,10.1111/j.1749-6632.2003.tb07103.x,2003-01-01,"('2-s2.0-0242668386', 'Hommer')",NIAAA,476-478,12724180.0,242668386,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0242668386&origin=inward,Hommer,Annals of the New York Academy of Sciences,Amygdalar recruitment during anticipation of monetary rewards: An event-related fMRI study,Conference Paper,Hommer,NIAAA +https://api.elsevier.com/content/abstract/scopus_id/84872419562,Daniel W. Hommer;Stefanie van Rafelghem;Ziad S. Saad;Michael J. Kerich;Reza Momenan;Leah E. Steckler,50,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84872419562&origin=inward,10.1016/j.pscychresns.2012.05.003,2012-11-30,"('2-s2.0-84872419562', 'Momenan')",,101-111,23149031.0,84872419562,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84872419562&origin=inward,Momenan,Psychiatry Research - Neuroimaging,Effects of alcohol dependence on cortical thickness as determined by magnetic resonance imaging,Article,Momenan,NIAAA +https://api.elsevier.com/content/abstract/scopus_id/40649120997,Reza Momenan;Ashley R. Smith;James M. Bjork;Daniel W. Hommer,38,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=40649120997&origin=inward,10.1016/j.drugalcdep.2007.12.014,2008-05-01,"('2-s2.0-40649120997', 'Momenan')",NIGMS,115-128,18295984.0,40649120997,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=40649120997&origin=inward,Momenan,Drug and Alcohol Dependence,Reduced posterior mesofrontal cortex activation by risky rewards in substance-dependent patients,Article,Momenan,NIAAA +https://api.elsevier.com/content/abstract/scopus_id/84864949308,Ashley R. Smith;James M. Bjork;Daniel W. Hommer;Gang Chen,38,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84864949308&origin=inward,10.1002/hbm.21351,2012-09-01,"('2-s2.0-84864949308', 'Hommer')",,2174-2188,22281932.0,84864949308,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84864949308&origin=inward,Hommer,Human Brain Mapping,"Mesolimbic recruitment by nondrug rewards in detoxified alcoholics: Effort anticipation, reward anticipation, and reward delivery",Article,Hommer,NIAAA +https://api.elsevier.com/content/abstract/scopus_id/0037455417,Daniel W. Hommer;Ingrid Agartz;Robert R. Rawlings;Reza Momenan;Susan Shoaf,29,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0037455417&origin=inward,10.1016/S0925-4927(02)00084-7,2003-01-20,"('2-s2.0-0037455417', 'Momenan')",,21-35,12589880.0,37455417,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0037455417&origin=inward,Momenan,Psychiatry Research - Neuroimaging,CSF monoamine metabolites and MRI brain volumes in alcohol dependence,Article,Momenan,NIAAA +https://api.elsevier.com/content/abstract/scopus_id/1542375978,Robert Rawlings;Daniel Hommer;Brian Knutson;Grace Fong;Reza Momenan,11,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=1542375978&origin=inward,10.1016/j.neuroimage.2003.10.038,2004-03-01,"('2-s2.0-1542375978', 'Momenan')",NARSAD,965-972,15006663.0,1542375978,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=1542375978&origin=inward,Momenan,NeuroImage,Voxel-based homogeneity probability maps of gray matter in groups: Assessing the reliability of functional effects,Article,Momenan,NIAAA +https://api.elsevier.com/content/abstract/scopus_id/84892668864,Steven J. Grant;James M. Bjork;Daniel W. Hommer;Gang Chen,13,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84892668864&origin=inward,10.1038/npp.2013.232,2014-02-01,"('2-s2.0-84892668864', 'Hommer')",NIAAA,595-604,23995581.0,84892668864,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84892668864&origin=inward,Hommer,Neuropsychopharmacology,Dietary tyrosine/phenylalanine depletion effects on behavioral and brain signatures of human motivational processing,Article,Hommer,NIAAA +https://api.elsevier.com/content/abstract/scopus_id/84876133622,Lishu Zhang;Joshua D. McKellar;Daniel W. Hommer;David T. George;Robert R. Rawlings;Melanie L. Schwandt;Reza Momenan;Mike Kerich,14,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84876133622&origin=inward,10.1111/j.1369-1600.2011.00381.x,2013-05-01,"('2-s2.0-84876133622', 'Momenan')",,537-547,21995346.0,84876133622,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84876133622&origin=inward,Momenan,Addiction Biology,Smaller right amygdala in Caucasian alcohol-dependent male patients with a history of intimate partner violence: A volumetric imaging study,Article,Momenan,NIAAA +https://api.elsevier.com/content/abstract/scopus_id/84859213871,Robert Rawlings;Daniel W. Hommer;Jonathan Walker;Markus Heilig;Chun Hsin Chen;Reza Momenan,15,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84859213871&origin=inward,10.1111/j.1530-0277.2011.01662.x,2012-04-01,"('2-s2.0-84859213871', 'Momenan')",,625-632,21995416.0,84859213871,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84859213871&origin=inward,Momenan,Alcoholism: Clinical and Experimental Research,Relationship Between Liver Function and Brain Shrinkage in Patients with Alcohol Dependence,Article,Momenan,NIAAA +https://api.elsevier.com/content/abstract/scopus_id/33645286187,Daniel W. Hommer;Jasmin B. Salloum;Lawrence A. Woltz;Robert R. Rawlings;Daniel E. Rio,4,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33645286187&origin=inward,10.1016/j.cmpb.2005.12.003,2006-04-01,"('2-s2.0-33645286187', 'Hommer')",,10-19,16530880.0,33645286187,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33645286187&origin=inward,Hommer,Computer Methods and Programs in Biomedicine,Single subject image analysis using the complex general linear model - An application to functional magnetic resonance imaging with multiple inputs,Article,Hommer,NIAAA +https://api.elsevier.com/content/abstract/scopus_id/67249123854,Robert Rawlings;Daniel Hommer;Daniel Rio;Lawrence Woltz;Jodi Gilman,1,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=67249123854&origin=inward,10.1117/12.811811,2009-06-22,"('2-s2.0-67249123854', 'Hommer')",,,,67249123854,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=67249123854&origin=inward,Hommer,Progress in Biomedical Optics and Imaging - Proceedings of SPIE,An application of the complex general linear model to analysis of FMRI single subjects multiple stimuli input data,Conference Paper,Hommer,NIAAA +https://api.elsevier.com/content/abstract/scopus_id/84880165844,Daniel E. Rio;Daniel W. Hommer;Lawrence A. Woltz;Robert R. Rawlings;Jodi Gilman,0,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84880165844&origin=inward,10.1155/2013/645043,2013-07-19,"('2-s2.0-84880165844', 'Hommer')",,,23840281.0,84880165844,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84880165844&origin=inward,Hommer,Computational and Mathematical Methods in Medicine,Development of the complex general linear model in the fourier domain: Application to fMRI multiple input-output evoked responses for single subjects,Article,Hommer,NIAAA +https://api.elsevier.com/content/abstract/scopus_id/84930438413,Barry Horwitz;Walter J.B. Van Heuven;Jason F. Smith;Emily L. Coderre,27,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84930438413&origin=inward,10.1017/S1366728915000188,2016-05-01,"('2-s2.0-84930438413', 'Horwitz')",NIDCD,471-488,,84930438413,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84930438413&origin=inward,Horwitz,Bilingualism,The functional overlap of executive control and language processing in bilinguals,Article,Horwitz,NIDCD +https://api.elsevier.com/content/abstract/scopus_id/84866500865,Debra J. Patkin;Barry Horwitz;Fatima T. Husain;Allen R. Braun;Jieun Kim,9,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84866500865&origin=inward,10.1016/j.brainres.2012.08.029,2012-10-10,"('2-s2.0-84866500865', 'Horwitz')",,24-35,22968047.0,84866500865,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84866500865&origin=inward,Horwitz,Brain Research,Dissociating neural correlates of meaningful emblems from meaningless gestures in deaf signers and hearing non-signers,Article,Horwitz,NIDCD +https://api.elsevier.com/content/abstract/scopus_id/84954359433,Richard Coppola;Tyler Ard;Tom Holroyd;Barry Horwitz;Frederick W. Carver,3,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84954359433&origin=inward,10.1089/brain.2014.0296,2015-08-01,"('2-s2.0-84954359433', 'Horwitz')",,336-348,25599264.0,84954359433,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84954359433&origin=inward,Horwitz,Brain Connectivity,Detecting Functional Connectivity during Audiovisual Integration with MEG: A Comparison of Connectivity Metrics,Article,Horwitz,NIDCD +https://api.elsevier.com/content/abstract/scopus_id/84874962987,Joon Young Park;Dotti J. Tripodi;Cory U. Lago;S. Lalith Talagala;Ju Gyeong Kang;Ross Arena;Jie Zhuang;Ping Yuan Wang;Qais A. Ali;Francesco S. Celi;Jeong W. Choi;Robert S. Balaban;Paul M. Hwang;Wenzhe Ma;Louise C. Strong,65,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84874962987&origin=inward,10.1056/NEJMoa1214091,2013-03-14,"('2-s2.0-84874962987', 'Talagala')",,1027-1032,,84874962987,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84874962987&origin=inward,Talagala,New England Journal of Medicine,Increased oxidative metabolism in the Li-Fraumeni syndrome,Article,Talagala,NINDS +https://api.elsevier.com/content/abstract/scopus_id/0036787435,Peter Van Gelderen;Adrian Danek;Alan P. Koretsky;Peter Bandettini;Jeff Duyn;Jordan Grafman;Emmanuel L. Barbier;Alexander Vortmeyer;Sean Marrett,120,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0036787435&origin=inward,10.1002/mrm.10255,2002-10-01,"('2-s2.0-0036787435', 'Duyn')",,735-738,12353293.0,36787435,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0036787435&origin=inward,Duyn,Magnetic Resonance in Medicine,Imaging cortical anatomy by high-resolution MR at 3.0T: Detection of the stripe of Gennari in visual area 17,Article,Duyn,NINDS +https://api.elsevier.com/content/abstract/scopus_id/33745030267,Deborah T. Vinton;Ellen Leibenluft;Brendan A. Rich;Rebecca E. Hommer;Lisa H. Berghorst;Stephen J. Fromm;Erin B. McClure;Roxann Roberson-Nay;Daniel S. Pine,240,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33745030267&origin=inward,10.1073/pnas.0603246103,2006-06-06,"('2-s2.0-33745030267', 'Pine')",,8900-8905,16735472.0,33745030267,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33745030267&origin=inward,Pine,Proceedings of the National Academy of Sciences of the United States of America,Limbic hyperactivation during processing of neutral facial expressions in children with bipolar disorder,Article,Pine,NIMH +https://api.elsevier.com/content/abstract/scopus_id/21744449188,Ellen Leibenluft;Wayne C. Drevets;Daniel P. Dickstein;Dennis S. Charney;Allison C. Nugent;Michael P. Milham;Daniel S. Pine,194,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=21744449188&origin=inward,10.1001/archpsyc.62.7.734,2005-07-01,"('2-s2.0-21744449188', 'Nugent')",,734-741,15997014.0,21744449188,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=21744449188&origin=inward,Nugent,Archives of General Psychiatry,Frontotemporal alterations in pediatric bipolar disorder: Results of a voxel-based morphometry study,Article,Nugent,NIMH +https://api.elsevier.com/content/abstract/scopus_id/73949111386,Sarah E. Horsey;Michelle M. Reising;Ellen Leibenluft;Amanda E. Guyer;Laura A. Thomas;Brendan A. Rich;Jessica R. Lunsford;Kenneth Towbin;Melissa A. Brotman;Stephen J. Fromm;Daniel S. Pine,211,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=73949111386&origin=inward,10.1176/appi.ajp.2009.09010043,2010-01-01,"('2-s2.0-73949111386', 'Pine')",,61-69,19917597.0,73949111386,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=73949111386&origin=inward,Pine,American Journal of Psychiatry,Amygdala activation during emotion processing of neutral faces in children with severe mood dysregulation versus ADHD or bipolar disorder,Article,Pine,NIMH +https://api.elsevier.com/content/abstract/scopus_id/37548998957,Ellen Leibenluft;Daniel P. Dickstein;Brendan A. Rich;Lisa H. Berghorst;Melissa A. Brotman;Stephen J. Fromm;Daniel S. Pine,98,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=37548998957&origin=inward,10.1111/j.1469-7610.2007.01819.x,2008-01-01,"('2-s2.0-37548998957', 'Pine')",,88-96,18181882.0,37548998957,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=37548998957&origin=inward,Pine,Journal of Child Psychology and Psychiatry and Allied Disciplines,Neural connectivity in children with bipolar disorder: Impairment in the face emotion processing circuit,Article,Pine,NIMH +https://api.elsevier.com/content/abstract/scopus_id/35748984107,Roxann Roberson-nay;Ellen Leibenluft;Deborah Vinton;Daniel P. Dickstein;Brendan A. Rich;Daniel S. Pine;Lisa Berghorst,65,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=35748984107&origin=inward,10.1111/j.1399-5618.2007.00418.x,2007-11-01,"('2-s2.0-35748984107', 'Pine')",,679-692,17988357.0,35748984107,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=35748984107&origin=inward,Pine,Bipolar Disorders,Neural activation during encoding of emotional faces in pediatric bipolar disorder,Article,Pine,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84904821099,Ellen Leibenluft;Robert W. Cox;Gang Chen;Ziad S. Saad;Nancy E. Adleman,96,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84904821099&origin=inward,10.1016/j.neuroimage.2014.06.027,2014-10-01,"('2-s2.0-84904821099', 'Leibenluft')",NIH,571-588,24954281.0,84904821099,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84904821099&origin=inward,Leibenluft,NeuroImage,Applications of multivariate modeling to neuroimaging group analysis: A comprehensive alternative to univariate general linear model,Article,Leibenluft,NIMH +https://api.elsevier.com/content/abstract/scopus_id/77954092726,Ellen Leibenluft;Naomi M. Kenner;Martha Skup;Rebecca E. Hommer;Jeanette A. Mumford;Russell A. Poldrack,61,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77954092726&origin=inward,10.1523/JNEUROSCI.1096-10.2010,2010-06-23,"('2-s2.0-77954092726', 'Leibenluft')",,8512-8518,20573898.0,77954092726,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77954092726&origin=inward,Leibenluft,Journal of Neuroscience,Inhibitory motor control in response stopping and response switching,Article,Leibenluft,NIMH +https://api.elsevier.com/content/abstract/scopus_id/36749028840,Eric E. Nelson;Deborah T. Vinton;Ellen Leibenluft;Daniel S. Pine;Rebecca E. Hommer;Daniel P. Dickstein;Brendan A. Rich;Melissa A. Brotman;Kenneth E. Towbin;Lisa Berghorst,49,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=36749028840&origin=inward,10.1111/j.1399-5618.2007.00419.x,2007-12-01,"('2-s2.0-36749028840', 'Pine')",,810-819,18076530.0,36749028840,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=36749028840&origin=inward,Pine,Bipolar Disorders,Brain systems underlying response flexibility in healthy and bipolar adolescents: An event-related fMRI study,Article,Pine,NIMH +https://api.elsevier.com/content/abstract/scopus_id/78049516789,Ellen Leibenluft;James R. Blair;Martha Skup;Daniel P. Dickstein;Elizabeth C. Finger;Daniel S. Pine,46,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=78049516789&origin=inward,10.1111/j.1399-5618.2010.00863.x,2010-11-01,"('2-s2.0-78049516789', 'Pine')",,707-719,21040288.0,78049516789,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=78049516789&origin=inward,Pine,Bipolar Disorders,Altered neural function in pediatric bipolar disorder during reversal learning,Article,Pine,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84885192759,Ellen Leibenluft;Pilyoung Kim;Richard C. Reynolds;Megan E. Connolly;Daniel S. Pine;Christen M. Deveney;Catherine T. Haring;Brian L. Bones,66,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84885192759&origin=inward,10.1176/appi.ajp.2013.12070917,2013-10-01,"('2-s2.0-84885192759', 'Pine')",,1186-1194,,84885192759,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84885192759&origin=inward,Pine,American Journal of Psychiatry,Neural mechanisms of frustration in chronically irritable children,Article,Pine,NIMH +https://api.elsevier.com/content/abstract/scopus_id/80054867803,R. James R. Blair;Ellen Leibenluft;Reilly Kayser;Daniel Dickstein;Daniel Pine;Nancy E. Adleman,52,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=80054867803&origin=inward,10.1016/j.jaac.2011.07.011,2011-01-01,"('2-s2.0-80054867803', 'Blair')",,1173-1185.e2,,80054867803,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=80054867803&origin=inward,Blair,Journal of the American Academy of Child and Adolescent Psychiatry,Neural correlates of reversal learning in severe mood dysregulation and pediatric bipolar disorder,Article,Blair,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84857595862,Ellen Leibenluft;Aviva K. Olsavsky;Julia G. Rutenberg;Christen M. Deveney;Eli J. Muhrer;Kenneth Towbin;Melissa A. Brotman;Stephen J. Fromm;Daniel S. Pine,53,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84857595862&origin=inward,10.1016/j.jaac.2011.12.008,2012-03-01,"('2-s2.0-84857595862', 'Pine')",,294-303,22365465.0,84857595862,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84857595862&origin=inward,Pine,Journal of the American Academy of Child and Adolescent Psychiatry,Amygdala hyperactivation during face emotion processing in unaffected youth at risk for bipolar disorder,Article,Pine,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84862221668,Carlos A. Zarate;R. James R. Blair;Ellen Leibenluft;Pilyoung Kim;Laura A. Thomas;Brooke H. Rosen;Melissa A. Brotman;Alexander M. Moscicki;Daniel S. Pine,32,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84862221668&origin=inward,10.1176/appi.ajp.2012.11081245,2012-06-01,"('2-s2.0-84862221668', 'Zarate')",,642-649,,84862221668,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84862221668&origin=inward,Zarate,American Journal of Psychiatry,Differing amygdala responses to facial expressions in children and adults with bipolar disorder,Article,Zarate,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84867576031,Ellen Leibenluft;Reilly Kayser;Daniel S. Pine;Daniel P. Dickstein;Varun Razdan;Melissa A. Brotman;Stephen J. Fromm;Nancy E. Adleman,44,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84867576031&origin=inward,10.1111/j.1469-7610.2012.02568.x,2012-11-01,"('2-s2.0-84867576031', 'Pine')",,1149-1156,22650379.0,84867576031,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84867576031&origin=inward,Pine,Journal of Child Psychology and Psychiatry and Allied Disciplines,Cross-sectional and longitudinal abnormalities in brain structure in children with severe mood dysregulation or bipolar disorder,Article,Pine,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84878267180,Ellen Leibenluft;Pilyoung Kim;Richard C. Reynolds;Daniel S. Pine;Abigail A. Marsh;Kendra E. Hinton;Nancy E. Adleman;R. J.R. Blair;Hannah S. Milch;Laura A. Thomas;Brian L. Bones,34,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84878267180&origin=inward,10.1016/j.nicl.2013.04.007,2013-06-03,"('2-s2.0-84878267180', 'Blair')",NIH,637-645,,84878267180,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84878267180&origin=inward,Blair,NeuroImage: Clinical,Elevated amygdala responses to emotional faces in youths with chronic irritability or bipolar disorder,Article,Blair,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84991214825,Ellen Leibenluft;Pilyoung Kim;Richard C. Reynolds;Jillian Lee Wiggins;Daniel S. Pine;Gang Chen;Melissa A. Brotman;Nancy E. Adleman;Allison H. Oakes,42,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84991214825&origin=inward,10.1176/appi.ajp.2015.15060833,2016-07-01,"('2-s2.0-84991214825', 'Pine')",NIMH,722-730,26892942.0,84991214825,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84991214825&origin=inward,Pine,American Journal of Psychiatry,Neural correlates of irritability in disruptive mood dysregulation and bipolar disorders,Article,Pine,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84862195360,Carlos A. Zarate;Ellen Leibenluft;Judah D. Weathers;Daniel S. Pine;Argyris Stringaris;Christen M. Deveney;Stephanie B. LeBourdais;Melissa A. Brotman;Stephen J. Fromm;Megan E. Connolly,30,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84862195360&origin=inward,10.1176/appi.ajp.2012.11081244,2012-06-01,"('2-s2.0-84862195360', 'Stringaris')",,633-641,,84862195360,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84862195360&origin=inward,Stringaris,American Journal of Psychiatry,A developmental study of the neural circuitry mediating motor inhibition in bipolar disorder,Article,Stringaris,NIMH +https://api.elsevier.com/content/abstract/scopus_id/73649122016,Ellen Leibenluft;Francis J. McMahon;Martha Skup;Melissa A. Brotman;Nirmala Akula;Xinmin Liu,20,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=73649122016&origin=inward,10.1097/00004583-201001000-00007,2010-01-01,"('2-s2.0-73649122016', 'Leibenluft')",,33-41,20215924.0,73649122016,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=73649122016&origin=inward,Leibenluft,Journal of the American Academy of Child and Adolescent Psychiatry,A Genome-Wide Association Study of Amygdala Activation in Youths With and Without Bipolar Disorder,Article,Leibenluft,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84922827361,Ellen Leibenluft;Richard C. Reynolds;Daniel S. Pine;Derek Hsu;Daniel P. Dickstein;Joel Stoddard;Melissa A. Brotman;Monique Ernst,24,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84922827361&origin=inward,10.1016/j.pscychresns.2014.11.006,2015-01-01,"('2-s2.0-84922827361', 'Pine')",NIH,120-125,25544024.0,84922827361,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84922827361&origin=inward,Pine,Psychiatry Research - Neuroimaging,Aberrant amygdala intrinsic functional connectivity distinguishes youths with bipolar disorder from those with severe mood dysregulation,Article,Pine,NIMH +https://api.elsevier.com/content/abstract/scopus_id/43049161272,Kenneth E. Towbin;Ellen Leibenluft;Daniel P. Dickstein;Jan Willem van der Veen;Lisa Knopf;Daniel S. Pine,15,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=43049161272&origin=inward,10.1016/j.pscychresns.2007.11.006,2008-05-30,"('2-s2.0-43049161272', 'Pine')",NARSAD,30-39,18403184.0,43049161272,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=43049161272&origin=inward,Pine,Psychiatry Research - Neuroimaging,Proton magnetic resonance spectroscopy in youth with severe mood dysregulation,Article,Pine,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84899710852,E. J. Muhrer;J. G. Rutenberg;C. M. Deveney;A. K. Olsavsky;M. A. Brotman;N. E. Adleman;W. L. Tseng;S. J. Fromm;C. A. Zarate;D. S. Pine;E. Leibenluft,25,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84899710852&origin=inward,10.1017/S003329171300202X,2014-01-01,"('2-s2.0-84899710852', 'Zarate')",,1639-1651,23930595.0,84899710852,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84899710852&origin=inward,Zarate,Psychological Medicine,Fronto-limbic-striatal dysfunction in pediatric and adult patients with bipolar disorder: Impact of face emotion and attentional demands,Article,Zarate,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84925940729,Ellen Leibenluft;Laura A. Thomas;Christen M. Deveney;Kendra E. Hinton;Jennifer Y. Yi;Melissa A. Brotman;Daniel S. Pine,15,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84925940729&origin=inward,10.1111/bdi.12193,2014-01-01,"('2-s2.0-84925940729', 'Pine')",,756-763,24617738.0,84925940729,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84925940729&origin=inward,Pine,Bipolar Disorders,Parametric modulation of neural activity during face emotion processing in unaffected youth at familial risk for bipolar disorder,Article,Pine,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84876788858,Ellen Leibenluft;Aviva K. Olsavsky;Daniel S. Pine;Eli J. Muhrer;Nancy E. Adleman;Stephen J. Fromm;Melissa A. Brotman;Brian L. Bones;Reilly R. Kayser;Carlos Zarate,16,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84876788858&origin=inward,10.1016/j.pscychresns.2013.01.006,2013-05-30,"('2-s2.0-84876788858', 'Pine')",NIH,161-163,23541333.0,84876788858,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84876788858&origin=inward,Pine,Psychiatry Research - Neuroimaging,Abnormal fusiform activation during emotional-face encoding assessed with functional magnetic resonance imaging,Article,Pine,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84920938450,A. K. Olsavsky;B. L. Bones;R. R. Kayser;M. A. Brotman;W. L. Tseng;S. J. Fromm;D. S. Pine;E. Leibenluft,21,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84920938450&origin=inward,10.1016/j.eurpsy.2014.05.004,2015-01-01,"('2-s2.0-84920938450', 'Pine')",NIH,94-98,25172156.0,84920938450,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84920938450&origin=inward,Pine,European Psychiatry,An fMRI study of emotional face encoding in youth at risk for bipolar disorder,Article,Pine,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84938745618,Tom A. Hummer;Peter Finn;Ellen Leibenluft;Leslie A. Hulvershorn;Lauren Overhage;Melissa A. Cyders;Rena Fukunaga;Allyson Dir;Amit Anand;Joshua Brown,16,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84938745618&origin=inward,10.1016/j.pscychresns.2015.05.007,2015-08-30,"('2-s2.0-84938745618', 'Leibenluft')",AACAP,102-111,26071624.0,84938745618,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84938745618&origin=inward,Leibenluft,Psychiatry Research - Neuroimaging,Neural activation during risky decision-making in youth at high risk for substance use disorders,Article,Leibenluft,NIMH +https://api.elsevier.com/content/abstract/scopus_id/78650158125,Ellen Leibenluft;Martha Skup;Julie M. Hall;Laura A. Thomas;Daniel S. Pine;Sarah E. Jenkins,7,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=78650158125&origin=inward,10.1111/j.1467-7687.2010.00967.x,2011-01-01,"('2-s2.0-78650158125', 'Pine')",,148-161,21159096.0,78650158125,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=78650158125&origin=inward,Pine,Developmental Science,A developmental neuroimaging investigation of the change paradigm,Article,Pine,NIMH +https://api.elsevier.com/content/abstract/scopus_id/85011396226,Laura Donahue;Pilyoung Kim;Wan Ling Tseng;Kenneth E. Towbin;Ellen Leibenluft;Daniel S. Pine;Gang Chen;Joel Stoddard;Melissa A. Brotman;Jennifer Yi,23,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85011396226&origin=inward,10.1001/jamapsychiatry.2016.3282,2017-01-01,"('2-s2.0-85011396226', 'Pine')",NIMH,95-103,27902832.0,85011396226,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85011396226&origin=inward,Pine,JAMA Psychiatry,Association of irritability and anxiety with the neural mechanisms of implicit face emotion processing in youths with psychopathology,Article,Pine,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84996636665,Elizabeth R. Steuber;Ellen Leibenluft;Daniel S. Pine;Sara N. Lever;Andrea L. Gold;Melissa A. Brotman;Stephen J. Fromm;Sven C. Mueller;Nancy E. Adleman,22,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84996636665&origin=inward,10.1016/j.jaac.2016.08.008,2016-12-01,"('2-s2.0-84996636665', 'Pine')",,1027-1037.e3,27871637.0,84996636665,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84996636665&origin=inward,Pine,Journal of the American Academy of Child and Adolescent Psychiatry,Comparing Brain Morphometry Across Multiple Childhood Psychiatric Disorders,Conference Paper,Pine,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84928689508,Carlos A. Zarate;Ellen Leibenluft;Richard C. Reynolds;Laura A. Thomas;Eli M. Muhrer;Daniel S. Pine;Christen M. Deveney;Kendra E. Hinton;Melissa A. Brotman;Nancy E. Adleman,5,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84928689508&origin=inward,10.1093/scan/nsu014,2013-01-01,"('2-s2.0-84928689508', 'Zarate')",,1984-1992,24493839.0,84928689508,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84928689508&origin=inward,Zarate,Social Cognitive and Affective Neuroscience,Neural response during explicit and implicit face processing varies developmentally in bipolar disorder,Article,Zarate,NIMH +https://api.elsevier.com/content/abstract/scopus_id/85006340167,Ellen Leibenluft;Pilyoung Kim;Richard C. Reynolds;Jillian Lee Wiggins;Daniel S. Pine;Gang Chen;Caroline G. Wambach;Kenneth Towbin;Melissa A. Brotman;Nancy E. Adleman,17,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85006340167&origin=inward,10.1016/j.jaac.2016.10.009,2017-01-01,"('2-s2.0-85006340167', 'Pine')",NIMH,67-78,27993231.0,85006340167,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85006340167&origin=inward,Pine,Journal of the American Academy of Child and Adolescent Psychiatry,Neural Markers in Pediatric Bipolar Disorder and Familial Risk for Bipolar Disorder,Article,Pine,NIMH +https://api.elsevier.com/content/abstract/scopus_id/85016555669,Susan Zhang;Kenneth E. Towbin;Ellen Leibenluft;Jillian Lee Wiggins;Alexa Curhan;Daniel S. Pine;David Pagliaccio;Melissa A. Brotman;Nancy E. Adleman,6,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85016555669&origin=inward,10.1016/j.jaac.2017.02.008,2017-05-01,"('2-s2.0-85016555669', 'Pine')",,426-435,28433092.0,85016555669,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85016555669&origin=inward,Pine,Journal of the American Academy of Child and Adolescent Psychiatry,Behavioral and Neural Sustained Attention Deficits in Disruptive Mood Dysregulation Disorder and Attention-Deficit/Hyperactivity Disorder,Article,Pine,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84994291800,Carlos A. Zarate;Ellen Leibenluft;Wan Ling Tseng;Joel Stoddard;Melissa A. Brotman;Laura A. Thomas;Elizabeth Harkins;Daniel S. Pine,2,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84994291800&origin=inward,10.1016/j.pscychresns.2016.10.006,2016-12-30,"('2-s2.0-84994291800', 'Zarate')",NIH,1-9,27814457.0,84994291800,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84994291800&origin=inward,Zarate,Psychiatry Research - Neuroimaging,Functional connectivity during masked and unmasked face emotion processing in bipolar disorder,Article,Zarate,NIMH +https://api.elsevier.com/content/abstract/scopus_id/62749197293,Mary Kay Kenney;Soo Eun Chang;Christy L. Ludlow;Torrey M.J. Loucks,112,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=62749197293&origin=inward,10.1016/j.neuroimage.2009.01.066,2009-05-15,"('2-s2.0-62749197293', 'Zarate')",NIH,201-212,19401143.0,62749197293,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=62749197293&origin=inward,Zarate,NeuroImage,Brain activation abnormalities during speech and non-speech in stuttering speakers,Article,Zarate,NIMH +https://api.elsevier.com/content/abstract/scopus_id/23444462637,Christy L. Ludlow,94,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=23444462637&origin=inward,10.1016/j.resp.2005.04.015,2005-07-28,"('2-s2.0-23444462637', 'Zarate')",,205-222,15927543.0,23444462637,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=23444462637&origin=inward,Zarate,Respiratory Physiology and Neurobiology,Central nervous system control of the laryngeal muscles in humans,Article,Zarate,NIMH +https://api.elsevier.com/content/abstract/scopus_id/34247222555,Kristina Simonyan;Catherine L. Reynolds;Torrey M.J. Loucks;Christopher J. Poletto;Christy L. Ludlow,82,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34247222555&origin=inward,10.1016/j.neuroimage.2007.01.049,2007-05-15,"('2-s2.0-34247222555', 'Zarate')",NIH,131-143,17428683.0,34247222555,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34247222555&origin=inward,Zarate,NeuroImage,Human brain activation during phonation and exhalation: Common volitional control for two upper airway functions,Article,Zarate,NIMH +https://api.elsevier.com/content/abstract/scopus_id/38849191142,Kristina Simonyan;Michael R. Lewin-Smith;John Ostuni;Alexander O. Vortmeyer;Elisabeth J. Rushing;Fernanda Tovar-Moll;Mark Hallett;Christy L. Ludlow;Victor F. Kalasinsky,90,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=38849191142&origin=inward,10.1093/brain/awm303,2008-01-01,"('2-s2.0-38849191142', 'Hallett')",NINDS,447-459,18083751.0,38849191142,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=38849191142&origin=inward,Hallett,Brain,Focal white matter changes in spasmodic dysphonia: A combined diffusion tensor imaging and neuropathological study,Article,Hallett,NINDS +https://api.elsevier.com/content/abstract/scopus_id/77957842072,Kristina Simonyan;Christy L. Ludlow,85,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77957842072&origin=inward,10.1093/cercor/bhq023,2010-11-01,"('2-s2.0-77957842072', 'Hallett')",,2749-2759,20194686.0,77957842072,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77957842072&origin=inward,Hallett,Cerebral Cortex,Abnormal activation of the primary somatosensory cortex in spasmodic dysphonia: An fMRI Study,Article,Hallett,NINDS +https://api.elsevier.com/content/abstract/scopus_id/34548862046,Kristina Simonyan;Torrey M.J. Loucks;Ziad S. Saad;Christopher J. Poletto;Christy L. Ludlow,60,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34548862046&origin=inward,10.1016/j.neuroimage.2007.05.021,2007-08-15,"('2-s2.0-34548862046', 'Hallett')",NIH,401-409,17574873.0,34548862046,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34548862046&origin=inward,Hallett,NeuroImage,Functional neuroanatomy of human voluntary cough and sniff production,Article,Hallett,NINDS +https://api.elsevier.com/content/abstract/scopus_id/67349243451,Mary Kay Kenney;Torrey M.J. Loucks;Soo Eun Chang;Christopher J. Poletto;Christy L. Ludlow,43,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=67349243451&origin=inward,10.1016/j.neuroimage.2009.03.032,2009-08-01,"('2-s2.0-67349243451', 'Hallett')",NIH,314-325,19327400.0,67349243451,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=67349243451&origin=inward,Hallett,NeuroImage,Common neural substrates support speech and non-speech vocal tract gestures,Article,Hallett,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84858262181,Kristina Simonyan;Christy L. Ludlow,47,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84858262181&origin=inward,10.1093/cercor/bhr120,2012-02-01,"('2-s2.0-84858262181', 'Hallett')",,417-425,21666131.0,84858262181,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84858262181&origin=inward,Hallett,Cerebral Cortex,Abnormal structure-function relationship in spasmodic dysphonia,Article,Hallett,NINDS +https://api.elsevier.com/content/abstract/scopus_id/0036712795,W. Scott Selbie;Christy L. Ludlow;Sally L. Gewalt,22,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0036712795&origin=inward,10.1121/1.1501586,2002-09-01,"('2-s2.0-0036712795', 'Hallett')",,1077-1090,12243156.0,36712795,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0036712795&origin=inward,Hallett,Journal of the Acoustical Society of America,Developing an anatomical model of the human laryngeal cartilages from magnetic resonance imaging,Article,Hallett,NINDS +https://api.elsevier.com/content/abstract/scopus_id/77954534915,Christy L. Ludlow;Soo Eun Chang;Anna Synnestvedt;John Ostuni,16,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77954534915&origin=inward,10.1016/j.jneuroling.2008.11.004,2010-09-01,"('2-s2.0-77954534915', 'Hallett')",NINDS,455-469,,77954534915,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77954534915&origin=inward,Hallett,Journal of Neurolinguistics,Similarities in speech and white matter characteristics in idiopathic developmental stuttering and adult-onset stuttering,Article,Hallett,NINDS +https://api.elsevier.com/content/abstract/scopus_id/30044437340,Kalanit Grill-Spector;Richard Henson;Alex Martin,1470,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=30044437340&origin=inward,10.1016/j.tics.2005.11.006,2006-01-01,"('2-s2.0-30044437340', 'Martin')",,14-23,16321563.0,30044437340,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=30044437340&origin=inward,Martin,Trends in Cognitive Sciences,Repetition and the brain: Neural models of stimulus-specific effects,Review,Martin,NIMH +https://api.elsevier.com/content/abstract/scopus_id/33847072067,Alex Martin,1017,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33847072067&origin=inward,10.1146/annurev.psych.57.102904.190143,2007-02-23,"('2-s2.0-33847072067', 'Martin')",,25-45,16968210.0,33847072067,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33847072067&origin=inward,Martin,Annual Review of Psychology,The representation of object concepts in the brain,Article,Martin,NIMH +https://api.elsevier.com/content/abstract/scopus_id/0033778373,Linda L. Chao;Alex Martin,883,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0033778373&origin=inward,10.1006/nimg.2000.0635,2000-01-01,"('2-s2.0-0033778373', 'Martin')",,478-484,10988041.0,33778373,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0033778373&origin=inward,Martin,NeuroImage,Representation of manipulable man-made objects in the dorsal stream,Article,Martin,NIMH +https://api.elsevier.com/content/abstract/scopus_id/0035312810,L. L. Chao;A. Martin,868,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0035312810&origin=inward,10.1016/S0959-4388(00)00196-3,2001-04-01,"('2-s2.0-0035312810', 'Martin')",NIMH,194-201,11301239.0,35312810,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0035312810&origin=inward,Martin,Current Opinion in Neurobiology,Semantic memory and the brain: Structure and processes,Review,Martin,NIMH +https://api.elsevier.com/content/abstract/scopus_id/1542268973,Alex Martin;Kathryn E. Lee;Michael S. Beauchamp;Brenna D. Argall,482,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=1542268973&origin=inward,10.1016/S0896-6273(04)00070-4,2004-03-04,"('2-s2.0-1542268973', 'Martin')",NIMH,809-823,15003179.0,1542268973,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=1542268973&origin=inward,Martin,Neuron,Integration of auditory and visual information about objects in superior temporal sulcus,Article,Martin,NIMH +https://api.elsevier.com/content/abstract/scopus_id/0037187721,James V. Haxby;Kathryn E. Lee;Michael S. Beauchamp;Alex Martin,397,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0037187721&origin=inward,10.1016/S0896-6273(02)00642-6,2002-03-28,"('2-s2.0-0037187721', 'Martin')",,149-159,11931749.0,37187721,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0037187721&origin=inward,Martin,Neuron,Parallel visual motion processing streams for manipulable objects and human movements,Article,Martin,NIMH +https://api.elsevier.com/content/abstract/scopus_id/0142025001,James V. Haxby;Kathryn E. Lee;Michael S. Beauchamp;Alex Martin,341,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0142025001&origin=inward,10.1162/089892903770007380,2003-10-01,"('2-s2.0-0142025001', 'Martin')",,991-1001,14614810.0,142025001,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0142025001&origin=inward,Martin,Journal of Cognitive Neuroscience,fMRI Responses to Video and Point-Light Displays of Moving Humans and Manipulable Objects,Article,Martin,NIMH +https://api.elsevier.com/content/abstract/scopus_id/7044264448,Brenna D. Argall;Jerzy Bodurka;Alex Martin;Michael S. Beauchamp;Jeff H. Duyn,355,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=7044264448&origin=inward,10.1038/nn1333,2004-11-01,"('2-s2.0-7044264448', 'Duyn')",,1190-1192,15475952.0,7044264448,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=7044264448&origin=inward,Duyn,Nature Neuroscience,Unraveling multisensory integration: Patchy organization within human STS multisensory cortex,Article,Duyn,NINDS +https://api.elsevier.com/content/abstract/scopus_id/25144434898,W. Kyle Simmons;Lawrence W. Barsalou;Alex Martin,338,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=25144434898&origin=inward,10.1093/cercor/bhi038,2005-10-01,"('2-s2.0-25144434898', 'Martin')",NSF,1602-1608,15703257.0,25144434898,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=25144434898&origin=inward,Martin,Cerebral Cortex,Pictures of appetizing foods activate gustatory cortices for taste and reward,Article,Martin,NIMH +https://api.elsevier.com/content/abstract/scopus_id/20544448036,Michael S. Beauchamp,255,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=20544448036&origin=inward,10.1016/j.conb.2005.03.011,2005-01-01,"('2-s2.0-20544448036', 'Martin')",NIMH,145-153,15831395.0,20544448036,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=20544448036&origin=inward,Martin,Current Opinion in Neurobiology,"See me, hear me, touch me: Multisensory integration in lateral occipital-temporal cortex",Review,Martin,NIMH +https://api.elsevier.com/content/abstract/scopus_id/34547436874,Ken McRae;W. Kyle Simmons;Vimal Ramjee;Lawrence W. Barsalou;Alex Martin;Michael S. Beauchamp,240,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34547436874&origin=inward,10.1016/j.neuropsychologia.2007.05.002,2007-08-03,"('2-s2.0-34547436874', 'Martin')",NSERC,2802-2810,17575989.0,34547436874,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34547436874&origin=inward,Martin,Neuropsychologia,A common neural substrate for perceiving and knowing about color,Article,Martin,NIMH +https://api.elsevier.com/content/abstract/scopus_id/0033711374,Timothy Ellmore;Miranda Van Turennout;Alex Martin,192,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0033711374&origin=inward,10.1038/81873,2000-12-07,"('2-s2.0-0033711374', 'Martin')",,1329-1334,11100155.0,33711374,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0033711374&origin=inward,Martin,Nature Neuroscience,Long-lasting cortical plasticity in the object naming system,Article,Martin,NIMH +https://api.elsevier.com/content/abstract/scopus_id/34547160845,Raffaella I. Rumiati;Bradford Z. Mahon;Alfonso Caramazza;Alex Martin;Shawn C. Milleville;Gioia A.L. Negri,204,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34547160845&origin=inward,10.1016/j.neuron.2007.07.011,2007-08-02,"('2-s2.0-34547160845', 'Martin')",NIMH,507-520,17678861.0,34547160845,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34547160845&origin=inward,Martin,Neuron,Action-Related Properties Shape Object Representations in the Ventral Stream,Article,Martin,NIMH +https://api.elsevier.com/content/abstract/scopus_id/0038486607,Jill Weisberg;Alex Martin,181,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0038486607&origin=inward,10.1080/02643290342000005,2003-05-01,"('2-s2.0-0038486607', 'Martin')",,575-587,,38486607,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0038486607&origin=inward,Martin,Cognitive Neuropsychology,Neural foundations for understanding social and mechanical concepts,Review,Martin,NIMH +https://api.elsevier.com/content/abstract/scopus_id/0036259085,Jill Weisberg;Linda L. Chao;Alex Martin,172,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0036259085&origin=inward,10.1093/cercor/12.5.545,2002-01-01,"('2-s2.0-0036259085', 'Martin')",,545-551,11950772.0,36259085,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0036259085&origin=inward,Martin,Cerebral Cortex,Experience-dependent modulation of category-related cortical activity,Article,Martin,NIMH +https://api.elsevier.com/content/abstract/scopus_id/70349952389,Alex Martin;Rasmus M. Birn;Tyler B. Jones;Laura Case;Lauren Kenworthy;Peter A. Bandettini;Rachel Caravella,195,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=70349952389&origin=inward,10.1016/j.neuroimage.2009.07.036,2010-01-01,"('2-s2.0-70349952389', 'Bandettini')",NIMH,1099-1107,19632335.0,70349952389,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=70349952389&origin=inward,Bandettini,NeuroImage,Neural systems supporting lexical search guided by letter and semantic category cues: A self-paced overt response fMRI study of verbal fluency,Article,Bandettini,NIMH +https://api.elsevier.com/content/abstract/scopus_id/21344455127,Michael S. Beauchamp,157,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=21344455127&origin=inward,10.1385/NI:03:02:93,2005-07-12,"('2-s2.0-21344455127', 'Bandettini')",NIMH,93-113,15988040.0,21344455127,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=21344455127&origin=inward,Bandettini,Neuroinformatics,Statistical criteria in fMRI studies of multisensory integration,Article,Bandettini,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84866396847,Gregory L. Wallace;Robert W. Cox;Stephen J. Gotts;W. Kyle Simmons;Alex Martin;Lydia A. Milbury,189,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84866396847&origin=inward,10.1093/brain/aws160,2012-01-01,"('2-s2.0-84866396847', 'Martin')",NIMH,2711-2725,22791801.0,84866396847,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84866396847&origin=inward,Martin,Brain,Fractionation of social brain circuits in autism spectrum disorders,Article,Martin,NIMH +https://api.elsevier.com/content/abstract/scopus_id/33846977727,Jill Weisberg;Miranda Van Turennout;Alex Martin,147,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33846977727&origin=inward,10.1093/cercor/bhj176,2007-03-01,"('2-s2.0-33846977727', 'Martin')",NIMH,513-521,16581980.0,33846977727,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33846977727&origin=inward,Martin,Cerebral Cortex,A neural system for learning about object function,Article,Martin,NIMH +https://api.elsevier.com/content/abstract/scopus_id/77949422404,W. Kyle Simmons;Patrick S.F. Bellgowan;Mark Reddish;Alex Martin,146,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77949422404&origin=inward,10.1093/cercor/bhp149,2010-04-01,"('2-s2.0-77949422404', 'Martin')",,813-825,19620621.0,77949422404,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77949422404&origin=inward,Martin,Cerebral Cortex,The selectivity and functional connectivity of the anterior temporal lobes,Article,Martin,NIMH +https://api.elsevier.com/content/abstract/scopus_id/78649897373,Gregory L. Wallace;Lauren Kenworthy;Alex Martin;Nathan Dankner;Jay N. Giedd,154,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=78649897373&origin=inward,10.1093/brain/awq279,2010-12-01,"('2-s2.0-78649897373', 'Martin')",NIMH,3745-3754,20926367.0,78649897373,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=78649897373&origin=inward,Martin,Brain,Age-related temporal and parietal cortical thinning in autism spectrum disorders,Article,Martin,NIMH +https://api.elsevier.com/content/abstract/scopus_id/34250325112,Thalia Wheatley;Shawn C. Milleville;Alex Martin,143,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34250325112&origin=inward,10.1111/j.1467-9280.2007.01923.x,2007-06-01,"('2-s2.0-34250325112', 'Martin')",NIMH,469-474,17576256.0,34250325112,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34250325112&origin=inward,Martin,Psychological Science,Understanding animate agents: Distinct roles for the social network and mirror system: Research report,Article,Martin,NIMH +https://api.elsevier.com/content/abstract/scopus_id/33644901812,Thalia Wheatley;Jill Weisberg;Michael S. Beauchamp;Alex Martin,130,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33644901812&origin=inward,10.1162/089892905775008689,2005-12-01,"('2-s2.0-33644901812', 'Martin')",,1871-1885,16356325.0,33644901812,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33644901812&origin=inward,Martin,Journal of Cognitive Neuroscience,Automatic priming of semantically related words reduces activity in the fusiform gyrus,Article,Martin,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84887546061,Gregory L. Wallace;Hang Joon Jo;Robert W. Cox;Stephen J. Gotts;Ziad S. Saad;Alex Martin,162,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84887546061&origin=inward,10.3389/fnhum.2013.00356,2013-07-12,"('2-s2.0-84887546061', 'Martin')",,,,84887546061,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84887546061&origin=inward,Martin,Frontiers in Human Neuroscience,The perils of global signal regression for group comparisons: A case study of Autism Spectrum Disorders,Article,Martin,NIMH +https://api.elsevier.com/content/abstract/scopus_id/32044472524,Ziad S. Saad;Michael S. Beauchamp;Brenna D. Argall,126,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=32044472524&origin=inward,10.1002/hbm.20158,2006-01-01,"('2-s2.0-32044472524', 'Martin')",,14-27,16035046.0,32044472524,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=32044472524&origin=inward,Martin,Human Brain Mapping,Simplified intersubject averaging on the cortical surface using SUMA,Article,Martin,NIMH +https://api.elsevier.com/content/abstract/scopus_id/70349969868,Rasmus M. Birn;Tyler B. Jones;Lauren Kenworthy;Peter A. Bandettini;Alex Martin;Shawn C. Milleville;Laura K. Case,123,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=70349969868&origin=inward,10.1016/j.neuroimage.2009.07.051,2010-01-01,"('2-s2.0-70349969868', 'Bandettini')",NIMH,401-414,19646533.0,70349969868,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=70349969868&origin=inward,Bandettini,NeuroImage,Sources of group differences in functional connectivity: An investigation applied to autism spectrum disorder,Article,Bandettini,NIMH +https://api.elsevier.com/content/abstract/scopus_id/70349423423,W. Kyle Simmons;Alex Martin,126,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=70349423423&origin=inward,10.1017/S1355617709990348,2009-01-01,"('2-s2.0-70349423423', 'Martin')",,645-649,19631024.0,70349423423,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=70349423423&origin=inward,Martin,Journal of the International Neuropsychological Society,The anterior temporal lobes and the functional architecture of semantic memory,Review,Martin,NIMH +https://api.elsevier.com/content/abstract/scopus_id/0037382263,Miranda Van Turennout;Lisa Bielamowicz;Alex Martin,106,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0037382263&origin=inward,10.1093/cercor/13.4.381,2003-04-01,"('2-s2.0-0037382263', 'Martin')",,381-391,12631567.0,37382263,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0037382263&origin=inward,Martin,Cerebral Cortex,Modulation of neural activity during object naming: Effects of time and practice,Article,Martin,NIMH +https://api.elsevier.com/content/abstract/scopus_id/34248593724,Michael S. Beauchamp;Alex Martin,109,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34248593724&origin=inward,10.1016/S0010-9452(08)70470-2,2007-01-01,"('2-s2.0-34248593724', 'Martin')",,461-468,17533768.0,34248593724,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34248593724&origin=inward,Martin,Cortex,Grounding object concepts in perception and action: Evidence from fMRI studies of tools,Article,Martin,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84883412265,Gregory L. Wallace;Hang Joon Jo;Robert W. Cox;Stephen J. Gotts;Ziad S. Saad;Alex Martin,144,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84883412265&origin=inward,10.1073/pnas.1302581110,2013-09-03,"('2-s2.0-84883412265', 'Martin')",NIH,,23959883.0,84883412265,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84883412265&origin=inward,Martin,Proceedings of the National Academy of Sciences of the United States of America,Two distinct forms of functional lateralization in the human brain,Article,Martin,NIMH +https://api.elsevier.com/content/abstract/scopus_id/10644277895,Peter Herscovitch;Richard E. Carson;Marc D. Hauser;Marco Lopes;Ricardo Gil-da-Costa;Alex Martin;Allen Braun,93,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=10644277895&origin=inward,10.1073/pnas.0408077101,2004-12-14,"('2-s2.0-10644277895', 'Martin')",,17516-17521,15583132.0,10644277895,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=10644277895&origin=inward,Martin,Proceedings of the National Academy of Sciences of the United States of America,Toward an evolutionary perspective on conceptual representation: Species-specific calls activate visual and affective processing systems in the macaque,Article,Martin,NIMH +https://api.elsevier.com/content/abstract/scopus_id/33749325994,Elizabeth A. Buffalo;Patrick S.F. Bellgowan;Alex Martin,89,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33749325994&origin=inward,10.1101/lm.251906,2006-10-09,"('2-s2.0-33749325994', 'Martin')",,638-643,16980544.0,33749325994,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33749325994&origin=inward,Martin,Learning and Memory,Distinct roles for medial temporal lobe structures in memory for objects and their locations,Article,Martin,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84864692538,Carson C. Chow;Stephen J. Gotts;Alex Martin,102,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84864692538&origin=inward,10.1080/17588928.2012.670617,2012-08-01,"('2-s2.0-84864692538', 'Martin')",NIMH,227-237,,84864692538,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84864692538&origin=inward,Martin,Cognitive Neuroscience,Repetition priming and repetition suppression: A case for enhanced efficiency through neural synchronization,Article,Martin,NIMH +https://api.elsevier.com/content/abstract/scopus_id/31844449196,Peter Van Gelderen;Jerzy Bodurka;Patrick S.F. Bellgowan;Peter A. Bandettini;Alex Martin,67,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=31844449196&origin=inward,10.1016/j.neuroimage.2005.08.042,2006-02-15,"('2-s2.0-31844449196', 'Bandettini')",NINDS,1244-1251,16242347.0,31844449196,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=31844449196&origin=inward,Bandettini,NeuroImage,Improved BOLD detection in the medial temporal region using parallel imaging and voxel volume reduction,Article,Bandettini,NIMH +https://api.elsevier.com/content/abstract/scopus_id/0037879576,Laurent Petit;Michael S. Beauchamp,64,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0037879576&origin=inward,10.1152/jn.00988.2002,2003-05-01,"('2-s2.0-0037879576', 'Bandettini')",,2516-2527,12611944.0,37879576,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0037879576&origin=inward,Bandettini,Journal of Neurophysiology,Neural basis of visually guided head movements studied with fMRI,Article,Bandettini,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84878872023,Gregory L. Wallace;Lauren Kenworthy;Alex Martin;Briana Robustelli;Nathan Dankner;Jay N. Giedd,78,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84878872023&origin=inward,10.1093/brain/awt106,2013-01-01,"('2-s2.0-84878872023', 'Martin')",NIMH,1956-1967,,84878872023,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84878872023&origin=inward,Martin,Brain,"Increased gyrification, but comparable surface area in adolescents with autism spectrum disorders",Article,Martin,NIMH +https://api.elsevier.com/content/abstract/scopus_id/0037703784,Alfonso Caramazza;Alex Martin,50,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0037703784&origin=inward,10.1080/02643290342000050,2003-05-01,"('2-s2.0-0037703784', 'Martin')",,195-212,,37703784,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0037703784&origin=inward,Martin,Cognitive Neuropsychology,Neuropsychological and neuroimaging perspectives on conceptual knowledge: An introduction,Review,Martin,NIMH +https://api.elsevier.com/content/abstract/scopus_id/79953048045,Avniel Singh Ghuman;Alex Martin;Jonathan R. McDaniel,46,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79953048045&origin=inward,10.1016/j.neuroimage.2011.01.046,2011-05-01,"('2-s2.0-79953048045', 'Martin')",,69-77,21256967.0,79953048045,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79953048045&origin=inward,Martin,NeuroImage,A wavelet-based method for measuring the oscillatory dynamics of resting-state functional connectivity in MEG,Article,Martin,NIMH +https://api.elsevier.com/content/abstract/scopus_id/0033957387,Linda L. Chao;James V. Haxby;Leslie G. Ungerleider;Alex Martin;Alumit Ishai,37,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0033957387&origin=inward,10.1016/S1364-6613(99)01423-0,2000-01-01,"('2-s2.0-0033957387', 'Ungerleider')",,3-4,,33957387,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0033957387&origin=inward,Ungerleider,Trends in Cognitive Sciences,Object-form topology in the ventral temporal lobe: Response to I. Gauthier (2000),Short Survey,Ungerleider,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84857320551,W. K. Simmons;Alex Martin,44,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84857320551&origin=inward,10.1093/scan/nsr018,2012-04-01,"('2-s2.0-84857320551', 'Martin')",,467-475,21586527.0,84857320551,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84857320551&origin=inward,Martin,Social Cognitive and Affective Neuroscience,Spontaneous resting-state BOLD fluctuations reveal persistent domain-specific neural networks,Article,Martin,NIMH +https://api.elsevier.com/content/abstract/scopus_id/33845873303,W. Kyle Simmons;Patrick S.F. Bellgowan;Alex Martin,33,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33845873303&origin=inward,10.1038/nn0107-4,2007-01-01,"('2-s2.0-33845873303', 'Martin')",,4-5,17189941.0,33845873303,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33845873303&origin=inward,Martin,Nature Neuroscience,Measuring selectivity in fMRI data [2],Letter,Martin,NIMH +https://api.elsevier.com/content/abstract/scopus_id/67649628233,Elizabeth A. Buffalo;Jerzy Bodurka;Patrick S.F. Bellgowan;Alex Martin,32,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=67649628233&origin=inward,10.1101/lm.1357309,2009-07-01,"('2-s2.0-67649628233', 'Martin')",,433-438,19553381.0,67649628233,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=67649628233&origin=inward,Martin,Learning and Memory,Lateralized spatial and object memory encoding in entorhinal and perirhinal cortices,Article,Martin,NIMH +https://api.elsevier.com/content/abstract/scopus_id/0037308617,Michael S. Beauchamp,28,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0037308617&origin=inward,10.1002/mrm.10345,2003-02-01,"('2-s2.0-0037308617', 'Martin')",,376-380,12541259.0,37308617,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0037308617&origin=inward,Martin,Magnetic Resonance in Medicine,Detection of eye movements from fMRI data,Article,Martin,NIMH +https://api.elsevier.com/content/abstract/scopus_id/79951843292,Stephen J. Gotts;Jessica R. Gilbert;Frederick W. Carver;Alex Martin,28,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79951843292&origin=inward,10.3389/fnhum.2010.00030,2010-01-01,"('2-s2.0-79951843292', 'Martin')",,,,79951843292,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79951843292&origin=inward,Martin,Frontiers in Human Neuroscience,Object repetition leads to local increases in the temporal coordination of neural responses,Article,Martin,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84930179650,Gregory L. Wallace;Ian W. Eisenberg;Lauren Kenworthy;Alex Martin;Briana Robustelli;Nathan Dankner;Jay N. Giedd,40,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84930179650&origin=inward,10.1016/j.jaac.2015.03.007,2015-01-01,"('2-s2.0-84930179650', 'Martin')",NIH,464-469,26004661.0,84930179650,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84930179650&origin=inward,Martin,Journal of the American Academy of Child and Adolescent Psychiatry,Longitudinal cortical development during adolescence and young adulthood in autism spectrum disorder: Increased cortical thinning but comparable surface area changes,Article,Martin,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84948674649,Gregory L. Wallace;Mark Plitta;Lauren Kenworthy;Alex Martin;Kelly Anne Barnes,40,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84948674649&origin=inward,10.1073/pnas.1510098112,2015-12-01,"('2-s2.0-84948674649', 'Martin')",,E6699-E6706,26627261.0,84948674649,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84948674649&origin=inward,Martin,Proceedings of the National Academy of Sciences of the United States of America,Resting-state functional connectivity predicts longitudinal change in autistic traits and adaptive functioning in autism,Article,Martin,NIMH +https://api.elsevier.com/content/abstract/scopus_id/33646033141,Alex Martin,24,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33646033141&origin=inward,10.1016/j.neuron.2006.04.004,2006-04-20,"('2-s2.0-33646033141', 'Martin')",,173-175,16630825.0,33646033141,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33646033141&origin=inward,Martin,Neuron,Shades of Déjerine-Forging a Causal Link between the Visual Word Form Area and Reading,Short Survey,Martin,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84869027003,Hang Joon Jo;Robert W. Cox;Stephen J. Gotts;Ziad S. Saad;Alex Martin,14,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84869027003&origin=inward,10.1371/journal.pone.0048847,2012-11-08,"('2-s2.0-84869027003', 'Martin')",,,23144995.0,84869027003,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84869027003&origin=inward,Martin,PLoS ONE,Quantifying Agreement between Anatomical and Functional Interhemispheric Correspondences in the Resting Brain,Article,Martin,NIMH +https://api.elsevier.com/content/abstract/scopus_id/78651470188,Shawn C. Milleville;Stephen J. Gotts;Patrick S.F. Bellgowan;Alex Martin,17,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=78651470188&origin=inward,10.1093/cercor/bhq113,2011-02-01,"('2-s2.0-78651470188', 'Martin')",,477-491,20562319.0,78651470188,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=78651470188&origin=inward,Martin,Cerebral Cortex,Broad and narrow conceptual tuning in the human frontal lobes,Article,Martin,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84864701276,Carson C. Chow;Stephen J. Gotts;Alex Martin,21,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84864701276&origin=inward,10.1080/17588928.2012.697054,2012-08-01,"('2-s2.0-84864701276', 'Martin')",NIMH,250-259,,84864701276,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84864701276&origin=inward,Martin,Cognitive Neuroscience,Repetition priming and repetition suppression: Multiple mechanisms in need of testing,Editorial,Martin,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84857745398,Kelly Anne Barnes;W. Dale Stevens;Alex Martin,10,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84857745398&origin=inward,10.1073/pnas.1200329109,2012-02-28,"('2-s2.0-84857745398', 'Martin')",,3201-3202,22343289.0,84857745398,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84857745398&origin=inward,Martin,Proceedings of the National Academy of Sciences of the United States of America,Spontaneous neural activity predicts individual differences in performance,Note,Martin,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84884325627,Gregory L. Wallace;Lauren Kenworthy;Peter A. Bandettini;Alex Martin;Shawn C. Milleville;Laura K. Case;Rasmus Birn,13,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84884325627&origin=inward,10.1016/j.bandc.2013.08.003,2013-11-01,"('2-s2.0-84884325627', 'Bandettini')",NIMH,218-226,24056237.0,84884325627,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84884325627&origin=inward,Bandettini,Brain and Cognition,Aberrant neural mediation of verbal fluency in autism spectrum disorders,Article,Bandettini,NIMH +https://api.elsevier.com/content/abstract/scopus_id/27744520243,Stephen J. Gotts;Alex Martin,7,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=27744520243&origin=inward,10.1038/nn0905-1134,2005-09-01,"('2-s2.0-27744520243', 'Martin')",,1134-1135,16127445.0,27744520243,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=27744520243&origin=inward,Martin,Nature Neuroscience,Making the causal link: Frontal cortex activity and repetition priming,Short Survey,Martin,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84942898228,Gregory L. Wallace;Stephen J. Gotts;Ian W. Eisenberg;Lauren Kenworthy;Alex Martin,13,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84942898228&origin=inward,10.1186/s13229-015-0047-7,2015-10-01,"('2-s2.0-84942898228', 'Martin')",,,,84942898228,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84942898228&origin=inward,Martin,Molecular Autism,Insistence on sameness relates to increased covariance of gray matter structure in autism spectrum disorder,Article,Martin,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84944097585,Shawn C. Milleville;Stephen J. Gotts;Alex Martin,7,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84944097585&origin=inward,10.1016/j.neuropsychologia.2014.10.041,2015-09-01,"('2-s2.0-84944097585', 'Martin')",NIMH,62-78,25445775.0,84944097585,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84944097585&origin=inward,Martin,Neuropsychologia,Object identification leads to a conceptual broadening of object representations in lateral prefrontal cortex,Article,Martin,NIMH +https://api.elsevier.com/content/abstract/scopus_id/1542346260,T. Howard;H. F. McFarland;B. Lewis;P. A. Calabresi;R. Stone;C. Bash;J. A. Frank;N. Richert;L. Stone,71,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=1542346260&origin=inward,10.1212/01.WNL.0000113765.75855.19,2004-03-09,"('2-s2.0-1542346260', 'McFarland')",,719-725,,1542346260,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=1542346260&origin=inward,McFarland,Neurology,Interferon-β-1b slows progression of atrophy in RRMS: Three-year follow-up in NAb- and NAb+ patients,Article,McFarland,NINDS +https://api.elsevier.com/content/abstract/scopus_id/33646799546,Francesca Bagnato;M. M. Cao;H. F. McFarland;M. Riva;J. A. Butman;J. M. Ohayon;S. Gupta;S. L. Talagala;L. Pezawas;F. Tovar-Moll;M. Calabrese,65,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33646799546&origin=inward,,2006-11-01,"('2-s2.0-33646799546', 'Talagala')",,2161-2167,17110688.0,33646799546,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33646799546&origin=inward,Talagala,American Journal of Neuroradiology,In vivo detection of cortical plaques by MR imaging in patients with multiple sclerosis,Article,Talagala,NINDS +https://api.elsevier.com/content/abstract/scopus_id/68549136725,Francesca Bagnato;I. E. Evangelou;J. L. Ostuni;H. F. McFarland;S. Auh;J. M. Ohayon;S. L. Talagala;A. W. Chiu;N. D. Richert;F. Tovar-Moll;M. Ehrmantraut,58,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=68549136725&origin=inward,10.3174/ajnr.A1564,2009-08-01,"('2-s2.0-68549136725', 'Talagala')",,1380-1386,19369608.0,68549136725,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=68549136725&origin=inward,Talagala,American Journal of Neuroradiology,Thalamic involvement and its impact on clinical disability in patients with multiple sclerosis: A diffusion tensor imaging study at 3T,Article,Talagala,NINDS +https://api.elsevier.com/content/abstract/scopus_id/48349142161,M. D. Hughes;H. F. McFarland;D. H. Miller;G. R. Cutter;J. Petkau;U. Held;S. C. Reingold;Jerry S. Wolinsky;T. R. Fleming,45,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=48349142161&origin=inward,10.1177/1352458507088104,2008-07-01,"('2-s2.0-48349142161', 'McFarland')",,770-778,18535021.0,48349142161,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=48349142161&origin=inward,McFarland,Multiple Sclerosis,Magnetic resonance imaging as a surrogate outcome for multiple sclerosis relapses,Article,McFarland,NINDS +https://api.elsevier.com/content/abstract/scopus_id/33644993732,T. Howard;H. F. McFarland;R. Stone;C. Bash;J. A. Frank;J. Ohayon;J. Ostuni;N. D. Richert,28,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33644993732&origin=inward,10.1212/01.wnl.0000197982.78063.06,2006-02-01,"('2-s2.0-33644993732', 'McFarland')",,551-556,16505310.0,33644993732,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33644993732&origin=inward,McFarland,Neurology,Relationship between inflammatory lesions and cerebral atrophy in multiple sclerosis,Article,McFarland,NINDS +https://api.elsevier.com/content/abstract/scopus_id/72449209373,Joan Ohayon;Thomas Howard;Bibiana Bielekova;Gregg Blevins;Henry F. McFarland;Claus Steffen Stürzebecher;Amy N. Packer;Nancy Richert;Roland Martin,29,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=72449209373&origin=inward,10.1177/1352458509345903,2009-12-28,"('2-s2.0-72449209373', 'Bielekova')",NINDS,1206-1214,19776093.0,72449209373,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=72449209373&origin=inward,Bielekova,Multiple Sclerosis,Treatment with the phosphodiesterase type-4 inhibitor rolipram fails to inhibit blood-brain barrier disruption in multiple sclerosis,Article,Bielekova,NINDS +https://api.elsevier.com/content/abstract/scopus_id/67349250116,Francesca Bagnato;Bing Yao;Sandra Moore;Hellmut Merkle;Marcela Montequin;Martha Quezado;Ellen Condon;Deborah Tkaczyk;Henry McFarland;Fredric Cantor,21,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=67349250116&origin=inward,10.1016/j.jns.2009.03.021,2009-07-15,"('2-s2.0-67349250116', 'McFarland')",NINDS,80-85,19394970.0,67349250116,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=67349250116&origin=inward,McFarland,Journal of the Neurological Sciences,Multisequence-imaging protocols to detect cortical lesions of patients with multiple sclerosis: Observations from a post-mortem 3 Tesla imaging study,Article,McFarland,NINDS +https://api.elsevier.com/content/abstract/scopus_id/58449083627,Joan Ohayon;Francesca Bagnato;Mary Ehrmantraut;Giuseppe Bomboi;Deeya Gaindh;Henry F. McFarland;Nancy Richert;Annie W. Chiu;Fredric K. Cantor;Joseph A. Frank;Shiva Gupta,19,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=58449083627&origin=inward,10.1001/archneur.66.1.noc80047,2009-01-01,"('2-s2.0-58449083627', 'McFarland')",,39-43,19001157.0,58449083627,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=58449083627&origin=inward,McFarland,Archives of Neurology,Heterogeneity in response to interferon beta in patients with multiple sclerosis: A 3-year monthly imaging study,Article,McFarland,NINDS +https://api.elsevier.com/content/abstract/scopus_id/77957565209,Francesca Bagnato;Joan Ohayon;Mary Ehrmantraut;Sungyoung Auh;Zeena Salman;Susan K. Stern;Henry F. McFarland;Vasiliki N. Ikonomidou;Clelia Pellicano;Fredric K. Cantor;Antonio Gallo;Robert Kane,15,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77957565209&origin=inward,10.1177/1352458510377223,2010-10-01,"('2-s2.0-77957565209', 'McFarland')",,1203-1212,20699284.0,77957565209,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77957565209&origin=inward,McFarland,Multiple Sclerosis,T1 cortical hypointensities and their association with cognitive disability in multiple sclerosis,Article,McFarland,NINDS +https://api.elsevier.com/content/abstract/scopus_id/79953057659,Jhalak Agarwal;Francesca Bagnato;Giuseppe Bomboi;Iordanis E. Evangelou;Joan M. Ohayon;Mary Ehrmantraut;Sungyoung Auh;Susan K. Stern;Robert L. Kane;Vasiliki N. Ikonomidou;Clelia Pellicano;Stefano Pellegrini;Antonio Gallo;Fredric K. Cantor;Henry F. Mcfarland,11,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79953057659&origin=inward,10.1111/j.1552-6569.2010.00488.x,2011-04-01,"('2-s2.0-79953057659', 'Mcfarland')",,,20626570.0,79953057659,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79953057659&origin=inward,McFarland,Journal of Neuroimaging,Quality and Quantity of Diffuse and Focal White Matter Disease and Cognitive Disability of Patients with Multiple Sclerosis,Article,McFarland,NINDS +https://api.elsevier.com/content/abstract/scopus_id/28044453525,Francesca Bagnato;J. L. Ostuni;T. A. Tasciyan;H. F. McFarland;P. A. Muraro;J. A. Frank;J. M. Ohayon;J. M. Solomon;S. Gupta;R. D. Stone;N. D. Richert;M. M. Cao,11,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=28044453525&origin=inward,10.1191/1352458505ms1229oa,2005-12-01,"('2-s2.0-28044453525', 'McFarland')",,658-668,16320725.0,28044453525,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=28044453525&origin=inward,McFarland,Multiple Sclerosis,Interferon-beta-1b effects on re-enhancing lesions in patients with multiple sclerosis,Article,McFarland,NINDS +https://api.elsevier.com/content/abstract/scopus_id/34548538497,F. Bagnato;H. F. McFarland;A. W. Chiu;J. A. Frank;S. Pellegrini;V. N. Ikonomidou;N. D. Richert;M. Ehrmantraut,11,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34548538497&origin=inward,10.1111/j.1365-2249.2007.03467.x,2007-10-01,"('2-s2.0-34548538497', 'McFarland')",,61-67,17666095.0,34548538497,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34548538497&origin=inward,McFarland,Clinical and Experimental Immunology,A case study on the effect of neutralizing antibodies to interferon beta 1b in multiple sclerosis patients followed for 3 years with monthly imaging,Article,McFarland,NINDS +https://api.elsevier.com/content/abstract/scopus_id/72949110763,Henry F. McFarland,10,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=72949110763&origin=inward,10.4103/0972-2327.58284,2009-10-01,"('2-s2.0-72949110763', 'McFarland')",,254-263,,72949110763,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=72949110763&origin=inward,McFarland,Annals of Indian Academy of Neurology,Examination of the role of magnetic resonance imaging in multiple sclerosis: A problem-orientated approach,Review,McFarland,NINDS +https://api.elsevier.com/content/abstract/scopus_id/15544379472,A. L.T. Crawford;H. F. McFarland;Katrin Morgen;R. Martin;J. A. Frank;R. D. Stone;N. D. Richert,9,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=15544379472&origin=inward,10.1191/1352458505ms1147oa,2005-04-01,"('2-s2.0-15544379472', 'McFarland')",,146-148,15794386.0,15544379472,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=15544379472&origin=inward,McFarland,Multiple Sclerosis,Contrast-enhanced MRI lesions during treatment with interferonβ-1b predict increase in T1 black hole volume in patients with relapsing-remitting multiple sclerosis,Article,McFarland,NINDS +https://api.elsevier.com/content/abstract/scopus_id/77949363891,F. Bagnato;H. F. McFarland;J. A. Frank;M. Davis;S. Auh;M. Riva;N. D. Richert,10,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77949363891&origin=inward,10.1212/WNL.0b013e3181d31df5,2010-01-01,"('2-s2.0-77949363891', 'McFarland')",,851-856,,77949363891,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77949363891&origin=inward,McFarland,Neurology,Ring and nodular multiple sclerosis lesions: A retrospective natural history study,Article,McFarland,NINDS +https://api.elsevier.com/content/abstract/scopus_id/57649230797,Joan Ohayon;Francesca Bagnato;Deeya Gaindh;Clelia Pellicano;Neal JefFries;Henry McFarland;Joseph A. Frank;Nancy D. Richert,4,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=57649230797&origin=inward,10.1517/14712590802510629,2008-12-01,"('2-s2.0-57649230797', 'McFarland')",NINDS,1823-1829,18990070.0,57649230797,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=57649230797&origin=inward,McFarland,Expert Opinion on Biological Therapy,The effect of interferon beta-1b on size of short-lived enhancing lesions in patients with multiple sclerosis,Article,McFarland,NINDS +https://api.elsevier.com/content/abstract/scopus_id/43449138818,Joan Ohayon;Francesca Bagnato;Iordanis E. Evangelou;Henry F. McFarland;Fredric K. Cantor;Antonio Gallo;Pavlina Sonkova,2,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=43449138818&origin=inward,10.1117/12.773055,2008-05-19,"('2-s2.0-43449138818', 'McFarland')",,,,43449138818,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=43449138818&origin=inward,McFarland,Progress in Biomedical Optics and Imaging - Proceedings of SPIE,Semi-automatic segmentation and modeling of the cervical spinal cord for volume quantification in multiple sclerosis patients from magnetic resonance images,Conference Paper,McFarland,NINDS +https://api.elsevier.com/content/abstract/scopus_id/30544438866,Sarina Siddhanti;Daniela Mier;Stefanie Lis;Peter Kirsch;Bernd Gallhofer;Christine Esslinger;Harald Gruppe;Andreas Meyer-Lindenberg;Qiang Chen;Venkata S. Mattay,1085,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=30544438866&origin=inward,10.1523/JNEUROSCI.3984-05.2005,2005-12-07,"('2-s2.0-30544438866', 'McFarland')",,11489-11493,16339042.0,30544438866,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=30544438866&origin=inward,McFarland,Journal of Neuroscience,Oxytocin modulates neural circuitry for social cognition and fear in humans,Article,McFarland,NINDS +https://api.elsevier.com/content/abstract/scopus_id/55249083831,Edward Bullmore;Beth A. Verchinski;Andreas Meyer-Lindenberg;Danielle S. Bassett;Venkata S. Mattay;Daniel R. Weinberger,785,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=55249083831&origin=inward,10.1523/JNEUROSCI.1929-08.2008,2008-09-10,"('2-s2.0-55249083831', 'McFarland')",,9239-9248,18784304.0,55249083831,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=55249083831&origin=inward,McFarland,Journal of Neuroscience,Hierarchical organization of human cortical networks in health and Schizophrenia,Article,McFarland,NINDS +https://api.elsevier.com/content/abstract/scopus_id/34250332251,Venkata S. Mattay;Jason L. Stein;Caroline F. Zink;Lisa M. Wiedholz;Andreas Meyer-Lindenberg;Danielle S. Bassett;Daniel R. Weinberger,304,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34250332251&origin=inward,10.1016/j.neuroimage.2007.03.022,2007-07-01,"('2-s2.0-34250332251', 'McFarland')",NIMH,736-745,17475514.0,34250332251,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34250332251&origin=inward,McFarland,NeuroImage,A validated network of effective amygdala connectivity,Article,McFarland,NINDS +https://api.elsevier.com/content/abstract/scopus_id/42149160144,Yunxia Tong;Jason L. Stein;Danielle S. Bassett;Caroline F. Zink;Andreas Meyer-Lindenberg;Qiang Chen,315,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=42149160144&origin=inward,10.1016/j.neuron.2008.01.025,2008-04-24,"('2-s2.0-42149160144', 'McFarland')",NIMH,273-283,18439411.0,42149160144,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=42149160144&origin=inward,McFarland,Neuron,Know Your Place: Neural Processing of Social Hierarchy in Humans,Article,McFarland,NINDS +https://api.elsevier.com/content/abstract/scopus_id/65549089478,Priv Doz;Bruce Fischl;Lukas Pezawas;Beth A. Verchinski;Andreas Meyer-Lindenberg;Qiang Chen;Aaron L. Goldman;Venkata S. Mattay;Daniel R. Weinberger,196,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=65549089478&origin=inward,10.1001/archgenpsychiatry.2009.24,2009-05-01,"('2-s2.0-65549089478', 'McFarland')",NINDS,467-477,19414706.0,65549089478,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=65549089478&origin=inward,McFarland,Archives of General Psychiatry,Widespread reductions of cortical thickness in schizophrenia and spectrum disorders and evidence of heritability,Article,McFarland,NINDS +https://api.elsevier.com/content/abstract/scopus_id/39449099581,M. F. Egan;V. S. Mattay;A. R. Hariri;M. Genderson;J. H. Callicott;B. Kolachana;D. R. Weinberger;A. Meyer-Lindenberg;T. E. Goldberg;J. W. Buckholtz,167,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=39449099581&origin=inward,10.1038/sj.mp.4002020,2008-03-01,"('2-s2.0-39449099581', 'McFarland')",,313-324,17519928.0,39449099581,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=39449099581&origin=inward,McFarland,Molecular Psychiatry,Genetic variation in MAOA modulates ventromedial prefrontal circuitry mediating individual differences in human personality,Article,McFarland,NINDS +https://api.elsevier.com/content/abstract/scopus_id/63849340463,Aaron Goldman;Frederick Klauschen;Arvid Lundervold;Vincent Barra;Andreas Meyer-Lindenberg,157,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=63849340463&origin=inward,10.1002/hbm.20599,2009-04-01,"('2-s2.0-63849340463', 'McFarland')",,1310-1327,18537111.0,63849340463,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=63849340463&origin=inward,McFarland,Human Brain Mapping,Evaluation of automated brain MR image segmentation and volumetry methods,Article,McFarland,NINDS +https://api.elsevier.com/content/abstract/scopus_id/38949151125,Brad Zoltick;Bruce Fischl;Lukas Pezawas;Beth A. Verchinski;Andreas Meyer-Lindenberg;Aaron L. Goldman;Venkata S. Mattay;Daniel R. Weinberger,112,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=38949151125&origin=inward,10.1016/j.biopsych.2007.06.006,2008-03-01,"('2-s2.0-38949151125', 'McFarland')",NIMH,475-483,17727823.0,38949151125,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=38949151125&origin=inward,McFarland,Biological Psychiatry,Heritability of Brain Morphology Related to Schizophrenia: A Large-Scale Automated Magnetic Resonance Imaging Segmentation Study,Article,McFarland,NINDS +https://api.elsevier.com/content/abstract/scopus_id/77952625256,Shabnam Hakimi;Lucas Kempf;Jason L. Stein;Caroline F. Zink;Andreas Meyer-Lindenberg,86,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77952625256&origin=inward,10.1523/JNEUROSCI.4899-09.2010,2010-05-19,"('2-s2.0-77952625256', 'McFarland')",,7017-7022,20484643.0,77952625256,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77952625256&origin=inward,McFarland,Journal of Neuroscience,Vasopressin modulates medial prefrontal cortex-amygdala circuitry during emotion processing in humans,Article,McFarland,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84876376841,Daniel W. Hommer;Henry Lin;Erica N. Grodin;Caitlin A. Durkee;Reza Momenan,37,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84876376841&origin=inward,10.1016/j.nicl.2013.03.013,2013-04-24,"('2-s2.0-84876376841', 'Hommer')",,469-476,,84876376841,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84876376841&origin=inward,Hommer,NeuroImage: Clinical,"Deficits in cortical, diencephalic and midbrain gray matter in alcoholism measured by VBM: Effects of co-morbid substance abuse",Article,Hommer,NIAAA +https://api.elsevier.com/content/abstract/scopus_id/84894102678,Reza Momenan;Daniel W. Hommer;Joelle E. Sarlls;Caitlin A. Durkee,18,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84894102678&origin=inward,10.1371/journal.pone.0080952,2013-11-18,"('2-s2.0-84894102678', 'Hommer')",,,24260518.0,84894102678,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84894102678&origin=inward,Hommer,PLoS ONE,White matter microstructure alterations: A study of alcoholics with and without post-traumatic stress disorder,Article,Hommer,NIAAA +https://api.elsevier.com/content/abstract/scopus_id/85009124365,P. Homan;D. S. Charney;W. C. Drevets;A. Neumeister;A. C. Nugent;G. Hasler,17,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85009124365&origin=inward,10.1038/tp.2015.25,2015-03-17,"('2-s2.0-85009124365', 'Nugent')",NIH,e532,25781231.0,85009124365,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85009124365&origin=inward,Nugent,Translational psychiatry,Serotonin versus catecholamine deficiency: behavioral and neural effects of experimental depletion in remitted depression,Article,Nugent,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84992360788,Richard Coppola;Carlos A. Zarate;Bruce Luber;Stephen E. Robinson;Frederick W. Carver;Allison C. Nugent,7,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84992360788&origin=inward,10.1002/hbm.23417,2017-02-01,"('2-s2.0-84992360788', 'Nugent')",NIMH,779-791,27770478.0,84992360788,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84992360788&origin=inward,Nugent,Human Brain Mapping,Deriving frequency-dependent spatial patterns in MEG-derived resting state sensorimotor network: A novel multiband ICA technique,Article,Nugent,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84949323637,Robert C. McKinstry;Dah Jyuu Wang;Michael J. Rivkin;Lindsay Walker;M. Okan Irfanoglu;Lin Ching Chang;Judith Rumsey;James McCracken;Carlo Pierpaoli;Amritha Nayak;Kelly N. Botteron,23,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84949323637&origin=inward,10.1016/j.neuroimage.2015.05.083,2016-01-01,"('2-s2.0-84949323637', 'Pierpaoli')",NICHD,1125-1130,26048622.0,84949323637,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84949323637&origin=inward,Pierpaoli,NeuroImage,The diffusion tensor imaging (DTI) component of the NIH MRI study of normal brain development (PedsDTI),Article,Pierpaoli,NIBIB +https://api.elsevier.com/content/abstract/scopus_id/84960908679,Neda Sadeghi;Jeffrey Jenkins;M. Okan Irfanoglu;Elizabeth B. Hutchinson;Carlo Pierpaoli;Amritha Nayak;Cibu P. Thomas,17,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84960908679&origin=inward,10.1016/j.neuroimage.2016.02.066,2016-05-15,"('2-s2.0-84960908679', 'Pierpaoli')",NICHD,439-454,26931817.0,84960908679,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84960908679&origin=inward,Pierpaoli,NeuroImage,DR-TAMAS: Diffeomorphic Registration for Tensor Accurate Alignment of Anatomical Structures,Article,Pierpaoli,NIBIB +https://api.elsevier.com/content/abstract/scopus_id/17844403263,Eric E. Nelson;Ellen Leibenluft;Daniel S. Pine;Sandra Jazbec;James Blair;Christopher S. Monk;Erin B. McClure;Monique Ernst,441,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=17844403263&origin=inward,10.1016/j.neuroimage.2004.12.038,2005-05-01,"('2-s2.0-17844403263', 'Leibenluft')",,1279-1291,15850746.0,17844403263,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=17844403263&origin=inward,Leibenluft,NeuroImage,Amygdala and nucleus accumbens in responses to receipt and omission of gains in adults and adolescents,Article,Leibenluft,NIMH +https://api.elsevier.com/content/abstract/scopus_id/43149105989,Brendan P. Bradley;Hugo M.C. Louro;Xiaoqin Mai;Daniel S. Pine;Gang Chen;Eva H. Telzer;Erin B. McClure-Tone;Christopher S. Monk;Karin Mogg;Monique Ernst,444,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=43149105989&origin=inward,10.1001/archpsyc.65.5.568,2008-05-01,"('2-s2.0-43149105989', 'Pine')",,568-576,18458208.0,43149105989,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=43149105989&origin=inward,Pine,Archives of General Psychiatry,Amygdala and ventrolateral prefrontal cortex activation to masked angry faces in children and adolescents with generalized anxiety disorder,Article,Pine,NIMH +https://api.elsevier.com/content/abstract/scopus_id/0141535155,Eric E. Nelson;Robert M. Bilder;Eric Zarahn;Ellen Leibenluft;Daniel S. Pine;Dennis S. Charney;Christopher S. Monk;Erin B. McClure;Monique Ernst,355,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0141535155&origin=inward,10.1016/S1053-8119(03)00355-0,2003-09-01,"('2-s2.0-0141535155', 'Leibenluft')",,420-428,14527602.0,141535155,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0141535155&origin=inward,Leibenluft,NeuroImage,Adolescent immaturity in attention-related brain engagement to emotional facial expressions,Article,Leibenluft,NIMH +https://api.elsevier.com/content/abstract/scopus_id/33846002401,Eric E. Nelson;R. James R. Blair;Ellen Leibenluft;Stephen Fromm;Daniel S. Pine;Abby Adler;Dennis S. Charney;Christopher S. Monk;Erin B. McClure;Monique Ernst;Jessica M. Parrish,312,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33846002401&origin=inward,10.1001/archpsyc.64.1.97,2007-01-01,"('2-s2.0-33846002401', 'Blair')",,97-106,17199059.0,33846002401,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33846002401&origin=inward,Blair,Archives of General Psychiatry,Abnormal attention modulation of fear circuit function in pediatric generalized anxiety disorder,Article,Blair,NIMH +https://api.elsevier.com/content/abstract/scopus_id/33846109355,Eric E. Nelson;Neir Eshel;Daniel S. Pine;R. James Blair;Monique Ernst,268,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33846109355&origin=inward,10.1016/j.neuropsychologia.2006.10.004,2007-01-16,"('2-s2.0-33846109355', 'Blair')",,1270-1279,17118409.0,33846109355,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33846109355&origin=inward,Blair,Neuropsychologia,Neural substrates of choice selection in adults and adolescents: Development of the ventrolateral prefrontal and anterior cingulate cortices,Article,Blair,NIMH +https://api.elsevier.com/content/abstract/scopus_id/4344608937,Eric E. Nelson;Dennis Charney;Eric Zarahn;Ellen Leibenluft;Neir Eshel;Daniel S. Pine;Erin B. McClure;Alan Zametkin;Kenneth Towbin;Christopher S. Monk;Suzanne Munson;James Blair;Monique Ernst,258,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=4344608937&origin=inward,10.1016/j.neuropsychologia.2004.05.011,2004-09-08,"('2-s2.0-4344608937', 'Leibenluft')",,1585-1597,15327927.0,4344608937,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=4344608937&origin=inward,Leibenluft,Neuropsychologia,Choice selection and reward anticipation: An fMRI study,Article,Leibenluft,NIMH +https://api.elsevier.com/content/abstract/scopus_id/39049092692,Rachel G. Klein;Stephen Fromm;Daniel S. Pine;R. James Blair;Monique Ernst;Eva H. Telzer;Salvatore Mannuzza;Erin B. McClure-Tone;Mary Guardino;Christopher S. Monk;Carrie L. Masten;John L. Moulton;Elizabeth A. Schroth,261,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=39049092692&origin=inward,10.1176/appi.ajp.2007.06111917,2008-01-01,"('2-s2.0-39049092692', 'Blair')",,90-98,17986682.0,39049092692,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=39049092692&origin=inward,Blair,American Journal of Psychiatry,Amygdala and nucleus accumbens activation to emotional facial expressions in children and adolescents at risk for major depression,Article,Blair,NIMH +https://api.elsevier.com/content/abstract/scopus_id/50649121042,Eric E. Nelson;Ellen Leibenluft;Amanda E. Guyer;Monique Ernst;Abby D. Adler;Stephen J. Fromm;Erin B. McClure-Tone;Christopher S. Monk;Roxann Roberson-Nay;Daniel S. Pine,230,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=50649121042&origin=inward,10.1162/jocn.2008.20114,2008-09-01,"('2-s2.0-50649121042', 'Leibenluft')",,1565-1582,18345988.0,50649121042,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=50649121042&origin=inward,Leibenluft,Journal of Cognitive Neuroscience,A developmental examination of amygdala response to facial expressions,Article,Leibenluft,NIMH +https://api.elsevier.com/content/abstract/scopus_id/55749114253,Eric E. Nelson;Jennifer Y.F. Lau;Ellen Leibenluft;Richard C. Reynolds;Amanda E. Guyer;Nathan A. Fox;Jessica Parrish;Daniel S. Pine;Gang Chen;Erin B. McClure-Tone;R. J.R. Blair;Monique Ernst;Nina D. Shiffrin,233,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=55749114253&origin=inward,10.1001/archpsyc.65.11.1303,2008-11-01,"('2-s2.0-55749114253', 'Blair')",,1303-1312,18981342.0,55749114253,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=55749114253&origin=inward,Blair,Archives of General Psychiatry,Amygdala and ventrolateral prefrontal cortex function during anticipated peer evaluation in pediatric social anxiety,Article,Blair,NIMH +https://api.elsevier.com/content/abstract/scopus_id/2542421114,Eric E. Nelson;Robert M. Bilder;Ellen Leibenluft;Eric Zarahn;Daniel S. Pine;Dennis S. Charney;Christopher S. Monk;Erin B. McClure;Monique Ernst,167,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=2542421114&origin=inward,10.1016/j.biopsych.2004.02.013,2004-06-01,"('2-s2.0-2542421114', 'Leibenluft')",,1047-1055,15158422.0,2542421114,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=2542421114&origin=inward,Leibenluft,Biological Psychiatry,A developmental examination of gender differences in brain engagement during evaluation of threat,Article,Leibenluft,NIMH +https://api.elsevier.com/content/abstract/scopus_id/51349103469,Karina Blair;Krystal Mondillo;Daniel McCaffrey;Wayne C. Drevets;Jonathan Shaywitz;Bruce W. Smith;Madeline Jacobs;Matthew Jones;Dennis S. Charney;Elizabeth Finger;R. J.R. Blair;Rebecca Rhodes;Meena Vythilingam;Daniel S. Pine;Marilla Geraci,181,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=51349103469&origin=inward,10.1176/appi.ajp.2008.07071060,2008-09-01,"('2-s2.0-51349103469', 'Blair')",,1193-1202,18483136.0,51349103469,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=51349103469&origin=inward,Blair,American Journal of Psychiatry,Response to emotional expressions in generalized social phobia and generalized anxiety disorder: Evidence for separate disorders,Article,Blair,NIMH +https://api.elsevier.com/content/abstract/scopus_id/61449255440,Eric E. Nelson;Jennifer Y.F. Lau;Ellen Leibenluft;Amanda E. Guyer;Katja Beesdo;Daniel S. Pine;Hans Ulrich Wittchen;Michelle A. Goldwin;Erin B. McClure-Tone;Christopher S. Monk;Stephen J. Fromm;Monique Ernst,178,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=61449255440&origin=inward,10.1001/archgenpsychiatry.2008.545,2009-03-01,"('2-s2.0-61449255440', 'Leibenluft')",,275-285,19255377.0,61449255440,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=61449255440&origin=inward,Leibenluft,Archives of General Psychiatry,Common and distinct amygdala-function perturbations in depressed vs anxious adolescents,Article,Leibenluft,NIMH +https://api.elsevier.com/content/abstract/scopus_id/33745775065,Eric E. Nelson;James M. Bjork;Heather A. Henderson;Amanda E. Guyer;Nathan A. Fox;Daniel S. Pine;Michael G. Hardin;Monique Ernst;Christopher S. Monk;Roxann Roberson-Nay;Koraly Perez-Edgar,157,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33745775065&origin=inward,10.1523/JNEUROSCI.0666-06.2006,2006-09-08,"('2-s2.0-33745775065', 'Pine')",,6399-6405,16775126.0,33745775065,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33745775065&origin=inward,Pine,Journal of Neuroscience,Striatal functional alteration in adolescents characterized by early childhood behavioral inhibition,Article,Pine,NIMH +https://api.elsevier.com/content/abstract/scopus_id/79952714381,R. James R. Blair;Pamela Ng;Courtney Sims;Elizabeth C. Finger;Abigail A. Marsh;Marguerite E. Reid;Karina S. Blair;Daniel S. Pine,158,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79952714381&origin=inward,10.1176/appi.ajp.2010.10010129,2011-02-01,"('2-s2.0-79952714381', 'Pine')",,152-162,21078707.0,79952714381,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79952714381&origin=inward,Pine,American Journal of Psychiatry,Disrupted reinforcement signaling in the orbitofrontal cortex and caudate in youths with conduct disorder or oppositional defiant disorder and a high level of psychopathic traits,Article,Pine,NIMH +https://api.elsevier.com/content/abstract/scopus_id/34147108781,Eric E. Nelson;Koraly Pérez-Edgar;Heather A. Henderson;Amanda E. Guyer;Nathan A. Fox;Michael G. Hardin;Monique Ernst;Kaitlin Poeth;Erin B. McClure;Roxann Roberson-Nay;Daniel S. Pine,147,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34147108781&origin=inward,10.1016/j.neuroimage.2007.02.006,2007-05-01,"('2-s2.0-34147108781', 'Pine')",NICHD,1538-1546,17376704.0,34147108781,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34147108781&origin=inward,Pine,NeuroImage,Attention alters neural responses to evocative faces in behaviorally inhibited adolescents,Article,Pine,NIMH +https://api.elsevier.com/content/abstract/scopus_id/67650632629,Eric E. Nelson;Amanda E. Guyer;Erin B. McClure-Tone;Daniel S. Pine;Nina D. Shiffrin,142,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=67650632629&origin=inward,10.1111/j.1467-8624.2009.01313.x,2009-07-01,"('2-s2.0-67650632629', 'Pine')",,1000-1015,19630890.0,67650632629,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=67650632629&origin=inward,Pine,Child Development,Probing the neural correlates of anticipated peer evaluation in adolescence,Article,Pine,NIMH +https://api.elsevier.com/content/abstract/scopus_id/18044379146,Dennis Charney;Ellen Leibenluft;Daniel S. Dickstein;Wayne C. Drevets;Daniel S. Pine;Allison C. Nugent;Michael P. Milham;Monique Ernst,133,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=18044379146&origin=inward,10.1016/j.biopsych.2005.01.038,2005-05-01,"('2-s2.0-18044379146', 'Nugent')",,961-966,15860335.0,18044379146,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=18044379146&origin=inward,Nugent,Biological Psychiatry,Selective reduction in amygdala volume in pediatric anxiety disorders: A voxel-based morphometry investigation,Article,Nugent,NIMH +https://api.elsevier.com/content/abstract/scopus_id/77955282298,Ellen Leibenluft;Sven C. Mueller;Francoise S. Maheu;Darcy Mandell;Monique Ernst;Elizabeth Peloso;Mary Dozier;Daniel S. Pine,140,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77955282298&origin=inward,10.1016/j.neuropsychologia.2010.06.013,2010-08-01,"('2-s2.0-77955282298', 'Leibenluft')",NARSAD,3037-3044,20561537.0,77955282298,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77955282298&origin=inward,Leibenluft,Neuropsychologia,Early-life stress is associated with impairment in cognitive control in adolescence: An fMRI study,Article,Leibenluft,NIMH +https://api.elsevier.com/content/abstract/scopus_id/53849128548,Karina Blair;Pamela Ng;Daniel McCaffrey;Daniel S. Pine;Gang Chen;Matthew Jones;R. J.R. Blair;Meena Vythilingam;Jeffrey Devido;Nick Hollon;Marilla Geraci,115,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=53849128548&origin=inward,10.1001/archpsyc.65.10.1176,2008-10-01,"('2-s2.0-53849128548', 'Blair')",,1176-1184,18838634.0,53849128548,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=53849128548&origin=inward,Blair,Archives of General Psychiatry,Neural response to self- and other referential praise and criticism in generalized social phobia,Article,Blair,NIMH +https://api.elsevier.com/content/abstract/scopus_id/77953104977,Jennifer Y.F. Lau;Françoise S. Maheu;Amanda E. Guyer;Darcy Mandell;Monique Ernst;John P. Ackerman;Kaitlin Poeth;Elizabeth Peloso;Mary Dozier;Daniel S. Pine;Jessica Jenness,127,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77953104977&origin=inward,10.3758/CABN.10.1.34,2010-03-01,"('2-s2.0-77953104977', 'Pine')",NIMH,34-49,20233954.0,77953104977,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77953104977&origin=inward,Pine,"Cognitive, Affective and Behavioral Neuroscience",A preliminary study of medial temporal lobe function in youths with a history of caregiver deprivation and emotional neglect,Article,Pine,NIMH +https://api.elsevier.com/content/abstract/scopus_id/33847105048,Eric E. Nelson;Ellen Leibenluft;Daniel S. Pine;Abby Adler;Samantha Smith;Christopher S. Monk;Erin B. McClure;Monique Ernst;Jennifer Cameron,114,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33847105048&origin=inward,10.1007/s00213-006-0542-9,2007-03-01,"('2-s2.0-33847105048', 'Leibenluft')",,97-105,16972100.0,33847105048,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33847105048&origin=inward,Leibenluft,Psychopharmacology,fMRI predictors of treatment outcome in pediatric anxiety disorders,Article,Leibenluft,NIMH +https://api.elsevier.com/content/abstract/scopus_id/33750072007,Eric E. Nelson;Ellen Leibenluft;Amanda E. Guyer;Daniel S. Pine;Stephen J. Fromm;Dennis S. Charney;James Blair;Christopher S. Monk;Erin B. McClure;Roxann Roberson-Nay;Monique Ernst,101,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33750072007&origin=inward,10.1016/j.biopsych.2006.02.018,2006-11-01,"('2-s2.0-33750072007', 'Leibenluft')",,966-973,16603133.0,33750072007,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33750072007&origin=inward,Leibenluft,Biological Psychiatry,Increased Amygdala Activity During Successful Memory Encoding in Adolescent Major Depressive Disorder: An fMRI Study,Article,Leibenluft,NIMH +https://api.elsevier.com/content/abstract/scopus_id/50849131654,Brendan P. Bradley;Xiaoqin Mai;Daniel S. Pine;Eva H. Telzer;Christopher S. Monk;Karin Mogg;Monique Ernst,117,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=50849131654&origin=inward,10.1016/j.biopsycho.2008.05.004,2008-10-01,"('2-s2.0-50849131654', 'Pine')",NIMH,216-222,18599179.0,50849131654,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=50849131654&origin=inward,Pine,Biological Psychology,"Relationship between trait anxiety, prefrontal cortex, and attention bias to angry faces in children and adolescents",Article,Pine,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84875232388,Amy K. Roy;Brenda Benson;Teresa Daniele;Christina Carlisi;Justin S.A. Perry;F. Xavier Castellanos;Monique Ernst;Julie L. Fudge;Clare Kelly;Michael P. Milham;Daniel S. Pine,130,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84875232388&origin=inward,10.1016/j.jaac.2012.12.010,2013-01-01,"('2-s2.0-84875232388', 'Pine')",,,,84875232388,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84875232388&origin=inward,Pine,Journal of the American Academy of Child and Adolescent Psychiatry,Intrinsic functional connectivity of amygdala-based networks in adolescent generalized anxiety disorder,Article,Pine,NIMH +https://api.elsevier.com/content/abstract/scopus_id/58349113592,Eric E. Nelson;Jennifer Y.F. Lau;Amanda E. Guyer;Beata Buzas;Monique Ernst;Colin Hodgkinson;David Goldman;Pei Hong Shen;Christopher S. Monk;Stephen J. Fromm;Daniel S. Pine,87,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=58349113592&origin=inward,10.1016/j.biopsych.2008.08.037,2009-02-15,"('2-s2.0-58349113592', 'Pine')",NIH,349-355,18950748.0,58349113592,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=58349113592&origin=inward,Pine,Biological Psychiatry,Amygdala Function and 5-HTT Gene Variants in Adolescent Anxiety and Major Depressive Disorder,Article,Pine,NIMH +https://api.elsevier.com/content/abstract/scopus_id/0036334961,Joseph Grun;Vivian Koda;Robert M. Bilder;Eric Zarahn;Neil Burgess;Eleanor A. Maguire;Abby Fyer;Philip R. Szeszko;Daniel S. Pine,88,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0036334961&origin=inward,10.1006/nimg.2001.0988,2002-01-01,"('2-s2.0-0036334961', 'Pine')",NIMH,396-406,,36334961,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0036334961&origin=inward,Pine,NeuroImage,Neurodevelopmental aspects of spatial navigation: A virtual reality fMRI study,Article,Pine,NIMH +https://api.elsevier.com/content/abstract/scopus_id/68249129557,Eric E. Nelson;Brenda Benson;Amanda E. Guyer;Nathan A. Fox;Yair Bar-Haim;Daniel S. Pine;Amber Williams;Monique Ernst;Koraly Perez-Edgar,94,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=68249129557&origin=inward,10.1111/j.1467-9280.2009.02401.x,2009-08-01,"('2-s2.0-68249129557', 'Pine')",,1009-1018,19594857.0,68249129557,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=68249129557&origin=inward,Pine,Psychological Science,Neural correlates of reward processing in adolescents with a history of inhibited temperament,Article,Pine,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84918793901,R. James R. Blair;Ellen Leibenluft;Daniel S. Pine,134,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84918793901&origin=inward,10.1056/NEJMra1315612,2014-12-04,"('2-s2.0-84918793901', 'Blair')",,2207-2216,25470696.0,84918793901,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84918793901&origin=inward,Blair,New England Journal of Medicine,Conduct disorder and callous-unemotional traits in youth,Review,Blair,NIMH +https://api.elsevier.com/content/abstract/scopus_id/0141921574,Eric E. Nelson;Ellen Leibenluft;Eric Zarahn;Monique Ernst;Christopher S. Monk;Erin B. McClure;Daniel S. Pine,77,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0141921574&origin=inward,10.1111/1469-7610.00186,2003-10-01,"('2-s2.0-0141921574', 'Leibenluft')",,1015-1024,14531584.0,141921574,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0141921574&origin=inward,Leibenluft,Journal of Child Psychology and Psychiatry and Allied Disciplines,Developmental differences in neuronal engagement during implicit encoding of emotional faces: An event-related fMRI study,Article,Leibenluft,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84857600286,Eric E. Nelson;Brenda Benson;Amanda E. Guyer;Nathan A. Fox;Daniel S. Pine;Allison Detloff;Monique Ernst;Victoria R. Choate;Koraly Perez-Edgar,89,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84857600286&origin=inward,10.1176/appi.ajp.2011.11010006,2012-01-01,"('2-s2.0-84857600286', 'Pine')",,205-212,,84857600286,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84857600286&origin=inward,Pine,American Journal of Psychiatry,Striatal functional alteration during incentive anticipation in pediatric anxiety disorders,Article,Pine,NIMH +https://api.elsevier.com/content/abstract/scopus_id/79952729757,Eric E. Nelson;Ellen Leibenluft;Christian Grillon;Daniel S. Pine;Jennifer Y. Lau;Adrian Angold;Shmuel Lissek;Michelle Goldwin;Nina Shiffrin;Jennifer C. Britton;Maxine Norcross;Monique Ernst,101,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79952729757&origin=inward,10.1073/pnas.1005494108,2011-03-15,"('2-s2.0-79952729757', 'Grillon')",,4500-4505,21368210.0,79952729757,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79952729757&origin=inward,Grillon,Proceedings of the National Academy of Sciences of the United States of America,Distinct neural signatures of threat learning in adolescents and adults,Article,Grillon,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84870260560,Amanda E. Guyer;Stephen Fromm;Allison Detloff;Monique Ernst;Youngsun T. Cho;Julie L. Fudge;Daniel S. Pine,86,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84870260560&origin=inward,10.1016/j.neuroimage.2012.10.013,2013-02-01,"('2-s2.0-84870260560', 'Pine')",,508-521,23069809.0,84870260560,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84870260560&origin=inward,Pine,NeuroImage,"Nucleus accumbens, thalamus and insula connectivity during incentive anticipation in typical adults and adolescents",Article,Pine,NIMH +https://api.elsevier.com/content/abstract/scopus_id/77955227027,Jennifer Y.F. Lau;Ellen Leibenluft;Beata Buzas;Eric Nelson;Monique Ernst;Colin Hodgkinson;David Goldman;Lindsey Sankin;Daniel S. Pine,75,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77955227027&origin=inward,10.1016/j.neuroimage.2009.11.026,2010-11-01,"('2-s2.0-77955227027', 'Leibenluft')",,952-961,19931400.0,77955227027,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77955227027&origin=inward,Leibenluft,NeuroImage,BDNF gene polymorphism (Val66Met) predicts amygdala and anterior hippocampus responses to emotional faces in anxious and depressed adolescents,Article,Leibenluft,NIMH +https://api.elsevier.com/content/abstract/scopus_id/39449128305,Daniel S. Pine;Kristin Gotimer;Sara Hefton;F. Xavier Castellanos;Amy L. Krain;Michael P. Milham;Monique Ernst,80,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=39449128305&origin=inward,10.1016/j.biopsych.2007.06.011,2008-03-15,"('2-s2.0-39449128305', 'Pine')",NIMH,563-568,17719566.0,39449128305,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=39449128305&origin=inward,Pine,Biological Psychiatry,A Functional Magnetic Resonance Imaging Investigation of Uncertainty in Adolescents with Anxiety Disorders,Article,Pine,NIMH +https://api.elsevier.com/content/abstract/scopus_id/33947263246,Nathan A. Fox;Amie A. Hane;Daniel S. Pine,71,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33947263246&origin=inward,10.1111/j.1467-8721.2007.00464.x,2007-02-01,"('2-s2.0-33947263246', 'Pine')",,1-5,,33947263246,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33947263246&origin=inward,Pine,Current Directions in Psychological Science,Plasticity for affective neurocircuitry: How the environment affects gene expression,Article,Pine,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84865227012,Marcela Otero;James R. Blair;Daniel S. Pine;Bruce W. Smith;Karina S. Blair;Jeffrey Devido;Nick Hollon;Marilla Geraci,92,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84865227012&origin=inward,10.1016/j.biopsych.2012.04.013,2012-09-15,"('2-s2.0-84865227012', 'Blair')",NIMH,476-482,22592057.0,84865227012,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84865227012&origin=inward,Blair,Biological Psychiatry,"Reduced dorsal anterior cingulate cortical activity during emotional regulation and top-down attentional control in generalized social phobia, generalized anxiety disorder, and comorbid generalized social phobia/generalized anxiety disorder",Article,Blair,NIMH +https://api.elsevier.com/content/abstract/scopus_id/77951687142,Brendan P. Bradley;Daniel S. Pine;Julie Maslowsky;Erin McClure-Tone;Christopher S. Monk;Karin Mogg;Monique Ernst,80,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77951687142&origin=inward,10.1089/cap.2009.0049,2010-04-01,"('2-s2.0-77951687142', 'Pine')",,105-111,20415605.0,77951687142,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77951687142&origin=inward,Pine,Journal of Child and Adolescent Psychopharmacology,A preliminary investigation of neural correlates of treatment in adolescents with generalized anxiety disorder,Article,Pine,NIMH +https://api.elsevier.com/content/abstract/scopus_id/33750407771,Rachel G. Klein;Sara Hefton;F. Xavier Castellanos;Monique Ernst;Amy L. Krain;Michael P. Milham;Daniel S. Pine,57,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33750407771&origin=inward,10.1111/j.1469-7610.2006.01677.x,2006-11-01,"('2-s2.0-33750407771', 'Pine')",,1023-1030,17073981.0,33750407771,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33750407771&origin=inward,Pine,Journal of Child Psychology and Psychiatry and Allied Disciplines,An fMRI examination of developmental differences in the neural correlates of uncertainty and decision-making,Article,Pine,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84885223873,Eric E. Nelson;Ellen Leibenluft;Christian Grillon;Daniel S. Pine;Gang Chen;Monique Ernst;Tomer Shechner;Shmuel Lissek;Jennifer C. Britton;Maxine A. Norcross;Kristin L. Szuhany,87,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84885223873&origin=inward,10.1176/appi.ajp.2013.12050651,2013-10-01,"('2-s2.0-84885223873', 'Leibenluft')",,1195-1204,,84885223873,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84885223873&origin=inward,Leibenluft,American Journal of Psychiatry,Response to learned threat: An fMRI study in adolescent and adult anxiety,Article,Leibenluft,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84875963708,Michelle A. Clementi;Carolyn N. Spiro;Maxine A. Norcross;Yair Bar-Haim;Daniel S. Pine;Gang Chen;Tomer Shechner;Kara M. Lindstrom;Jennifer C. Britton;Lindsey S. Sankin,69,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84875963708&origin=inward,10.1016/j.dcn.2012.11.001,2013-01-01,"('2-s2.0-84875963708', 'Pine')",NIH,52-64,23200784.0,84875963708,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84875963708&origin=inward,Pine,Developmental Cognitive Neuroscience,Training-associated changes and stability of attention bias in youth: Implications for Attention Bias Modification Treatment for pediatric anxiety,Article,Pine,NIMH +https://api.elsevier.com/content/abstract/scopus_id/0035421353,Joseph Grun;Vivian Koda;Robert M. Bilder;Neil Burgess;Elizabeth A. Phelps;Wei Li;Eleanor A. Maguire;Abby Fyer;Babak Ardekani;Philip R. Szeszko;Daniel S. Pine,49,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0035421353&origin=inward,10.1016/S0006-3223(01)01159-3,2001-08-01,"('2-s2.0-0035421353', 'Pine')",NIMH,225-228,11513822.0,35421353,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0035421353&origin=inward,Pine,Biological Psychiatry,Methods for developmental studies of fear conditioning circuitry,Review,Pine,NIMH +https://api.elsevier.com/content/abstract/scopus_id/54149098555,Stephen Strother;Stephan Heckers;Cameron S. Carter;Daniel S. Pine;Thomas Nichols,52,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=54149098555&origin=inward,10.1016/j.biopsych.2008.06.014,2008-11-15,"('2-s2.0-54149098555', 'Pine')",JSMF,842-849,18718572.0,54149098555,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=54149098555&origin=inward,Pine,Biological Psychiatry,Optimizing the Design and Analysis of Clinical Functional Magnetic Resonance Imaging Research Studies,Review,Pine,NIMH +https://api.elsevier.com/content/abstract/scopus_id/79957587777,Marcela Otero;Catherine Majestic;Stephanie Odenheimer;Madeline Jacobs;R. J.R. Blair;Karina S. Blair;Daniel S. Pine;Marilla Geraci,51,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79957587777&origin=inward,10.1016/j.pscychresns.2010.12.016,2011-07-30,"('2-s2.0-79957587777', 'Blair')",NIMH,38-45,21601433.0,79957587777,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79957587777&origin=inward,Blair,Psychiatry Research - Neuroimaging,Atypical modulation of medial prefrontal cortex to self-referential comments in generalized social phobia,Article,Blair,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84880783821,Jillian E. Hardee;Koraly Pérez-Edgar;Brendan P. Bradley;Nathan A. Fox;Yair Bar-Haim;Daniel S. Pine;Gang Chen;Brenda E. Benson;Karin Mogg;Monique Ernst;Jennifer C. Britton,64,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84880783821&origin=inward,10.1016/j.biopsych.2013.01.036,2013-08-15,"('2-s2.0-84880783821', 'Pine')",NIH,273-279,23489415.0,84880783821,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84880783821&origin=inward,Pine,Biological Psychiatry,Patterns of neural connectivity during an attention bias task moderate associations between early childhood temperament and internalizing symptoms in young adulthood,Article,Pine,NIMH +https://api.elsevier.com/content/abstract/scopus_id/34247485995,Françoise S. Maheu;Elizabeth Schroth;Eric Nelson;Daniel S. Pine;Deborah P. Merke;Julie Hardin;Rachel Allen;Jennifer Cameron;Stuart Holzer;Monique Ernst;Liza Green Golan,46,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34247485995&origin=inward,10.1016/j.neuropsychologia.2007.01.019,2007-05-01,"('2-s2.0-34247485995', 'Pine')",NICHD,2104-2113,17336344.0,34247485995,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34247485995&origin=inward,Pine,Neuropsychologia,Amygdala function in adolescents with congenital adrenal hyperplasia: A model for the study of early steroid abnormalities,Article,Pine,NIMH +https://api.elsevier.com/content/abstract/scopus_id/79551500383,Brenda Benson;Nathan A. Fox;Yair Bar-Haim;Allison Detloff;Daniel S. Pine;Monique Ernst;Koraly Perez-Edgar;Sarah M. Helfinstein,45,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79551500383&origin=inward,10.1016/j.neuropsychologia.2010.12.015,2011-02-01,"('2-s2.0-79551500383', 'Pine')",NSF,479-485,21167189.0,79551500383,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79551500383&origin=inward,Pine,Neuropsychologia,Striatal responses to negative monetary outcomes differ between temperamentally inhibited and non-inhibited adolescents,Article,Pine,NIMH +https://api.elsevier.com/content/abstract/scopus_id/53849118466,Françoise S. Maheu;Margaret F. Keil;Deborah P. Merke;Monique Ernst;Constantine A. Stratakis;Daniel S. Pine;Luigi Mazzone,43,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=53849118466&origin=inward,10.1017/S0954579408000564,2008-10-20,"('2-s2.0-53849118466', 'Pine')",,1177-1189,18838037.0,53849118466,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=53849118466&origin=inward,Pine,Development and Psychopathology,Altered amygdala and hippocampus function in adolescents with hypercortisolemia: A functional magnetic resonance imaging study of Cushing syndrome,Article,Pine,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84855643831,Eric E. Nelson;Jennifer Y.F. Lau;Erin B. Tone;Amanda E. Guyer;Jessica M. Parrish;Daniel S. Pine;Jessica Jenness,42,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84855643831&origin=inward,10.1177/0165025411406854,2012-01-01,"('2-s2.0-84855643831', 'Pine')",NIMH,36-44,,84855643831,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84855643831&origin=inward,Pine,International Journal of Behavioral Development,Neural responses to peer rejection in anxious adolescents: Contributions from the amygdala-hippocampal complex,Conference Paper,Pine,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84872920006,Elena Gorodetsky;Monique Ernst;Aveline Aouidad;David Goldman;Sven C. Mueller;Daniel S. Pine,51,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84872920006&origin=inward,10.1016/j.jaac.2012.11.016,2013-02-01,"('2-s2.0-84872920006', 'Pine')",NIMH,184-195,23357445.0,84872920006,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84872920006&origin=inward,Pine,Journal of the American Academy of Child and Adolescent Psychiatry,Gray matter volume in adolescent anxiety: An impact of the brain-derived neurotrophic factor Val66met polymorphism?,Article,Pine,NIMH +https://api.elsevier.com/content/abstract/scopus_id/5044222459,Eric E. Nelson;Lee Anne Montgomery;Eric Zarahn;Ellen Leibenluft;Amanda E. Guyer;Girma Woldehawariat;Daniel S. Pine;Dennis S. Charney;Christopher S. Monk;Erin B. McClure;Monique Ernst,31,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=5044222459&origin=inward,10.1016/j.biopsych.2004.07.012,2004-10-15,"('2-s2.0-5044222459', 'Leibenluft')",,607-610,15476691.0,5044222459,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=5044222459&origin=inward,Leibenluft,Biological Psychiatry,Experience-dependent plasticity for attention to threat: Behavioral and neurophysiological evidence in humans,Article,Leibenluft,NIMH +https://api.elsevier.com/content/abstract/scopus_id/0041829003,Joseph Grun;Vivian Koda;Robert M. Bilder;Eric Zarahn;Wei Li;Abby Fyer;Babak Ardekani;Philip R. Szeszko;Daniel S. Pine,30,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0041829003&origin=inward,10.1037/1528-3542.1.2.137,2001-06-01,"('2-s2.0-0041829003', 'Pine')",,137-147,12899193.0,41829003,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0041829003&origin=inward,Pine,Emotion,Cortical Brain Regions Engaged by Masked Emotional Faces in Adolescents and Adults: An fMRI Study,Article,Pine,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84871483084,Ellen Leibenluft;Nathan A. Fox;Monique Ernst;Tomer Shechner;Amit Etkin;Johanna M. Jarcho;Daniel S. Pine,45,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84871483084&origin=inward,10.1016/j.biopsycho.2012.09.008,2013-02-01,"('2-s2.0-84871483084', 'Pine')",NIMH,306-314,23046903.0,84871483084,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84871483084&origin=inward,Pine,Biological Psychology,The neural correlates of emotion-based cognitive control in adults with early childhood behavioral inhibition,Article,Pine,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84896459938,Eric E. Nelson;Brenda Benson;Amanda E. Guyer;Nathan A. Fox;Yair Bar-Haim;Daniel S. Pine;Monique Ernst;Victoria R. Choate;Johanna M. Jarcho;Koraly Perez-Edgar,44,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84896459938&origin=inward,10.1017/S0954579413000941,2014-01-01,"('2-s2.0-84896459938', 'Pine')",NIMH,229-243,24444176.0,84896459938,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84896459938&origin=inward,Pine,Development and Psychopathology,Lasting associations between early-childhood temperament and late-adolescent reward-circuitry response to peer feedback,Article,Pine,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84906260452,K. Perez-Edgar;C. Lamm;A. E. Guyer;M. Ernst;N. A. Fox;D. S. Pine;B. E. Benson,36,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84906260452&origin=inward,10.1016/j.bandc.2013.12.003,2014-01-01,"('2-s2.0-84906260452', 'Pine')",NIMH,51-60,24485273.0,84906260452,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84906260452&origin=inward,Pine,Brain and Cognition,Longitudinal study of striatal activation to reward and loss anticipation from mid-adolescence into late adolescence/early adulthood,Article,Pine,NIMH +https://api.elsevier.com/content/abstract/scopus_id/69449084507,Eric E. Nelson;Ellen Leibenluft;Brendan P. Bradley;Amanda E. Guyer;Nathan A. Fox;Daniel S. Pine;Yair Bar-Haim;Kara M. Lindstrom;Christopher S. Monk;Karin Mogg;Monique Ernst;Jennifer C. Britton,24,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=69449084507&origin=inward,10.1016/j.brainres.2009.07.045,2009-09-25,"('2-s2.0-69449084507', 'Leibenluft')",NIH,61-70,19631626.0,69449084507,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=69449084507&origin=inward,Leibenluft,Brain Research,Normative data on development of neural and behavioral mechanisms underlying attention orienting toward social-emotional stimuli: An exploratory study,Article,Leibenluft,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84894284825,Eric E. Nelson;Robert Gladding;Chul Hyoung Lyoo;Jeremy Kruger;Ellen Leibenluft;Per Svenningsson;James T. Winslow;Jeih San Liow;Robert B. Innis;Victor W. Pike;Cheryl Morse;Stephen J. Suomi;Ioline D. Henter;Bo Zhang;Pam L. Noble;Stal Saurav Shrestha;Daniel S. Pine,34,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84894284825&origin=inward,10.1176/appi.ajp.2013.13020183,2014-03-01,"('2-s2.0-84894284825', 'Leibenluft')",,323-331,24480874.0,84894284825,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84894284825&origin=inward,Leibenluft,American Journal of Psychiatry,Fluoxetine administered to juvenile monkeys: Effects on the serotonin transporter and behavior,Article,Leibenluft,NIMH +https://api.elsevier.com/content/abstract/scopus_id/0344666712,Eric E. Nelson;Eric Zarahn;Christian Grillon;Johanna M.P. Baas;Daniel S. Pine;Dennis S. Charney;Christopher S. Monk;Erin B. McClure;Monique Ernst,24,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0344666712&origin=inward,10.1002/dev.10146,2003-12-18,"('2-s2.0-0344666712', 'Grillon')",,359-366,15027419.0,344666712,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0344666712&origin=inward,Grillon,Developmental Psychobiology,A Neuroimaging Method for the Study of Threat in Adolescents,Article,Grillon,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84865628437,Nathan A. Fox;Daniel S. Pine;Sarah M. Helfinstein,25,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84865628437&origin=inward,10.1037/a0026402,2012-05-01,"('2-s2.0-84865628437', 'Pine')",,815-826,22148946.0,84865628437,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84865628437&origin=inward,Pine,Developmental Psychology,Approach-withdrawal and the role of the striatum in the temperament of behavioral inhibition,Article,Pine,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84922239203,Amy K. Roy;Brenda Benson;Ellen Leibenluft;Christina Carlisi;Paul F. Collins;Monica Luciana;James N. Porter;Monique Ernst;Daniel S. Pine,38,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84922239203&origin=inward,10.1016/j.dcn.2014.08.011,2015-01-01,"('2-s2.0-84922239203', 'Leibenluft')",NIMH,83-95,25257972.0,84922239203,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84922239203&origin=inward,Leibenluft,Developmental Cognitive Neuroscience,Age-related changes in the intrinsic functional connectivity of the human ventral vs. dorsal striatum from childhood to middle age,Article,Leibenluft,NIMH +https://api.elsevier.com/content/abstract/scopus_id/67949118682,Michael G. Hardin;Daniel S. Pine;Monique Ernst,23,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=67949118682&origin=inward,10.1016/j.neuroimage.2009.06.050,2009-10-15,"('2-s2.0-67949118682', 'Pine')",,249-257,19560546.0,67949118682,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=67949118682&origin=inward,Pine,NeuroImage,The influence of context valence in the neural coding of monetary outcomes,Article,Pine,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84862844396,Ellen Leibenluft;Pilyoung Kim;Daniel S. Pine;Christen M. Deveney;Melissa A. Brotman;Stephen J. Fromm;Megan E. Connolly;Sarah E. Jenkins,23,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84862844396&origin=inward,10.1016/j.pnpbp.2012.02.014,2012-08-07,"('2-s2.0-84862844396', 'Pine')",NIH,127-133,22414616.0,84862844396,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84862844396&origin=inward,Pine,Progress in Neuro-Psychopharmacology and Biological Psychiatry,Striatal dysfunction during failed motor inhibition in children at risk for bipolar disorder,Article,Pine,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84898785141,Jillian E. Hardee;Eric E. Nelson;Elena Gorodetsky;Koraly Pérez-Edgar;Amanda E. Guyer;Nathan A. Fox;Monique Ernst;David Goldman;Brenda E. Benson;Daniel S. Pine,26,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84898785141&origin=inward,10.1093/scan/nst001,2014-01-01,"('2-s2.0-84898785141', 'Pine')",NIH,445-453,23314010.0,84898785141,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84898785141&origin=inward,Pine,Social Cognitive and Affective Neuroscience,DRD4 and striatal modulation of the link between childhood behavioral inhibition and adolescent anxiety,Article,Pine,NIMH +https://api.elsevier.com/content/abstract/scopus_id/60749137154,Ellen W. Leschek;Darcy Mandell;Deborah P. Merke;Monique Ernst;Sven C. Mueller;Daniel S. Pine,21,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=60749137154&origin=inward,10.1089/cap.2008.031,2009-01-01,"('2-s2.0-60749137154', 'Pine')",,41-50,19232022.0,60749137154,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=60749137154&origin=inward,Pine,Journal of Child and Adolescent Psychopharmacology,Early hyperandrogenism affects the development of hippocampal function: Preliminary evidence from a functional magnetic resonance imaging study of boys with familial male precocious puberty,Article,Pine,NIMH +https://api.elsevier.com/content/abstract/scopus_id/58149109034,Eric E. Nelson;Monique Ernst;Daniel S. Pine;Norberto Eiji Nawa,19,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=58149109034&origin=inward,10.1093/scan/nsn032,2008-12-01,"('2-s2.0-58149109034', 'Pine')",,367-376,19015081.0,58149109034,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=58149109034&origin=inward,Pine,Social Cognitive and Affective Neuroscience,Do you make a difference? Social context in a betting task,Article,Pine,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84891831556,Ellen Leibenluft;Kathryn A. Degnan;Nathan A. Fox;Monique Ernst;Tomer Shechner;Johanna M. Jarcho;Daniel S. Pine;Koraly Perez-Edgar,26,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84891831556&origin=inward,10.1002/da.22140,2014-01-01,"('2-s2.0-84891831556', 'Pine')",,53-62,23861165.0,84891831556,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84891831556&origin=inward,Pine,Depression and Anxiety,Enduring influence of early temperament on neural mechanisms mediating attention-emotion conflict in adults,Article,Pine,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84925485661,Monique Ernst;Prantik Kundu;Dana Rosen;Katherine L. Baldwin;Wen Ming Luh;Brenda E. Benson;Peter A. Bandettini;Daniel S. Pine,27,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84925485661&origin=inward,10.1007/s11682-014-9346-4,2015-03-11,"('2-s2.0-84925485661', 'Bandettini')",NIH,56-73,25592183.0,84925485661,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84925485661&origin=inward,Bandettini,Brain Imaging and Behavior,Robust resting state fMRI processing for studies on typical brain development based on multi-echo EPI acquisition,Article,Bandettini,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84908381331,Amy Krain Roy;Kathryn A. Degnan;Nathan A. Fox;Monique Ernst;Brenda E. Benson;Daniel S. Pine;Koraly Perez-Edgar,23,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84908381331&origin=inward,10.1016/j.biopsycho.2014.09.007,2014-12-01,"('2-s2.0-84908381331', 'Pine')",NIMH,248-254,25261727.0,84908381331,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84908381331&origin=inward,Pine,Biological Psychology,Alterations in amygdala functional connectivity reflect early temperament,Article,Pine,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84897110700,Elena Gorodetsky;Daniel S. Pine;Rista C. Plate;David Goldman;Monique Ernst;Christina O. Carlisi,18,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84897110700&origin=inward,10.1016/j.dcn.2013.10.002,2014-01-01,"('2-s2.0-84897110700', 'Pine')",,77-85,24280015.0,84897110700,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84897110700&origin=inward,Pine,Developmental Cognitive Neuroscience,Loss aversion and 5HTT gene variants in adolescent anxiety,Article,Pine,NIMH +https://api.elsevier.com/content/abstract/scopus_id/38349126011,Françoise S. Maheu;Margaret F. Keil;Daniel S. Pine;Deborah P. Merke;Monique Ernst;Julie Hardin;Kaitlin Poeth;Elizabeth A. Schroth,13,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=38349126011&origin=inward,10.1016/j.psyneuen.2007.11.006,2008-02-01,"('2-s2.0-38349126011', 'Pine')",NICHD,238-245,18162329.0,38349126011,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=38349126011&origin=inward,Pine,Psychoneuroendocrinology,Steroid abnormalities and the developing brain: Declarative memory for emotionally arousing and neutral material in children with congenital adrenal hyperplasia,Article,Pine,NIMH +https://api.elsevier.com/content/abstract/scopus_id/79956223886,Eric E. Nelson;Allison M. Detloff;Monique Ernst;Norberto E. Nawa;Erin B. McClure-Tone;Stephen J. Fromm;Daniel S. Pine,14,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79956223886&origin=inward,10.1080/87565641.2010.549876,2011-05-01,"('2-s2.0-79956223886', 'Pine')",NIMH,453-472,21516543.0,79956223886,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79956223886&origin=inward,Pine,Developmental Neuropsychology,Preliminary findings: Neural responses to feedback regarding betrayal and cooperation in adolescent anxiety disorders,Article,Pine,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84922258357,Eric E. Nelson;Lauren B. Shomaker;Jack A. Yanovski;Andrew P. Demidowich;Louise Hannallah;Sheila M. Brady;Sara E. Field;Anna Vannucci;Scott G. Engel;Johanna M. Jarcho;Daniel S. Pine;Amber B. Courville;Marian Tanofsky-Kraff;Adrienne L. Romer,18,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84922258357&origin=inward,10.1016/j.neuroimage.2014.12.054,2015-03-01,"('2-s2.0-84922258357', 'Pine')",NIH,343-353,25550068.0,84922258357,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84922258357&origin=inward,Pine,NeuroImage,Neural activation during anticipated peer evaluation and laboratory meal intake in overweight girls with and without loss of control eating,Article,Pine,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84991094042,Ellen Leibenluft;Carolyn N. Spiro;Tomer Shechner;Andrea L. Gold;Daniel S. Pine;Madeline J. Farber;Jennifer C. Britton,29,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84991094042&origin=inward,10.1002/da.22470,2016-10-01,"('2-s2.0-84991094042', 'Leibenluft')",,917-926,27699940.0,84991094042,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84991094042&origin=inward,Leibenluft,Depression and Anxiety,"Amygdala–Cortical Connectivity: Associations with Anxiety, Development, and Threat",Article,Leibenluft,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84988443599,Daniel S. Busso;Katie A. McLaughlin;Hilary K. Lambert;Matthew Peverill;Sonia Alves;Andrea L. Gold;Margaret A. Sheridan;Daniel S. Pine,37,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84988443599&origin=inward,10.1111/jcpp.12630,2016-10-01,"('2-s2.0-84988443599', 'Pine')",NIH,1154-1164,27647051.0,84988443599,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84988443599&origin=inward,Pine,Journal of Child Psychology and Psychiatry and Allied Disciplines,Childhood abuse and reduced cortical thickness in brain regions involved in emotional processing,Article,Pine,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84918931540,Erin B. McClure;Daniel S. Pine,9,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84918931540&origin=inward,10.1093/acprof:oso/9780195306255.003.0010,2007-03-22,"('2-s2.0-84918931540', 'Pine')",,,,84918931540,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84918931540&origin=inward,Pine,Adolescent Psychopathology and the Developing Brain: Integrating Brain and Prevention Science,"Social Stress, Affect, and Neural Function in Adolescence",Chapter,Pine,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84983022102,Eric E. Nelson;Megan M. Davis;Kathryn A. Degnan;Heather A. Henderson;Ellen Leibenluft;Nathan A. Fox;Joel Stoddard;Tomer Shechner;Johanna M. Jarcho;Daniel S. Pine,22,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84983022102&origin=inward,10.1177/0956797616638319,2016-06-01,"('2-s2.0-84983022102', 'Leibenluft')",,821-835,27150109.0,84983022102,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84983022102&origin=inward,Leibenluft,Psychological Science,Early-Childhood Social Reticence Predicts Brain Function in Preadolescent Youths During Distinct Forms of Peer Evaluation,Article,Leibenluft,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84922983681,Eric E. Nelson;Amanda E. Guyer;Daniel S. Pine;Brenda E. Benson;Monique Ernst,13,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84922983681&origin=inward,10.3758/s13415-014-0307-6,2014-01-01,"('2-s2.0-84922983681', 'Pine')",NIH,155-168,25183555.0,84922983681,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84922983681&origin=inward,Pine,"Cognitive, Affective and Behavioral Neuroscience",Role of contingency in striatal response to incentive in adolescents with anxiety,Article,Pine,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84879370070,Johanna Jarcho;Daniel S. Pine;Tomer Shechner;Naomi Wakschlag;Jennifer C. Britton;Monique Ernst,4,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84879370070&origin=inward,10.1089/cap.2012.0076,2013-06-01,"('2-s2.0-84879370070', 'Pine')",NIMH,357-362,23738869.0,84879370070,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84879370070&origin=inward,Pine,Journal of Child and Adolescent Psychopharmacology,Empirical examination of the potential adverse psychological effects associated with pediatric fMRI scanning,Article,Pine,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84962576502,Brenda Benson;Madeline Farber;Julia Dorfman;Daniel Pine;Monique Ernst,2,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84962576502&origin=inward,10.1016/j.neuropsychologia.2016.03.019,2016-05-01,"('2-s2.0-84962576502', 'Pine')",NIMH,159-168,27004799.0,84962576502,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84962576502&origin=inward,Pine,Neuropsychologia,Altered striatal intrinsic functional connectivity in pediatric anxiety,Article,Pine,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84902064254,Robert Gladding;Eric E. Nelson;Per Svenningsson;James T. Winslow;Jeih San Liow;Robert B. Innis;Victor W. Pike;Stephen J. Suomi;Pam L. Noble;Saurav Shrestha;Daniel S. Pine,0,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84902064254&origin=inward,10.1016/B978-0-12-800044-1.00139-2,2013-12-01,"('2-s2.0-84902064254', 'Pine')",,157-158,,84902064254,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84902064254&origin=inward,Pine,"Catecholamine Research in the 21st Century: Abstracts and Graphical Abstracts, 10th International Catecholamine Symposium, 2012",PET Imaging of Serotonin Transmission in Monkeys: Effects of Maternal Separation and Long-Term Fluoxetine Treatment during Adolescence,Chapter,Pine,NIMH +https://api.elsevier.com/content/abstract/scopus_id/85019554319,Ellen Leibenluft;Nathan A. Fox;Gang Chen;Tomer Shechner;Jamie A. Mash;Johanna M. Jarcho;Daniel S. Pine;Jennifer C. Britton,6,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85019554319&origin=inward,10.1017/S0954579417000554,2018-02-01,"('2-s2.0-85019554319', 'Leibenluft')",NIMH,179-189,28534459.0,85019554319,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85019554319&origin=inward,Leibenluft,Development and Psychopathology,Differences in neural response to extinction recall in young adults with or without history of behavioral inhibition,Review,Leibenluft,NIMH +https://api.elsevier.com/content/abstract/scopus_id/42349088634,Abhishek Bhandari;Barry Merriman;Shane E. McCarthy;Kristen Eckstrand;Sean Davis;Peter Gochman;Evan E. Eichler;Robert L. Findling;Laila Noory;Mary Claire King;Nitin Gogtay;Zugen Chen;Stanley F. Nelson;Caitlin F. Rippey;Philip Butler;Jon M. McClellan;Sunday M. Stray;Dheeraj Malhotra;Patricia Roccanova;Ming K. Lee;Judith L. Rapoport;Thomas Stromberg;Sarah B. Pierce;Andrew B. Singleton;B. Lakshmi;Tom Walsh;Carl Baker;Vlad Makarov;Robert Long;Jonathan Sebat;Mary Kusenda;Anjené M. Addington;Greg M. Cooper;Alex S. Nord;Paul S. Meltzer;Linmarie Sikich,1314,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=42349088634&origin=inward,10.1126/science.1155174,2008-04-25,"('2-s2.0-42349088634', 'Rapoport')",,539-543,18369103.0,42349088634,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=42349088634&origin=inward,Rapoport,Science,Rare structural variants disrupt multiple genes in neurodevelopmental pathways in schizophrenia,Article,Rapoport,NIMH +https://api.elsevier.com/content/abstract/scopus_id/37649015910,A. Evans;J. L. Rapoport;P. Shaw;J. P. Lerch;L. Clasen;K. Eckstrand;W. Sharp;J. Giedd;J. Blumenthal;D. Greenstein,974,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=37649015910&origin=inward,10.1073/pnas.0707741104,2007-12-04,"('2-s2.0-37649015910', 'Shaw')",,19649-19654,18024590.0,37649015910,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=37649015910&origin=inward,Shaw,Proceedings of the National Academy of Sciences of the United States of America,Attention-deficit/hyperactivity disorder is characterized by a delay in cortical maturation,Article,Shaw,NHGRI +https://api.elsevier.com/content/abstract/scopus_id/0035949688,Judith L. Rapoport;Arthur W. Toga;Jonathan Blumenthal;Peter Gochman;Paul M. Thompson;Robert Nicolson;Jay N. Giedd;Christine Vidal,613,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0035949688&origin=inward,10.1073/pnas.201243998,2001-09-25,"('2-s2.0-0035949688', 'Rapoport')",,11650-11655,11573002.0,35949688,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0035949688&origin=inward,Rapoport,Proceedings of the National Academy of Sciences of the United States of America,Mapping adolescent brain change reveals dynamic wave of accelerated gray matter loss in very early-onset schizophrenia,Article,Rapoport,NIMH +https://api.elsevier.com/content/abstract/scopus_id/33646932136,Alan Evans;Jason Lerch;F. Xavier Castellanos;Jay Giedd;Philip Shaw;Liv Clasen;Judith Rapoport;Wendy Sharp;Deanna Greenstein,475,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33646932136&origin=inward,10.1001/archpsyc.63.5.540,2006-12-01,"('2-s2.0-33646932136', 'Shaw')",,540-549,16651511.0,33646932136,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33646932136&origin=inward,Shaw,Archives of General Psychiatry,Longitudinal mapping of cortical thickness and clinical outcome in children and adolescents with attention-deficit/hyperactivity disorder,Article,Shaw,NHGRI +https://api.elsevier.com/content/abstract/scopus_id/0035095868,Judith L. Rapoport;A. Catherine Vaituzis;Alex Zijdenbos;Jean Nelson;F. Xavier Castellanos;James M. Walter;Thanhlan Tran;Alan C. Evans;Patrick C. Berquin;Wendy Sharp;Jay N. Giedd;Jonathan D. Blumenthal;Theresa M. Bastain,329,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0035095868&origin=inward,10.1001/archpsyc.58.3.289,2001-01-01,"('2-s2.0-0035095868', 'Rapoport')",NIMH,289-295,11231836.0,35095868,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0035095868&origin=inward,Rapoport,Archives of General Psychiatry,Quantitative brain magnetic resonance imaging in girls with attention-deficit/hyperactivity disorder,Article,Rapoport,NIMH +https://api.elsevier.com/content/abstract/scopus_id/0034868081,J. L. Rapoport;A. C. Evans;M. K. Chung;T. Paus;D. L. Collins;K. J. Worsley;C. Cherif;J. N. Giedd,270,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0034868081&origin=inward,10.1006/nimg.2001.0862,2001-01-01,"('2-s2.0-0034868081', 'Rapoport')",,595-606,11506533.0,34868081,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0034868081&origin=inward,Rapoport,NeuroImage,A unified statistical approach to deformation-based morphometry,Article,Rapoport,NIMH +https://api.elsevier.com/content/abstract/scopus_id/58249135361,Alex Chavez;Nitin Gogtay;Anjene Addington;Judith Rapoport;Deanna Greenstein,238,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=58249135361&origin=inward,10.1097/CHI.0b013e31818b1c63,2009-01-01,"('2-s2.0-58249135361', 'Rapoport')",,10-18,,58249135361,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=58249135361&origin=inward,Rapoport,Journal of the American Academy of Child and Adolescent Psychiatry,Autism spectrum disorders and childhood-onset schizophrenia: Clinical and biological contributions to a relation revisited,Erratum,Rapoport,NIMH +https://api.elsevier.com/content/abstract/scopus_id/34247535549,Judith L. Rapoport;Ron Pierson;Tom F. Nugent;Rhoshel Lenroot;Philip Shaw;Wendy S. Sharp;Jay N. Giedd;Deanna K. Greenstein;Susan Mackie,221,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34247535549&origin=inward,10.1176/ajp.2007.164.4.647,2007-01-01,"('2-s2.0-34247535549', 'Shaw')",,647-655,17403979.0,34247535549,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34247535549&origin=inward,Shaw,American Journal of Psychiatry,Cerebellar development and clinical outcome in attention deficit hyperactivity disorder,Article,Shaw,NHGRI +https://api.elsevier.com/content/abstract/scopus_id/0037330723,Judith L. Rapoport;Moo K. Chung;Jonathan Taylor;Tomáš Paus;Keith J. Worsley;Alan C. Evans;Steve Robbins;Jay N. Giedd,199,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0037330723&origin=inward,10.1016/S1053-8119(02)00017-4,2003-02-01,"('2-s2.0-0037330723', 'Rapoport')",,198-213,12595176.0,37330723,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0037330723&origin=inward,Rapoport,NeuroImage,Deformation-based surface morphometry applied to gray matter deformation,Article,Rapoport,NIMH +https://api.elsevier.com/content/abstract/scopus_id/34547750487,Judith L. Rapoport;Alan Evans;Jason Lerch;Michele Gornick;Anjene Addington;F. Xavier Castellanos;Jeffrey Seal;Philip Shaw;Wendy Sharp;Jay N. Giedd;Deanna Greenstein,185,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34547750487&origin=inward,10.1001/archpsyc.64.8.921,2007-08-01,"('2-s2.0-34547750487', 'Shaw')",,921-931,17679637.0,34547750487,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34547750487&origin=inward,Shaw,Archives of General Psychiatry,"Polymorphisms of the dopamine D4 receptor, clinical outcome, and cortical structure in attention-deficit/hyperactivity disorder",Article,Shaw,NHGRI +https://api.elsevier.com/content/abstract/scopus_id/59749095103,Judith L. Rapoport;Liv S. Clasen;Meaghan Morrison;Kristen Eckstrand;Philip Shaw;Alan C. Evans;Wendy S. Sharp;Deanna K. Greenstein,174,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=59749095103&origin=inward,10.1176/appi.ajp.2008.08050781,2009-01-01,"('2-s2.0-59749095103', 'Shaw')",,58-63,18794206.0,59749095103,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=59749095103&origin=inward,Shaw,American Journal of Psychiatry,Psychostimulant treatment and the developing cortex in attention deficit hyperactivity disorder,Article,Shaw,NHGRI +https://api.elsevier.com/content/abstract/scopus_id/3042753009,Judith L. Rapoport;Liv S. Clasen;Nitin Gogtay;Alexandra L. Sporn;Jonathan Blumenthal;Peter Gochman;Neal O. Jeffries;Jay N. Giedd;Marge Lenane;Deanna K. Greenstein,141,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=3042753009&origin=inward,10.1176/appi.ajp.160.12.2181,2003-12-01,"('2-s2.0-3042753009', 'Rapoport')",,2181-2189,14638588.0,3042753009,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=3042753009&origin=inward,Rapoport,American Journal of Psychiatry,Progressive brain volume loss during adolescence in childhood-onset schizophrenia,Article,Rapoport,NIMH +https://api.elsevier.com/content/abstract/scopus_id/68149160814,Alan Evans;Kristen Eckstrand;Wendy Sharp;Francois Lalonde;Cara Rabin;Philip Shaw;Judith Rapoport;Claude Lepage;Deanna Greenstein;J. N. Giedd,144,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=68149160814&origin=inward,10.1001/archgenpsychiatry.2009.103,2009-08-01,"('2-s2.0-68149160814', 'Shaw')",,888-896,19652128.0,68149160814,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=68149160814&origin=inward,Shaw,Archives of General Psychiatry,Development of cortical asymmetry in typically developing children and its disruption in attention-deficit/hyperactivity disorder,Article,Shaw,NHGRI +https://api.elsevier.com/content/abstract/scopus_id/9144232250,Judith L. Rapoport;Liv S. Clasen;Nitin Gogtay;Alan Evans;Rob Nicolson;Tom F. Nugent;Alexandra Sporn;Pete Gochman;Marge Lenane;Jay N. Giedd;Deanna Greenstein,120,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=9144232250&origin=inward,10.1001/archpsyc.61.1.17,2004-01-01,"('2-s2.0-9144232250', 'Rapoport')",,17-22,14706940.0,9144232250,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=9144232250&origin=inward,Rapoport,Archives of General Psychiatry,Comparison of Progressive Cortical Gray Matter Loss in Childhood-Onset Schizophrenia with That in Childhood-Onset Atypical Psychoses,Article,Rapoport,NIMH +https://api.elsevier.com/content/abstract/scopus_id/77952899674,Nitin Gogtay;Philip Shaw;Judith Rapoport,125,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77952899674&origin=inward,10.1002/hbm.21028,2010-06-01,"('2-s2.0-77952899674', 'Shaw')",,917-925,20496382.0,77952899674,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77952899674&origin=inward,Shaw,Human Brain Mapping,Childhood psychiatric disorders as anomalies in neurodevelopmental trajectories,Review,Shaw,NHGRI +https://api.elsevier.com/content/abstract/scopus_id/12944305949,Judith L. Rapoport;Susan D. Hamburger;Sujatha Singaracharlu;Daniel W. Hommer;Dolores Malaspina;Rob Nicolson;Peter Gochman;Gunvant K. Thaker;Jeffrey Bedwell;Tom Fernandez;Marianne Wudarsky;Jay N. Giedd;Marge Lenane,105,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=12944305949&origin=inward,10.1176/appi.ajp.157.5.794,2000-05-01,"('2-s2.0-12944305949', 'Hommer')",,794-800,10784474.0,12944305949,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=12944305949&origin=inward,Hommer,American Journal of Psychiatry,Premorbid speech and language impairments in childhood-onset schizophrenia: Association with risk factors,Article,Hommer,NIAAA +https://api.elsevier.com/content/abstract/scopus_id/57349098187,Alex Chavez;Arthur W. Toga;Nitin Gogtay;Judith L. Rapoport;Allen Lu;Paul M. Thompson;Andrea D. Klunder;Agatha D. Lee;Alex D. Leow;Jay N. Giedd;Deanna Greenstein,97,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=57349098187&origin=inward,10.1073/pnas.0806485105,2008-10-14,"('2-s2.0-57349098187', 'Rapoport')",,15979-15984,18852461.0,57349098187,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=57349098187&origin=inward,Rapoport,Proceedings of the National Academy of Sciences of the United States of America,Three-dimensional brain growth abnormalities in childhood-onset schizophrenia visualized by using tensor-based morphometry,Article,Rapoport,NIMH +https://api.elsevier.com/content/abstract/scopus_id/33846496323,J. L. Rapoport;P. Shaw;M. Coffey;L. Clasen;R. Long;P. Gochman;J. Seal;N. Gogtay;M. C. Gornick;A. M. Addington;D. Greenstein,95,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33846496323&origin=inward,10.1038/sj.mp.4001906,2007-02-01,"('2-s2.0-33846496323', 'Shaw')",,195-205,17033632.0,33846496323,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33846496323&origin=inward,Shaw,Molecular Psychiatry,Neuregulin 1 (8p12) and childhood-onset schizophrenia: Susceptibility haplotypes for diagnosis and brain developmental trajectories,Article,Shaw,NHGRI +https://api.elsevier.com/content/abstract/scopus_id/0642343889,Judith L. Rapoport;Rebecca F. Gottesman;F. Xavier Castellanos;Wendy S. Sharp;Jay N. Giedd;Deanna K. Greenstein,93,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0642343889&origin=inward,10.1176/appi.ajp.160.9.1693,2003-09-01,"('2-s2.0-0642343889', 'Rapoport')",,1693-1696,12944348.0,642343889,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0642343889&origin=inward,Rapoport,American Journal of Psychiatry,Anatomic brain abnormalities in monozygotic twins discordant for attention deficit hyperactivity disorder,Article,Rapoport,NIMH +https://api.elsevier.com/content/abstract/scopus_id/0037228033,Judith L. Rapoport;A. Catherine Vaituzis;F. Xavier Castellanos;Audrey Keller;Neal O. Jeffries;Jay N. Giedd,92,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0037228033&origin=inward,10.1176/appi.ajp.160.1.128,2003-01-01,"('2-s2.0-0037228033', 'Rapoport')",,128-133,12505811.0,37228033,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0037228033&origin=inward,Rapoport,American Journal of Psychiatry,Progressive loss of cerebellar volume in childhood-onset schizophrenia,Article,Rapoport,NIMH +https://api.elsevier.com/content/abstract/scopus_id/34547843470,Judith L. Rapoport;Arthur W. Toga;Nitin Gogtay;Ellen Leibenluft;David Jung;Wendy Sharp;Kiralee M. Hayashi;Cathy Vaituzis;Marge Lenane;Tom F. Nugent Iii;David H. Herman;Paul M. Thompson;Liv Clasen;Anna Ordonez;Jay N. Giedd;Deanna Greenstein,96,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34547843470&origin=inward,10.1111/j.1469-7610.2007.01747.x,2007-09-01,"('2-s2.0-34547843470', 'Leibenluft')",,852-862,17714370.0,34547843470,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34547843470&origin=inward,Leibenluft,Journal of Child Psychology and Psychiatry and Allied Disciplines,Dynamic mapping of cortical development before and after the onset of pediatric bipolar illness,Article,Leibenluft,NIMH +https://api.elsevier.com/content/abstract/scopus_id/40049110129,Nitin Gogtay;Judith Rapoport;Dolores Moreno;David Fraguas;Celso Arango;Carmen Moreno;Manuel Desco;Anthony James;Mara Parellada;Salvador Martínez,69,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=40049110129&origin=inward,10.1093/schbul/sbm157,2008-03-01,"('2-s2.0-40049110129', 'Rapoport')",NIMH,341-353,18234701.0,40049110129,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=40049110129&origin=inward,Rapoport,Schizophrenia Bulletin,Longitudinal brain changes in early-onset psychosis,Review,Rapoport,NIMH +https://api.elsevier.com/content/abstract/scopus_id/0033849886,J. L. Rapoport;J. E. Nelson;S. Kumra;K. McKenna;L. K. Jacobsen;J. Bedwell;M. Lenane;A. C. Vaituzis;S. Hamburger;J. N. Giedd,64,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0033849886&origin=inward,10.1176/appi.ajp.157.9.1467,2000-09-18,"('2-s2.0-0033849886', 'Rapoport')",,1467-1474,10964864.0,33849886,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0033849886&origin=inward,Rapoport,American Journal of Psychiatry,Childhood-onset psychotic disorders: Magnetic resonance imaging of volumetric differences in brain structure,Article,Rapoport,NIMH +https://api.elsevier.com/content/abstract/scopus_id/0037362607,Judith L. Rapoport;Liv S. Clasen;Nitin Gogtay;Alex Zijdenbos;Peter A. Gochman;Alexandra Sporn;Marge Lenane;Jay N. Giedd;Deanna Greenstein,57,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0037362607&origin=inward,10.1176/appi.ajp.160.3.569,2003-03-01,"('2-s2.0-0037362607', 'Rapoport')",NIMH,569-571,12611841.0,37362607,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0037362607&origin=inward,Rapoport,American Journal of Psychiatry,Structural brain MRI abnormalities in healthy siblings of patients with childhood-onset schizophrenia,Article,Rapoport,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84866056199,Rachel Sugalski;Majesta S. O'bleness;Tasha Fingerlin;Judith Rapoport;Jonathan M. Davis;Jay Giedd;J. G. Keeney;Ayelet Erez;Jay Jackson;Nicola Brunetti-Pierri;C. Michael Dickens;Nathan Anderson;Megan Sikela;Sau Wai Cheung;James R. Lupski;Armin Raznahan;Laura J. Dumas;James M. Sikela;Sandesh S.C. Nagamani,70,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84866056199&origin=inward,10.1016/j.ajhg.2012.07.016,2012-09-07,"('2-s2.0-84866056199', 'Raznahan')",MCHB,444-454,22901949.0,84866056199,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84866056199&origin=inward,Raznahan,American Journal of Human Genetics,DUF1220-domain copy number implicated in human brain-size pathology and evolution,Article,Raznahan,NIMH +https://api.elsevier.com/content/abstract/scopus_id/33846584937,Judith L. Rapoport;Arthur W. Toga;Nitin Gogtay;David Jung;Kiralee M. Hayashi;Tom F. Nugent;Marge Lenane;Paul M. Thompson;David H. Herman;Liv Clasen;Anna Ordonez;Jay N. Giedd;Deanna Greenstein,50,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33846584937&origin=inward,10.1016/j.schres.2006.10.014,2007-02-01,"('2-s2.0-33846584937', 'Rapoport')",,62-70,17161938.0,33846584937,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33846584937&origin=inward,Rapoport,Schizophrenia Research,Dynamic mapping of hippocampal development in childhood onset schizophrenia,Article,Rapoport,NIMH +https://api.elsevier.com/content/abstract/scopus_id/0036337907,Judith L. Rapoport;Nitin Gogtay;Jay Giedd,50,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0036337907&origin=inward,10.1001/archneur.59.8.1244,2002-08-19,"('2-s2.0-0036337907', 'Rapoport')",,1244-1248,12164719.0,36337907,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0036337907&origin=inward,Rapoport,Archives of Neurology,"Brain development in healthy, hyperactive, and psychotic children",Review,Rapoport,NIMH +https://api.elsevier.com/content/abstract/scopus_id/0038402732,Judith L. Rapoport;Liv S. Clasen;Hong Liu;Jonathan Blumenthal;Audrey Keller;Neal O. Jeffries;Jay N. Giedd,44,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0038402732&origin=inward,10.1016/S0920-9964(02)00354-7,2003-07-01,"('2-s2.0-0038402732', 'Rapoport')",,105-114,12765750.0,38402732,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0038402732&origin=inward,Rapoport,Schizophrenia Research,Corpus callosum development in childhood-onset schizophrenia,Article,Rapoport,NIMH +https://api.elsevier.com/content/abstract/scopus_id/0034937483,Judith L. Rapoport;Sanjiv Kumra;Rob Nicolson;Frances Brookner;Peter Gochman;Lori Spechler;Gunvant K. Thaker;Marianne Wudarsky;Jay N. Giedd;Marge Lenane,41,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0034937483&origin=inward,10.1053/comp.2001.24573,2001-01-01,"('2-s2.0-0034937483', 'Rapoport')",,319-325,11458307.0,34937483,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0034937483&origin=inward,Rapoport,Comprehensive Psychiatry,Children and adolescents with psychotic disorder not otherwise specified: A 2- to 8-year follow-up study,Article,Rapoport,NIMH +https://api.elsevier.com/content/abstract/scopus_id/79960283056,Judith L. Rapoport;Yohan Lee;Nitin Gogtay;Anjene Addington;Armin Raznahan;Pete Gochman;Robert Long;Liv Clasen;Jay N. Giedd;Deanna Greenstein,38,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79960283056&origin=inward,10.1016/j.neuroimage.2011.05.032,2011-08-15,"('2-s2.0-79960283056', 'Raznahan')",NIH,1517-1523,21620981.0,79960283056,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79960283056&origin=inward,Raznahan,NeuroImage,"Catechol-o-methyl transferase (COMT) val158met polymorphism and adolescent cortical development in patients with childhood-onset schizophrenia, their non-psychotic siblings, and healthy controls",Article,Raznahan,NIMH +https://api.elsevier.com/content/abstract/scopus_id/79959662116,Judith L. Rapoport;Julia W. Tossell;Nitin Gogtay;Reva Stidd;Brian Weisinger;Anand A. Mattai;Liv Clasen;Rachel Miller;Deanna Greenstein,40,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79959662116&origin=inward,10.1016/j.jaac.2011.03.016,2011-07-01,"('2-s2.0-79959662116', 'Rapoport')",,697-704,21703497.0,79959662116,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79959662116&origin=inward,Rapoport,Journal of the American Academy of Child and Adolescent Psychiatry,Normalization of cortical gray matter deficits in nonpsychotic siblings of patients with childhood-onset schizophrenia,Article,Rapoport,NIMH +https://api.elsevier.com/content/abstract/scopus_id/79955142750,Nitin Gogtay;Reva Stidd;Brian Weisinger;Francois Lalonde;Avinash Hosanagar;Anand Mattai;Liv Clasen;Judith Rapoport;Deanna Greenstein,36,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79955142750&origin=inward,10.1176/appi.ajp.2010.10050681,2011-04-01,"('2-s2.0-79955142750', 'Rapoport')",,427-435,21245087.0,79955142750,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79955142750&origin=inward,Rapoport,American Journal of Psychiatry,Hippocampal volume development in healthy siblings of childhood-onset schizophrenia patients,Article,Rapoport,NIMH +https://api.elsevier.com/content/abstract/scopus_id/71549142556,Alex Chavez;Nitin Gogtay;Reva Stidd;Jennifer Bakalar;Anand Mattai;Liv Clasen;Judith Rapoport;Deanna Greenstein,29,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=71549142556&origin=inward,10.1016/j.schres.2009.10.018,2010-01-01,"('2-s2.0-71549142556', 'Rapoport')",NIMH,44-48,19913390.0,71549142556,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=71549142556&origin=inward,Rapoport,Schizophrenia Research,Effects of clozapine and olanzapine on cortical thickness in childhood-onset schizophrenia,Article,Rapoport,NIMH +https://api.elsevier.com/content/abstract/scopus_id/79954911270,Liv Clasen;Mary Gilliam;Francois Lalonde;Meaghan Malek;Jay Giedd;Philip Shaw;Michael Stockman;Judith Rapoport;Wendy Sharp;Deanna Greenstein,34,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79954911270&origin=inward,10.1016/j.biopsych.2010.11.024,2011-05-01,"('2-s2.0-79954911270', 'Rapoport')",NIMH,839-846,21247556.0,79954911270,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79954911270&origin=inward,Rapoport,Biological Psychiatry,Developmental trajectories of the corpus callosum in attention-deficit/ hyperactivity disorder,Article,Rapoport,NIMH +https://api.elsevier.com/content/abstract/scopus_id/80051704258,Alex Chavez;Nitin Gogtay;Judith Rapoport;Liv Clausen;Lan Tran;Rhoshel Lenroot;A. C. Vaituzis;Deanna Greenstein,25,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=80051704258&origin=inward,10.1016/j.pscychresns.2011.02.010,2011-09-30,"('2-s2.0-80051704258', 'Rapoport')",,131-137,21803550.0,80051704258,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=80051704258&origin=inward,Rapoport,Psychiatry Research - Neuroimaging,Cerebellar development in childhood onset schizophrenia and non-psychotic siblings,Article,Rapoport,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84866046475,Alex Chavez;Arthur W. Toga;Nitin Gogtay;Judith L. Rapoport;Christina P. Boyle;Reva Stidd;Brian Weisinger;Paul M. Thompson;Xue Hua;Suh Lee;Jay N. Giedd;Liv Clasen,24,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84866046475&origin=inward,10.1001/archgenpsychiatry.2011.2084,2012-09-01,"('2-s2.0-84866046475', 'Rapoport')",,875-884,22945617.0,84866046475,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84866046475&origin=inward,Rapoport,Archives of General Psychiatry,Delayed white matter growth trajectory in young nonpsychotic siblings of patients with childhood-onset schizophrenia,Article,Rapoport,NIMH +https://api.elsevier.com/content/abstract/scopus_id/0001357913,Nitin Gogate;Judith L. Rapoport;Kristin Janson;Jay Giedd,20,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0001357913&origin=inward,10.1016/S1566-2772(01)00014-7,2001-01-01,"('2-s2.0-0001357913', 'Rapoport')",,283-290,,1357913,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0001357913&origin=inward,Rapoport,Clinical Neuroscience Research,Brain imaging in normal and abnormal brain development: New perspectives for child psychiatry,Article,Rapoport,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84876782347,Nitin Gogtay;Sarah L.M. Johnson;Kathryn I. Alpert;Francois Lalonde;Lei Wang;Liv Clasen;Judith Rapoport;Rachel Miller;Deanna Greenstein,22,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84876782347&origin=inward,10.1016/j.jaac.2013.02.003,2013-01-01,"('2-s2.0-84876782347', 'Rapoport')",NIH,,23622854.0,84876782347,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84876782347&origin=inward,Rapoport,Journal of the American Academy of Child and Adolescent Psychiatry,Hippocampal shape abnormalities of patients with childhood-onset schizophrenia and their unaffected siblings,Article,Rapoport,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84925273002,Judith L. Rapoport;M. Mallar Chakravarty;Nitin Gogtay;D. Louis Collins;Armin Raznahan;Philip Shaw;Jason P. Lerch;Jay N. Giedd,35,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84925273002&origin=inward,10.1002/hbm.22715,2015-04-01,"('2-s2.0-84925273002', 'Rapoport')",NSERC,1458-1469,25504933.0,84925273002,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84925273002&origin=inward,Rapoport,Human Brain Mapping,Striatal shape abnormalities as novel neurodevelopmental endophenotypes in schizophrenia: A longitudinal study,Article,Rapoport,NIMH +https://api.elsevier.com/content/abstract/scopus_id/55249124339,Judith L. Rapoport;Nitin Gogtay;Sarah Wolfe;Peter Gochman;Deanna K. Greenstein,14,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=55249124339&origin=inward,10.1097/CHI.0b013e3181825b0c,2008-01-01,"('2-s2.0-55249124339', 'Rapoport')",,1133-1140,18724254.0,55249124339,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=55249124339&origin=inward,Rapoport,Journal of the American Academy of Child and Adolescent Psychiatry,Remission status and cortical thickness in childhood-onset schizophrenia,Article,Rapoport,NIMH +https://api.elsevier.com/content/abstract/scopus_id/70349412917,Judith L. Rapoport;Julia W. Tossell;Nitin Gogtay;Alan C. Evans;Anand A. Mattai;Jennifer L. Bakalar;Rachel Miller;Liv Clasen;Deanna K. Greenstein,12,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=70349412917&origin=inward,10.1016/j.schres.2009.07.026,2009-11-01,"('2-s2.0-70349412917', 'Rapoport')",NIMH,12-16,19734017.0,70349412917,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=70349412917&origin=inward,Rapoport,Schizophrenia Research,General absence of abnormal cortical asymmetry in childhood-onset schizophrenia: A longitudinal study,Article,Rapoport,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84872837908,Nitin Gogtay;Sarah L.M. Johnson;Francois Lalonde;Liv Clasen;Judith Rapoport;Rachel Miller;Deanna Greenstein,12,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84872837908&origin=inward,10.1016/j.pscychresns.2012.09.013,2013-01-30,"('2-s2.0-84872837908', 'Rapoport')",NIH,11-16,23154096.0,84872837908,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84872837908&origin=inward,Rapoport,Psychiatry Research - Neuroimaging,Absence of anatomic corpus callosal abnormalities in childhood-onset schizophrenia patients and healthy siblings,Article,Rapoport,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84865340281,Judith L. Rapoport;Nitin Gogtay;Reva Stidd;Brian Weisinger;Oscar Fernandez de la Vega;Deanna Greenstein;Jennifer L. Bakalar;Rachel Miller;Liv Clasen,10,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84865340281&origin=inward,10.1016/j.schres.2012.07.006,2012-09-01,"('2-s2.0-84865340281', 'Rapoport')",,149-154,22835806.0,84865340281,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84865340281&origin=inward,Rapoport,Schizophrenia Research,Psychotic symptoms and gray matter deficits in clinical pediatric populations,Article,Rapoport,NIMH +https://api.elsevier.com/content/abstract/scopus_id/37849007193,Judith L. Rapoport;Philip Shaw,6,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=37849007193&origin=inward,10.1097/chi.0b013e31815aac83,2008-01-01,"('2-s2.0-37849007193', 'Rapoport')",,2-3,18174819.0,37849007193,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=37849007193&origin=inward,Rapoport,Journal of the American Academy of Child and Adolescent Psychiatry,Defining the contribution of genetic risk to structural and functional anomalies in ADHD,Editorial,Rapoport,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84938738172,J. L. Rapoport;P. Gochman;L. A. Friedman;N. Gogtay;A. A. Anvari;D. Greenstein,5,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84938738172&origin=inward,10.1017/S0033291715000677,2015-01-01,"('2-s2.0-84938738172', 'Rapoport')",,2667-2674,25936396.0,84938738172,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84938738172&origin=inward,Rapoport,Psychological Medicine,Hippocampal volume change relates to clinical outcome in childhood-onset schizophrenia,Article,Rapoport,NIMH +https://api.elsevier.com/content/abstract/scopus_id/77957890548,Nitin Gogtay;Judith Rapoport;Dolores Moreno;David Fraguas;Celso Arango;Carmen Moreno;Manuel Desco;Anthony James;Salvador Martinez;Mara Parellada,0,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77957890548&origin=inward,10.1684/ipe.2010.0650,2010-06-01,"('2-s2.0-77957890548', 'Rapoport')",,513-527,,77957890548,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77957890548&origin=inward,Rapoport,Information Psychiatrique,Longitudinal brain Changes in early-onset psychosis,Article,Rapoport,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84982786684,Megan M. Herting;Kathryn L. Mills;Sarah Jayne Blakemore;Anne Lise Goddings;Rosa Meuwese;Ronald E. Dahl;Berna Güroğlu;Armin Raznahan;Elizabeth R. Sowell;Eveline A. Crone;Christian K. Tamnes,128,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84982786684&origin=inward,10.1016/j.neuroimage.2016.07.044,2016-11-01,"('2-s2.0-84982786684', 'Raznahan')",UiO,273-281,27453157.0,84982786684,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84982786684&origin=inward,Raznahan,NeuroImage,Structural brain development between childhood and adulthood: Convergence across four longitudinal samples,Article,Raznahan,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84974711219,Aaron Alexander-Bloch;Michael Stockman;Francois Lalonde;Armin Raznahan;Liv Clasen;Jay Giedd;Lisa Ronan,58,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84974711219&origin=inward,10.1002/hbm.23180,2016-07-01,"('2-s2.0-84974711219', 'Raznahan')",,2385-2397,27004471.0,84974711219,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84974711219&origin=inward,Raznahan,Human Brain Mapping,Subtle in-scanner motion biases automated measurement of brain anatomy from in vivo MRI,Article,Raznahan,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84964614347,Alex Martin;Nitin Gogtay;Harrison M. McAdams;Rebecca E. Watsky;Dede Greenstein;Stephen J. Gotts;Francois Lalonde;Armin Raznahan;Rebecca A. Berman;Liv Clasen;Judith Rapoport;Anna E. Ordonez;Lorie Shora,42,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84964614347&origin=inward,10.1093/brain/awv306,2016-01-01,"('2-s2.0-84964614347', 'Raznahan')",NIMH,276-291,26493637.0,84964614347,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84964614347&origin=inward,Raznahan,Brain,Disrupted sensorimotor and social-cognitive networks underlie symptoms in childhoodonset schizophrenia,Article,Raznahan,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84981249262,Liv S. Clasen;Nitin Gogtay;François M. Lalonde;David I. Driver;Elizabeth I. Adeyemi;Amy Lin;Armin Raznahan;Ellen Condon;Philip Shaw;Jay N. Giedd;Nancy Raitano Lee,23,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84981249262&origin=inward,10.1093/cercor/bhv107,2016-01-01,"('2-s2.0-84981249262', 'Shaw')",NIMH,2982-2990,26088974.0,84981249262,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84981249262&origin=inward,Shaw,Cerebral Cortex,Dissociations in cortical morphometry in youth with down syndrome: Evidence for reduced surface area but increased thickness,Article,Shaw,NHGRI +https://api.elsevier.com/content/abstract/scopus_id/84959421386,M. Mallar Chakravarty;Paul Kirkpatrick Reardon;Jonathan Blumenthal;Armin Raznahan;Jason P. Lerch;Liv Clasen;Jay N. Giedd,22,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84959421386&origin=inward,10.1523/JNEUROSCI.3195-15.2016,2016-02-24,"('2-s2.0-84959421386', 'Raznahan')",,2438-2448,26911691.0,84959421386,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84959421386&origin=inward,Raznahan,Journal of Neuroscience,An allometric analysis of sex and sex chromosome dosage effects on subcortical anatomy in humans,Article,Raznahan,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84974667659,Cristan Farmer;Armin Raznahan;Jay Giedd;Audrey Thurm;Elizabeth Smith;Susan Swedo;Deanna Greenstein,20,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84974667659&origin=inward,10.1002/hbm.23195,2016-07-01,"('2-s2.0-84974667659', 'Thurm')",NIMH,2616-2629,27061356.0,84974667659,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84974667659&origin=inward,Thurm,Human Brain Mapping,Cortical thickness change in autism during early childhood,Article,Thurm,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84959428581,Gregory L. Wallace;Liv S. Clasen;Armin Raznahan;Deanna Greenstein;Jay N. Giedd;Jonathan D. Blumenthal;Nancy Raitano Lee,19,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84959428581&origin=inward,10.1093/cercor/bhu174,2016-01-01,"('2-s2.0-84959428581', 'Raznahan')",,70-79,25146371.0,84959428581,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84959428581&origin=inward,Raznahan,Cerebral Cortex,Globally Divergent but Locally Convergent X- and Y-Chromosome Influences on Cortical Development,Article,Raznahan,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84960349719,D. Rivière;C. Tissier;J. F. Mangin;M. Plaze;A. Raznahan;O. Gay;A. Cachia;O. Houdé;N. Gogtay;J. Giedd;C. Fisher;G. Borst,17,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84960349719&origin=inward,10.1016/j.dcn.2016.02.011,2016-06-01,"('2-s2.0-84960349719', 'Raznahan')",,122-127,26974743.0,84960349719,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84960349719&origin=inward,Raznahan,Developmental Cognitive Neuroscience,Longitudinal stability of the folding pattern of the anterior cingulate cortex during development,Article,Raznahan,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84942313058,Ronald Swerdloff;Christina Wang;Frank Probst;Jason Lerch;Armin Raznahan;Deanna Greenstein;Jay Giedd;Yan He Lue,11,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84942313058&origin=inward,10.1007/s00429-014-0875-9,2015-11-26,"('2-s2.0-84942313058', 'Raznahan')",,3581-3593,25146308.0,84942313058,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84942313058&origin=inward,Raznahan,Brain Structure and Function,Triangulating the sexually dimorphic brain through high-resolution neuroimaging of murine sex chromosome aneuploidies,Article,Raznahan,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84961836759,Kosha Ruparel;Simon N. Vandekar;Raquel E. Gur;Russell T. Shinohara;David R. Roalf;Theodore D. Satterthwaite;Armin Raznahan;Ruben C. Gur;Ryan D. Hopson,7,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84961836759&origin=inward,10.1016/j.neuroimage.2016.03.002,2016-06-01,"('2-s2.0-84961836759', 'Raznahan')",NIMH,88-97,26956908.0,84961836759,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84961836759&origin=inward,Raznahan,NeuroImage,Subject-level measurement of local cortical coupling,Article,Raznahan,NIMH +https://api.elsevier.com/content/abstract/scopus_id/85048179321,Liv S. Clasen;M. Mallar Chakravarty;Aaron Alexander-Bloch;Raquel E. Gur;P. K. Reardon;Min Tae M. Park;Russell T. Shinohara;Raihaan Patel;Theodore D. Satterthwaite;Ruben C. Gur;Armin Raznahan;Jay N. Giedd;Simon Vandekar;Jason P. Lerch;Siyuan Liu;Francois M. Lalonde;Jakob Seidlitz;Jonathan D. Blumenthal,36,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85048179321&origin=inward,10.1126/science.aar2578,2018-01-01,"('2-s2.0-85048179321', 'Raznahan')",NIH,1222-1227,29853553.0,85048179321,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85048179321&origin=inward,Raznahan,Science,Normative brain size variation and brain shape diversity in humans,Article,Raznahan,NIMH +https://api.elsevier.com/content/abstract/scopus_id/79960839634,Roger D. Stone;Iordanis E. Evangelou;Bibiana Bielekova;Daniel S. Reich;Colin D. Shea;Luca Massacesi;María I. Gaitán;Kaylan M. Fenton,102,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79960839634&origin=inward,10.1002/ana.22472,2011-07-01,"('2-s2.0-79960839634', 'Bielekova')",,22-29,21710622.0,79960839634,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79960839634&origin=inward,Bielekova,Annals of Neurology,Evolution of the blood-brain barrier in newly forming multiple sclerosis lesions,Article,Bielekova,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84899618667,Ian T. Lamborn;Emily S. Kim;Lynne A. Wolfe;Joshua McElwee;Kelly D. Stone;Alexandra F. Freeman;Helen F. Matthews;Sarah M. Kranick;Joshua D. Milner;Hudson H. Freeze;Jonathan J. Lyons;Matthew Biancalana;Mie Ichikawa;Helen C. Su;Jason D. Hughes;Huie Jing;Xiaomin Yu;Shrimati Datta;Huseyin Mehmet;Daniel S. Reich;Thomas Dimaggio;Steven M. Holland;Yu Zhang,116,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84899618667&origin=inward,10.1016/j.jaci.2014.02.013,2014-01-01,"('2-s2.0-84899618667', 'Reich')",,,24589341.0,84899618667,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84899618667&origin=inward,Reich,Journal of Allergy and Clinical Immunology,"Autosomal recessive phosphoglucomutase 3 (PGM3) mutations link glycosylation defects to atopy, immune deficiency, autoimmunity, and neurocognitive impairment",Article,Reich,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84937010544,Luisa Vuolo;Joan Ohayon;Govind Nair;Pascal Sati;Martina Absinta;María I. Reyes-Mantilla;Dragan Maric;Daniel S. Reich;Carlos A. Pardo;Anuradha Rao;Kaylan Fenton;Irene C.M. Cortese;John A. Butman;Peter A. Calabresi,114,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84937010544&origin=inward,10.1212/WNL.0000000000001587,2015-01-01,"('2-s2.0-84937010544', 'Cortese')",,18-28,25888557.0,84937010544,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84937010544&origin=inward,Cortese,Neurology,Gadolinium-based MRI characterization of leptomeningeal inflammation in multiple sclerosis,Article,Cortese,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84890796734,Pascal Sati;Martina Absinta;Daniel S. Reich;Massimo Filippi;Irene C.M. Cortese;Pietro Maggi;María I. Gaitán,79,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84890796734&origin=inward,10.1002/ana.23959,2013-11-01,"('2-s2.0-84890796734', 'Cortese')",,669-678,,84890796734,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84890796734&origin=inward,Cortese,Annals of Neurology,Seven-tesla phase imaging of acute multiple sclerosis lesions: A new window into the inflammatory process,Article,Cortese,NINDS +https://api.elsevier.com/content/abstract/scopus_id/83055181237,Pascal Sati;Daniel S. Reich;Steven Jacobson;Peter van Gelderen;Afonso C. Silva;Jeff H. Duyn;Jillian E. Wohler;Maria I. Gaitan,47,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=83055181237&origin=inward,10.1016/j.neuroimage.2011.08.064,2012-01-16,"('2-s2.0-83055181237', 'Jacobson')",NINDS,979-985,21906687.0,83055181237,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=83055181237&origin=inward,Jacobson,NeuroImage,In vivo quantification of T 2* anisotropy in white matter fibers in marmoset monkeys,Article,Jacobson,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84906852811,Elizabeth M. Sweeney;Daniel S. Reich;Farrah J. Mateen;Russell T. Shinohara;Dzung L. Pham;Navid Shiee;Samson Jarso;Jeff Goldsmith;Ciprian M. Crainiceanu;Peter A. Calabresi,110,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84906852811&origin=inward,10.1016/j.nicl.2014.08.008,2014-01-01,"('2-s2.0-84906852811', 'Reich')",NINDS,9-19,25379412.0,84906852811,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84906852811&origin=inward,Reich,NeuroImage: Clinical,Statistical normalization techniques for magnetic resonance imaging,Article,Reich,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84994718072,Amal P.R. Samaraweera;Russell T. Shinohara;William D. Rooney;R. Todd Constable;Charles R.G. Guttmann;Raymond A. Sobel;Eric C. Klawiter;Constantina A. Treaba;Nancy L. Sicotte;Alexander Rauscher;Luca Massacesi;Nikos Evangelou;Pascal Sati;Daniel Ontaneda;Flavia Nelson;Jens Wuerfel;Henry McFarland;Caterina Mainero;Robert Zivadinov;Daniel S. Reich;Jiwon Oh;Roland G. Henry;Daniel Pelletier;Andrew J. Solomon,99,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84994718072&origin=inward,10.1038/nrneurol.2016.166,2016-12-01,"('2-s2.0-84994718072', 'McFarland')",NINDS,714-722,27834394.0,84994718072,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84994718072&origin=inward,McFarland,Nature Reviews Neurology,The central vein sign and its clinical evaluation for the diagnosis of multiple sclerosis: A consensus statement from the North American Imaging in Multiple Sclerosis Cooperative,Article,McFarland,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84886437216,Govind Nair;Jerry L. Prince;Daniel S. Reich;Dzung L. Pham;Jiwon Oh;Min Chen;Aaron Carass,48,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84886437216&origin=inward,10.1016/j.neuroimage.2013.07.060,2013-12-01,"('2-s2.0-84886437216', 'Reich')",NINDS,1051-1062,23927903.0,84886437216,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84886437216&origin=inward,Reich,NeuroImage,Automatic magnetic resonance spinal cord segmentation with topology constraints for variable fields of view,Article,Reich,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84875897566,Elizabeth M. Sweeney;Avni A. Chudgar;Daniel S. Reich;Farrah J. Mateen;Russell T. Shinohara;Dzung L. Pham;Navid Shiee;Jennifer L. Cuzzocreo;Ciprian M. Crainiceanu;Peter A. Calabresi,50,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84875897566&origin=inward,10.1016/j.nicl.2013.03.002,2013-04-11,"('2-s2.0-84875897566', 'Reich')",NINDS,402-413,,84875897566,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84875897566&origin=inward,Reich,NeuroImage: Clinical,"OASIS is Automated Statistical Inference for Segmentation, with applications to multiple sclerosis lesion segmentation in MRI",Article,Reich,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84870722172,Mika Komori;Bibiana Bielekova;Daniel S. Reich;Tianxia Wu;Quangang Xu,42,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84870722172&origin=inward,10.1371/journal.pone.0048370,2012-11-30,"('2-s2.0-84870722172', 'Bielekova')",,,23226202.0,84870722172,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84870722172&origin=inward,Bielekova,PLoS ONE,"Cerebrospinal Fluid IL-12p40, CXCL13 and IL-8 as a Combinatorial Biomarker of Active Intrathecal Inflammation",Article,Bielekova,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84879774994,Souheil J. Inati;Pascal Sati;María I. Gaitán;Daniel S. Reich,29,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84879774994&origin=inward,10.1177/1352458512471093,2013-01-01,"('2-s2.0-84879774994', 'Reich')",,1068-1073,,84879774994,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84879774994&origin=inward,Reich,Multiple Sclerosis Journal,Initial investigation of the blood-brain barrier in MS lesions at 7 tesla,Article,Reich,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84873668041,R. T. Shinohara;E. M. Sweeney;C. M. Crainiceanu;D. S. Reich;C. D. Shea,37,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84873668041&origin=inward,10.3174/ajnr.A3172,2013-01-01,"('2-s2.0-84873668041', 'Reich')",,68-73,22766673.0,84873668041,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84873668041&origin=inward,Reich,American Journal of Neuroradiology,Automatic lesion incidence estimation and detection in multiple sclerosis using multisequence longitudinal MRI,Article,Reich,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84873638442,Govind Nair;Pascal Sati;Daniel S. Reich;Manori P. De Alwis;María I. Gaitán,27,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84873638442&origin=inward,10.1212/WNL.0b013e31827b916f,2013-01-08,"('2-s2.0-84873638442', 'Reich')",,145-151,23255828.0,84873638442,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84873638442&origin=inward,Reich,Neurology,"Multiple sclerosis shrinks intralesional, and enlarges extralesional, brain parenchymal veins",Article,Reich,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84888187456,Govind Nair;D. S. Reich;M. Absinta,31,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84888187456&origin=inward,10.3174/ajnr.A3637,2013-11-01,"('2-s2.0-84888187456', 'Reich')",NIH,2215-2222,23764721.0,84888187456,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84888187456&origin=inward,Reich,American Journal of Neuroradiology,Optimized T1-MPRAGE sequence for better visualization of spinal cord multiple sclerosis lesions at 3T,Article,Reich,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84940979990,Elizabeth Sweeney;Jerry L. Prince;Daniel S. Reich;Dzung L. Pham;Aaron Carass;Snehashis Roy;Qing He,44,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84940979990&origin=inward,10.1109/JBHI.2015.2439242,2015-09-01,"('2-s2.0-84940979990', 'Reich')",NINDS,1598-1609,26340685.0,84940979990,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84940979990&origin=inward,Reich,IEEE Journal of Biomedical and Health Informatics,Subject-Specific Sparse Dictionary Learning for Atlas-Based Brain MRI Segmentation,Article,Reich,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84978431594,Joan Ohayon;Pascal Sati;Martina Absinta;Daniel S. Reich;Steven Jacobson;Emily C. Leibovitch;Alessandro Meani;Massimo Filippi;Tianxia Wu;Irene C.M. Cortese;Matthew Schindler,49,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84978431594&origin=inward,10.1172/JCI86198,2016-07-01,"('2-s2.0-84978431594', 'Jacobson')",NINDS,2597-2609,27270171.0,84978431594,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84978431594&origin=inward,Jacobson,Journal of Clinical Investigation,Persistent 7-tesla phase rim predicts poor outcome in new multiple sclerosis patient lesions,Article,Jacobson,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84872800724,Joan Ohayon;Roger D. Stone;Blake C. Jones;John Ostuni;Bibiana Bielekova;Daniel S. Reich;Colin D. Shea;Navid Shiee;Henry McFarland;Isabela T. Borges,21,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84872800724&origin=inward,10.1016/j.msard.2012.10.002,2013-04-01,"('2-s2.0-84872800724', 'McFarland')",NINDS,133-140,,84872800724,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84872800724&origin=inward,McFarland,Multiple Sclerosis and Related Disorders,The effect of daclizumab on brain atrophy in relapsing-remitting multiple sclerosis,Article,McFarland,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84883353846,Govind Nair;Blake C. Jones;Daniel S. Reich;Colin D. Shea;Irene C.M. Cortese;Ciprian M. Crainiceanu,25,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84883353846&origin=inward,10.1016/j.nicl.2013.08.001,2013-09-09,"('2-s2.0-84883353846', 'Cortese')",NINDS,171-179,,84883353846,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84883353846&origin=inward,Cortese,NeuroImage: Clinical,Quantification of multiple-sclerosis-related brain atrophy in two heterogeneous MRI datasets using mixed-effects modeling,Article,Cortese,NINDS +https://api.elsevier.com/content/abstract/scopus_id/79960253679,Daniel S. Reich;Russell T. Shinohara;María Inés Gaitán;Ciprian M. Crainiceanu;Brian S. Caffo,24,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79960253679&origin=inward,10.1016/j.neuroimage.2011.05.038,2011-08-15,"('2-s2.0-79960253679', 'Reich')",,1430-1446,21635955.0,79960253679,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79960253679&origin=inward,Reich,NeuroImage,Population-wide principal component-based quantification of blood-brain-barrier dynamics in multiple sclerosis,Article,Reich,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84890842607,J. O. Virtanen;J. Wohler;D. S. Reich;S. Jacobson;K. Fenton,26,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84890842607&origin=inward,10.1177/1352458513490545,2014-01-01,"('2-s2.0-84890842607', 'Reich')",NINDS,27-34,23722324.0,84890842607,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84890842607&origin=inward,Reich,Multiple Sclerosis,Oligoclonal bands in multiple sclerosis reactive against two herpesviruses and association with magnetic resonance imaging findings,Article,Reich,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84904747084,Govind Nair;Martina Absinta;Abhik Ray-Chaudhury;Daniel S. Reich;Maria I. Reyes-Mantilla;Massimo Filippi;Carlos A. Pardo,25,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84904747084&origin=inward,10.1097/NEN.0000000000000096,2014-01-01,"('2-s2.0-84904747084', 'Reich')",,780-788,25007244.0,84904747084,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84904747084&origin=inward,Reich,Journal of Neuropathology and Experimental Neurology,"Postmortem magnetic resonance imaging to guide the pathologic cut: Individualized, 3-dimensionally printed cutting boxes for fixed brains",Article,Reich,NINDS +https://api.elsevier.com/content/abstract/scopus_id/85012951357,Govind Nair;Pascal Sati;Martina Absinta;Daniel S. Reich;Massimo Filippi;Irene C.M. Cortese,17,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85012951357&origin=inward,10.1212/NXI.0000000000000145,2015-10-01,"('2-s2.0-85012951357', 'Cortese')",,e145,,85012951357,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85012951357&origin=inward,Cortese,Neurology: Neuroimmunology and NeuroInflammation,Direct MRI detection of impending plaque development in multiple sclerosis,Article,Cortese,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84907878924,Luisa Vuolo;Govind Nair;Daniel S. Reich;Steven Jacobson;Raya Massoud;Anshika Bakshi;Winston Liu,20,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84907878924&origin=inward,10.1002/ana.24213,2014-01-01,"('2-s2.0-84907878924', 'Reich')",NIH,370-378,25042583.0,84907878924,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84907878924&origin=inward,Reich,Annals of Neurology,In vivo imaging of spinal cord atrophy in neuroinflammatory diseases,Article,Reich,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84958124512,Charles C. White;Tanuja Chitnis;Phoebe A. Winn;Emily K. Owen;Daniel S. Reich;Philip L. De Jager;Sonya U. Steele;Howard L. Weiner;Zongqi Xia;Alina Von Korff;Cristin A. McCabe;Maria Cimpean;Lori B. Chibnik;Irene C.M. Cortese;Ashley Hoesing;Sarah R. Clarkson,24,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84958124512&origin=inward,10.1002/ana.24560,2016-02-01,"('2-s2.0-84958124512', 'Cortese')",NIH,178-189,26583565.0,84958124512,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84958124512&origin=inward,Cortese,Annals of Neurology,Genes and Environment in Multiple Sclerosis project: A platform to investigate multiple sclerosis risk,Article,Cortese,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84991392284,Pascal Sati;Elizabeth M. Sweeney;Martina Absinta;Daniel S. Reich;Colin D. Shea;Ilena C. George;Irene C.M. Cortese,13,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84991392284&origin=inward,10.1177/1352458515624975,2016-10-01,"('2-s2.0-84991392284', 'Cortese')",NINDS,1578-1586,26769065.0,84991392284,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84991392284&origin=inward,Cortese,Multiple Sclerosis,Clinical 3-tesla FLAIR∗ MRI improves diagnostic accuracy in multiple sclerosis,Article,Cortese,NINDS +https://api.elsevier.com/content/abstract/scopus_id/85018636444,Luisa Vuolo;Joan Ohayon;Govind Nair;Roberta Scotti;Martina Absinta;Daniel S. Reich;Vittorio Martinelli;Steven Jacobson;Alessandro Meani;Massimo Filippi;Bryan R. Smith;Irene C.M. Cortese;Manori P. De Alwis;Andrea Falini;Avindra Nath,30,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85018636444&origin=inward,10.1212/WNL.0000000000003820,2017-04-11,"('2-s2.0-85018636444', 'Cortese')",,1439-1444,28283598.0,85018636444,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85018636444&origin=inward,Cortese,Neurology,Leptomeningeal gadolinium enhancement across the spectrum of chronic neuroinflammatory diseases,Article,Cortese,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84866412406,J. Goldsmith;Russell T. Shinohara;F. J. Mateen;D. S. Reich;C. Crainiceanu,16,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84866412406&origin=inward,10.3174/ajnr.A2997,2012-09-01,"('2-s2.0-84866412406', 'Reich')",,1586-1590,22442041.0,84866412406,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84866412406&origin=inward,Reich,American Journal of Neuroradiology,Predicting breakdown of the blood-brain barrier in multiple sclerosis without contrast agents,Article,Reich,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84899723552,Elizabeth M. Sweeney;Daniel S. Reich;Joshua T. Vogelstein;Russell T. Shinohara;Jennifer L. Cuzzocreo;Ciprian M. Crainiceanu;Peter A. Calabresi,19,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84899723552&origin=inward,10.1371/journal.pone.0095753,2014-04-29,"('2-s2.0-84899723552', 'Reich')",NINDS,,24781953.0,84899723552,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84899723552&origin=inward,Reich,PLoS ONE,A comparison of supervised machine learning algorithms and feature vectors for MS lesion segmentation using multimodal structural MRI,Article,Reich,NINDS +https://api.elsevier.com/content/abstract/scopus_id/85017649229,Joan Ohayon;Charles C. White;Govind Nair;Philip L. De Jager;Daniel S. Reich;Matthew K. Schindler;Sonya U. Steele;Zongqi Xia;Blake E. Dewey;Lauren R. Price;Anshika Bakshi;Lori B. Chibnik;Irene C.M. Cortese;Sarah R. Clarkson,15,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85017649229&origin=inward,10.1001/jamaneurol.2016.5056,2017-03-01,"('2-s2.0-85017649229', 'Cortese')",NINDS,293-300,28114441.0,85017649229,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85017649229&origin=inward,Cortese,JAMA Neurology,Assessment of early evidence of multiple sclerosis in a prospective study of asymptomatic high-risk family members,Article,Cortese,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84907212644,Elizabeth M. Sweeney;Daniel S. Reich;Russell T. Shinohara;Ani Eloyan;Jennifer L. Cuzzocreo;Martin A. Lindquist;Mary Beth Nebel;Ciprian M. Crainiceanu;Haochang Shou;Peter A. Calabresi,9,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84907212644&origin=inward,10.1371/journal.pone.0107263,2014-09-18,"('2-s2.0-84907212644', 'Reich')",,,25233361.0,84907212644,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84907212644&origin=inward,Reich,PLoS ONE,Health effects of lesion localization in multiple sclerosis: Spatial registration and confounding adjustment,Article,Reich,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84941944279,Govind Nair;Peter Van Gelderen;Daniel S. Reich;Natalia Gudino;Hellmut Merkle;Jeff H. Duyn;Joe Murphy-Boesch;Jacco A. De Zwart;Qi Duan,16,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84941944279&origin=inward,10.1002/mrm.25817,2015-10-01,"('2-s2.0-84941944279', 'Reich')",NIH,1189-1197,26190585.0,84941944279,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84941944279&origin=inward,Reich,Magnetic Resonance in Medicine,A 7T spine array based on electric dipole transmitters,Article,Reich,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84904065883,Govind Nair;Daniel S. Reich;Katherine C. Gao;Alan Koretsky;Irene C.M. Cortese,10,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84904065883&origin=inward,10.1016/j.neuroimage.2014.06.014,2014-10-15,"('2-s2.0-84904065883', 'Cortese')",NINDS,370-378,24945671.0,84904065883,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84904065883&origin=inward,Cortese,NeuroImage,Sub-millimeter imaging of brain-free water for rapid volume assessment in atrophic brains,Article,Cortese,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84940062307,Govind Nair;R. John Leigh;Daniel S. Reich;Anja K.E. Horn;Wolfgang Härtig;Sigrun Roeber;Scott D.Z. Eggers,7,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84940062307&origin=inward,10.1371/journal.pone.0132075,2015-07-02,"('2-s2.0-84940062307', 'Reich')",NINDS,,26135580.0,84940062307,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84940062307&origin=inward,Reich,PLoS ONE,Saccadic palsy following cardiac surgery: Possible role of perineuronal nets,Article,Reich,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84947284118,John Muschelli;Elizabeth M. Sweeney;Daniel S. Reich;Russell T. Shinohara;Matthew K. Schindler;Blake E. Dewey;Ani Eloyan;Ciprian M. Crainiceanu,9,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84947284118&origin=inward,10.1016/j.nicl.2015.10.013,2016-01-01,"('2-s2.0-84947284118', 'Reich')",NINDS,1-17,26693397.0,84947284118,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84947284118&origin=inward,Reich,NeuroImage: Clinical,Relating multi-sequence longitudinal intensity profiles and clinical covariates in incident multiple sclerosis lesions,Article,Reich,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84962611714,Govind Nair;Pascal Sati;Elizabeth M. Sweeney;Amanda F. Mejia;Daniel S. Reich;Russell T. Shinohara;Colin Shea;Blake Dewey,8,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84962611714&origin=inward,10.1016/j.neuroimage.2015.12.037,2016-06-01,"('2-s2.0-84962611714', 'Reich')",NINDS,176-188,26732403.0,84962611714,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84962611714&origin=inward,Reich,NeuroImage,Statistical estimation of T1 relaxation times using conventional magnetic resonance imaging,Article,Reich,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84928211283,Govind Nair;R. John Leigh;Daniel S. Reich;Anja K.E. Horn;Wolfgang Härtig;Sigrun Roeber;Scott D.Z. Eggers,4,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84928211283&origin=inward,10.1111/nyas.12666,2015-04-01,"('2-s2.0-84928211283', 'Reich')",NINDS,113-119,25721480.0,84928211283,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84928211283&origin=inward,Reich,Annals of the New York Academy of Sciences,Saccadic palsy following cardiac surgery: A review and new hypothesis,Article,Reich,NINDS +https://api.elsevier.com/content/abstract/scopus_id/85017455621,B. P. Turner;K. Schmierer;R. J.P. Smith;P. Sati;I. C. George;D. S. Reich;M. E. Miquel;T. Campion;J. Evanson;D. R. Altmann;G. C. Brito,24,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85017455621&origin=inward,10.1007/s00330-017-4822-z,2017-10-01,"('2-s2.0-85017455621', 'Reich')",HEFCE,4257-4263,28409356.0,85017455621,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85017455621&origin=inward,Reich,European Radiology,FLAIR* to visualize veins in white matter lesions: A new tool for the diagnosis of multiple sclerosis?,Article,Reich,NINDS +https://api.elsevier.com/content/abstract/scopus_id/85008601449,Seung Kwon Ha;Govind Nair;Pascal Sati;Martina Absinta;Wen Yang Chiang;Daniel S. Reich;Nicholas J. Luciano;Steven Jacobson;Emily C. Leibovitch;Afonso C. Silva;Joseph R. Guy,13,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85008601449&origin=inward,10.3791/54780,2016-12-06,"('2-s2.0-85008601449', 'Jacobson')",NINDS,,28060281.0,85008601449,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85008601449&origin=inward,Jacobson,Journal of Visualized Experiments,Utilizing 3D printing technology to merge MRI with histology: A protocol for brain sectioning,Article,Jacobson,NINDS +https://api.elsevier.com/content/abstract/scopus_id/85014851733,Joan Ohayon;Govind Nair;Pascal Sati;Martina Absinta;Kelly Yang;Daniel S. Reich;Arun Venkataraman;Colin Shea;Varun Sethi;Blake E. Dewey;Tianxia Wu;Irene C.M. Cortese,9,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85014851733&origin=inward,10.1177/1352458516655403,2017-03-01,"('2-s2.0-85014851733', 'Cortese')",NINDS,464-472,27339071.0,85014851733,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85014851733&origin=inward,Cortese,Multiple Sclerosis,Slowly eroding lesions in multiple sclerosis,Article,Cortese,NINDS +https://api.elsevier.com/content/abstract/scopus_id/85020726579,Antje Bischof;Ian Tagge;Eduardo Caverzasi;Nico Papinutto;Russell T. Shinohara;R. Todd Constable;Daniel Schwartz;Dzung L. Pham;Nancy L. Sicotte;Shahamat Tauhid;William A. Stern;Subhash Tummala;Snehashis Roy;Gina Kirkish;Govind Nair;William Rooney;Esha Datta;Daniel S. Reich;Rohit Bakshi;Jiwon Oh;Daniel Pelletier;Roland G. Henry;Peter A. Calabresi,11,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85020726579&origin=inward,10.1002/mrm.26776,2018-03-01,"('2-s2.0-85020726579', 'Reich')",NINDS,1595-1601,28617996.0,85020726579,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85020726579&origin=inward,Reich,Magnetic Resonance in Medicine,Gradient nonlinearity effects on upper cervical spinal cord area measurement from 3D T 1 -weighted brain MRI acquisitions,Article,Reich,NINDS +https://api.elsevier.com/content/abstract/scopus_id/85009231253,Elizabeth M. Sweeney;Amanda F. Mejia;Daniel S. Reich;Russell T. Shinohara;Blake E. Dewey;Ana Maria Staicu;Edgar J. Lobaton;Gina Maria Pomann,6,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85009231253&origin=inward,10.1214/16-AOAS981,2016-12-01,"('2-s2.0-85009231253', 'Reich')",NIH,2325-2348,,85009231253,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85009231253&origin=inward,Reich,Annals of Applied Statistics,A lag functional linear model for prediction of magnetization transfer ratio in multiple sclerosis lesions,Article,Reich,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84986550233,Carlos Romero;Pascal Sati;Daniel S. Reich;Paulina Yañes;Jorge Correale;María I. Gaitán,4,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84986550233&origin=inward,10.1177/1352458515615226,2016-09-01,"('2-s2.0-84986550233', 'Reich')",,1367-1370,26552729.0,84986550233,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84986550233&origin=inward,Reich,Multiple Sclerosis,"Optimal detection of infratentorial lesions with a combined dual-echo MRI sequence: ""pT2""",Article,Reich,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84982914633,Elizabeth M. Sweeney;Daniel S. Reich;Russell T. Shinohara;Matthew K. Schindler;Jordan D. Dworkin;Salim Chahin,2,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84982914633&origin=inward,10.1016/j.nicl.2016.07.015,2016-01-01,"('2-s2.0-84982914633', 'Reich')",NINDS,293-299,27551666.0,84982914633,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84982914633&origin=inward,Reich,NeuroImage: Clinical,PREVAIL: Predicting Recovery through Estimation and Visualization of Active and Incident Lesions,Article,Reich,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84926187349,María I. Gaitán;Daniel S. Reich,0,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84926187349&origin=inward,10.1002/9781118298633.ch4,2014-08-25,"('2-s2.0-84926187349', 'Reich')",,29-44,,84926187349,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84926187349&origin=inward,Reich,Multiple Sclerosis and CNS Inflammatory Disorders,MRI in Diagnosis and Disease Monitoring,Chapter,Reich,NINDS +https://api.elsevier.com/content/abstract/scopus_id/85020702984,Kevin H. Terashima;Daniel S. Reich,3,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85020702984&origin=inward,10.1016/S1474-4422(17)30174-6,2017-07-01,"('2-s2.0-85020702984', 'Reich')",NINDS,495-497,28653641.0,85020702984,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85020702984&origin=inward,Reich,The Lancet Neurology,Gadolinium deposition: practical guidelines in the face of uncertainty,Note,Reich,NINDS +https://api.elsevier.com/content/abstract/scopus_id/85010411149,Matthew K. Schindler;Pascal Sati;Daniel S. Reich,1,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85010411149&origin=inward,10.1016/j.nic.2016.12.006,2017-05-01,"('2-s2.0-85010411149', 'Reich')",NIH,357-366,28391792.0,85010411149,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85010411149&origin=inward,Reich,Neuroimaging Clinics of North America,Insights from Ultrahigh Field Imaging in Multiple Sclerosis,Review,Reich,NINDS +https://api.elsevier.com/content/abstract/scopus_id/85011385295,Daniel S. Reich,0,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85011385295&origin=inward,10.1177/1352458516666188,2017-01-01,"('2-s2.0-85011385295', 'Reich')",NINDS,19-20,,85011385295,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85011385295&origin=inward,Reich,Multiple Sclerosis,Visualization of cortical MS lesions with MRI need not be further improved - Commentary,Note,Reich,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84863723922,Alan Evans;Bethany Watson;Meaghan Malek;Philip Shaw;Wendy Sharp;Deanna Greenstein,188,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84863723922&origin=inward,10.1016/j.biopsych.2012.01.031,2012-08-01,"('2-s2.0-84863723922', 'Shaw')",NHGRI,191-197,22418014.0,84863723922,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84863723922&origin=inward,Shaw,Biological Psychiatry,Development of cortical surface area and gyrification in attention-deficit/hyperactivity disorder,Article,Shaw,NHGRI +https://api.elsevier.com/content/abstract/scopus_id/84884671868,Pietro De Rossi;Bethany Watson;Meaghan Malek;Philip Shaw;Wendy Sharp;Deanna Greenstein,144,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84884671868&origin=inward,10.1016/j.biopsych.2013.04.007,2013-10-15,"('2-s2.0-84884671868', 'Shaw')",NHGRI,599-606,23726514.0,84884671868,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84884671868&origin=inward,Shaw,Biological Psychiatry,Trajectories of cerebral cortical development in childhood and adolescence and adult attention-deficit/hyperactivity disorder,Article,Shaw,NHGRI +https://api.elsevier.com/content/abstract/scopus_id/84883746714,M. Mallar Chakravarty;Victoria Gu;D. Louis Collins;Matthijs C. van Eede;Patrick Steadman;Armin Raznahan;Philip Shaw;Jason P. Lerch;Rebecca D. Calcott,161,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84883746714&origin=inward,10.1002/hbm.22092,2013-10-01,"('2-s2.0-84883746714', 'Shaw')",,2635-2654,22611030.0,84883746714,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84883746714&origin=inward,Shaw,Human Brain Mapping,Performing label-fusion-based segmentation using multiple automatically generated templates,Article,Shaw,NHGRI +https://api.elsevier.com/content/abstract/scopus_id/70349754493,Cara Rabin;Philip Shaw,64,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=70349754493&origin=inward,10.1007/s11920-009-0059-0,2009-10-13,"('2-s2.0-70349754493', 'Shaw')",,393-398,19785981.0,70349754493,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=70349754493&origin=inward,Shaw,Current Psychiatry Reports,New insights into attention-deficit/hyperactivity disorder using structural neuroimaging,Review,Shaw,NHGRI +https://api.elsevier.com/content/abstract/scopus_id/77950623786,Philip Shaw,5,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77950623786&origin=inward,10.1176/appi.ajp.2010.10010037,2010-04-01,"('2-s2.0-77950623786', 'Shaw')",,363-365,20360322.0,77950623786,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77950623786&origin=inward,Shaw,American Journal of Psychiatry,The shape of things to come in attention defcit hyperactivity disorder,Editorial,Shaw,NHGRI +https://api.elsevier.com/content/abstract/scopus_id/77957943862,Christian Grillon;Jun Shen;Wayne C. Drevets;Jan Willem Van Der Veen;Gregor Hasler,66,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77957943862&origin=inward,10.1176/appi.ajp.2010.09070994,2010-10-01,"('2-s2.0-77957943862', 'Grillon')",,1226-1231,20634372.0,77957943862,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77957943862&origin=inward,Grillon,American Journal of Psychiatry,Effect of acute psychological stress on prefrontal GABA concentration determined by proton magnetic resonance spectroscopy,Article,Grillon,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84878237363,Li An;Shizhe Li;Jun Shen;Jan Willem Van Der Veen;David M. Thomasson,21,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84878237363&origin=inward,10.1002/jmri.23941,2013-06-01,"('2-s2.0-84878237363', 'Grillon')",,1445-1450,23172656.0,84878237363,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84878237363&origin=inward,Grillon,Journal of Magnetic Resonance Imaging,Combination of multichannel single-voxel MRS signals using generalized least squares,Article,Grillon,NIMH +https://api.elsevier.com/content/abstract/scopus_id/80054065714,Jun Shen;Yun Xiang,12,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=80054065714&origin=inward,10.1002/nbm.1653,2011-11-01,"('2-s2.0-80054065714', 'Grillon')",,1054-1062,21312308.0,80054065714,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=80054065714&origin=inward,Grillon,NMR in Biomedicine,In vivo detection of intermediate metabolic products of [1- 13C]ethanol in the brain using 13C MRS,Article,Grillon,NIMH +https://api.elsevier.com/content/abstract/scopus_id/34547806269,Stefano Marenco;Jun Shen;Yan Zhang,10,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34547806269&origin=inward,10.1002/mrm.21265,2007-07-01,"('2-s2.0-34547806269', 'Grillon')",,174-178,17659625.0,34547806269,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34547806269&origin=inward,Grillon,Magnetic Resonance in Medicine,Correction of frequency and phase variations induced by eddy currents in localized spectroscopy with multiple echo times,Article,Grillon,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84921433425,Daniel S. Reich;Li An;Shizhe Li;Jun Shen;Emily T. Wood,11,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84921433425&origin=inward,10.1002/mrm.25007,2014-01-01,"('2-s2.0-84921433425', 'Reich')",,903-912,24243344.0,84921433425,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84921433425&origin=inward,Reich,Magnetic Resonance in Medicine,N-acetyl-aspartyl-glutamate detection in the human brain at 7 tesla by echo time optimization and improved wiener filtering,Article,Reich,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84861059654,Christopher Johnson;Yan Zhang;Robert B. Innis;Shizhe Li;Jun Shen;Maria Ferraris Araneta;Yun Xiang,7,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84861059654&origin=inward,10.1016/j.jmr.2012.03.012,2012-05-01,"('2-s2.0-84861059654', 'Reich')",NIMH,16-21,22578550.0,84861059654,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84861059654&origin=inward,Reich,Journal of Magnetic Resonance,In vivo detection of 13C isotopomer turnover in the human brain by sequential infusion of 13C labeled substrates,Article,Reich,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84855660430,Jun Shen;Yun Xiang,2,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84855660430&origin=inward,10.1016/j.jmr.2011.11.012,2012-01-01,"('2-s2.0-84855660430', 'Reich')",NIMH,252-257,22172286.0,84855660430,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84855660430&origin=inward,Reich,Journal of Magnetic Resonance,Spectral editing for in vivo 13C magnetic resonance spectroscopy,Article,Reich,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84863723236,Susan E. Swedo;Marta Gozzi;Audrey E. Thurm;Rhoshel K. Lenroot;David A. Luckenbaugh;John L. Ostuni;Dylan M. Nielson;Jay N. Giedd,30,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84863723236&origin=inward,10.1016/j.biopsych.2012.01.026,2012-08-01,"('2-s2.0-84863723236', 'Thurm')",NIMH,215-220,22386453.0,84863723236,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84863723236&origin=inward,Thurm,Biological Psychiatry,A magnetization transfer imaging study of corpus callosum myelination in young children with autism,Article,Thurm,NIMH +https://api.elsevier.com/content/abstract/scopus_id/4644225113,Frank Q. Ye;Patrick J. Ledden;S. Lalith Talagala;Scott Chesnick,87,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=4644225113&origin=inward,10.1002/mrm.20124,2004-07-01,"('2-s2.0-4644225113', 'Talagala')",,131-140,15236376.0,4644225113,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=4644225113&origin=inward,Talagala,Magnetic Resonance in Medicine,Whole-brain 3D perfusion MRI at 3.0 T using CASL with a separate labeling coil,Article,Talagala,NINDS +https://api.elsevier.com/content/abstract/scopus_id/41749085489,Kai Hsiang Chuang;S. Lalith Talagala;Alan P. Koretsky;Vasiliki N. Ikonomidou;Peter van Gelderen;Hellmut Merkle;Jerzy Bodurka;Jeff H. Duyn,89,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=41749085489&origin=inward,10.1016/j.neuroimage.2008.01.006,2008-05-01,"('2-s2.0-41749085489', 'Koretsky')",NINDS,1595-1605,18314354.0,41749085489,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=41749085489&origin=inward,Koretsky,NeuroImage,Mapping resting-state functional connectivity using perfusion MRI,Article,Koretsky,NINDS +https://api.elsevier.com/content/abstract/scopus_id/14244265651,Gaëtan Garraux;S. Lalith Talagala;Mark Hallett,35,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=14244265651&origin=inward,10.1016/j.neuroimage.2004.11.004,2005-01-01,"('2-s2.0-14244265651', 'Hallett')",NATO,122-132,15734349.0,14244265651,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=14244265651&origin=inward,Hallett,NeuroImage,CASL fMRI of subcortico-cortical perfusion changes during memory-guided finger sequences,Article,Hallett,NINDS +https://api.elsevier.com/content/abstract/scopus_id/81255214937,Wen Ming Luh;S. Lalith Talagala;Joelle E. Sarlls;Carlo Pierpaoli,13,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=81255214937&origin=inward,10.1002/mrm.22940,2011-12-01,"('2-s2.0-81255214937', 'Pierpaoli')",,1658-1665,21604298.0,81255214937,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=81255214937&origin=inward,Pierpaoli,Magnetic Resonance in Medicine,Robust fat suppression at 3T in high-resolution diffusion-weighted single-shot echo-planar imaging of human brain,Article,Pierpaoli,NIBIB +https://api.elsevier.com/content/abstract/scopus_id/0037162379,L. Balsamo;W. D. Gaillard;C. Frattali;B. Sachs;S. Weinstein;L. G. Vezina;J. Conry;B. Xu;P. H. Papero;P. L. Pearl;S. Sato;B. Jabbari;C. B. Grandin;W. H. Theodore;S. H. Braniecki,186,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0037162379&origin=inward,10.1212/WNL.59.2.256,2002-07-23,"('2-s2.0-0037162379', 'Theodore')",,256-265,12136067.0,37162379,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0037162379&origin=inward,Theodore,Neurology,Language dominance in partial epilepsy patients identified with an fMRI reading task,Article,Theodore,NINDS +https://api.elsevier.com/content/abstract/scopus_id/0035090949,William D. Gaillard;William Theodore;Francisco Vega-Bermudez;Kenji Ishii;Jordan Grafman;Benjamin Xu;Pietro Pietrini;Patricia Reeves-Tyer;Paul DiCamillo,171,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0035090949&origin=inward,10.1093/cercor/11.3.267,2001-01-01,"('2-s2.0-0035090949', 'Theodore')",,267-277,11230098.0,35090949,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0035090949&origin=inward,Theodore,Cerebral Cortex,Conjoint and extended neural networks for the computation of speech codes: The neural basis of selective impairment in reading words and pseudowords,Article,Theodore,NINDS +https://api.elsevier.com/content/abstract/scopus_id/7044239163,L. Balsamo;W. D. Gaillard;C. Frattali;B. Sachs;S. Weinstein;L. G. Vezina;J. Conry;B. Xu;P. H. Papero;S. Sato;C. McKinney;P. L. Pearl;W. H. Theodore,180,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=7044239163&origin=inward,10.1212/01.WNL.0000141852.65175.A7,2004-10-26,"('2-s2.0-7044239163', 'Theodore')",,1403-1408,15505156.0,7044239163,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=7044239163&origin=inward,Theodore,Neurology,fMRI language task panel improves determination of language dominance,Article,Theodore,NINDS +https://api.elsevier.com/content/abstract/scopus_id/35848942392,Giampiero Giovacchini;Robert Bonwetsch;Wayne C. Drevets;David A. Luckenbaugh;Maria T. Toczek;William H. Theodore;Gregor Hasler;Anto Bagic,108,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=35848942392&origin=inward,10.1016/j.biopsych.2007.02.015,2007-12-01,"('2-s2.0-35848942392', 'Theodore')",NINDS,1258-1264,17588547.0,35848942392,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=35848942392&origin=inward,Theodore,Biological Psychiatry,5-HT1A Receptor Binding in Temporal Lobe Epilepsy Patients With and Without Major Depression,Article,Theodore,NINDS +https://api.elsevier.com/content/abstract/scopus_id/35848971195,E. N. Moore;G. Gioia;J. A. Conry;C. J. Vaidya;C. Fratalli;W. D. Gaillard;E. K. Ritzl;G. Risse;N. B. Ratner;L. G. Vezina;E. Wiggs;M. M. Berl;F. F. Ritter;S. Sato;L. R. Rosenberger;P. L. Pearl;W. H. Theodore;S. L. Weinstein,109,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=35848971195&origin=inward,10.1212/01.wnl.0000289650.48830.1a,2007-01-01,"('2-s2.0-35848971195', 'Theodore')",,1761-1771,,35848971195,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=35848971195&origin=inward,Theodore,Neurology,Atypical language in lesional and nonlesional complex partial epilepsy,Article,Theodore,NINDS +https://api.elsevier.com/content/abstract/scopus_id/34547828108,Giampiero Giovacchini;Pat Reeves-Tyer;Gregor Hasler;Peter Herscovitch;Kathleen Kelley;William H. Theodore;Wayne Drevets,81,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34547828108&origin=inward,10.1111/j.1528-1167.2007.01089.x,2007-08-01,"('2-s2.0-34547828108', 'Theodore')",,1526-1530,17442003.0,34547828108,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34547828108&origin=inward,Theodore,Epilepsia,Reduced hippocampal 5HT1A PET receptor binding and depression in temporal lobe epilepsy,Article,Theodore,NINDS +https://api.elsevier.com/content/abstract/scopus_id/28044462638,E. N. Moore;J. A. Conry;C. B. Grandin;L. M. Balsamo;W. D. Gaillard;C. Frattali;M. M. Berl;B. C. Sachs;B. Xu;S. Sato;F. J. Ritter;P. L. Pearl;W. H. Theodore;S. L. Weinstein,78,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=28044462638&origin=inward,10.1212/01.wnl.0000184502.06647.28,2005-01-01,"('2-s2.0-28044462638', 'Theodore')",,1604-1611,16301489.0,28044462638,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=28044462638&origin=inward,Theodore,Neurology,Seizure focus affects regional language networks assessed by fMRI,Article,Theodore,NINDS +https://api.elsevier.com/content/abstract/scopus_id/60149102744,E. N. Moore;J. A. Conry;J. Mayo;W. D. Gaillard;L. Rosenberger;E. K. Ritzl;J. Mbwana;S. Shamim;S. Weinstein;L. G. Vezina;M. M. Berl;S. Sato;P. L. Pearl;W. H. Theodore,67,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=60149102744&origin=inward,10.1093/brain/awn329,2009-02-01,"('2-s2.0-60149102744', 'Theodore')",,347-356,19059978.0,60149102744,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=60149102744&origin=inward,Theodore,Brain,Limitations to plasticity of language network reorganization in localization related epilepsy,Article,Theodore,NINDS +https://api.elsevier.com/content/abstract/scopus_id/67349195796,M. A. Cortez;Y. Wu;K. M. Gibson;O. Carter Snead;K. Forester;C. Jakobs;I. Knerr;P. L. Pearl;W. H. Theodore;J. M. Pettiford,62,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=67349195796&origin=inward,10.1007/s10545-009-1034-y,2009-01-28,"('2-s2.0-67349195796', 'Theodore')",ORD,343-352,19172412.0,67349195796,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=67349195796&origin=inward,Theodore,Journal of Inherited Metabolic Disease,Succinic semialdehyde dehydrogenase deficiency: Lessons from mice and men,Conference Paper,Theodore,NINDS +https://api.elsevier.com/content/abstract/scopus_id/58849120485,Giampiero Giovacchini;Susumu Sato;Robert Bonwetsch;Peter Herscovitch;Sadat Shamim;Young Min Lim;William H. Theodore;Anto Bagic;Patricia Reeves-Tyer;Clarissa J. Liew;Irene Dustin,55,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=58849120485&origin=inward,10.1111/j.1528-1167.2008.01789.x,2009-02-01,"('2-s2.0-58849120485', 'Theodore')",,234-239,18801033.0,58849120485,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=58849120485&origin=inward,Theodore,Epilepsia,18F-FCWAY and 18F-FDG PET in MRI-negative temporal lobe epilepsy,Article,Theodore,NINDS +https://api.elsevier.com/content/abstract/scopus_id/56449126967,William D. Gaillard;Sadat Shamim;Wen Ming Luh;Yong Won Cho;Young Min Lim;William H. Theodore;Jeffrey Solomon;Eva K. Ritzl;Rasmus Birn,59,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=56449126967&origin=inward,10.1016/j.eplepsyres.2008.08.001,2008-12-01,"('2-s2.0-56449126967', 'Theodore')",NINDS,183-189,19041041.0,56449126967,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=56449126967&origin=inward,Theodore,Epilepsy Research,Usefulness of pulsed arterial spin labeling MR imaging in mesial temporal lobe epilepsy,Article,Theodore,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84863039946,Shmuel Appel;Omar Khan;Robert B. Innis;William C. Kreisl;Jussi Hirvonen;Victor W. Pike;Cheryl Morse;William H. Theodore;Masahiro Fujita;Irene Dustin;Yi Zhang,62,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84863039946&origin=inward,10.2967/jnumed.111.091694,2012-02-01,"('2-s2.0-84863039946', 'Theodore')",,234-240,22238156.0,84863039946,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84863039946&origin=inward,Theodore,Journal of Nuclear Medicine,Increased in vivo expression of an inflammatory marker in temporal lobe epilepsy,Article,Theodore,NINDS +https://api.elsevier.com/content/abstract/scopus_id/65549087116,Clarissa Liew;Susumu Sato;Sadat Shamim;William H. Theodore;Gregor Hasler,52,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=65549087116&origin=inward,10.1111/j.1528-1167.2008.01883.x,2009-05-01,"('2-s2.0-65549087116', 'Theodore')",,1067-1071,19054394.0,65549087116,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=65549087116&origin=inward,Theodore,Epilepsia,"Temporal lobe epilepsy, depression, and hippocampal volume",Article,Theodore,NINDS +https://api.elsevier.com/content/abstract/scopus_id/0033779174,C. Chiron;W. Theodore;T. Henry;R. Kuzniecky;I. Savic;R. Ali;A. Palmini;J. S. Duncan;J. Barkovich;S. Berkovic,43,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0033779174&origin=inward,10.1111/j.1528-1157.2000.tb04617.x,2000-01-01,"('2-s2.0-0033779174', 'Theodore')",,1350-1356,11051134.0,33779174,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0033779174&origin=inward,Theodore,Epilepsia,Commission on diagnostic strategies recommendations for functional neuroimaging of persons with epilepsy,Review,Theodore,NINDS +https://api.elsevier.com/content/abstract/scopus_id/69449107926,J. Schreiber;C. Liew;W. Theodore;S. Shamim;K. M. Gibson;I. Dustin;Z. Quezado;P. Herscovitch;K. Forester;R. Carson;S. Trzcinski;J. Butman;J. Taylor;P. Reeves-Tyer;C. Jakobs;P. L. Pearl,51,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=69449107926&origin=inward,10.1212/WNL.0b013e3181b163a5,2009-08-11,"('2-s2.0-69449107926', 'Theodore')",,423-429,19667317.0,69449107926,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=69449107926&origin=inward,Theodore,Neurology,Decreased GABA-A binding on FMZ-PET in succinic semialdehyde dehydrogenase deficiency,Article,Theodore,NINDS +https://api.elsevier.com/content/abstract/scopus_id/67649223928,E. N. Moore;J. A. Conry;W. D. Gaillard;E. K. Ritzl;S. Shamim;L. G. Vezina;M. M. Berl;P. L. Pearl;S. Sato;L. R. Rosenberger;J. Zeck;W. H. Theodore;S. L. Weinstein,45,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=67649223928&origin=inward,10.1212/WNL.0b013e3181a7114b,2009-05-26,"('2-s2.0-67649223928', 'Theodore')",,1830-1836,19470965.0,67649223928,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=67649223928&origin=inward,Theodore,Neurology,Interhemispheric and intrahemispheric language reorganization in complex partial epilepsy,Article,Theodore,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84926517255,Alana D'Alfonso;Carlos A. Zarate;Ashley Martinez;Allison C. Nugent;William H. Theodore,55,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84926517255&origin=inward,10.1038/jcbfm.2014.228,2015-03-31,"('2-s2.0-84926517255', 'Nugent')",,583-591,25564232.0,84926517255,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84926517255&origin=inward,Nugent,Journal of Cerebral Blood Flow and Metabolism,"The relationship between glucose metabolism, resting-state fMRI BOLD signal, and GABA A -binding potential: A preliminary study in healthy subjects and those with temporal lobe epilepsy",Article,Nugent,NIMH +https://api.elsevier.com/content/abstract/scopus_id/79953678361,Andrey Finegersh;Christina Avedissian;Sadat Shamim;Paul M. Thompson;William H. Theodore;Irene Dustin,32,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79953678361&origin=inward,10.1111/j.1528-1167.2010.02928.x,2011-04-01,"('2-s2.0-79953678361', 'Theodore')",,689-697,21269286.0,79953678361,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79953678361&origin=inward,Theodore,Epilepsia,Bilateral hippocampal atrophy in temporal lobe epilepsy: Effect of depressive symptoms and febrile seizures,Article,Theodore,NINDS +https://api.elsevier.com/content/abstract/scopus_id/33947516296,W. D. Gaillard;S. Weinstein;L. G. Vezina;J. Conry;P. Reeves-Tyer;P. L. Pearl;W. H. Theodore;S. Fazilat,24,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33947516296&origin=inward,10.1212/01.wnl.0000255942.25101.8d,2007-02-01,"('2-s2.0-33947516296', 'Theodore')",NINDS,655-659,17325271.0,33947516296,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33947516296&origin=inward,Theodore,Neurology,Prognosis of children with partial epilepsy: MRI and serial 18FDG-PET,Article,Theodore,NINDS +https://api.elsevier.com/content/abstract/scopus_id/0036427338,Marianna Spanaki;Lyn Balsamo;William Davis Gaillard;Kenji Ishii;Jordan Grafman;Benjamin Xu;Milan Makale;William H. Theodore,21,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0036427338&origin=inward,10.1016/S1053-8119(02)91215-2,2002-01-01,"('2-s2.0-0036427338', 'Theodore')",,859-870,12377160.0,36427338,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0036427338&origin=inward,Theodore,NeuroImage,Neuroimaging reveals automatic speech coding during perception of written word meaning,Article,Theodore,NINDS +https://api.elsevier.com/content/abstract/scopus_id/58149387348,K. Kamberakis;C. Liew;W. D. Gaillard;L. Rosenberger;E. K. Ritzl;S. Shamim;E. H. Baker;A. M. Wohlschlager;M. M. Berl;R. Ottman;A. Bagic;S. Sato;P. Reeves-Tyer;J. A. Butman;E. Wiggs;W. H. Theodore,16,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=58149387348&origin=inward,10.1212/01.wnl.0000336923.29538.5b,2008-12-09,"('2-s2.0-58149387348', 'Theodore')",,1973-1980,19064878.0,58149387348,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=58149387348&origin=inward,Theodore,Neurology,Altered language processing in autosomal dominant partial epilepsy with auditory features,Article,Theodore,NINDS +https://api.elsevier.com/content/abstract/scopus_id/85027957420,Rebecca E. Fasano;Sususmu Sato;William D. Gaillard;Elizabeth S. Duke;Mekdem Tesfaye;Joan A. Conry;Phillip L. Pearl;William H. Theodore;Madison M. Berl;Jennifer E. Walker;Eva K. Ritzl,13,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85027957420&origin=inward,10.1111/j.1528-1167.2012.03490.x,2012-01-01,"('2-s2.0-85027957420', 'Theodore')",,1044-1050,,85027957420,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85027957420&origin=inward,Theodore,Epilepsia,The effect of seizure focus on regional language processing areas,Article,Theodore,NINDS +https://api.elsevier.com/content/abstract/scopus_id/79954600729,E. Ritzl;C. Liew;E. S. Duke;W. D. Gaillard;A. Martinez;I. Dustin;M. M. Berl;S. Miranda;S. Sato;W. H. Theodore;A. Finegersh,15,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79954600729&origin=inward,10.1212/WNL.0b013e31821527b5,2011-04-12,"('2-s2.0-79954600729', 'Theodore')",NIH,1322-1329,,79954600729,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79954600729&origin=inward,Theodore,Neurology,FMRI language dominance and FDG-PET hypometabolism,Article,Theodore,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84908040960,Lucy Jones;Sierra C. Germeyan;William H. Theodore;David Kalikhman,13,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84908040960&origin=inward,10.1111/epi.12694,2014-01-01,"('2-s2.0-84908040960', 'Theodore')",,1374-1379,24965103.0,84908040960,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84908040960&origin=inward,Theodore,Epilepsia,Automated versus manual hippocampal segmentation in preoperative and postoperative patients with epilepsy,Article,Theodore,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84954075813,Xiaozhen You;Omar Khan;William D. Gaillard;Sara Inati;Leigh N. Sepeta;Meera Mehta;Benjamin Xu;Marko Wilke;Alison Austermuehle;William H. Theodore;Madison M. Berl;Irene Dustin,21,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84954075813&origin=inward,10.1111/epi.13258,2016-01-01,"('2-s2.0-84954075813', 'Inati')",NIH,122-130,26696589.0,84954075813,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84954075813&origin=inward,Inati,Epilepsia,Age-dependent mesial temporal lobe lateralization in language fMRI,Article,Inati,NINDS +https://api.elsevier.com/content/abstract/scopus_id/0033816033,William H. Theodore;William D. Gaillard,9,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0033816033&origin=inward,10.1177/107385840000600513,2000-01-01,"('2-s2.0-0033816033', 'Theodore')",,390-400,,33816033,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0033816033&origin=inward,Theodore,Neuroscientist,Mapping language in epilepsy with functional imaging,Review,Theodore,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84907526144,Svetlana D. Pack;Sara K. Inati;Nicholas J. Patronas;Martha M. Quezado;Kareem A. Zaghloul;Ayaz M. Khawaja;Leo Ballester-Fuentes;William H. Theodore;Andrew I. Yang;Ziedulla Abdullaev,9,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84907526144&origin=inward,10.1684/epd.2014.0680,2014-01-01,"('2-s2.0-84907526144', 'Inati')",,328-332,25204011.0,84907526144,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84907526144&origin=inward,Inati,Epileptic Disorders,Multifocal dysembryoplastic neuroepithelial tumours associated with refractory epilepsy,Article,Inati,NINDS +https://api.elsevier.com/content/abstract/scopus_id/78650213727,K. Michael Gibson;Andrey Finegersh;Phillip L. Pearl;Maria T. Acosta;Jeeva Munasinghe;William H. Theodore;Maneesh Gupta,6,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=78650213727&origin=inward,10.1177/0883073810368137,2010-12-01,"('2-s2.0-78650213727', 'Theodore')",,1457-1461,20445195.0,78650213727,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=78650213727&origin=inward,Theodore,Journal of Child Neurology,Cerebellar atrophy in human and murine succinic semialdehyde dehydrogenase deficiency,Article,Theodore,NINDS +https://api.elsevier.com/content/abstract/scopus_id/77958504761,K. K. Kim;S. K. Lee;W. D. Gaillard;E. Byun;B. Xu;W. H. Theodore,5,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77958504761&origin=inward,10.1016/j.jneuroling.2010.07.001,2011-01-01,"('2-s2.0-77958504761', 'Theodore')",MEST,1-13,,77958504761,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77958504761&origin=inward,Theodore,Journal of Neurolinguistics,Verbal working memory of Korean-English bilinguals: An fMRI study,Article,Theodore,NINDS +https://api.elsevier.com/content/abstract/scopus_id/85021726448,Heidrun Potschka;Jens P. Bankstahl;Teresa Ravizza;William H. Theodore;Tallie Z. Baram;Stefanie Dedeurwaerdere;Eric Årstad;Alon Friedman;Matthias J. Koepp,22,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85021726448&origin=inward,10.1111/epi.13778,2017-07-01,"('2-s2.0-85021726448', 'Theodore')",NINDS,11-19,28675560.0,85021726448,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85021726448&origin=inward,Theodore,Epilepsia,Neuroinflammation imaging markers for epileptogenesis,Article,Theodore,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84908216072,Izukanji Sikazwe;Michael J. Potchen;Omar K. Siddiqi;Gretchen L. Birbeck;Igor J. Koralnik;Lisa Kalungwana;Melissa A. Elafros;Christopher M. Bositis;William H. Theodore,4,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84908216072&origin=inward,10.4081/ni.2014.5547,2014-01-01,"('2-s2.0-84908216072', 'Theodore')",,56-60,,84908216072,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84908216072&origin=inward,Theodore,Neurology International,Neuroimaging abnormalities and seizure recurrence in a prospective cohort study of Zambians with human immunodeficiency virus and first seizure,Article,Theodore,NINDS +https://api.elsevier.com/content/abstract/scopus_id/76249121506,J. P. Munasinghe;A. Koretsky;M. T. Acosta;A. C. Silva;M. Banks;M. Banerjee;A. Heffer;W. H. Theodore,3,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=76249121506&origin=inward,10.1111/j.1600-0404.2009.01188.x,2010-03-01,"('2-s2.0-76249121506', 'Koretsky')",,209-216,19951270.0,76249121506,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=76249121506&origin=inward,Koretsky,Acta Neurologica Scandinavica,Arterial spin labeling demonstrates that focal amygdalar glutamatergic agonist infusion leads to rapid diffuse cerebral activation,Article,Koretsky,NINDS +https://api.elsevier.com/content/abstract/scopus_id/85016188248,Richard Reynolds;William D. Gaillard;John Cocjin;Sara Inati;Alison Austermuehle;William H. Theodore;Kareem A. Zaghloul;Leigh Sepeta;Shubhi Agrawal,13,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85016188248&origin=inward,10.1002/ana.24899,2017-04-01,"('2-s2.0-85016188248', 'Inati')",NINDS,526-537,28220524.0,85016188248,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85016188248&origin=inward,Inati,Annals of Neurology,Language functional MRI and direct cortical stimulation in epilepsy preoperative planning,Article,Inati,NINDS +https://api.elsevier.com/content/abstract/scopus_id/0037143758,L. G. Ungerleider;E. Gutierrez;M. McKenna;L. Pessoa,863,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0037143758&origin=inward,10.1073/pnas.172403899,2002-08-20,"('2-s2.0-0037143758', 'Ungerleider')",,11458-11463,12177449.0,37143758,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0037143758&origin=inward,Ungerleider,Proceedings of the National Academy of Sciences of the United States of America,Neural processing of emotional faces requires attention,Article,Ungerleider,NIMH +https://api.elsevier.com/content/abstract/scopus_id/44049097259,Hauke R. Heekeren;Sean Marrett;Leslie G. Ungerleider,515,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=44049097259&origin=inward,10.1038/nrn2374,2008-06-09,"('2-s2.0-44049097259', 'Ungerleider')",NIMH,467-479,18464792.0,44049097259,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=44049097259&origin=inward,Ungerleider,Nature Reviews Neuroscience,The neural systems that mediate human perceptual decision making,Review,Ungerleider,NIMH +https://api.elsevier.com/content/abstract/scopus_id/7244261657,P. A. Bandettini;L. G. Ungerleider;H. R. Heekeren;S. Marrett,453,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=7244261657&origin=inward,10.1038/nature02966,2004-10-14,"('2-s2.0-7244261657', 'Bandettini')",NSF,859-862,15483614.0,7244261657,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=7244261657&origin=inward,Bandettini,Nature,A general mechanism for perceptual decision-making in the human brain,Article,Bandettini,NIMH +https://api.elsevier.com/content/abstract/scopus_id/0036881384,Leslie G. Ungerleider;Julien Doyon;Avi Karni,392,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0036881384&origin=inward,10.1006/nlme.2002.4091,2002-01-01,"('2-s2.0-0036881384', 'Ungerleider')",CIHR,553-564,12559834.0,36881384,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0036881384&origin=inward,Ungerleider,Neurobiology of Learning and Memory,Imaging brain plasticity during motor skill learning,Review,Ungerleider,NIMH +https://api.elsevier.com/content/abstract/scopus_id/0036889993,Sabine Kastner;Leslie G. Ungerleider;Luiz Pessoa,374,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0036889993&origin=inward,10.1016/S0926-6410(02)00214-8,2002-12-01,"('2-s2.0-0036889993', 'Ungerleider')",NIMH,31-45,12433381.0,36889993,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0036889993&origin=inward,Ungerleider,Cognitive Brain Research,Attentional control of the processing of neutral and emotional stimuli,Article,Ungerleider,NIMH +https://api.elsevier.com/content/abstract/scopus_id/0038381394,Sabine Kastner;Leslie G. Ungerleider;Luiz Pessoa,315,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0038381394&origin=inward,10.1523/jneurosci.23-10-03990.2003,2003-05-15,"('2-s2.0-0038381394', 'Ungerleider')",NIMH,3990-3998,12764083.0,38381394,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0038381394&origin=inward,Ungerleider,Journal of Neuroscience,Neuroimaging studies of attention: From modulation of sensory processing to top-down control,Short Survey,Ungerleider,NIMH +https://api.elsevier.com/content/abstract/scopus_id/0037154261,Michelle M. Adams;Allen W. Song;François Lalonde;Julien Doyon;Leslie G. Ungerleider;Avi Karni,323,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0037154261&origin=inward,10.1073/pnas.022615199,2002-01-22,"('2-s2.0-0037154261', 'Ungerleider')",,1017-1022,11805340.0,37154261,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0037154261&origin=inward,Ungerleider,Proceedings of the National Academy of Sciences of the United States of America,Experience-dependent changes in cerebellar contributions to motor sequence learning,Article,Ungerleider,NIMH +https://api.elsevier.com/content/abstract/scopus_id/0037194739,Eva Gutierrez;Peter Bandettini;Leslie Ungerleider;Luiz Pessoa,322,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0037194739&origin=inward,10.1016/S0896-6273(02)00817-6,2002-01-01,"('2-s2.0-0037194739', 'Bandettini')",NIMH,975-987,12372290.0,37194739,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0037194739&origin=inward,Bandettini,Neuron,Neural correlates of visual working memory: fMRI amplitude predicts task performance.,Article,Bandettini,NIMH +https://api.elsevier.com/content/abstract/scopus_id/0034844134,Sabine Kastner;Peter De Weerd;Leslie G. Ungerleider;M. Idette Elizondo;Mark A. Pinsk;Robert Desimone,226,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0034844134&origin=inward,10.1152/jn.2001.86.3.1398,2001-01-01,"('2-s2.0-0034844134', 'Ungerleider')",NIMH,1398-1411,11535686.0,34844134,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0034844134&origin=inward,Ungerleider,Journal of Neurophysiology,Modulation of sensory suppression: Implications for receptive field sizes in the human visual cortex,Article,Ungerleider,NIMH +https://api.elsevier.com/content/abstract/scopus_id/0036935352,Alumit Ishai;Leslie G. Ungerleider;James V. Haxby,232,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0036935352&origin=inward,10.1006/nimg.2002.1330,2002-01-01,"('2-s2.0-0036935352', 'Ungerleider')",,1729-1741,12498747.0,36935352,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0036935352&origin=inward,Ungerleider,NeuroImage,Visual imagery of famous faces: Effects of memory and attention revealed by fMRI,Article,Ungerleider,NIMH +https://api.elsevier.com/content/abstract/scopus_id/33745616509,S. Marrett;D. A. Ruff;H. R. Heekeren;P. A. Bandettini;L. G. Ungerleider,232,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33745616509&origin=inward,10.1073/pnas.0603949103,2006-06-27,"('2-s2.0-33745616509', 'Bandettini')",,10023-10028,16785427.0,33745616509,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33745616509&origin=inward,Bandettini,Proceedings of the National Academy of Sciences of the United States of America,Involvement of human left dorsolateral prefrontal cortex in perceptual decision making is independent of response modality,Article,Bandettini,NIMH +https://api.elsevier.com/content/abstract/scopus_id/3042838553,Alumit Ishai;Philip C. Bikle;Leslie G. Ungerleider;Luiz Pessoa,210,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=3042838553&origin=inward,10.1073/pnas.0403559101,2004-06-29,"('2-s2.0-3042838553', 'Ungerleider')",,9827-9832,15210952.0,3042838553,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=3042838553&origin=inward,Ungerleider,Proceedings of the National Academy of Sciences of the United States of America,Repetition suppression of faces is modulated by emotion,Article,Ungerleider,NIMH +https://api.elsevier.com/content/abstract/scopus_id/32144441306,David Sturman;Leslie G. Ungerleider;Shruti Japee;Luiz Pessoa,195,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=32144441306&origin=inward,10.1093/cercor/bhi115,2006-03-01,"('2-s2.0-32144441306', 'Ungerleider')",,366-375,15930371.0,32144441306,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=32144441306&origin=inward,Ungerleider,Cerebral Cortex,Target visibility and visual awareness modulate amygdala responses to fearful faces,Article,Ungerleider,NIMH +https://api.elsevier.com/content/abstract/scopus_id/0034723225,Yang Jiang;James V. Haxby;Leslie G. Ungerleider;Raja Parasuraman;Alex Martin,147,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0034723225&origin=inward,10.1126/science.287.5453.643,2000-01-28,"('2-s2.0-0034723225', 'Martin')",,643-646,10649996.0,34723225,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0034723225&origin=inward,Martin,Science,Complementary neural mechanisms for tracking items in human working memory,Article,Martin,NIMH +https://api.elsevier.com/content/abstract/scopus_id/0344440994,Leslie G. Ungerleider;Luiz Pessoa,154,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0344440994&origin=inward,10.1016/S0079-6123(03)14412-3,2004-01-01,"('2-s2.0-0344440994', 'Ungerleider')",NIMH,171-182,14650848.0,344440994,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0344440994&origin=inward,Ungerleider,Progress in Brain Research,Neuroimaging studies of attention and the processing of emotion-laden stimuli,Conference Paper,Ungerleider,NIMH +https://api.elsevier.com/content/abstract/scopus_id/0034039917,Sabine Kastner;Leslie G. Ungerleider;Peter De Weerd,127,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0034039917&origin=inward,10.1152/jn.2000.83.4.2453,2000-01-01,"('2-s2.0-0034039917', 'Ungerleider')",NIMH,2453-2457,10758146.0,34039917,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0034039917&origin=inward,Ungerleider,Journal of Neurophysiology,Texture segregation in the human visual cortex: A functional MRI study,Article,Ungerleider,NIMH +https://api.elsevier.com/content/abstract/scopus_id/57749201809,Robert Desimone;Leslie G. Ungerleider;Andrew F. Rossi;Luiz Pessoa,162,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=57749201809&origin=inward,10.1007/s00221-008-1642-z,2009-01-01,"('2-s2.0-57749201809', 'Ungerleider')",,489-497,19030851.0,57749201809,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=57749201809&origin=inward,Ungerleider,Experimental Brain Research,The prefrontal cortex and the executive control of attention,Conference Paper,Ungerleider,NIMH +https://api.elsevier.com/content/abstract/scopus_id/61349115538,Fadila Hadj-Bouziane;Andrew H. Bell;Roger B.H. Tootell;Leslie G. Ungerleider;Jennifer B. Frihauf,126,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=61349115538&origin=inward,10.1152/jn.90657.2008,2009-02-01,"('2-s2.0-61349115538', 'Ungerleider')",,688-700,19052111.0,61349115538,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=61349115538&origin=inward,Ungerleider,Journal of Neurophysiology,Object representations in the temporal cortex of monkeys and humans as revealed by functional magnetic resonance imaging,Article,Ungerleider,NIMH +https://api.elsevier.com/content/abstract/scopus_id/80053275316,Ning Liu;Xiaomin Yue;Shahin Nasr;Leslie G. Ungerleider;Kathryn J. Devaney;Roger B.H. Tootell;Reza Rajimehr,135,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=80053275316&origin=inward,10.1523/JNEUROSCI.2792-11.2011,2011-09-28,"('2-s2.0-80053275316', 'Ungerleider')",,13771-13785,21957240.0,80053275316,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=80053275316&origin=inward,Ungerleider,Journal of Neuroscience,Scene-selective cortical regions in human and nonhuman primates,Article,Ungerleider,NIMH +https://api.elsevier.com/content/abstract/scopus_id/35448931909,Shruti Japee;Ikuko Mukai;David Kim;Leslie G. Ungerleider;Masaki Fukunaga;Sean Marrett,108,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=35448931909&origin=inward,10.1523/JNEUROSCI.3002-07.2007,2007-10-17,"('2-s2.0-35448931909', 'Ungerleider')",,11401-11411,17942734.0,35448931909,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=35448931909&origin=inward,Ungerleider,Journal of Neuroscience,Activations in visual and attention-related areas predict and correlate with the degree of perceptual learning,Article,Ungerleider,NIMH +https://api.elsevier.com/content/abstract/scopus_id/2342470740,Leslie G. Ungerleider;Luiz Pessoa,101,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=2342470740&origin=inward,10.1093/cercor/bhh013,2004-05-01,"('2-s2.0-2342470740', 'Ungerleider')",NIMH,511-520,15054067.0,2342470740,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=2342470740&origin=inward,Ungerleider,Cerebral Cortex,Neural Correlates of Change Detection and Change Blindness in a Working Memory Task,Article,Ungerleider,NIMH +https://api.elsevier.com/content/abstract/scopus_id/35448987622,Avi Mendelsohn;Natan Gadoth;Talma Hendler;Galia Avidan;Tali Siman-Tov;Ilana Podlipsky;Tom Schonberg;Leslie G. Ungerleider;Luiz Pessoa,94,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=35448987622&origin=inward,10.1523/JNEUROSCI.0599-07.2007,2007-10-17,"('2-s2.0-35448987622', 'Ungerleider')",NIMH,11271-11278,17942721.0,35448987622,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=35448987622&origin=inward,Ungerleider,Journal of Neuroscience,Bihemispheric leftward bias in a visuospatial attention-related network,Article,Ungerleider,NIMH +https://api.elsevier.com/content/abstract/scopus_id/24644494694,Robert W. Van Boven;Philip C. Bikle;Leslie G. Ungerleider;John E. Ingeholm;Michael S. Beauchamp,86,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=24644494694&origin=inward,10.1073/pnas.0505907102,2005-08-30,"('2-s2.0-24644494694', 'Ungerleider')",,12601-12605,16116098.0,24644494694,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=24644494694&origin=inward,Ungerleider,Proceedings of the National Academy of Sciences of the United States of America,Tactile form and location processing in the human brain,Article,Ungerleider,NIMH +https://api.elsevier.com/content/abstract/scopus_id/80052174207,Nicholas J. Malecek;Fadila Hadj-Bouziane;Andrew H. Bell;Elyse L. Morin;Leslie G. Ungerleider;Roger B.H. Tootell,63,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=80052174207&origin=inward,10.1523/JNEUROSCI.5865-10.2011,2011-08-24,"('2-s2.0-80052174207', 'Ungerleider')",NIMH,12229-12240,21865466.0,80052174207,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=80052174207&origin=inward,Ungerleider,Journal of Neuroscience,Relationship between functional magnetic resonance imaging-identified regions and neuronal category selectivity,Article,Ungerleider,NIMH +https://api.elsevier.com/content/abstract/scopus_id/44449092454,Fadila Hadj-Bouziane;Andrew H. Bell;Leslie G. Ungerleider;Tamara A. Knusten;Roger B.H. Tootell,70,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=44449092454&origin=inward,10.1073/pnas.0800489105,2008-04-08,"('2-s2.0-44449092454', 'Ungerleider')",,5591-5596,18375769.0,44449092454,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=44449092454&origin=inward,Ungerleider,Proceedings of the National Academy of Sciences of the United States of America,Perception of emotional expressions is independent of face selectivity in monkey inferior temporal cortex,Article,Ungerleider,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84925193761,Shruti Japee;Ikuko Mukai;Leslie G. Ungerleider;Kelsey Holiday;Maureen D. Satyshur,128,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84925193761&origin=inward,10.3389/fnsys.2015.00023,2015-03-03,"('2-s2.0-84925193761', 'Ungerleider')",,,,84925193761,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84925193761&origin=inward,Ungerleider,Frontiers in Systems Neuroscience,A role of right middle frontal gyrus in reorienting of attention: A case study,Article,Ungerleider,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84871836712,Ning Liu;Katalin M. Gothard;Fadila Hadj-Bouziane;Andrew H. Bell;Leslie G. Ungerleider;Wen Ming Luh;Elisabeth A. Murray;Roger B.H. Tootell,58,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84871836712&origin=inward,10.1073/pnas.1218406109,2012-12-26,"('2-s2.0-84871836712', 'Murray')",,,23184972.0,84871836712,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84871836712&origin=inward,Murray,Proceedings of the National Academy of Sciences of the United States of America,Amygdala lesions disrupt modulation of functional MRI activity evoked by facial expression in the monkey inferior temporal cortex,Article,Murray,NIMH +https://api.elsevier.com/content/abstract/scopus_id/33749239262,Alumit Ishai;Philip C. Bikle;Leslie G. Ungerleider,35,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33749239262&origin=inward,10.1016/j.brainresbull.2006.06.002,2006-10-16,"('2-s2.0-33749239262', 'Ungerleider')",NIMH,289-295,17027764.0,33749239262,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33749239262&origin=inward,Ungerleider,Brain Research Bulletin,Temporal dynamics of face repetition suppression,Article,Ungerleider,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84868577560,Ning Liu;Fadila Hadj-Bouziane;Bruno B. Averbeck;Leslie G. Ungerleider;Nicholas Furl,34,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84868577560&origin=inward,10.1523/JNEUROSCI.1992-12.2012,2012-11-07,"('2-s2.0-84868577560', 'Ungerleider')",,15952-15962,23136433.0,84868577560,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84868577560&origin=inward,Ungerleider,Journal of Neuroscience,Dynamic and static facial expressions decoded from motion-sensitive areas in the macaque monkey,Article,Ungerleider,NIMH +https://api.elsevier.com/content/abstract/scopus_id/57349138397,Shruti Japee;Leslie G. Ungerleider;Andrew Rossi;Robert Desimone;Luiz Pessoa,26,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=57349138397&origin=inward,10.1016/j.brainres.2008.10.010,2009-01-19,"('2-s2.0-57349138397', 'Ungerleider')",NIMH,149-158,18992228.0,57349138397,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=57349138397&origin=inward,Ungerleider,Brain Research,Attentional control during the transient updating of cue information,Article,Ungerleider,NIMH +https://api.elsevier.com/content/abstract/scopus_id/42149093152,Gheorghe Postelnicu;Leslie G. Ungerleider;Kathryn J. Devaney;Jeremy C. Young;Roger B.H. Tootell;Reza Rajimehr,22,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=42149093152&origin=inward,10.1073/pnas.0712274105,2008-03-04,"('2-s2.0-42149093152', 'Ungerleider')",,3605-3609,18287004.0,42149093152,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=42149093152&origin=inward,Ungerleider,Proceedings of the National Academy of Sciences of the United States of America,fMRI mapping of a morphed continuum of 3D shapes within inferior temporal cortex,Article,Ungerleider,NIMH +https://api.elsevier.com/content/abstract/scopus_id/79955108718,Ning Liu;Carolyn W.H. Wu;Sarah Cheal;Alan P. Koretsky;Leslie G. Ungerleider;Der Yow Chen;Haitao Wu;Gary L. Griffiths;Roger B.H. Tootell;Olga Vasalatiy,16,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79955108718&origin=inward,10.1016/j.neuron.2011.03.010,2011-04-28,"('2-s2.0-79955108718', 'Koretsky')",ANR,229-243,21521610.0,79955108718,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79955108718&origin=inward,Koretsky,Neuron,Development of a MR-Visible Compound for Tracing Neuroanatomical Connections In Vivo,Article,Koretsky,NINDS +https://api.elsevier.com/content/abstract/scopus_id/79955975986,Kandy Bahadur;Leslie G. Ungerleider;Ikuko Mukai;Kartik Kesavabhotla,18,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79955975986&origin=inward,10.1167/11.1.1,2011-10-20,"('2-s2.0-79955975986', 'Ungerleider')",,1-15,21282340.0,79955975986,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79955975986&origin=inward,Ungerleider,Journal of Vision,Exogenous and endogenous attention during perceptual learning differentially affect post-training target thresholds,Article,Ungerleider,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84880407828,Ning Liu;Fadila Hadj-Bouziane;Nikolaus Kriegeskorte;Marieke Mur;Wen Ming Luh;Leslie G. Ungerleider;Roger B.H. Tootell,14,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84880407828&origin=inward,10.1523/JNEUROSCI.4180-12.2013,2013-07-26,"('2-s2.0-84880407828', 'Ungerleider')",,11346-11360,23843508.0,84880407828,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84880407828&origin=inward,Ungerleider,Journal of Neuroscience,Intrinsic structure of visual exemplar and category representations in macaque brain,Article,Ungerleider,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84939896444,Tracy J. Doty;Martin Ingvar;Shruti Japee;Leslie G. Ungerleider,11,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84939896444&origin=inward,10.3758/s13415-014-0290-y,2014-01-01,"('2-s2.0-84939896444', 'Ungerleider')",NIMH,1438-1453,24841078.0,84939896444,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84939896444&origin=inward,Ungerleider,"Cognitive, Affective and Behavioral Neuroscience",Intersubject variability in fearful face processing: The linkbetween behavior and neural activation,Article,Ungerleider,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84870940979,Leslie G. Ungerleider;Sarah F. Hillenbrand;Kathleen A. Hansen,9,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84870940979&origin=inward,10.3389/fnins.2012.00163,2012-12-17,"('2-s2.0-84870940979', 'Ungerleider')",,,,84870940979,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84870940979&origin=inward,Ungerleider,Frontiers in Neuroscience,Effects of prior knowledge on decisions made under perceptual vs. Categorical uncertainty,Article,Ungerleider,NIMH +https://api.elsevier.com/content/abstract/scopus_id/85026505564,Stephen J. Gotts;Christine V. Nikas;Zaid N. Safiullah;Leslie G. Ungerleider;Valentinos Zachariou,15,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85026505564&origin=inward,10.1093/cercor/bhw224,2017-08-01,"('2-s2.0-85026505564', 'Ungerleider')",,4124-4138,27522076.0,85026505564,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85026505564&origin=inward,Ungerleider,Cerebral Cortex,Spatial mechanisms within the dorsal visual pathway contribute to the configural processing of faces,Article,Ungerleider,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84857072483,Leslie G. Ungerleider;Sarah F. Hillenbrand;Kathleen A. Hansen,5,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84857072483&origin=inward,10.3389/fnins.2011.00029,2011-12-01,"('2-s2.0-84857072483', 'Ungerleider')",,,,84857072483,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84857072483&origin=inward,Ungerleider,Frontiers in Neuroscience,Persistency of priors-induced bias in decision behavior and the fMRI signal,Article,Ungerleider,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84860353892,Leslie G. Ungerleider;Sarah F. Hillenbrand;Kathleen A. Hansen,4,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84860353892&origin=inward,10.1162/jocn_a_00224,2012-06-01,"('2-s2.0-84860353892', 'Ungerleider')",,1462-1475,22401286.0,84860353892,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84860353892&origin=inward,Ungerleider,Journal of Cognitive Neuroscience,Human brain activity predicts individual differences in prior knowledge use during decisions,Article,Ungerleider,NIMH +https://api.elsevier.com/content/abstract/scopus_id/85011397550,Lionel Rauth;Leslie G. Ungerleider;David Pitcher;Shruti Japee,19,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85011397550&origin=inward,10.1523/JNEUROSCI.0114-16.2016,2017-02-01,"('2-s2.0-85011397550', 'Ungerleider')",,1156-1161,28011742.0,85011397550,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85011397550&origin=inward,Ungerleider,Journal of Neuroscience,The superior temporal sulcus is causally connected to the amygdala: A combined TBS-fMRI study,Article,Ungerleider,NIMH +https://api.elsevier.com/content/abstract/scopus_id/85043295407,Ning Liu;Fadila Hadj-Bouziane;Rosalyn Moran;Leslie G. Ungerleider;Alumit Ishai,5,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85043295407&origin=inward,10.1093/cercor/bhv345,2017-02-01,"('2-s2.0-85043295407', 'Ungerleider')",,1524-1531,26759479.0,85043295407,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85043295407&origin=inward,Ungerleider,"Cerebral cortex (New York, N.Y. : 1991)",Facial Expressions Evoke Differential Neural Coupling in Macaques,Article,Ungerleider,NIMH +https://api.elsevier.com/content/abstract/scopus_id/85049380773,Nicole Mlynaryk;Sara Ahmed;Shruti Japee;Leslie G. Ungerleider;Xilin Zhang,7,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85049380773&origin=inward,10.1371/journal.pbio.2005399,2018-06-01,"('2-s2.0-85049380773', 'Ungerleider')",,,29939981.0,85049380773,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85049380773&origin=inward,Ungerleider,PLoS Biology,The role of inferior frontal junction in controlling the spatially global effect of feature-based attention in human visual areas,Article,Ungerleider,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84949226853,Kristine M. Knutson;Aysha Keisler;Leonora Wilkinson;Stephen J. Gotts;Sunbin Song;Devin Bageac;Ziad S. Saad;Adam Steel;Eric M. Wassermann,21,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84949226853&origin=inward,10.1016/j.cortex.2015.10.004,2016-01-01,"('2-s2.0-84949226853', 'Wassermann')",NIH,134-148,26673946.0,84949226853,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84949226853&origin=inward,Wassermann,Cortex,Shifts in connectivity during procedural learning after motor cortex stimulation: A combined transcranial magnetic stimulation/functional magnetic resonance imaging study,Article,Wassermann,NINDS +https://api.elsevier.com/content/abstract/scopus_id/0037462449,Bert Gold;Joseph H. Callicott;Daniel R. Weinberger;Bai Lu;Alessandro Bertolino;Michael F. Egan;Eugene Zaitsev;David Goldman;Masami Kojima;Bhaskar S. Kolachana;Terry E. Goldberg;Michael Dean,2711,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0037462449&origin=inward,10.1016/S0092-8674(03)00035-7,2003-01-24,"('2-s2.0-0037462449', 'Wassermann')",NICHD,257-269,12553913.0,37462449,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0037462449&origin=inward,Wassermann,Cell,The BDNF val66met polymorphism affects activity-dependent secretion of BDNF and human memory and hippocampal function,Article,Wassermann,NINDS +https://api.elsevier.com/content/abstract/scopus_id/0035810850,Joseph H. Callicott;Richard E. Straub;Michael F. Egan;David Goldman;Chiara M. Mazzanti;Bhaskar S. Kolachana;Terry E. Goldberg;Daniel R. Weinberger,2013,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0035810850&origin=inward,10.1073/pnas.111134598,2001-06-05,"('2-s2.0-0035810850', 'Wassermann')",,6917-6922,11381111.0,35810850,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0035810850&origin=inward,Wassermann,Proceedings of the National Academy of Sciences of the United States of America,Effect of COMT Val108/158 Met genotype on frontal lobe function and risk for schizophrenia,Article,Wassermann,NINDS +https://api.elsevier.com/content/abstract/scopus_id/22844433107,Ahmad R. Hariri;Karen E. Munoz;Venkata S. Mattay;Michael F. Egan;Lukas Pezawas;Beth A. Verchinski;Andreas Meyer-Lindenberg;Bhaskar S. Kolachana;Emily M. Drabant;Daniel R. Weinberger,1502,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=22844433107&origin=inward,10.1038/nn1463,2005-06-01,"('2-s2.0-22844433107', 'Wassermann')",,828-834,15880108.0,22844433107,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=22844433107&origin=inward,Wassermann,Nature Neuroscience,5-HTTLPR polymorphism impacts human cingulate-amygdala interactions: A genetic susceptibility mechanism for depression,Article,Wassermann,NINDS +https://api.elsevier.com/content/abstract/scopus_id/0043135252,Joseph H. Callicott;Ahmad R. Hariri;Michael F. Egan;Terry E. Goldberg;Bhaskar S. Kolachana;Venkata S. Mattay;Daniel R. Weinberger,799,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0043135252&origin=inward,10.1523/jneurosci.23-17-06690.2003,2003-07-30,"('2-s2.0-0043135252', 'Wassermann')",NIMH,6690-6694,12890761.0,43135252,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0043135252&origin=inward,Wassermann,Journal of Neuroscience,Brain-derived neurotrophic factor val66met polymorphism affects human memory-related hippocampal activity and predicts memory performance,Article,Wassermann,NINDS +https://api.elsevier.com/content/abstract/scopus_id/13244259560,Ahmad R. Hariri;Karen E. Munoz;Michael F. Egan;Bhaskar S. Kolachana;Emily M. Drabant;Venkata S. Mattay;Daniel R. Weinberger,661,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=13244259560&origin=inward,10.1001/archpsyc.62.2.146,2005-02-01,"('2-s2.0-13244259560', 'Wassermann')",,146-152,15699291.0,13244259560,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=13244259560&origin=inward,Wassermann,Archives of General Psychiatry,A susceptibility gene for affective disorders and the response of the human amygdala,Article,Wassermann,NINDS +https://api.elsevier.com/content/abstract/scopus_id/8544249878,Joseph H. Callicott;Richard E. Straub;Michael F. Egan;Lukas Pezawas;Beth A. Verchinski;Andreas Meyer-Lindenberg;Bhaskar S. Kolachana;Venkata S. Mattay;Daniel R. Weinberger,684,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=8544249878&origin=inward,10.1523/JNEUROSCI.2680-04.2004,2004-11-10,"('2-s2.0-8544249878', 'Wassermann')",,10099-10102,15537879.0,8544249878,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=8544249878&origin=inward,Wassermann,Journal of Neuroscience,The brain-derived neurotrophic factor val66met polymorphism and variation in human cortical morphology,Article,Wassermann,NINDS +https://api.elsevier.com/content/abstract/scopus_id/0033764334,Richard Coppola;Joseph H. Callicott;Frederick J.P. Langheim;Alessandro Bertolino;Terry E. Goldberg;Jeffrey Duyn;Venkata S. Mattay;Daniel R. Weinberger,641,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0033764334&origin=inward,10.1093/cercor/10.11.1078,2000-01-01,"('2-s2.0-0033764334', 'Duyn')",NIMH,1078-1092,11053229.0,33764334,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0033764334&origin=inward,Duyn,Cerebral Cortex,Physiological dysfunction of the dorsolateral prefrontal cortex in schizophrenia revisited,Article,Duyn,NINDS +https://api.elsevier.com/content/abstract/scopus_id/33646583871,Robyn Honea;Joseph H. Callicott;Ahmad R. Hariri;Giuseppe Blasi;Beth Verchinski;Bhaskar Kolachana;Ashley Wabnitz;Joshua W. Buckholtz;Lukas Pezawas;Andreas Meyer-Lindenberg;Michael Egan;Venkata Mattay;Daniel R. Weinberger,601,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33646583871&origin=inward,10.1073/pnas.0511311103,2006-04-18,"('2-s2.0-33646583871', 'Duyn')",,6269-6274,16569698.0,33646583871,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33646583871&origin=inward,Duyn,Proceedings of the National Academy of Sciences of the United States of America,Neural mechanisms of genetic risk for impulsivity and violence in humans,Article,Duyn,NINDS +https://api.elsevier.com/content/abstract/scopus_id/0037443961,Francesco Fera;Ahmad R. Hariri;Alessandro Tessitore;Venkata S. Mattay;Daniel R. Weinberger,587,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0037443961&origin=inward,10.1016/S0006-3223(02)01786-9,2003-03-15,"('2-s2.0-0037443961', 'Duyn')",NIMH,494-501,12644354.0,37443961,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0037443961&origin=inward,Duyn,Biological Psychiatry,Neocortical modulation of the amygdala response to fearful stimuli,Article,Duyn,NINDS +https://api.elsevier.com/content/abstract/scopus_id/3142702943,Joseph H. Callicott;Stefano Marenco;Michael F. Egan;Beth A. Verchinski;Venkata S. Mattay;Daniel R. Weinberger,575,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=3142702943&origin=inward,10.1176/appi.ajp.160.12.2209,2003-12-01,"('2-s2.0-3142702943', 'Duyn')",,2209-2215,14638592.0,3142702943,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=3142702943&origin=inward,Duyn,American Journal of Psychiatry,Complexity of prefrontal cortical dysfunction in schizophrenia: More than up or down,Article,Duyn,NINDS +https://api.elsevier.com/content/abstract/scopus_id/0036741356,Francesco Fera;Ahmad R. Hariri;Alessandro Tessitore;Venkata S. Mattay;Daniel R. Weinberger,564,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0036741356&origin=inward,10.1006/nimg.2002.1179,2002-01-01,"('2-s2.0-0036741356', 'Duyn')",NIMH,317-323,12482086.0,36741356,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0036741356&origin=inward,Duyn,NeuroImage,The amygdala response to emotional stimuli: A comparison of faces and scenes,Article,Duyn,NINDS +https://api.elsevier.com/content/abstract/scopus_id/20844463251,Rishi Balkissoon;Joseph H. Callicott;Richard E. Straub;Ahmad R. Hariri;Terry E. Goldberg;Michael F. Egan;Bhaskar Kolachana;Lukas Pezawas;Beth A. Verchinski;Andreas Meyer-Lindenberg;Venkata S. Mattay;Daniel R. Weinberger,427,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=20844463251&origin=inward,10.1073/pnas.0500515102,2005-06-14,"('2-s2.0-20844463251', 'Duyn')",,8627-8632,15939883.0,20844463251,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=20844463251&origin=inward,Duyn,Proceedings of the National Academy of Sciences of the United States of America,Variation in DISC1 affects hippocampal structure and function and increases risk for schizophrenia,Article,Duyn,NINDS +https://api.elsevier.com/content/abstract/scopus_id/0038474159,Ashley D. Bone;Joseph H. Callicott;Beth Verchinksi;Alessandro Bertolino;Michael F. Egan;Venkata S. Mattay;Daniel R. Weinberger,372,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0038474159&origin=inward,10.1176/appi.ajp.160.4.709,2003-04-01,"('2-s2.0-0038474159', 'Duyn')",,709-719,12668360.0,38474159,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0038474159&origin=inward,Duyn,American Journal of Psychiatry,Abnormal fMRI response of the dorsolateral prefrontal cortex in cognitively intact siblings of patients with schizophrenia,Article,Duyn,NINDS +https://api.elsevier.com/content/abstract/scopus_id/0037176813,V. S. Mattay;A. R. Hariri;J. H. Callicott;S. Das;A. Tessitore;D. R. Weinberger;F. Fera,364,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0037176813&origin=inward,10.1212/WNL.58.4.630,2002-02-26,"('2-s2.0-0037176813', 'Duyn')",,630-635,11865144.0,37176813,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0037176813&origin=inward,Duyn,Neurology,Neurophysiological correlates of age-related changes in human motor function,Article,Duyn,NINDS +https://api.elsevier.com/content/abstract/scopus_id/0036154591,Joseph H. Callicott;Venkata S. Mattay;Thomas M. Hyde;Alessandro Bertolino;Alessandro Tessitore;Thomas N. Chase;Terry E. Goldberg;Daniel R. Weinberger,321,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0036154591&origin=inward,10.1002/ana.10078,2002-02-11,"('2-s2.0-0036154591', 'Duyn')",,156-164,11835371.0,36154591,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0036154591&origin=inward,Duyn,Annals of Neurology,Dopaminergic modulation of cortical function in patients with Parkinson's disease,Article,Duyn,NINDS +https://api.elsevier.com/content/abstract/scopus_id/4344624909,Radha Krishna Vakkalanka;Rishi Balkissoon;Joseph H. Callicott;Richard E. Straub;Ahmad R. Hariri;Richard A. Gibbs;Joel E. Kleinman;Daniel R. Weinberger;Venkata S. Mattay;Thomas M. Hyde;Alessandro Bertolino;Michael F. Egan;Cynthia Shannon-Weickert;Imtiaz Yakub;Jeremy Crook;Terry E. Goldberg;Mayada Akil,321,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=4344624909&origin=inward,10.1073/pnas.0405077101,2004-08-24,"('2-s2.0-4344624909', 'Duyn')",,12604-12609,15310849.0,4344624909,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=4344624909&origin=inward,Duyn,Proceedings of the National Academy of Sciences of the United States of America,"Variation in GRM3 affects cognition, prefrontal glutamate, and risk for schizophrenia",Article,Duyn,NINDS +https://api.elsevier.com/content/abstract/scopus_id/33845330255,Ahmad R. Hariri;Karen E. Munoz;Michael F. Egan;Andreas Meyer-Lindenberg;Bhaskar S. Kolachana;Emily M. Drabant;Venkata S. Mattay;Daniel R. Weinberger,277,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33845330255&origin=inward,10.1001/archpsyc.63.12.1396,2006-12-01,"('2-s2.0-33845330255', 'Duyn')",,1396-1406,17146014.0,33845330255,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33845330255&origin=inward,Duyn,Archives of General Psychiatry,Catechol O-methyltransferase val158met genotype and neural mechanisms related to affective arousal and regulation,Article,Duyn,NINDS +https://api.elsevier.com/content/abstract/scopus_id/21044450490,Joseph H. Callicott;Brita Elvevåg;Giuseppe Blasi;Alessandro Bertolino;Saumitra Das;Michael F. Egan;Terry E. Goldberg;Bhaskar S. Kolachana;Venkata S. Mattay;Daniel R. Weinberger,253,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=21044450490&origin=inward,10.1523/JNEUROSCI.0476-05.2005,2005-05-18,"('2-s2.0-21044450490', 'Duyn')",,5038-5045,15901785.0,21044450490,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=21044450490&origin=inward,Duyn,Journal of Neuroscience,Effect of catechol-O-methyltransferase val158met genotype on attentional control,Article,Duyn,NINDS +https://api.elsevier.com/content/abstract/scopus_id/33748055408,V. S. Mattay;J. Buckholtz;J. H. Callicott;B. Kolachana;T. Nichols;D. R. Weinberger;A. Meyer-Lindenberg;J. Ding;M. Egan,255,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33748055408&origin=inward,10.1038/sj.mp.4001860,2006-09-01,"('2-s2.0-33748055408', 'Duyn')",NIAAA,867-877,16786032.0,33748055408,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33748055408&origin=inward,Duyn,Molecular Psychiatry,Impact of complex genetic variation in COMT on human brain function,Article,Duyn,NINDS +https://api.elsevier.com/content/abstract/scopus_id/0033624185,Anne M. Smith;Frank Q. Ye;John D. Van Horn;Timothy Ellmore;Yihong Yang;Joseph A. Frank;Alan C. McLaughlin;Jeff Duyn;Karen Faith Berman;Daniel R. Weinberger;Giuseppe Esposito,248,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0033624185&origin=inward,10.1002/1522-2594(200009)44:3<450::AID-MRM16>3.0.CO;2-0,2000-09-25,"('2-s2.0-0033624185', 'Berman')",,450-456,10975898.0,33624185,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0033624185&origin=inward,Berman,Magnetic Resonance in Medicine,H215O PET validation of steady-state arterial spin tagging cerebral blood flow measurements in humans,Article,Berman,NIMH +https://api.elsevier.com/content/abstract/scopus_id/0033834953,Richard Coppola;Joseph H. Callicott;Karen F. Berman;Alessandro Bertolino;Joseph A. Frank;Terry E. Goldberg;Ian Heaton;Venkata S. Mattay;Daniel R. Weinberger,227,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0033834953&origin=inward,10.1006/nimg.2000.0610,2000-01-01,"('2-s2.0-0033834953', 'Berman')",,268-275,10944409.0,33834953,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0033834953&origin=inward,Berman,NeuroImage,Effects of dextroamphetamine on cognitive performance and cortical activation,Article,Berman,NIMH +https://api.elsevier.com/content/abstract/scopus_id/0037109773,Francesco Fera;Ahmad R. Hariri;Thomas M. Hyde;Venkata S. Mattay;Alessandro Tessitore;Thomas N. Chase;William G. Smith;Daniel R. Weinberger,230,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0037109773&origin=inward,10.1523/jneurosci.22-20-09099.2002,2002-10-15,"('2-s2.0-0037109773', 'Berman')",NINDS,9099-9103,12388617.0,37109773,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0037109773&origin=inward,Berman,Journal of Neuroscience,Dopamine modulates the response of the human amygdala: A study in Parkinson's disease,Article,Berman,NIMH +https://api.elsevier.com/content/abstract/scopus_id/0033936617,Frank Q. Ye;Alan C. McLaughlin;Joseph A. Frank;Daniel R. Weinberger,233,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0033936617&origin=inward,10.1002/1522-2594(200007)44:1<92::AID-MRM14>3.0.CO;2-M,2000-07-18,"('2-s2.0-0033936617', 'Berman')",,92-100,10893526.0,33936617,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0033936617&origin=inward,Berman,Magnetic Resonance in Medicine,Noise reduction in 3D perfusion imaging by attenuating the static signal in arterial spin tagging (ASSIST),Article,Berman,NIMH +https://api.elsevier.com/content/abstract/scopus_id/28744450740,Francesco Fera;Karen F. Berman;Ahmad R. Hariri;Joseph H. Callicott;Saumitra Das;Alessandro Tessitore;Terry E. Goldberg;Andreas Meyer-Lindenberg;Venkata S. Mattay;Daniel R. Weinberger,232,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=28744450740&origin=inward,10.1016/j.neulet.2005.09.025,2006-01-09,"('2-s2.0-28744450740', 'Berman')",,32-37,16213083.0,28744450740,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=28744450740&origin=inward,Berman,Neuroscience Letters,Neurophysiological correlates of age-related changes in working memory capacity,Article,Berman,NIMH +https://api.elsevier.com/content/abstract/scopus_id/34548303921,M. F. Egan;B. K. Lipska;R. E. Straub;J. H. Callicott;J. E. Kleinman;D. R. Weinberger;B. S. Kolachana;R. K. Vakkalanka;T. E. Goldberg;M. B. Mayhew,215,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34548303921&origin=inward,10.1038/sj.mp.4001988,2007-09-01,"('2-s2.0-34548303921', 'Berman')",NIH,854-869,17767149.0,34548303921,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34548303921&origin=inward,Berman,Molecular Psychiatry,Allelic variation in GAD1 (GAD67) is associated with schizophrenia and influences cortical function and gene expression,Article,Berman,NIMH +https://api.elsevier.com/content/abstract/scopus_id/45549100295,M. F. Egan;V. S. Mattay;A. L. Goldman;A. R. Hariri;B. A. Verchinski;G. Chen;D. R. Weinberger;B. S. Kolachana;A. Meyer-Lindenberg;L. Pezawas,186,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=45549100295&origin=inward,10.1038/mp.2008.32,2008-07-01,"('2-s2.0-45549100295', 'Berman')",NIMH,709-716,18347599.0,45549100295,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=45549100295&origin=inward,Berman,Molecular Psychiatry,Evidence of biologic epistasis between BDNF and SLC6A4 and implications for depression,Article,Berman,NIMH +https://api.elsevier.com/content/abstract/scopus_id/66749174141,Armen Soghoyan;Fabio Sambataro;Ina Giegling;Andreas Meyer-Lindenberg;Daniel R. Weinberger;Bai Lu;Feng Yang;Jay Chang;Jingshan Chen;Michael F. Egan;Terry E. Goldberg;Dan Rujescu;Alessandro Bertolino;Grazia Caforio;Stephen J. Huffaker;Kristin K. Nicodemus;Jian Song;Joel E. Kleinman;Joseph H. Callicott;Thomas M. Hyde;Yuanyuan Ji;Karine Mayilyan;Barbara K. Lipska;Morgan J. Proust;Venkata Mattay,186,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=66749174141&origin=inward,10.1038/nm.1962,2009-05-01,"('2-s2.0-66749174141', 'Berman')",,509-518,19412172.0,66749174141,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=66749174141&origin=inward,Berman,Nature Medicine,"A primate-specific, brain isoform of KCNH2 affects cortical physiology, cognition, neuronal repolarization and risk of schizophrenia",Article,Berman,NIMH +https://api.elsevier.com/content/abstract/scopus_id/33751330467,Joseph H. Callicott;Hao Yang Tan;Michael F. Egan;Steven Sust;Joshua W. Buckholtz;Andreas Meyer-Lindenberg;Venkata S. Mattay;Daniel R. Weinberger,176,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33751330467&origin=inward,10.1176/ajp.2006.163.11.1969,2006-01-01,"('2-s2.0-33751330467', 'Berman')",,1969-1977,17074949.0,33751330467,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33751330467&origin=inward,Berman,American Journal of Psychiatry,Dysfunctional prefrontal regional specialization and compensation in schizophrenia,Article,Berman,NIMH +https://api.elsevier.com/content/abstract/scopus_id/34247387212,Roberta Rasetti;Joseph H. Callicott;Guilna Alce;Natkai Akbar;José A. Apud;Jingshan Chen;Jennifer E. Iudicello;Michael F. Egan;Terry E. Goldberg;Bhaskar S. Kolachana;Venkata Mattay;Daniel R. Weinberger,168,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34247387212&origin=inward,10.1038/sj.npp.1301227,2007-05-24,"('2-s2.0-34247387212', 'Berman')",,1011-1020,17063156.0,34247387212,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34247387212&origin=inward,Berman,Neuropsychopharmacology,Tolcapone improves cognition and cortical information processing in normal human subjects,Article,Berman,NIMH +https://api.elsevier.com/content/abstract/scopus_id/34547637452,Joseph H. Callicott;Hao Yang Tan;Michael F. Egan;John D. Meyers;Steven Sust;Joshua W. Buckholtz;Andreas Meyer-Lindenberg;Qiang Chen;Venkata S. Mattay;Daniel R. Weinberger,157,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34547637452&origin=inward,10.1073/pnas.0610125104,2007-07-24,"('2-s2.0-34547637452', 'Berman')",,12536-12541,17636131.0,34547637452,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34547637452&origin=inward,Berman,Proceedings of the National Academy of Sciences of the United States of America,Epistasis between catechol-O-methyltransferase and type II metabotropic glutamate receptor 3 genes on working memory brain function,Article,Berman,NIMH +https://api.elsevier.com/content/abstract/scopus_id/33847374225,Anthony Grace;Michael Spedding;Daniel Weinberger;Husseini Manji;Per Svenningsson;Jean Antoine Girault;Helen Mayberg;Yves Agid;Jeremy J. Lambert;György Buzsáki;Alain Prochiantz;Gal Richter-Levin;Richard Frackowiak;Maurizio Popoli;David M. Diamond;Peter Somogyi;Jay Giedd,168,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33847374225&origin=inward,10.1038/nrd2217,2007-03-01,"('2-s2.0-33847374225', 'Berman')",NIMH,189-201,17330070.0,33847374225,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33847374225&origin=inward,Berman,Nature Reviews Drug Discovery,How can drug discovery for psychiatric disorders be improved?,Review,Berman,NIMH +https://api.elsevier.com/content/abstract/scopus_id/38949193560,Robyn A. Honea;Katherine B. Hobbs;Joseph H. Callicott;Beth Verchinski;Michael F. Egan;Richard E. Passingham;Lukas Pezawas;Andreas Meyer-Lindenberg;Venkata S. Mattay;Daniel R. Weinberger,157,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=38949193560&origin=inward,10.1016/j.biopsych.2007.05.027,2008-03-01,"('2-s2.0-38949193560', 'Berman')",NIMH,465-474,17689500.0,38949193560,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=38949193560&origin=inward,Berman,Biological Psychiatry,Is Gray Matter Volume an Intermediate Phenotype for Schizophrenia? A Voxel-Based Morphometry Study of Patients with Schizophrenia and Their Healthy Siblings,Article,Berman,NIMH +https://api.elsevier.com/content/abstract/scopus_id/45749149476,Richard E. Straub;Joseph H. Callicott;Bhaskar S. Kolachana;Andreas Meyer-Lindenberg;Yoshitasu Sei;Zhen Li;Hao Yang Tan;Jennifer K. Brooke;Robyn Honea;Kristin K. Nicodemus;Qiang Chen;Venkata S. Mattay;Daniel R. Weinberger,148,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=45749149476&origin=inward,10.1172/JCI34725,2008-06-02,"('2-s2.0-45749149476', 'Berman')",,2200-2208,18497887.0,45749149476,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=45749149476&origin=inward,Berman,Journal of Clinical Investigation,Genetic variation in AKT1 is linked to dopamine-associated prefrontal cortical structure and function in humans,Article,Berman,NIMH +https://api.elsevier.com/content/abstract/scopus_id/0041324902,J. Lieberman;G. Gerig;D. Weinberger;D. Jones;Martin Styner,145,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0041324902&origin=inward,10.1016/S1361-8415(02)00110-X,2003-01-01,"('2-s2.0-0041324902', 'Berman')",NCI,207-220,12946464.0,41324902,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0041324902&origin=inward,Berman,Medical Image Analysis,Statistical shape analysis of neuroanatomical structures based on medial models,Article,Berman,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84855821018,Herve Lemaitre;Fabio Sambataro;Venkata S. Mattay;Beth A. Verchinski;Andreas Meyer-Lindenberg;Aaron L. Goldman;Daniel R. Weinberger,213,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84855821018&origin=inward,10.1016/j.neurobiolaging.2010.07.013,2012-01-01,"('2-s2.0-84855821018', 'Berman')",NIMH,617.e1-617.e9,20739099.0,84855821018,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84855821018&origin=inward,Berman,Neurobiology of Aging,"Normal age-related brain morphometric changes: Nonuniformity across cortical thickness, surface area and gray matter volume?",Article,Berman,NIMH +https://api.elsevier.com/content/abstract/scopus_id/0036899894,Francesco Fera;Ahmad R. Hariri;Alessandro Tessitore;William G. Smith;Venkata S. Mattay;Daniel R. Weinberger,140,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0036899894&origin=inward,10.1016/S0893-133X(02)00373-1,2002-12-01,"('2-s2.0-0036899894', 'Berman')",NIMH,1036-1040,12464460.0,36899894,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0036899894&origin=inward,Berman,Neuropsychopharmacology,Dextroamphetamine modulates the response of the human amygdala,Article,Berman,NIMH +https://api.elsevier.com/content/abstract/scopus_id/0033961240,Joseph H. Callicott;Daniel R. Weinberger;John D. Van Horn;Alessandro Bertolino;Joseph A. Frank;Karen Faith Berman;Venkata S. Mattay;Giuseppe Esposito,136,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0033961240&origin=inward,10.1176/ajp.157.1.26,2000-01-01,"('2-s2.0-0033961240', 'Berman')",,26-33,10618009.0,33961240,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0033961240&origin=inward,Berman,American Journal of Psychiatry,Specific relationship between prefrontal neuronal N-acetylaspartate and activation of the working memory cortical network in schizophrenia,Article,Berman,NIMH +https://api.elsevier.com/content/abstract/scopus_id/0038735643,Rebecca Rakow;Joseph H. Callicott;Robert Post;Alessandro Bertolino;Mark Frye;Jennifer Shelton-Repella;Venkata S. Mattay;Daniel R. Weinberger,142,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0038735643&origin=inward,10.1016/S0006-3223(02)01911-X,2003-05-15,"('2-s2.0-0038735643', 'Berman')",,906-913,12742678.0,38735643,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0038735643&origin=inward,Berman,Biological Psychiatry,Neuronal pathology in the hippocampal area of patients with bipolar disorder: A study with proton magnetic resonance spectroscopic imaging,Article,Berman,NIMH +https://api.elsevier.com/content/abstract/scopus_id/0035062495,V. S. Mattay;M. F. Egan;J. H. Callicott;D. R. Weinberger;R. Rakow;A. Bertolino;K. M. Weidenhammer,137,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0035062495&origin=inward,10.1016/S0006-3223(00)00997-5,2001-01-01,"('2-s2.0-0035062495', 'Berman')",NIMH,39-46,11163778.0,35062495,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0035062495&origin=inward,Berman,Biological Psychiatry,The effect of treatment with antipsychotic drugs on brain N-acetylaspartate measures in patients with schizophrenia,Article,Berman,NIMH +https://api.elsevier.com/content/abstract/scopus_id/0034142382,Joseph H. Callicott;Alan Breier;Alessandro Bertolino;Maxim Shapiro;David Pickar;Joseph A. Frank;Caleb Adler;Venkata S. Mattay;Daniel R. Weinberger,133,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0034142382&origin=inward,10.1016/S0893-133X(99)00096-2,2000-02-01,"('2-s2.0-0034142382', 'Berman')",,125-132,10649825.0,34142382,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0034142382&origin=inward,Berman,Neuropsychopharmacology,The relationship between dorsolateral prefrontal neuronal N-acetylaspartate and evoked release of striatal dopamine in schizophrenia,Article,Berman,NIMH +https://api.elsevier.com/content/abstract/scopus_id/3242705255,Daniel Hommer;James M. Bjork;Grace W. Fong;Brian Knutson;Venkata S. Mattay;Daniel R. Weinberger,133,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=3242705255&origin=inward,10.1016/j.neuron.2004.06.030,2004-07-22,"('2-s2.0-3242705255', 'Hommer')",NARSAD,261-269,15260961.0,3242705255,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=3242705255&origin=inward,Hommer,Neuron,Amphetamine modulates human incentive processing,Article,Hommer,NIAAA +https://api.elsevier.com/content/abstract/scopus_id/70349919812,A. Olsh;V. Mattay;M. Dean;B. Kolachana;K. K. Nicodemus;D. R. Weinberger;A. Meyer-Lindenberg;B. Gold,139,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=70349919812&origin=inward,10.1038/mp.2008.54,2009-01-01,"('2-s2.0-70349919812', 'Hommer')",NIH,968-975,18490926.0,70349919812,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=70349919812&origin=inward,Hommer,Molecular Psychiatry,Genetic variants in AVPR1A linked to autism predict amygdala activation and personality traits in healthy humans,Article,Hommer,NIAAA +https://api.elsevier.com/content/abstract/scopus_id/83055160768,Roberta Rasetti;Joseph H. Callicott;Fabio Sambataro;Qiang Chen;Venkata S. Mattay;Daniel R. Weinberger,130,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=83055160768&origin=inward,10.1001/archgenpsychiatry.2011.103,2011-12-01,"('2-s2.0-83055160768', 'Hommer')",,1207-1217,21810628.0,83055160768,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=83055160768&origin=inward,Hommer,Archives of General Psychiatry,Altered cortical network dynamics: A potential intermediate phenotype for schizophrenia and association with ZNF804A,Article,Hommer,NIAAA +https://api.elsevier.com/content/abstract/scopus_id/16344391965,Robert K. McClure;Jeffrey A. Lieberman;Guido Gerig;Douglas W. Jones;Martin Styner;Daniel R. Weinberger,122,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=16344391965&origin=inward,10.1073/pnas.0501117102,2005-03-29,"('2-s2.0-16344391965', 'Hommer')",,4872-4877,15772166.0,16344391965,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=16344391965&origin=inward,Hommer,Proceedings of the National Academy of Sciences of the United States of America,Morphometric analysis of lateral ventricles in schizophrenia and healthy controls regarding genetic and disease-specific factors,Article,Hommer,NIAAA +https://api.elsevier.com/content/abstract/scopus_id/33645098660,Joseph H. Callicott;Thomas Weickert;Giuseppe Blasi;Venkata S. Mattay;Saumitra Das;Alessandro Bertolino;Philip Kohn;Brad Zoltick;Terry E. Goldberg;Daniel R. Weinberger,142,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33645098660&origin=inward,10.1111/j.1460-9568.2006.04680.x,2006-03-01,"('2-s2.0-33645098660', 'Hommer')",,1658-1664,16553630.0,33645098660,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33645098660&origin=inward,Hommer,European Journal of Neuroscience,Brain regions underlying response inhibition and interference monitoring and suppression,Article,Hommer,NIAAA +https://api.elsevier.com/content/abstract/scopus_id/37149054393,Joseph H. Callicott;Hao Yang Tan;Terry E. Goldberg;Andreas Meyer-Lindenberg;Qiang Chen;Venkata S. Mattay;Daniel R. Weinberger,116,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=37149054393&origin=inward,10.1523/JNEUROSCI.4041-07.2007,2007-12-05,"('2-s2.0-37149054393', 'Hommer')",,13393-13401,18057197.0,37149054393,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=37149054393&origin=inward,Hommer,Journal of Neuroscience,Catechol-O-methyltransferase Val158Met modulation of prefrontal-parietal- striatal brain systems during arithmetic and temporal transformations in working memory,Article,Hommer,NIAAA +https://api.elsevier.com/content/abstract/scopus_id/33745949219,Richard Coppola;Richard E. Straub;Joseph H. Callicott;Llewellyn Bigelow;Michael F. Egan;Terry E. Goldberg;Ahmad Hariri;Venkata S. Mattay;Daniel R. Weinberger,112,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33745949219&origin=inward,10.1038/sj.npp.1301049,2006-09-12,"('2-s2.0-33745949219', 'Hommer')",,2022-2032,16554747.0,33745949219,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33745949219&origin=inward,Hommer,Neuropsychopharmacology,The G72/G30 gene complex and cognitive abnormalities in schizophrenia,Article,Hommer,NIAAA +https://api.elsevier.com/content/abstract/scopus_id/33947583434,Michael N. Smolka;Dieter F. Braus;Jana Wrase;Ahmad R. Hariri;Karl Mann;Anne Beck;Gunter Schumann;Andreas Heinz;Christian Büchel;Herta Flor;Daniel R. Weinberger,108,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33947583434&origin=inward,10.1016/j.biopsych.2006.08.019,2007-04-15,"('2-s2.0-33947583434', 'Hommer')",DFG,1011-1014,17157270.0,33947583434,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33947583434&origin=inward,Hommer,Biological Psychiatry,Serotonin Transporter Genotype (5-HTTLPR): Effects of Neutral and Undefined Conditions on Amygdala Activation,Article,Hommer,NIAAA +https://api.elsevier.com/content/abstract/scopus_id/0345724778,Richard Coppola;Michael F. Egan;Terry E. Goldberg;Georg Winterer;Daniel R. Weinberger,105,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0345724778&origin=inward,10.1016/S0006-3223(03)00532-8,2003-12-01,"('2-s2.0-0345724778', 'Hommer')",,1181-1192,14643085.0,345724778,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0345724778&origin=inward,Hommer,Biological Psychiatry,Functional and effective frontotemporal connectivity and genetic risk for schizophrenia,Article,Hommer,NIAAA +https://api.elsevier.com/content/abstract/scopus_id/0041884746,Mitsuyuki Matsumoto;Senda Beltaifa;Joel E. Kleinman;Thomas M. Hyde;Mary M. Herman;Jingshan Chen;Cynthia Shannon Weickert;Bhaskar Kolachana;Daniel R. Weinberger,116,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0041884746&origin=inward,10.1038/sj.npp.1300218,2003-08-01,"('2-s2.0-0041884746', 'Hommer')",,1521-1530,12799619.0,41884746,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0041884746&origin=inward,Hommer,Neuropsychopharmacology,Catechol O-methyltransferase (COMT) mRNA expression in the dorsolateral prefrontal cortex of patients with schizophrenia,Article,Hommer,NIAAA +https://api.elsevier.com/content/abstract/scopus_id/0033802818,M. F. Egan;V. S. Mattay;F. J.P. Langheim;J. H. Callicott;D. R. Weinberger;A. Bertolino,99,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0033802818&origin=inward,10.1176/appi.ajp.157.10.1646,2000-01-01,"('2-s2.0-0033802818', 'Hommer')",NIMH,1646-1651,11007719.0,33802818,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0033802818&origin=inward,Hommer,American Journal of Psychiatry,Selective relationship between prefrontal N-acetylaspartate measures and negative symptoms in schizophrenia,Article,Hommer,NIAAA +https://api.elsevier.com/content/abstract/scopus_id/60349116939,Lukas Pezawas;Joseph H. Callicott;Robyn Honea;Beth A. Verchinski;Andreas Meyer-Lindenberg;Bhaskar S. Kolachana;Venkata S. Mattay;Daniel R. Weinberger,104,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=60349116939&origin=inward,10.1016/j.neuroimage.2008.10.064,2009-03-01,"('2-s2.0-60349116939', 'Hommer')",,44-51,19071221.0,60349116939,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=60349116939&origin=inward,Hommer,NeuroImage,Impact of interacting functional variants in COMT on regional gray matter volume in human brain,Article,Hommer,NIAAA +https://api.elsevier.com/content/abstract/scopus_id/20444381284,Francesco Fera;Ahmad R. Hariri;Venkata S. Mattay;Saumitra Das;Alessandro Tessitore;William G. Smith;Daniel R. Weinberger,103,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=20444381284&origin=inward,10.1016/j.pscychresns.2005.02.009,2005-05-30,"('2-s2.0-20444381284', 'Hommer')",NIMH,9-18,15936178.0,20444381284,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=20444381284&origin=inward,Hommer,Psychiatry Research - Neuroimaging,Functional changes in the activity of brain regions underlying emotion processing in the elderly,Article,Hommer,NIAAA +https://api.elsevier.com/content/abstract/scopus_id/60349127721,Roberta Rasetti;Joseph H. Callicott;Ahmad R. Hariri;Lisa M. Wiedholz;Andreas Meyer-Lindenberg;Bhaskar S. Kolachana;Venkata S. Mattay;Daniel R. Weinberger,93,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=60349127721&origin=inward,10.1176/appi.ajp.2008.08020261,2009-02-01,"('2-s2.0-60349127721', 'Hommer')",,216-225,19074979.0,60349127721,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=60349127721&origin=inward,Hommer,American Journal of Psychiatry,Evidence that altered amygdala activity in schizophrenia is related to clinical state and not genetic risk,Article,Hommer,NIAAA +https://api.elsevier.com/content/abstract/scopus_id/33847152217,Robyn A. Honea;Richard E. Straub;Joseph H. Callicott;Radhakrishna Vakkalanka;Michael F. Egan;Steven Sust;Beth A. Verchinski;Bhaskar Kolachana;Joshua W. Buckholtz;Lukas Pezawas;Andreas Meyer-Lindenberg;Venkata S. Mattay;Daniel R. Weinberger,85,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33847152217&origin=inward,10.1523/JNEUROSCI.5112-06.2007,2007-02-14,"('2-s2.0-33847152217', 'Hommer')",,1584-1593,17301167.0,33847152217,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33847152217&origin=inward,Hommer,Journal of Neuroscience,Allelic variation in RGS4 impacts functional and structural connectivity in the human brain,Article,Hommer,NIAAA +https://api.elsevier.com/content/abstract/scopus_id/33748294193,Francesco Musso;Peter Stoeter;Juergen Gallinat;Andreas Konrad;Berna Seker;Goran Vucurevic;Georg Winterer;Norbert Dahmen;Daniel R. Weinberger,86,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33748294193&origin=inward,10.1016/j.neuroimage.2006.05.058,2006-10-01,"('2-s2.0-33748294193', 'Hommer')",,1722-1732,16884927.0,33748294193,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33748294193&origin=inward,Hommer,NeuroImage,COMT genotype predicts BOLD signal and noise characteristics in prefrontal circuits,Article,Hommer,NIAAA +https://api.elsevier.com/content/abstract/scopus_id/30544440487,Thomas W. Weickert;Francesco Fera;Daniel R. Weinberger;Sumitra Das;Sam Lee;Catherine E. Myers;Venkata S. Mattay;Alessandro Tessitore;Mark A. Gluck;Brad Zoltick;Ahmad Hariri;Terry E. Goldberg;Martijn Meeter,82,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=30544440487&origin=inward,10.1523/JNEUROSCI.2736-05.2005,2005-12-07,"('2-s2.0-30544440487', 'Hommer')",,11340-11348,16339029.0,30544440487,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=30544440487&origin=inward,Hommer,Journal of Neuroscience,Neural mechanisms underlying probabilistic category learning in normal aging,Article,Hommer,NIAAA +https://api.elsevier.com/content/abstract/scopus_id/84855340012,F. Papaleo;J. Chen;D. R. Weinberger;F. Yang;J. N. Crawley;S. Garcia;B. Lu,93,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84855340012&origin=inward,10.1038/mp.2010.106,2012-01-01,"('2-s2.0-84855340012', 'Hommer')",NIMH,85-98,20956979.0,84855340012,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84855340012&origin=inward,Hommer,Molecular Psychiatry,Dysbindin-1 modulates prefrontal cortical activity and schizophrenia-like behaviors via dopamine/D2 pathways,Article,Hommer,NIAAA +https://api.elsevier.com/content/abstract/scopus_id/57149120578,Richard E. Straub;Joseph H. Callicott;Radhakrishna Vakkalanka;Andreas Meyer-Lindenberg;Venkata A. Mattay;Lucas Kempf;Michael F. Egan;Bhaskar Kolachana;Beth A. Verchinski;Kristin K. Nicodemus;Daniel R. Weinberger,80,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=57149120578&origin=inward,10.1371/journal.pgen.1000252,2008-11-01,"('2-s2.0-57149120578', 'Hommer')",,,18989458.0,57149120578,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=57149120578&origin=inward,Hommer,PLoS Genetics,Functional polymorphisms in PRODH are associated with risk and protection for schizophrenia and fronto-striatal structure and function,Article,Hommer,NIAAA +https://api.elsevier.com/content/abstract/scopus_id/55949127945,Raffaella Romano;Joseph H. Callicott;Teresa Popolizio;Giuseppe Blasi;Miriam Rizzo;Fabio Sambataro;Antonio Rampino;Annabella Di Giorgio;Francesco Gambi;Marcello Nardini;Grazia Caforio;Alessandro Bertolino;Apostolos Papazacharias;Valeria Latorre;Bhaskar Kolachana;Daniel R. Weinberger,78,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=55949127945&origin=inward,10.1111/j.1460-9568.2008.06482.x,2008-11-01,"('2-s2.0-55949127945', 'Hommer')",,2129-2136,19046394.0,55949127945,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=55949127945&origin=inward,Hommer,European Journal of Neuroscience,Association of the Ser704Cys DISC1 polymorphism with human hippocampal formation gray matter and function during memory encoding,Article,Hommer,NIAAA +https://api.elsevier.com/content/abstract/scopus_id/84856066559,Dwight Dickinson;Joseph H. Callicott;Andreas Meyer-Lindenberg;Stefano Marenco;Antonina A. Savostyanova;Fabio Sambataro;José A. Apud;Hao Yang Tan;Jason L. Stein;Beth A. Verchinski;Alan S. Barnett;Aaron L. Goldman;Daniel R. Weinberger,92,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84856066559&origin=inward,10.1038/npp.2011.215,2012-01-01,"('2-s2.0-84856066559', 'Hommer')",,499-507,21956440.0,84856066559,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84856066559&origin=inward,Hommer,Neuropsychopharmacology,Investigation of anatomical thalamo-cortical connectivity and fMRI activation in schizophrenia,Article,Hommer,NIAAA +https://api.elsevier.com/content/abstract/scopus_id/0036679036,Joseph H. Callicott;Venkata S. Mattay;Frederick J.P. Langheim;Daniel R. Weinberger;Jeff H. Duyn,70,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0036679036&origin=inward,10.1006/nimg.2002.1144,2002-01-01,"('2-s2.0-0036679036', 'Duyn')",,901-908,12202078.0,36679036,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0036679036&origin=inward,Duyn,NeuroImage,Cortical systems associated with covert music rehearsal,Article,Duyn,NINDS +https://api.elsevier.com/content/abstract/scopus_id/33750967649,Richard Coppola;Robert K. McClure;Allan Barnett;Roukan Jazayerli;Ingrid Phillips;Daniel R. Weinberger,64,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33750967649&origin=inward,10.1016/j.pscychresns.2006.04.008,2006-12-01,"('2-s2.0-33750967649', 'Duyn')",NARSAD,121-132,17097276.0,33750967649,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33750967649&origin=inward,Duyn,Psychiatry Research - Neuroimaging,Regional change in brain morphometry in schizophrenia associated with antipsychotic treatment,Article,Duyn,NINDS +https://api.elsevier.com/content/abstract/scopus_id/77952095729,Joseph H. Callicott;Augustin Luna;Radhakrishna Vakkalanka;Daniel R. Weinberger;Dan Rujescu;Pierandrea Muglia;Ina Giegling;Barbara K. Lipska;Kristin K. Nicodemus;Yin Yao Shugart;David St Clair;Rachel G. Higier;Devon C. Nixon,69,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77952095729&origin=inward,10.1007/s00439-009-0782-y,2010-01-01,"('2-s2.0-77952095729', 'Duyn')",,441-452,20084519.0,77952095729,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77952095729&origin=inward,Duyn,Human Genetics,"Evidence of statistical epistasis between DISC1, CIT and NDEL1 impacting risk for schizophrenia: Biological validation with functional neuroimaging",Article,Duyn,NINDS +https://api.elsevier.com/content/abstract/scopus_id/0037468303,Anton Scamvougeras;Sandra F. Witelson;Douglas Jones;Daniel R. Weinberger;Debra L. Kigar,53,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0037468303&origin=inward,10.1016/S0304-3940(02)01333-2,2003-02-27,"('2-s2.0-0037468303', 'Duyn')",NIH,91-94,12566160.0,37468303,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0037468303&origin=inward,Duyn,Neuroscience Letters,Size of the human corpus callosum is genetically determined: An MRI study in mono and dizygotic twins,Review,Duyn,NINDS +https://api.elsevier.com/content/abstract/scopus_id/70349248588,Joseph H. Callicott;Fabio Sambataro;Venkata S. Mattay;Saumitra Das;Vishnu P. Murty;Hao Yang Tan;Andreas Meyer-Lindenberg;Terry E. Goldberg;Daniel R. Weinberger,58,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=70349248588&origin=inward,10.1162/jocn.2009.21130,2009-10-01,"('2-s2.0-70349248588', 'Duyn')",,1920-1933,18823239.0,70349248588,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=70349248588&origin=inward,Duyn,Journal of Cognitive Neuroscience,Age-related alterations in simple declarative memory and the effect of negative stimulus valence,Article,Duyn,NINDS +https://api.elsevier.com/content/abstract/scopus_id/59649119220,Thomas W. Weickert;Joseph H. Callicott;Daniel R. Weinberger;Catherine Myers;Sumitra Das;Venkata S. Mattay;Michael F. Egan;Mark A. Gluck;Jose A. Apud;Qiang Chen;Brad J. Zoltick;Terry E. Goldberg;Martijn Meeter,58,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=59649119220&origin=inward,10.1523/JNEUROSCI.4341-08.2009,2009-01-28,"('2-s2.0-59649119220', 'Duyn')",,1244-1254,19176832.0,59649119220,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=59649119220&origin=inward,Duyn,Journal of Neuroscience,Neural correlates of probabilistic category learning in patients with schizophrenia,Article,Duyn,NINDS +https://api.elsevier.com/content/abstract/scopus_id/33746190656,Robyn A. Honea;Robert Rawlings;Stefano Marenco;Gustavo K. Rohde;Carlo Pierpaoli;Alan S. Barnett;Daniel R. Weinberger,56,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33746190656&origin=inward,10.1016/j.pscychresns.2006.01.008,2006-06-30,"('2-s2.0-33746190656', 'Pierpaoli')",,69-78,16797169.0,33746190656,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33746190656&origin=inward,Pierpaoli,Psychiatry Research - Neuroimaging,Regional distribution of measurement error in diffusion tensor imaging,Article,Pierpaoli,NIBIB +https://api.elsevier.com/content/abstract/scopus_id/35148872558,Richard Coppola;Francesco Musso;Frederick W. Carver;Georg Winterer;Venkata Mattay;Daniel R. Weinberger,51,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=35148872558&origin=inward,10.1002/hbm.20322,2007-09-01,"('2-s2.0-35148872558', 'Pierpaoli')",,805-816,17133396.0,35148872558,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=35148872558&origin=inward,Pierpaoli,Human Brain Mapping,Complex relationship between BOLD signal and synchronization/ desynchronization of human brain MEG oscillations,Article,Pierpaoli,NIBIB +https://api.elsevier.com/content/abstract/scopus_id/77955715528,Roberta Rasetti;Joseph H. Callicott;Giuseppe Blasi;Fabio Sambataro;José A. Apud;Beth Stankevich;Isabel C. Arrillaga-Romany;Kelsey Skjei;Terry E. Goldberg;Venkata S. Mattay;Daniel R. Weinberger,57,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77955715528&origin=inward,10.1038/npp.2010.83,2010-09-01,"('2-s2.0-77955715528', 'Pierpaoli')",NIMH,2101-2109,20555311.0,77955715528,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77955715528&origin=inward,Pierpaoli,Neuropsychopharmacology,Modulatory effects of modafinil on neural circuits regulating emotion and cognition,Article,Pierpaoli,NIBIB +https://api.elsevier.com/content/abstract/scopus_id/33751331472,Richard Coppola;Francesco Musso;Joseph H. Callicott;Christian Beckmann;Michael F. Egan;Douglas W. Jones;Georg Winterer;Venkata Mattay;Daniel R. Weinberger,52,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33751331472&origin=inward,10.1176/ajp.2006.163.11.1960,2006-01-01,"('2-s2.0-33751331472', 'Pierpaoli')",,1960-1968,17074948.0,33751331472,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33751331472&origin=inward,Pierpaoli,American Journal of Psychiatry,Instability of prefrontal signal processing in schizophrenia,Article,Pierpaoli,NIBIB +https://api.elsevier.com/content/abstract/scopus_id/0347003606,G. Juckel;J. Gallinat;B. Romero;D. R. Weinberger;A. Heinz,49,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0347003606&origin=inward,,2003-11-01,"('2-s2.0-0347003606', 'Pierpaoli')",,,14677072.0,347003606,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0347003606&origin=inward,Pierpaoli,Pharmacopsychiatry,Molecular Brain Imaging and the Neurobiology and Genetics of Schizophrenia,Conference Paper,Pierpaoli,NIBIB +https://api.elsevier.com/content/abstract/scopus_id/77953594619,Joseph H. Callicott;Richard E. Straub;Stefano Marenco;Antonina A. Savostyanova;Jun Shen;Jan Willem Van Der Veen;Matthew Geramita;Bhaskar Kolachana;Eugenia Radulescu;Fengyu Zhang;Alan S. Barnett;Alexa Stern;Daniel R. Weinberger,53,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77953594619&origin=inward,10.1038/npp.2010.35,2010-07-01,"('2-s2.0-77953594619', 'Pierpaoli')",,1708-1717,20357758.0,77953594619,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77953594619&origin=inward,Pierpaoli,Neuropsychopharmacology,Genetic modulation of GABA levels in the anterior cingulate cortex by GAD1 and COMT,Article,Pierpaoli,NIBIB +https://api.elsevier.com/content/abstract/scopus_id/79955664935,Joseph W. Barter;M. Ryan Haynes;Caroline F. Zink;Martina Ly;Daniel R. Weinberger,52,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79955664935&origin=inward,10.1016/j.cub.2011.03.050,2011-05-10,"('2-s2.0-79955664935', 'Pierpaoli')",NIH,794-797,21530264.0,79955664935,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79955664935&origin=inward,Pierpaoli,Current Biology,Subjective socioeconomic status predicts human ventral striatal responses to social status information,Article,Pierpaoli,NIBIB +https://api.elsevier.com/content/abstract/scopus_id/80051560326,Stefano Marenco;Antonina A. Savostyanova;Jun Shen;Jan Willem van der Veen;Matthew Geramita;Alan S. Barnett;Daniel R. Weinberger,59,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=80051560326&origin=inward,10.1002/nbm.1662,2011-11-01,"('2-s2.0-80051560326', nan)",,1089-1098,21290458.0,80051560326,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=80051560326&origin=inward,,NMR in Biomedicine,Reproducibility of prefrontal γ-aminobutyric acid measurements with J-edited spectroscopy,Article,, +https://api.elsevier.com/content/abstract/scopus_id/33847181739,Joseph H. Callicott;Brita Elvevåg;Giuseppe Blasi;Venkata S. Mattay;Mario Altamura;Alessandro Bertolino;Terry E. Goldberg;Daniel R. Weinberger,50,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33847181739&origin=inward,10.1016/j.pscychresns.2006.08.002,2007-02-28,"('2-s2.0-33847181739', nan)",,103-114,17292590.0,33847181739,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33847181739&origin=inward,,Psychiatry Research - Neuroimaging,Dissociating the effects of Sternberg working memory demands in prefrontal cortex,Article,, +https://api.elsevier.com/content/abstract/scopus_id/70349754175,Ahmad R. Hariri;Guilna Alce;Giuseppe Blasi;Fabio Sambataro;Paolo Taurisano;Venkata S. Mattay;Saumitra Das;Alessandro Bertolino;Daniel R. Weinberger,47,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=70349754175&origin=inward,10.1016/j.biopsych.2009.06.017,2009-11-01,"('2-s2.0-70349754175', nan)",,847-853,19709644.0,70349754175,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=70349754175&origin=inward,,Biological Psychiatry,Preferential Amygdala Reactivity to the Negative Assessment of Neutral Faces,Article,, +https://api.elsevier.com/content/abstract/scopus_id/43149103173,Shinji Takahashi;Hiroyuki Ishii;Shun Ichiro Matsumoto;Masayasu Yoshino;Nobuya Matsuoka;Kazuhiro Terai;Kiyoshi Furuichi;Robyn Honea;Andreas Meyer-Lindenberg;Hitoshi Matsushime;Daniel R. Weinberger;Jun Takasaki;Radha Krishna Vakkalanka;Miwako Shobo;Masazumi Kamohara;Hiroyuki Yokota;Masao Katoh;Lucas Kempf;Takeshi Sasayama;Shuji Morita;Michael F. Egan;Masato Kobori;Junko Yarimizu;Ayako Matsuo;Kristin K. Nicodemus;Mitsuyuki Matsumoto;Akira Miyake;Richard E. Straub;Joseph H. Callicott;Akihiko Fujikawa;Shintaro Nishimura;Stefano Marenco;Hideki Hiyama;Takatoshi Soga;Masashi Hiramoto;Masatoshi Yuri;Sosuke Miyoshi,44,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=43149103173&origin=inward,10.1073/pnas.0710717105,2008-04-22,"('2-s2.0-43149103173', nan)",,6133-6138,18413613.0,43149103173,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=43149103173&origin=inward,,Proceedings of the National Academy of Sciences of the United States of America,"The evolutionarily conserved G protein-coupled receptor SREB2/GPR85 influences brain size, behavior, and vulnerability to schizophrenia",Article,, +https://api.elsevier.com/content/abstract/scopus_id/84860641076,Joseph H. Callicott;Hao Yang Tan;Jose A. Apud;Bhaskar Kolachana;Anthony G. Chen;Qiang Chen;Venkata S. Mattay;Daniel R. Weinberger,44,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84860641076&origin=inward,10.1093/brain/aws068,2012-01-01,"('2-s2.0-84860641076', nan)",NIMH,1436-1445,22525159.0,84860641076,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84860641076&origin=inward,,Brain,Effective connectivity of AKT1-mediated dopaminergic working memory networks and pharmacogenetics of anti-dopaminergic treatment,Article,, +https://api.elsevier.com/content/abstract/scopus_id/79959697514,Bradley Zoltick;Fabio Sambataro;Venkata S. Mattay;Mario Altamura;Jennifer Iudicello;Vishnu P. Murty;Eugenia Radulescu;Terry E. Goldberg;Daniel R. Weinberger,53,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79959697514&origin=inward,10.1016/j.neuroimage.2011.05.006,2011-08-01,"('2-s2.0-79959697514', nan)",,1264-1272,21596142.0,79959697514,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79959697514&origin=inward,,NeuroImage,Selective updating of working memory content modulates meso-cortico-striatal activity,Article,, +https://api.elsevier.com/content/abstract/scopus_id/68949175708,Jeff D. Reed;Joseph H. Callicott;Fabio Sambataro;Venkata S. Mattay;Saumitra Das;Vishnu P. Murty;Hao Yang Tan;Daniel R. Weinberger,41,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=68949175708&origin=inward,10.1016/j.biopsych.2009.04.014,2009-09-15,"('2-s2.0-68949175708', nan)",NIMH,540-548,19539269.0,68949175708,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=68949175708&origin=inward,,Biological Psychiatry,Catechol-O-Methyltransferase Valine158Methionine Polymorphism Modulates Brain Networks Underlying Working Memory Across Adulthood,Article,, +https://api.elsevier.com/content/abstract/scopus_id/84872488798,Heike Tost;Joey W. Trampush;Herve Lemaitre;Stefano Marenco;Tajvar Alam;Matthew Geramita;Christine Rebsch;Bhaskar Kolachana;Beth A. Verchinski;Dwight Dickinson;Alan S. Barnett;Daniel R. Weinberger,41,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84872488798&origin=inward,10.1038/npp.2012.214,2013-02-01,"('2-s2.0-84872488798', nan)",NIMH,525-532,23132269.0,84872488798,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84872488798&origin=inward,,Neuropsychopharmacology,Effects of the BDNF val 66 met polymorphism on white matter microstructure in healthy adults,Article,, +https://api.elsevier.com/content/abstract/scopus_id/77957667026,Marc S. Lener;Joseph P. Callicott;Brita Elvevåg;Thomas M. Hyde;Amy Deep-Soboslay;José A. Apud;Beth A. Verchinski;Daniel R. Weinberger,38,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77957667026&origin=inward,10.1093/brain/awq160,2010-01-01,"('2-s2.0-77957667026', nan)",NIH,3113-3122,20639549.0,77957667026,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77957667026&origin=inward,,Brain,"Handedness, heritability, neurocognition and brain asymmetry in schizophrenia",Article,, +https://api.elsevier.com/content/abstract/scopus_id/34748912359,V. S. Mattay;R. E. Straub;J. H. Callicott;D. R. Weinberger;H. Y. Tan;A. Meyer-Lindenberg;S. Sust;J. W. Buckholtz,35,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34748912359&origin=inward,10.1038/sj.mp.4002008,2007-10-01,"('2-s2.0-34748912359', nan)",,893-895,17895922.0,34748912359,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34748912359&origin=inward,,Molecular Psychiatry,fMRI evidence for functional epistasis between COMT and RGS4 [2],Letter,, +https://api.elsevier.com/content/abstract/scopus_id/54349085028,Aaron Goldman;Joseph H. Callicott;Stefano Marenco;Antonina A. Savostyanova;Venkata S. Mattay;Alexa J. Stern;Alan S. Barnett;Jan Willem C. van der Veen;Daniel R. Weinberger,30,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=54349085028&origin=inward,10.1016/j.biopsych.2008.07.009,2008-11-15,"('2-s2.0-54349085028', nan)",NIMH,856-862,18707679.0,54349085028,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=54349085028&origin=inward,,Biological Psychiatry,Impact of the Brain-Derived Neurotrophic Factor Val66Met Polymorphism on Levels of Hippocampal N-Acetyl-Aspartate Assessed by Magnetic Resonance Spectroscopic Imaging at 3 Tesla,Article,, +https://api.elsevier.com/content/abstract/scopus_id/36849031770,Khary Carew;Robert K. McClure;Stacy Greeter;Grant Steen;Daniel R. Weinberger;Emily Maushauer,30,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=36849031770&origin=inward,10.1016/j.schres.2007.05.012,2008-01-01,"('2-s2.0-36849031770', nan)",,29-39,17976957.0,36849031770,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=36849031770&origin=inward,,Schizophrenia Research,Absence of regional brain volume change in schizophrenia associated with short-term atypical antipsychotic treatment,Article,, +https://api.elsevier.com/content/abstract/scopus_id/79955424773,Morgan J. Prust;Joseph H. Callicott;Daniel R. Weinberger;Fabio Sambataro;Hao Yang Tan;Venkata S. Mattay;Devon C. Nixon,28,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79955424773&origin=inward,10.1016/j.biopsych.2010.10.031,2011-05-15,"('2-s2.0-79955424773', nan)",NIMH,1006-1008,21215384.0,79955424773,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79955424773&origin=inward,,Biological Psychiatry,Interactive effects of DAOA (G72) and catechol-O-methyltransferase on neurophysiology in prefrontal cortex,Article,, +https://api.elsevier.com/content/abstract/scopus_id/84866736870,V. S. Mattay;J. H. Callicott;B. Kolachana;H. Y. Tan;F. Zhang;A. G. Chen;Q. Chen;D. R. Weinberger;J. Apud;B. Verchinski;L. B. Browne,30,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84866736870&origin=inward,10.1038/mp.2011.91,2012-10-01,"('2-s2.0-84866736870', nan)",NIMH,1007-1016,21788944.0,84866736870,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84866736870&origin=inward,,Molecular Psychiatry,Epistatic interactions of AKT1 on human medial temporal lobe biology and pharmacogenetic implications,Article,, +https://api.elsevier.com/content/abstract/scopus_id/33847067567,Roberta Rasetti;Brita Elvevåg;Giuseppe Blasi;Guilna Alce;Venkata S. Mattay;Alessandro Bertolino;Jessica Cohen;Brad Zoltick;Terry E. Goldberg;Daniel R. Weinberger,29,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33847067567&origin=inward,10.1111/j.1460-9568.2007.05283.x,2007-01-01,"('2-s2.0-33847067567', nan)",,594-602,17284202.0,33847067567,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33847067567&origin=inward,,European Journal of Neuroscience,Differentiating allocation of resources and conflict detection within attentional control processing,Article,, +https://api.elsevier.com/content/abstract/scopus_id/0036273090,Bobbi K. Lewis;Frank Q. Ye;Joseph A. Frank;Keith S. St. Lawrence;Daniel R. Weinberger;Alan C. McLaughlin,25,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0036273090&origin=inward,10.1002/jmri.10111,2002-06-19,"('2-s2.0-0036273090', nan)",,628-635,12112512.0,36273090,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0036273090&origin=inward,,Journal of Magnetic Resonance Imaging,Effects of indomethacin on cerebral blood flow at rest and during hypercapnia: An arterial spin tagging study in humans,Article,, +https://api.elsevier.com/content/abstract/scopus_id/84875227712,Roberta Rasetti;Martin Safrin;Joseph H. Callicott;Giuseppe Blasi;Kristina Thurin;Fabio Sambataro;Venkata S. Mattay;Daniel R. Weinberger,31,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84875227712&origin=inward,10.1038/npp.2012.250,2013-04-01,"('2-s2.0-84875227712', nan)",NIMH,846-853,23299932.0,84875227712,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84875227712&origin=inward,,Neuropsychopharmacology,Altered cerebral response during cognitive control: A potential indicator of genetic liability for schizophrenia,Article,, +https://api.elsevier.com/content/abstract/scopus_id/80051567966,Amanda J. Law;Stefano Marenco;Jun Shen;Jan Willem van der Veen;Matthew Geramita;Bhaskar Kolachana;Alan S. Barnett;Daniel R. Weinberger,26,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=80051567966&origin=inward,10.1523/JNEUROSCI.1529-11.2011,2011-08-10,"('2-s2.0-80051567966', nan)",,11628-11632,21832192.0,80051567966,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=80051567966&origin=inward,,Journal of Neuroscience,Genetic association of ErbB4 and human cortical GABA levels in vivo,Article,, +https://api.elsevier.com/content/abstract/scopus_id/77949398277,Raffaella Romano;Teresa Popolizio;Giuseppe Blasi;Fabio Sambataro;Paolo Taurisano;Annabella Di Giorgio;Alessandro Bertolino;Marcello Nardini;Grazia Caforio;Leonardo Fazio;Apostolos Papazacharias;Valeria Latorre;Luciana Lobianco;Venkata S. Mattay;Daniel R. Weinberger,24,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77949398277&origin=inward,10.1093/cercor/bhp146,2010-04-01,"('2-s2.0-77949398277', nan)",,837-845,19633177.0,77949398277,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77949398277&origin=inward,,Cerebral Cortex,Nonlinear response of the anterior cingulate and prefrontal cortex in Schizophrenia as a function of variable attentional control,Article,, +https://api.elsevier.com/content/abstract/scopus_id/50849117836,Robyn A. Honea;Llewellyn B. Bigelow;Joseph H. Callicott;Andreas Meyer-Lindenberg;Thomas M. Hyde;Amy Deep-Soboslay;Michael F. Egan;Esther M. Emsellem;Bianca Iglesias;James M. Gold;Daniel R. Weinberger,21,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=50849117836&origin=inward,10.1093/brain/awn167,2008-01-01,"('2-s2.0-50849117836', nan)",NIH,2489-2498,18669483.0,50849117836,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=50849117836&origin=inward,,Brain,Enuresis as a premorbid developmental marker of schizophrenia,Article,, +https://api.elsevier.com/content/abstract/scopus_id/84870527066,Martin Safrin;Joseph H. Callicott;Herve S. Lemaitre;Fabio Sambataro;Venkata S. Mattay;Sonya U. Steele;Saumitra B. Das;Daniel R. Weinberger,18,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84870527066&origin=inward,10.1111/j.1460-9568.2012.08254.x,2012-12-01,"('2-s2.0-84870527066', nan)",,3559-3567,22909094.0,84870527066,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84870527066&origin=inward,,European Journal of Neuroscience,Normal aging modulates prefrontoparietal networks underlying multiple memory processes,Article,, +https://api.elsevier.com/content/abstract/scopus_id/84863767817,Fabio Sambataro;Venkata S. Mattay;Saumitra Das;Vishnu P. Murty;Matthew R. Emery;Yunxia Tong;Jamie E. Podell;Terry E. Goldberg;Daniel R. Weinberger,27,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84863767817&origin=inward,10.1016/j.neuroimage.2012.05.066,2012-09-01,"('2-s2.0-84863767817', nan)",NIMH,2151-2160,22659476.0,84863767817,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84863767817&origin=inward,,NeuroImage,Neurophysiological correlates of age-related changes in working memory updating,Article,, +https://api.elsevier.com/content/abstract/scopus_id/77951663255,Joel E. Kleinman;Richard E. Straub;Joseph H. Callicott;Ronald McKay;Herve Lemaitre;Fabio Sambataro;Beth Verchinski;Thomas M. Hyde;Raja Kittappa;Barbara K. Lipska;Venkata S. Mattay;Daniel R. Weinberger,17,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77951663255&origin=inward,10.1523/JNEUROSCI.5773-09.2010,2010-04-28,"('2-s2.0-77951663255', nan)",,5992-5997,20427658.0,77951663255,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77951663255&origin=inward,,Journal of Neuroscience,Genetic variation in FGF20 modulates hippocampal biology,Article,, +https://api.elsevier.com/content/abstract/scopus_id/77953683797,Heike Tost;Joel E. Kleinman;Joseph H. Callicott;Radhakrishna Vakkalanka;Herve Lemaitre;Stefano Marenco;Barbara K. Lipska;Venkata S. Mattay;Daniel R. Weinberger,17,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77953683797&origin=inward,10.1016/j.biopsych.2010.02.023,2010-07-01,"('2-s2.0-77953683797', nan)",NIH,105-107,20434133.0,77953683797,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77953683797&origin=inward,,Biological Psychiatry,"No Effect of a Common Allelic Variant in the Reelin Gene on Intermediate Phenotype Measures of Brain Structure, Brain Function, and Gene Expression",Article,, +https://api.elsevier.com/content/abstract/scopus_id/84881180241,V. S. Mattay;R. Rasetti;J. H. Callicott;D. R. Weinberger;Q. Chen;M. Safrin;F. Sambataro;K. Thurin,13,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84881180241&origin=inward,10.1038/mp.2012.134,2013-08-01,"('2-s2.0-84881180241', nan)",NIMH,852-854,23032874.0,84881180241,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84881180241&origin=inward,,Molecular Psychiatry,Effects of ZNF804A on neurophysiologic measures of cognitive control,Letter,, +https://api.elsevier.com/content/abstract/scopus_id/84934443886,Stefano Marenco;Alessandro Bertolino;Daniel R. Weinberger,10,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84934443886&origin=inward,10.1007/0-387-30172-0_16,2006-01-01,"('2-s2.0-84934443886', nan)",,227-240,16802716.0,84934443886,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84934443886&origin=inward,,Advances in Experimental Medicine and Biology,In vivo NMR measures of NAA and the neurobiology of schizophrenia,Conference Paper,, +https://api.elsevier.com/content/abstract/scopus_id/84871442058,Mitsuyuki Matsumoto;Joseph H. Callicott;Richard E. Straub;Stefano Marenco;Fabio Sambataro;Eugenia Radulescu;Venkata S. Mattay;Daniel R. Weinberger,9,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84871442058&origin=inward,10.1038/npp.2012.184,2013-01-01,"('2-s2.0-84871442058', nan)",,341-349,22968816.0,84871442058,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84871442058&origin=inward,,Neuropsychopharmacology,Effect of schizophrenia risk-associated alleles in SREB2 (GPR85) on functional MRI phenotypes in healthy volunteers,Article,, +https://api.elsevier.com/content/abstract/scopus_id/77950011532,V. S. Mattay;H. S. Lemaitre;V. P. Murty;J. H. Callicott;S. Das;J. D. Reed;D. R. Weinberger;T. E. Goldberg;F. Sambataro,0,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77950011532&origin=inward,10.1038/mp.2010.16,2010-04-01,"('2-s2.0-77950011532', nan)",,443,,77950011532,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77950011532&origin=inward,,Molecular Psychiatry,Erratum: BNDF modulates normal human hippocampal ageing (Molecular Psychiatry (2009) 15 (116-118) (10.1038/mp.2009.64),Erratum,, +https://api.elsevier.com/content/abstract/scopus_id/84926395609,D. Reese McKay;Christopher R.K. Ching;Andrew J. Schork;Aaron L. Goldman;Johanna Hass;Yuri Milaneschi;Girma Woldehawariat;Nicola J. Armstrong;Aiden Corvin;Natalie A. Royle;Alexander Teumer;Micael Andersson;Daniah Trabzuni;Jason L. Stein;Roberto Toro;Martina Papmeyer;David Ames;Tulio Guadalupe;Saud Alhusaini;Sylvane Desrivières;Qiang Chen;Joanne E. Curran;Bernd Kraemer;Shannon L. Risacher;David Hoehn;Derrek P. Hibar;Emma J. Rose;Manuel Mattheisen;Mar Matarin;Anouk Den Braber;Emma Sprooten;Marco P. Boks;Christine MacAre;Martine Hoogman;Adaikalavan Ramasamy;Marina M.H. Hakobjan;Sudheer Giddaluru;Philipp G. Sämann;Gabriel Cuellar-Partida;Christiane Wolf;Marjolein M.J. Van Donkelaar;Unn K. Haukvik;Michelle Luciano;Benjamin S. Aribisala;Allison C. Nugent;Oliver Grimm;Lachlan T. Strike;Benno Pütz;Li Shen;Sven Cichon;Marc M. Bohlken;Saskia S.L. Van Der Marel;Stefan Ehrlich;Lianne Schmaal;Lorna M. Lopez;Lars T. Westlye;Cecilie B. Hartberg;Anderson M. Winkler;Dalia Kasperaviciute;Kimm J.E. Van Hulzen;David C.M. Liewald;Marcel P. Zwiers;Alejandro Arias-Vasquez;Karen A. Mather;Janita Bralten;Loes M. Olde Loohuis;Melanie A. Carless;Manon Bernard;Kwangsik Nho;Tianye Jia;Angelien J.G.A.M. Heister;Sampath Arepalli;Jean Shin;Margaret Needham;Kristel R. Van Eijk;Katharina Wittfeld;Lucija Abramovic;M. Mallar Chakravarty;Kazima B. Bulayeva;Miguel E. Renteria;Neda Jahanshad;Sungeun Kim;Christopher D. Whelan;Andrew A. Brown;Avram J. Holmes;Alireza Salami;Phil H. Lee;Remco R.R. Makkinje;Michael Czisch;Roberto Roiz-Santiañez;Marieke Klein;Henry Brodaty;Amelia A. Assareh;Esther Walton;Mark E. Bastin;Lavinia Athanasiu;Laura Almasy;Marlies A.M. Naber;Raymond K. Walters;Deborah Janowitz,400,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84926395609&origin=inward,10.1038/nature14101,2015-04-09,"('2-s2.0-84926395609', 'Nugent')",NIH,224-229,25607358.0,84926395609,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84926395609&origin=inward,Nugent,Nature,Common genetic variants influence human subcortical brain structures,Article,Nugent,NIMH +https://api.elsevier.com/content/abstract/scopus_id/85006269731,R. Ameli;D. A. Luckenbaugh;J. P. Roiser;A. C. Nugent;N. Lally;C. A. Zarate,109,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85006269731&origin=inward,10.1038/tp.2014.105,2014-01-01,"('2-s2.0-85006269731', 'Nugent')",PHS,e469,25313512.0,85006269731,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85006269731&origin=inward,Nugent,Translational psychiatry,Anti-anhedonic effect of ketamine and its neural correlates in treatment-resistant bipolar depression,Article,Nugent,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84880559618,Carlos A. Zarate;Suzanne E. Wood;Wendy Bogers;Wayne C. Drevets;David A. Luckenbaugh;Allison C. Nugent,75,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84880559618&origin=inward,10.1002/hbm.22068,2013-09-01,"('2-s2.0-84880559618', 'Nugent')",NIMH,2313-2329,22815187.0,84880559618,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84880559618&origin=inward,Nugent,Human Brain Mapping,"Automated subcortical segmentation using FIRST: Test-retest reliability, interscanner reliability, and comparison to manual segmentation",Article,Nugent,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84969804388,Y. Cheng;N. Cardoner;D. J. Veltman;A. C. Nugent;D. Mataix-Cols;O. Gruber;A. H. Young;C. H. Fu;I. H. Gotlib;G. Salvadore;F. Amico;P. C.M.P. Koolschijn;A. M. McIntosh;J. T. O’Brien;M. J. Kempton;M. J. Kim;S. Selvaraj;S. Pezzoli;D. P. Dickstein;O. Abe;T. F.D. Farrow;C. de Azevedo Marques Périco;A. J. Thomas;G. Wagner;J. Radua;P. S. Sachdev;M. J. van Tol;E. Via;M. L. Phillips;D. Arnone;D. E. Job;T. M. Adams;T. Wise;N. van der Wee;G. S. Malhi;B. J. Ham;A. J. Cleare;A. C. Stanfield;J. H. Cole;T. Frodl,152,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84969804388&origin=inward,10.1038/mp.2016.72,2017-10-01,"('2-s2.0-84969804388', 'Nugent')",NIH,1455-1463,27217146.0,84969804388,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84969804388&origin=inward,Nugent,Molecular Psychiatry,Common and distinct patterns of grey-matter volume alteration in major depression and bipolar disorder: Evidence from voxel-based meta-analysis,Article,Nugent,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84864536412,Carlos A. Zarate;Rodrigo MacHado-Vieira;Yan Zhang;Stefano Marenco;Giacomo Salvadore;Jun Shen;Wayne C. Drevets;Jan Willem Van Der Veen;Lobna A. Ibrahim;Jacqueline Baumann;David A. Luckenbaugh,59,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84864536412&origin=inward,10.1017/S1461145711001593,2012-09-01,"('2-s2.0-84864536412', 'Zarate')",,1063-1072,22040773.0,84864536412,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84864536412&origin=inward,Zarate,International Journal of Neuropsychopharmacology,An investigation of amino-acid neurotransmitters as potential predictors of clinical improvement to ketamine in depression,Article,Zarate,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84896728934,Paul J. Carlson;Nancy Brutsche;Carlos A. Zarate;Peter Herscovitch;Wayne C. Drevets;David A. Luckenbaugh;Allison C. Nugent;Nancy Diazgranados;Lobna Ibrahim,46,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84896728934&origin=inward,10.1111/bdi.12118,2014-03-01,"('2-s2.0-84896728934', 'Nugent')",NIH,119-128,24103187.0,84896728934,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84896728934&origin=inward,Nugent,Bipolar Disorders,Neural correlates of rapid antidepressant response to ketamine in bipolar disorder,Article,Nugent,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84863866874,Maura L. Furey;Wayne C. Drevets;Arlener D. Turner;Allison C. Nugent;Carlos Zarate,25,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84863866874&origin=inward,10.1016/j.neuropsychologia.2012.06.003,2012-07-01,"('2-s2.0-84863866874', 'Zarate')",NIH,2348-2355,22714007.0,84863866874,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84863866874&origin=inward,Zarate,Neuropsychologia,Association between subcortical volumes and verbal memory in unmedicated depressed patients and healthy controls,Article,Zarate,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84931268350,Richard Coppola;Carlos A. Zarate;Maura L. Furey;Stephen E. Robinson;Allison C. Nugent,38,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84931268350&origin=inward,10.1016/j.neuroimage.2015.05.051,2015-09-01,"('2-s2.0-84931268350', 'Nugent')",NARSAD,1-12,26032890.0,84931268350,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84931268350&origin=inward,Nugent,NeuroImage,Group differences in MEG-ICA derived resting state networks: Application to major depressive disorder,Article,Nugent,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84928492400,Carlos A. Zarate;Maura L. Furey;David A. Luckenbaugh;Allison C. Nugent;Elizabeth D. Ballard;Níall Lally,34,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84928492400&origin=inward,10.1093/ijnp/pyu069,2015-01-01,"('2-s2.0-84928492400', 'Nugent')",NIH,,25550331.0,84928492400,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84928492400&origin=inward,Nugent,International Journal of Neuropsychopharmacology,Neural correlates of suicidal ideation and its reduction in depression,Article,Nugent,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84880739252,Carlos Alberto Zarate;Rebecca Marie Davis;Allison Carol Nugent;Wayne Curtis Drevets,29,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84880739252&origin=inward,10.1016/j.pscychresns.2013.05.004,2013-09-30,"('2-s2.0-84880739252', 'Nugent')",NARSAD,179-185,,84880739252,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84880739252&origin=inward,Nugent,Psychiatry Research - Neuroimaging,Reduced thalamic volumes in major depressive disorder,Article,Nugent,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84908425862,Carlos A. Zarate;Rodrigo Machado-Vieira;Nada Lukkahati;David A. Luckenbaugh;Robin Ortiz;Allison C. Nugent;Mark J. Niciu;Leorey N. Saligan,19,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84908425862&origin=inward,10.1016/j.jad.2014.09.015,2015-02-01,"('2-s2.0-84908425862', 'Nugent')",NIH,307-311,25451430.0,84908425862,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84908425862&origin=inward,Nugent,Journal of Affective Disorders,Shank3 as a potential biomarker of antidepressant response to ketamine and its neural correlates in bipolar depression,Article,Nugent,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84955757442,Erica M. Richards;Carlos A. Zarate;Jonathan P. Roiser;Li An;Dipavo Banerjee;Jun Shen;David A. Luckenbaugh;Allison C. Nugent;Níall Lally;Mark J. Niciu,16,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84955757442&origin=inward,10.1002/jmri.24970,2016-01-01,"('2-s2.0-84955757442', 'Nugent')",NARSAD,88-98,26059603.0,84955757442,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84955757442&origin=inward,Nugent,Journal of Magnetic Resonance Imaging,"Reliability of 7T 1H-MRS measured human prefrontal cortex glutamate, glutamine, and glutathione signals using an adapted echo time optimized PRESS sequence: A between- and within-sessions investigation",Article,Nugent,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84976347116,Richard Coppola;Carlos A. Zarate;Stephen E. Robinson;Allison C. Nugent,20,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84976347116&origin=inward,10.1016/j.pscychresns.2016.06.006,2016-08-30,"('2-s2.0-84976347116', 'Nugent')",NARSAD,56-66,27362845.0,84976347116,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84976347116&origin=inward,Nugent,Psychiatry Research - Neuroimaging,Preliminary differences in resting state MEG functional connectivity pre- and post-ketamine in major depressive disorder,Article,Nugent,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84977098340,Carlos A. Zarate;Ashish Khanna;Maura L. Furey;Wayne C. Drevets;Allison C. Nugent;Joanna Szczepanik,11,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84977098340&origin=inward,10.1016/j.pscychresns.2016.06.005,2016-08-30,"('2-s2.0-84977098340', 'Nugent')",NARSAD,67-73,27366831.0,84977098340,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84977098340&origin=inward,Nugent,Psychiatry Research - Neuroimaging,Amygdala response to explicit sad face stimuli at baseline predicts antidepressant treatment response to scopolamine in major depressive disorder,Article,Nugent,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84931270575,Carlos A. Zarate;Ashish Khanna;Maura L. Furey;Wayne C. Drevets;Allison Nugent;Joanna Szczepanik,11,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84931270575&origin=inward,10.1093/ijnp/pyv028,2015-06-01,"('2-s2.0-84931270575', 'Nugent')",,1-10,25820840.0,84931270575,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84931270575&origin=inward,Nugent,International Journal of Neuropsychopharmacology,Pretreatment differences in BOLD response to emotional faces correlate with Antidepress ant response to scopolamine,Article,Nugent,NIMH +https://api.elsevier.com/content/abstract/scopus_id/85009097803,Peter M. Lauro;Silvina G. Horovitz;Codrin Lungu;Sule Tinaz;Pritha Ghosh,15,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85009097803&origin=inward,10.1016/j.nicl.2016.12.019,2017-01-01,"('2-s2.0-85009097803', nan)",NINDS,395-404,28116232.0,85009097803,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85009097803&origin=inward,,NeuroImage: Clinical,Changes in functional organization and white matter integrity in the connectome in Parkinson's disease,Article,, +https://api.elsevier.com/content/abstract/scopus_id/84981249367,Carine W. Maurer;Silvina G. Horovitz;Rezvan Ameli;Steven A. Epstein;Mark Hallett;Kathrin LaFaver,51,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84981249367&origin=inward,10.1212/WNL.0000000000002940,2016-08-09,"('2-s2.0-84981249367', 'Hallett')",,564-570,27385746.0,84981249367,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84981249367&origin=inward,Hallett,Neurology,Impaired self-agency in functional movement disorders,Article,Hallett,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84898813425,Stephen Sinclair;R. James Blair;Julia C. Schechter;Stuart F. White;Katherine A. Fowler;Catherine M. Majestic;Daniel S. Pine,28,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84898813425&origin=inward,10.1016/j.jaac.2013.12.023,2014-01-01,"('2-s2.0-84898813425', 'Pine')",NIMH,579-588.e9,24745957.0,84898813425,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84898813425&origin=inward,Pine,Journal of the American Academy of Child and Adolescent Psychiatry,Disrupted expected value signaling in youth with disruptive behavior disorders to environmental reinforcers,Article,Pine,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84928492400,Carlos A. Zarate;Maura L. Furey;David A. Luckenbaugh;Allison C. Nugent;Elizabeth D. Ballard;Níall Lally,34,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84928492400&origin=inward,10.1093/ijnp/pyu069,2015-01-01,"('2-s2.0-84928492400', 'Nugent')",NIH,,25550331.0,84928492400,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84928492400&origin=inward,Nugent,International Journal of Neuropsychopharmacology,Neural correlates of suicidal ideation and its reduction in depression,Article,Nugent,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84920938450,A. K. Olsavsky;B. L. Bones;R. R. Kayser;M. A. Brotman;W. L. Tseng;S. J. Fromm;D. S. Pine;E. Leibenluft,21,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84920938450&origin=inward,10.1016/j.eurpsy.2014.05.004,2015-01-01,"('2-s2.0-84920938450', 'Pine')",NIH,94-98,25172156.0,84920938450,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84920938450&origin=inward,Pine,European Psychiatry,An fMRI study of emotional face encoding in youth at risk for bipolar disorder,Article,Pine,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84974667659,Cristan Farmer;Armin Raznahan;Jay Giedd;Audrey Thurm;Elizabeth Smith;Susan Swedo;Deanna Greenstein,20,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84974667659&origin=inward,10.1002/hbm.23195,2016-07-01,"('2-s2.0-84974667659', 'Thurm')",NIMH,2616-2629,27061356.0,84974667659,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84974667659&origin=inward,Thurm,Human Brain Mapping,Cortical thickness change in autism during early childhood,Article,Thurm,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84931270575,Carlos A. Zarate;Ashish Khanna;Maura L. Furey;Wayne C. Drevets;Allison Nugent;Joanna Szczepanik,11,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84931270575&origin=inward,10.1093/ijnp/pyv028,2015-06-01,"('2-s2.0-84931270575', 'Nugent')",,1-10,25820840.0,84931270575,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84931270575&origin=inward,Nugent,International Journal of Neuropsychopharmacology,Pretreatment differences in BOLD response to emotional faces correlate with Antidepress ant response to scopolamine,Article,Nugent,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84949323637,Robert C. McKinstry;Dah Jyuu Wang;Michael J. Rivkin;Lindsay Walker;M. Okan Irfanoglu;Lin Ching Chang;Judith Rumsey;James McCracken;Carlo Pierpaoli;Amritha Nayak;Kelly N. Botteron,23,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84949323637&origin=inward,10.1016/j.neuroimage.2015.05.083,2016-01-01,"('2-s2.0-84949323637', 'Pierpaoli')",NICHD,1125-1130,26048622.0,84949323637,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84949323637&origin=inward,Pierpaoli,NeuroImage,The diffusion tensor imaging (DTI) component of the NIH MRI study of normal brain development (PedsDTI),Article,Pierpaoli,NIBIB +https://api.elsevier.com/content/abstract/scopus_id/84939254120,Francesca Bagnato;Joan M. Ohayon;Bing Yao;Vasiliki N. Ikonomidou;Fredric K. Cantor;Jeff Duyn,10,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84939254120&origin=inward,10.1111/jon.12193,2015-01-01,"('2-s2.0-84939254120', 'Duyn')",,799-806,25657078.0,84939254120,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84939254120&origin=inward,Duyn,Journal of Neuroimaging,Heterogeneity of Multiple Sclerosis White Matter Lesions Detected With T2*-Weighted Imaging at 7.0 Tesla,Article,Duyn,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84945441349,Jeff H. Duyn;Hendrik Mandelkow;Peter Van Gelderen;Jacco A. De Zwart,15,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84945441349&origin=inward,10.1002/mrm.25524,2015-01-01,"('2-s2.0-84945441349', 'Duyn')",,1388-1396,25399830.0,84945441349,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84945441349&origin=inward,Duyn,Magnetic Resonance in Medicine,A torque balance measurement of anisotropy of the magnetic susceptibility in white matter,Article,Duyn,NINDS +https://api.elsevier.com/content/abstract/scopus_id/84922258357,Eric E. Nelson;Lauren B. Shomaker;Jack A. Yanovski;Andrew P. Demidowich;Louise Hannallah;Sheila M. Brady;Sara E. Field;Anna Vannucci;Scott G. Engel;Johanna M. Jarcho;Daniel S. Pine;Amber B. Courville;Marian Tanofsky-Kraff;Adrienne L. Romer,18,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84922258357&origin=inward,10.1016/j.neuroimage.2014.12.054,2015-03-01,"('2-s2.0-84922258357', 'Pine')",NIH,343-353,25550068.0,84922258357,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84922258357&origin=inward,Pine,NeuroImage,Neural activation during anticipated peer evaluation and laboratory meal intake in overweight girls with and without loss of control eating,Article,Pine,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84922983681,Eric E. Nelson;Amanda E. Guyer;Daniel S. Pine;Brenda E. Benson;Monique Ernst,13,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84922983681&origin=inward,10.3758/s13415-014-0307-6,2014-01-01,"('2-s2.0-84922983681', 'Pine')",NIH,155-168,25183555.0,84922983681,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84922983681&origin=inward,Pine,"Cognitive, Affective and Behavioral Neuroscience",Role of contingency in striatal response to incentive in adolescents with anxiety,Article,Pine,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84938738172,J. L. Rapoport;P. Gochman;L. A. Friedman;N. Gogtay;A. A. Anvari;D. Greenstein,5,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84938738172&origin=inward,10.1017/S0033291715000677,2015-01-01,"('2-s2.0-84938738172', 'Rapoport')",,2667-2674,25936396.0,84938738172,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84938738172&origin=inward,Rapoport,Psychological Medicine,Hippocampal volume change relates to clinical outcome in childhood-onset schizophrenia,Article,Rapoport,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84939896444,Tracy J. Doty;Martin Ingvar;Shruti Japee;Leslie G. Ungerleider,11,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84939896444&origin=inward,10.3758/s13415-014-0290-y,2014-01-01,"('2-s2.0-84939896444', 'Ungerleider')",NIMH,1438-1453,24841078.0,84939896444,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84939896444&origin=inward,Ungerleider,"Cognitive, Affective and Behavioral Neuroscience",Intersubject variability in fearful face processing: The linkbetween behavior and neural activation,Article,Ungerleider,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84955757442,Erica M. Richards;Carlos A. Zarate;Jonathan P. Roiser;Li An;Dipavo Banerjee;Jun Shen;David A. Luckenbaugh;Allison C. Nugent;Níall Lally;Mark J. Niciu,16,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84955757442&origin=inward,10.1002/jmri.24970,2016-01-01,"('2-s2.0-84955757442', 'Nugent')",NARSAD,88-98,26059603.0,84955757442,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84955757442&origin=inward,Nugent,Journal of Magnetic Resonance Imaging,"Reliability of 7T 1H-MRS measured human prefrontal cortex glutamate, glutamine, and glutathione signals using an adapted echo time optimized PRESS sequence: A between- and within-sessions investigation",Article,Nugent,NIMH +https://api.elsevier.com/content/abstract/scopus_id/84974711219,Aaron Alexander-Bloch;Michael Stockman;Francois Lalonde;Armin Raznahan;Liv Clasen;Jay Giedd;Lisa Ronan,58,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84974711219&origin=inward,10.1002/hbm.23180,2016-07-01,"('2-s2.0-84974711219', 'Raznahan')",,2385-2397,27004471.0,84974711219,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84974711219&origin=inward,Raznahan,Human Brain Mapping,Subtle in-scanner motion biases automated measurement of brain anatomy from in vivo MRI,Article,Raznahan,NIMH +https://api.elsevier.com/content/abstract/scopus_id/85074469445,Dwight J. Kravitz;Lionel Rauth;Chris Baker;Leslie G. Ungerleider;Amy Pilkington;David Pitcher,3,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85074469445&origin=inward,10.1093/cercor/bhz125,2020-03-21,2-s2.0-85074469445,,778-785,31264693.0,85074469445,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85074469445&origin=inward,Baker,"Cerebral cortex (New York, N.Y. : 1991)",The Human Posterior Superior Temporal Sulcus Samples Visual Space Differently From Other Face-Selective Regions,Article,Baker,NIMH +https://api.elsevier.com/content/abstract/scopus_id/85072026868,Dwight J. Kravitz;Sue Hyun Lee;Chris I. Baker,2,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85072026868&origin=inward,10.1093/cercor/bhy325,2019-09-13,2-s2.0-85072026868,NARSAD,4452-4461,30590463.0,85072026868,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85072026868&origin=inward,Baker,Cerebral Cortex,Differential Representations of Perceived and Retrieved Visual Information in Hippocampus and Cortex,Article,Baker,NIMH +https://api.elsevier.com/content/abstract/scopus_id/85070789103,Chris I. Baker;Alexis Kidder;Adrian W. Gilmore;Edward H. Silson;Adam Steel,4,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85070789103&origin=inward,10.7554/eLife.47391,2019-07-01,2-s2.0-85070789103,NIH,,31305238.0,85070789103,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85070789103&origin=inward,Baker,eLife,Distinct subdivisions of human medial parietal cortex support recollection of people and places,Article,Baker,NIMH +https://api.elsevier.com/content/abstract/scopus_id/85076716317,Sriranga Kashyap;Benedikt A. Poser;Sean Marrett;Peter A. Bandettini;Jozien Goense;Daniel A. Handwerker;Emily S. Finn;Laurentius Huber;Marlene Bönstrup;Dimo Ivanov;Natalia Petridou;Daniel R. Glen,2,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85076716317&origin=inward,10.1016/j.neuroimage.2019.116463,2020-03-01,2-s2.0-85076716317,NIMH,,31862526.0,85076716317,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85076716317&origin=inward,Bandettini,NeuroImage,Sub-millimeter fMRI reveals multiple topographical digit representations that form action maps in human motor cortex,Article,Bandettini,NIMH +https://api.elsevier.com/content/abstract/scopus_id/85075905478,Benedikt A. Poser;Linqing Li;Peter A. Bandettini;Larentius Huber;Yuhui Chai,1,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85075905478&origin=inward,10.1016/j.neuroimage.2019.116358,2020-02-15,2-s2.0-85075905478,NIMH,,31740341.0,85075905478,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85075905478&origin=inward,Bandettini,NeuroImage,Integrated VASO and perfusion contrast: A new tool for laminar functional MRI,Article,Bandettini,NIMH +https://api.elsevier.com/content/abstract/scopus_id/85086426599,Benedikt A. Poser;Kamil Uludag;Sean Marrett;So Hyun Han;Peter A. Bandettini;Yuhui Chai;Tony Stöcker;Emily S. Finn;Seong Gi Kim;Laurentius Huber;Rainer Goebel;Rüdiger Stirnberg,0,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85086426599&origin=inward,10.1016/j.pneurobio.2020.101835,2020-01-01,2-s2.0-85086426599,IBS,,32512115.0,85086426599,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85086426599&origin=inward,Bandettini,Progress in Neurobiology,Layer-dependent functional connectivity methods,Review,Bandettini,NIMH +https://api.elsevier.com/content/abstract/scopus_id/85070906384,Peter A. Bandettini;César Caballero-Gaudes;Stefano Moia;Javier Gonzalez-Castillo;Puja Panwar,1,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85070906384&origin=inward,10.1016/j.neuroimage.2019.116081,2019-11-15,2-s2.0-85070906384,MSCA,,31419613.0,85070906384,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85070906384&origin=inward,Bandettini,NeuroImage,A deconvolution algorithm for multi-echo functional MRI: Multi-echo Sparse Paradigm Free Mapping,Article,Bandettini,NIMH +https://api.elsevier.com/content/abstract/scopus_id/85072613366,Peter A. Bandettini;David C. Jangraw;Emily S. Finn;Laurentius Huber;Peter J. Molfese,5,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85072613366&origin=inward,10.1038/s41593-019-0487-z,2019-10-01,2-s2.0-85072613366,NIMH,1687-1695,31551596.0,85072613366,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85072613366&origin=inward,Bandettini,Nature Neuroscience,Layer-dependent activity in human prefrontal cortex during working memory,Article,Bandettini,NIMH +https://api.elsevier.com/content/abstract/scopus_id/85075334408,Jiaen Liu;Peter van Gelderen;Jeff H. Duyn;Jacco A. de Zwart,0,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85075334408&origin=inward,10.1016/j.neuroimage.2019.116332,2020-02-01,2-s2.0-85075334408,NINDS,,31689535.0,85075334408,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85075334408&origin=inward,Duyn,NeuroImage,Reducing motion sensitivity in 3D high-resolution T2*-weighted MRI by navigator-based motion and nonlinear magnetic field correction,Article,Duyn,NINDS +https://api.elsevier.com/content/abstract/scopus_id/85078689481,Alex Martin;Catherine Walsh;Michal Ramot;Gabrielle Elise Reimann,1,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85078689481&origin=inward,10.1038/s42003-020-0771-1,2020-12-01,2-s2.0-85078689481,NIMH,,31996763.0,85078689481,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85078689481&origin=inward,Martin,Communications Biology,Distinct neural mechanisms of social orienting and mentalizing revealed by independent measures of neural and eye movement typicality,Article,Martin,NIMH +https://api.elsevier.com/content/abstract/scopus_id/85073823516,Adrian W. Gilmore;Alex Martin;Stephen J. Gotts,4,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85073823516&origin=inward,10.1016/j.neuroimage.2019.116289,2020-01-15,2-s2.0-85073823516,NIMH,,31629827.0,85073823516,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85073823516&origin=inward,Martin,NeuroImage,"Brain networks, dimensionality, and global signal averaging in resting-state fMRI: Hierarchical network structure results in low-dimensional spatiotemporal dynamics",Article,Martin,NIMH +https://api.elsevier.com/content/abstract/scopus_id/85071438369,Peter A. Bandettini;Francisco Pereira;Daniel A. Handwerker;Natasha Topolski;César Caballero-Gaudes;Javier Gonzalez-Castillo,1,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85071438369&origin=inward,10.1016/j.neuroimage.2019.116129,2019-11-15,2-s2.0-85071438369,NIMH,,31461679.0,85071438369,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85071438369&origin=inward,Pereira,NeuroImage,Imaging the spontaneous flow of thought: Distinct periods of cognition contribute to dynamic functional connectivity during rest,Article,Pereira,NIMH +https://api.elsevier.com/content/abstract/scopus_id/85087425878,Fran√ßois M. Lalonde;Richard A.I. Bethlehem;Liv S. Clasen;Siyuan Liu;Franti≈°ek V√°≈°a;Konrad Wagstyl;Declan G. Murphy;Petra E. V√©rtes;Daniel H. Geschwind;Damon Polioudakis;Joan C. Han;Sarah E. Morgan;Rafael Romero-Garcia;Ajay Nadig;Jonathan D. Blumenthal;Armin Raznahan;Luis de la Torre-Ubieta;Jakob Seidlitz;Casey Paquola;Edward T. Bullmore;Nancy R. Lee;Boris Bernhardt,0,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85087425878&origin=inward,10.1038/s41467-020-17051-5,2020-12-01,2-s2.0-85087425878,NICHD,,32620757.0,85087425878,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85087425878&origin=inward,Raznahan,Nature Communications,Transcriptomic and cellular decoding of regional brain vulnerability to neurogenetic disorders,Article,Raznahan,NIMH +https://api.elsevier.com/content/abstract/scopus_id/85086159262,Ethan Whitman;Liv S. Clasen;Fran√ßois M. Lalonde;Siyuan Liu;Allysa Warling;Jonathan D. Blumenthal;Armin Raznahan;Kathleen Wilson,0,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85086159262&origin=inward,10.1002/ajmg.c.31795,2020-06-01,2-s2.0-85086159262,NIH,493-505,32515138.0,85086159262,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85086159262&origin=inward,Raznahan,"American Journal of Medical Genetics, Part C: Seminars in Medical Genetics",Sex chromosome aneuploidy alters the relationship between neuroanatomy and cognition,Article,Raznahan,NIMH +https://api.elsevier.com/content/abstract/scopus_id/85081542531,Zaixu Cui;Tyler M. Moore;David R. Roalf;Christos Davatzikos;Desmond J. Oathes;Azeez Adebimpe;Russell T. Shinohara;Cedric H. Xia;Hongming Li;Daniel H. Wolf;Raquel E. Gur;Bart Larsen;Danielle S. Bassett;Armin Raznahan;Yong Fan;Matt Cieslak;Graham L. Baum;Damien A. Fair;Theodore D. Satterthwaite;Ruben C. Gur;Aaron F. Alexander-Bloch,4,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85081542531&origin=inward,10.1016/j.neuron.2020.01.029,2020-04-22,2-s2.0-85081542531,,340-353.e8,32078800.0,85081542531,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85081542531&origin=inward,Raznahan,Neuron,Individual Variation in Functional Topography of Association Networks in Youth,Article,Raznahan,NIMH +https://api.elsevier.com/content/abstract/scopus_id/85083913416,Anastasia Xenophontos;Liv S. Clasen;Jakob Seidlitz;Siyuan Liu;Aaron Alexander-Bloch;Jay N. Giedd;Jonathan D. Blumenthal;Armin Raznahan,3,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85083913416&origin=inward,10.1093/cercor/bhz235,2020-04-14,2-s2.0-85083913416,,2215-2228,31828307.0,85083913416,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85083913416&origin=inward,Raznahan,Cerebral Cortex,Altered Sex Chromosome Dosage Induces Coordinated Shifts in Cortical Anatomy and Anatomical Covariance,Article,Raznahan,NIMH +https://api.elsevier.com/content/abstract/scopus_id/85080043547,Gabriel A. Devenyi;Michael D. Spencer;Rosemary J. Holt;Michael C. Craig;Michael V. Lombardo;Min Tae M. Park;Declan G.M. Murphy;Jason P. Lerch;Meng Chuan Lai;Evdokia Anagnostou;John Suckling;Stephanie Tullo;Amber N.V. Ruigrok;Christine Ecker;M. Mallar Chakravarty;Rhoshel Lenroot;Lindsay R. Chura;Raihaan Patel;Armin Raznahan;Jurgen Germann;Simon Baron-Cohen;Elizabeth Smith;Audrey Thurm;Margot J. Taylor;Saashi A. Bedford;Edward T. Bullmore;Dorothea L. Floris,0,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85080043547&origin=inward,10.1038/s41380-020-0691-y,2020-03-01,2-s2.0-85080043547,,507-508,32103162.0,85080043547,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85080043547&origin=inward,Raznahan,Molecular Psychiatry,Greater cortical thickness in individuals with ASD,Note,Raznahan,NIMH +https://api.elsevier.com/content/abstract/scopus_id/85074153626,Liv S. Clasen;M. Mallar Chakravarty;Russell T. Shinohara;Jakob Seidlitz;Ari M. Fish;Cassidy L. McDermott;Francois Lalonde;Paul K. Reardon;Ajay Nadig;Jonathan D. Blumenthal;Armin Raznahan;Catherine Mankiw;Jason P. Lerch,6,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85074153626&origin=inward,10.1016/j.neuroimage.2019.116122,2020-01-01,2-s2.0-85074153626,NIH,,31470127.0,85074153626,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85074153626&origin=inward,Raznahan,NeuroImage,Sex-biased trajectories of amygdalo-hippocampal morphology change over human development,Article,Raznahan,NIMH +https://api.elsevier.com/content/abstract/scopus_id/85075462723,Liv S. Clasen;Michael C. Neale;Greg L. Wallace;Joshua N. Pritikin;J. Eric Schmitt;Jay N. Giedd;Armin Raznahan;Nancy Raitano Lee,4,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85075462723&origin=inward,10.1093/cercor/bhz007,2019-12-17,2-s2.0-85075462723,NIEHS,4743-4752,30715232.0,85075462723,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85075462723&origin=inward,Raznahan,Cerebral Cortex,The Dynamic Associations between Cortical Thickness and General Intelligence are Genetically Mediated,Article,Raznahan,NIMH +https://api.elsevier.com/content/abstract/scopus_id/85088255790,Masaaki Hori;Jennifer Lefeuvre;Jean Pelletier;Clarisse Carra-Dalliere;Virginie Callot;Charley Gros;Jason Talbott;Pierre Labauge;Julien Cohen-Adad;Renxin Chu;Tobias Granberg;Xavier Ayrignac;Jérôme De Seze;Rohit Bakshi;Atef Badji;Yasuhiko Tachibana;Maria A. Rocca;Anne Kerbrat;Massimo Filippi;Raphaël Chouteau;Daniel S. Reich;Kouhei Kamiya;Bertrand Audoin;Nicolas Collongues;Adil Maarouf;Elise Bannier;Russell Ouellette;Francesca Galassi;Lydia Chougar;Leszek Stawiarz;Govind Nair;Josefina Maranzano;Jan Hillert;Gilles Edan;Paola Valsasina;Benoit Combès,0,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85088255790&origin=inward,10.1093/brain/awaa162,2020-07-01,2-s2.0-85088255790,,2089-2105,32572488.0,85088255790,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85088255790&origin=inward,Reich,Brain : a journal of neurology,Multiple sclerosis lesions in motor tracts from brain to cervical cord: spatial distribution and correlation with disability,Article,Reich,NINDS +https://api.elsevier.com/content/abstract/scopus_id/85081654331,Pascal Sati;Daniel S. Reich;Aditya Bharatha;Jiwon Oh;Melanie Guenette;Suradech Suthiphosuwan;Martina Absinta,0,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85081654331&origin=inward,10.1001/jamaneurol.2020.0124,2020-05-01,2-s2.0-85081654331,NIH,653-655,32150224.0,85081654331,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85081654331&origin=inward,Reich,JAMA Neurology,Paramagnetic Rim Sign in Radiologically Isolated Syndrome,Article,Reich,NINDS +https://api.elsevier.com/content/abstract/scopus_id/85081028361,João Jorge;Francesco La Rosa;Pascal Sati;Renaud Du Pasquier;Daniel S. Reich;Cristina Granziera;Pietro Maggi;Reto Meuli;Tobias Kober;Mário João Fartaria;Jonas Richiardi;Martina Absinta;Meritxell Bach Cuadra,0,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85081028361&origin=inward,10.1002/nbm.4283,2020-05-01,2-s2.0-85081028361,CNHF,,32125737.0,85081028361,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85081028361&origin=inward,Reich,NMR in Biomedicine,CVSnet: A machine learning approach for automated central vein sign assessment in multiple sclerosis,Article,Reich,NINDS +https://api.elsevier.com/content/abstract/scopus_id/85073936532,Pascal Sati;Daniel S. Reich;Massimo Filippi;Renaud Du Pasquier;Pietro Maggi;Bernard Dachy;Luca Massacesi;Caroline Pot;Reto Meuli;Marie Théaudin;Martina Absinta;Gaetano Perrotta,7,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85073936532&origin=inward,10.1177/1352458519876031,2020-04-01,2-s2.0-85073936532,CNHF,421-432,31536435.0,85073936532,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85073936532&origin=inward,Reich,Multiple Sclerosis Journal,The “central vein sign” in patients with diagnostic “red flags” for multiple sclerosis: A prospective multicenter 3T study,Article,Reich,NINDS +https://api.elsevier.com/content/abstract/scopus_id/85081693515,Daniel S. Reich;Matthew K. Schindler;Blake E. Dewey;Ani Eloyan;Russell T. Shinohara;Menghan Hu,0,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85081693515&origin=inward,10.1177/0962280220904392,2020-01-01,2-s2.0-85081693515,,,32070238.0,85081693515,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85081693515&origin=inward,Reich,Statistical Methods in Medical Research,Experimental design and sample size considerations in longitudinal magnetic resonance imaging-based biomarker detection for multiple sclerosis,Article,Reich,NINDS +https://api.elsevier.com/content/abstract/scopus_id/85068522090,Achim Gass;Massimo Filippi;Daniel S. Reich;Catherine Lubetzki;Anthony Traboulsee;Maria A. Rocca;Mike P. Wattjes;Paolo Preziosa;Nicola De Stefano;Jeroen J.G. Geurts;Brenda L. Banwell;Ahmed T. Toosy;Olga Ciccarelli;Friedemann Paul;Frederik Barkhof;Brian G. Weinshenker;Tarek A. Yousry,20,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85068522090&origin=inward,10.1093/brain/awz144,2019-07-01,2-s2.0-85068522090,FISM,1858-1875,31209474.0,85068522090,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85068522090&origin=inward,Reich,Brain,Assessment of lesions on magnetic resonance imaging in multiple sclerosis: practical guidelines,Review,Reich,NINDS +https://api.elsevier.com/content/abstract/scopus_id/85031898757,Arnab Hazra;Brian J. Reich;Daniel S. Reich;Ana Maria Staicu;Russell T. Shinohara,0,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85031898757&origin=inward,10.1007/s12561-017-9206-z,2019-04-15,2-s2.0-85031898757,NIH,22-46,,85031898757,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85031898757&origin=inward,Reich,Statistics in Biosciences,A Spatio-Temporal Model for Longitudinal Image-on-Image Regression,Article,Reich,NINDS +https://api.elsevier.com/content/abstract/scopus_id/85084490123,Molly Flessert;Shruti Japee;Hui Zhang;Leslie G. Ungerleider;Andrea Stacy,0,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85084490123&origin=inward,10.1016/j.neuroimage.2020.116878,2020-01-01,2-s2.0-85084490123,NIMH,,,85084490123,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85084490123&origin=inward,Ungerleider,NeuroImage,Anterior superior temporal sulcus is specialized for non-rigid facial motion in both monkeys and humans,Article,Ungerleider,NIMH diff --git a/data/interim/2019_complete_update_2020.csv b/data/interim/2019_complete_update_2020.csv new file mode 100644 index 0000000..08903a2 --- /dev/null +++ b/data/interim/2019_complete_update_2020.csv @@ -0,0 +1,1196 @@ +Title,PI,Authors,Date,Cited-By Count,Source Title,Page Range,DOI,PubMed ID,Scopus ID,EID,Type,Funding Agency,Abstract Link,Scopus Link,Cited-By Link +Similarity judgments and cortical visual responses reflect different properties of object and scene categories in naturalistic images,Baker,Marcie L. King;Iris I.A. Groen;Chris I. Baker;Adam Steel;Dwight J. Kravitz,2019-08-15,4,NeuroImage,368-382,10.1016/j.neuroimage.2019.04.079,31054350,85065390290,"('2-s2.0-85065390290', 'Baker')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85065390290,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85065390290&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85065390290&origin=inward +Differential impact of reward and punishment on functional connectivity after skill learning,Baker,Charlotte J. Stagg;Chris I. Baker;Edward H. Silson;Adam Steel,2019-04-01,1,NeuroImage,95-105,10.1016/j.neuroimage.2019.01.009,30630080,85059851109,"('2-s2.0-85059851109', 'Baker')",Article,WT,https://api.elsevier.com/content/abstract/scopus_id/85059851109,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85059851109&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85059851109&origin=inward +Finding the baby in the bath water – evidence for task-specific changes in resting state functional connectivity evoked by training,Baker,Gang Chen;Chris I. Baker;Aaron Trefler;Adam Steel;Cibu Thomas,2019-03-01,0,NeuroImage,524-538,10.1016/j.neuroimage.2018.12.038,30578926,85059115445,"('2-s2.0-85059115445', 'Baker')",Article,NIBIB,https://api.elsevier.com/content/abstract/scopus_id/85059115445,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85059115445&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85059115445&origin=inward +A posterior–anterior distinction between scene perception and scene construction in human medial parietal cortex,Baker,Alex Martin;Adrian W. Gilmore;Sarah E. Kalinowski;Chris I. Baker;Alexis Kidder;Adam Steel;Edward H. Silson,2019-01-23,7,Journal of Neuroscience,705-717,10.1523/JNEUROSCI.1219-18.2018,30504281,85060371320,"('2-s2.0-85060371320', 'Baker')",Article,,https://api.elsevier.com/content/abstract/scopus_id/85060371320,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85060371320&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85060371320&origin=inward +Visual responsiveness in sensorimotor cortex is increased following amputation and reduced after mirror therapy,Baker,Paul F. Pasquina;Sharon Weeks;Jack W. Tsao;Annie W.Y. Chan;Lindsay Hussey-Anderson;Emily Bilger;Chris I. Baker;Sarah Griffin;Viktoria Elkis,2019-01-01,1,NeuroImage: Clinical,,10.1016/j.nicl.2019.101882,31226622,85067362998,"('2-s2.0-85067362998', 'Baker')",Article,CIB,https://api.elsevier.com/content/abstract/scopus_id/85067362998,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85067362998&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85067362998&origin=inward +Statistical power comparisons at 3T and 7T with a GO / NOGO task,Baker,Richard Reynolds;Christian Grillon;Jeffrey Yen-Ting Liu;Daniel Glen;Gang Chen;Salvatore Torrisi;Joseph Leshin;Monique Ernst;Chris I. Baker;Peter A. Bandettini;Nicholas Balderston,2018-07-15,4,NeuroImage,100-110,10.1016/j.neuroimage.2018.03.071,29621615,85052626935,"('2-s2.0-85052626935', 'Baker')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85052626935,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85052626935&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85052626935&origin=inward +Scenes in the Human Brain: Comparing 2D versus 3D Representations,Baker,Iris I.A. Groen;Chris I. Baker,2019-01-02,0,Neuron,8-10,10.1016/j.neuron.2018.12.014,30605658,85058693165,"('2-s2.0-85058693165', 'Baker')",Short Survey,,https://api.elsevier.com/content/abstract/scopus_id/85058693165,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85058693165&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85058693165&origin=inward +Visual temporal frequency preference shows a distinct cortical architecture using fMRI,Bandettini,Elisha P. Merriam;Peter J. Molfese;Yuhui Chai;Javier Gonzalez-Castillo;Daniel A. Handwerker;Peter A. Bandettini;Sean Marrett;Andrew Hall,2019-08-15,1,NeuroImage,13-23,10.1016/j.neuroimage.2019.04.048,31015027,85064646526,"('2-s2.0-85064646526', 'Bandettini')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85064646526,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85064646526&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85064646526&origin=inward +Layer-specific activation of sensory input and predictive feedback in the human primary somatosensory cortex,Bandettini,Peter J. Molfese;David C. Jangraw;Jinglong Wu;Jiajia Yang;Gang Chen;Daniel A. Handwerker;Peter A. Bandettini;Laurentius Huber;Yinghua Yu;Yoshimichi Ejima,2019-05-15,3,Science Advances,,10.1126/sciadv.aav9053,31106273,85065887483,"('2-s2.0-85065887483', 'Bandettini')",Article,JSPS,https://api.elsevier.com/content/abstract/scopus_id/85065887483,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85065887483&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85065887483&origin=inward +Efficacy of different dynamic functional connectivity methods to capture cognitively relevant information,Bandettini,Charles Y. Zheng;Sunanda Mitra;Javier Gonzalez-Castillo;Daniel A. Handwerker;Peter A. Bandettini;Hua Xie;Vince D. Calhoun,2019-03-01,7,NeuroImage,502-514,10.1016/j.neuroimage.2018.12.037,30576850,85059153793,"('2-s2.0-85059153793', 'Bandettini')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85059153793,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85059153793&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85059153793&origin=inward +Deep neural network predicts emotional responses of the human brain from functional magnetic resonance imaging,Bandettini,Jong Hwan Lee;Peter A. Bandettini;Hyun Chul Kim,2019-02-01,6,NeuroImage,607-627,10.1016/j.neuroimage.2018.10.054,30366076,85057456558,"('2-s2.0-85057456558', 'Bandettini')",Article,,https://api.elsevier.com/content/abstract/scopus_id/85057456558,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85057456558&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85057456558&origin=inward +Apparent diffusion coefficient changes in human brain during sleep – Does it inform on the existence of a glymphatic system?,Bandettini,Hedok Lee;Elsa Lindgren;Silvina Horovitz;Tansha Srivastava;Şükrü Barış Demiral;Veronica Ramirez;Ehsan Shokri-Kojori;Peter Bandettini;Joelle Sarlls;Clara R. Freeman;Gregg Miller;Gene Jack Wang;Amna Zehra;Dardo Tomasi;Nora D. Volkow;Helene Benveniste;Corinde E. Wiers;Kenneth Ke,2019-01-15,8,NeuroImage,263-273,10.1016/j.neuroimage.2018.10.043,30342236,85055328485,"('2-s2.0-85055328485', 'Bandettini')",Article,NIAAA,https://api.elsevier.com/content/abstract/scopus_id/85055328485,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85055328485&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85055328485&origin=inward +Quantitative deconvolution of fmri data with multi-echo sparse paradigm free mapping,Bandettini,Javier Gonzalez-Castillo;Stefano Moia;Peter A. Bandettini;César Caballero-Gaudes,2018-01-01,1,Lecture Notes in Computer Science (including subseries Lecture Notes in Artificial Intelligence and Lecture Notes in Bioinformatics),311-319,10.1007/978-3-030-00931-1_36,,85053871149,"('2-s2.0-85053871149', 'Bandettini')",Conference Paper,,https://api.elsevier.com/content/abstract/scopus_id/85053871149,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85053871149&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85053871149&origin=inward +Distributed weight consolidation: A brain segmentation case study,Bandettini,Charles Y. Zheng;Patrick McClure;Peter Bandettini;Jakub R. Kaczmarzyk;Francisco Pereira;Dylan Nielson;Satrajit S. Ghosh;John A. Lee,2018-01-01,1,Advances in Neural Information Processing Systems,4093-4103,,,85064820043,"('2-s2.0-85064820043', 'Bandettini')",Conference Paper,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85064820043,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85064820043&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85064820043&origin=inward +Measuring non-parametric distributions of intravoxel mean diffusivities using a clinical MRI scanner,Basser,Peter J. Basser;Alexandru V. Avram;Joelle E. Sarlls,2019-01-15,4,NeuroImage,255-262,10.1016/j.neuroimage.2018.10.030,30326294,85055324723,"('2-s2.0-85055324723', 'Basser')",Article,NICHD,https://api.elsevier.com/content/abstract/scopus_id/85055324723,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85055324723&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85055324723&origin=inward +Role of gamma-amino-butyric acid in the dorsal anterior cingulate in age-associated changes in cognition,Berman,Ryan Kelly;Karen F. Berman;Yan Zhang;Christian Meyer;Stefano Marenco;Jun Shen;Jan Willem van der Veen;Dwight Dickinson;Daniel R. Weinberger,2018-10-01,3,Neuropsychopharmacology,2285-2291,10.1038/s41386-018-0134-5,30050047,85050669547,"('2-s2.0-85050669547', 'Berman')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85050669547,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85050669547&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85050669547&origin=inward +A generative-predictive framework to capture altered brain activity in fMRI and its association with genetic risk: Application to Schizophrenia,Berman,Karen F. Berman;Venkata S. Mattay;Archana Venkataraman;Sayan Ghosal;Qiang Chen;William Ulrich;Aaron L. Goldman;Daniel R. Weinberger,2019-01-01,0,Progress in Biomedical Optics and Imaging - Proceedings of SPIE,,10.1117/12.2511220,,85068327144,"('2-s2.0-85068327144', 'Berman')",Conference Paper,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85068327144,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85068327144&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85068327144&origin=inward +White matter intercompartmental water exchange rates determined from detailed modeling of the myelin sheath,Duyn,Peter van Gelderen;Jeff H. Duyn,2019-01-01,7,Magnetic Resonance in Medicine,628-638,10.1002/mrm.27398,30230605,85053556025,"('2-s2.0-85053556025', 'Duyn')",Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85053556025,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85053556025&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85053556025&origin=inward +Impulse response timing differences in BOLD and CBV weighted fMRI,Duyn,Jacco A. de Zwart;Pascal Sati;Daniel S. Reich;Matthew K. Schindler;Peter van Gelderen;Jiaen Liu;Jeff H. Duyn,2018-11-01,0,NeuroImage,292-300,10.1016/j.neuroimage.2018.07.011,29981905,85049795779,"('2-s2.0-85049795779', 'Duyn')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85049795779,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85049795779&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85049795779&origin=inward +Trial of magnetic resonance–guided putaminal gene therapy for advanced Parkinson's disease,Hallett,Howard J. Federoff;Dima A. Hammoud;Davis P. Argersinger;Russell R. Lonser;Krystof S. Bankiewicz;Peter Herscovitch;Tianxia Wu;Codrin Lungu;Sanhita Sinharay;Kareem A. Zaghloul;Debra J. Ehrlich;Mark Hallett;Gretchen Scott;John D. Heiss,2019-07-01,10,Movement Disorders,1073-1078,10.1002/mds.27724,31145831,85066470261,"('2-s2.0-85066470261', 'Hallett')",Article,UC,https://api.elsevier.com/content/abstract/scopus_id/85066470261,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85066470261&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85066470261&origin=inward +Article gray matter differences in patients with functional movement disorders,Hallett,Gaurang S. Limachia;Carine W. Maurer;Silvina G. Horovitz;Stephen Sinclair;Rezvan Ameli;Steven A. Epstein;Geanna Capitan;Mark Hallett;Kathrin Lafave,2018-11-13,8,Neurology,E1870-E1879,10.1212/WNL.0000000000006514,30305450,85056323152,"('2-s2.0-85056323152', 'Hallett')",Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85056323152,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85056323152&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85056323152&origin=inward +Loss of functional connectivity is an early imaging marker in primary lateral sclerosis,Hallett,Caleb J. Huang;Rachel Smallwood Shoukry;Devin Bageac;Laura E. Danielian;Mary Kay Floeter;Michael G. Clark,2018-10-02,8,Amyotrophic Lateral Sclerosis and Frontotemporal Degeneration,562-569,10.1080/21678421.2018.1517180,30299161,85054736833,"('2-s2.0-85054736833', 'Hallett')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85054736833,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85054736833&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85054736833&origin=inward +Neural mechanisms of face emotion processing in youths and adults with bipolar disorder,Leibenluft,Ellen Leibenluft;Richard C. Reynolds;Jillian Lee Wiggins;Maria Kryza-Lacombe;Kenneth Towbin;Melissa A. Brotman;Daniel S. Pine,2019-06-01,1,Bipolar Disorders,309-320,10.1111/bdi.12768,30851221,85063696578,"('2-s2.0-85063696578', 'Leibenluft')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85063696578,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85063696578&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85063696578&origin=inward +Brain mechanisms of attention orienting following frustration: Associations with irritability and age in youths,Leibenluft,Laura Donahue;Anna E. Frackman;Argyris Stringaris;Christen M. Deveney;Laura Machlin;Elizabeth Moroney;Gretchen Perhamus;Ellen Leibenluft;Richard C. Reynolds;John M. Hettema;Jennifer Y. Yi;Melissa A. Brotman;Roxann Roberson-Nay;Daniel S. Pine;Wan Ling Tseng;Derek Hsu;Alexandra Roule;Katharina Kircanski;Joel Stoddard;Kenneth E. Towbin,2019-01-01,12,American Journal of Psychiatry,67-76,10.1176/appi.ajp.2018.18040491,30336704,85060043984,"('2-s2.0-85060043984', 'Leibenluft')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85060043984,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85060043984&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85060043984&origin=inward +I like them...will they like me? Evidence for the role of the ventrolateral prefrontal cortex during mismatched social appraisals in anxious youth,Leibenluft,Eric E. Nelson;Ellen Leibenluft;Ashley R. Smith;Brent I. Rappaport;Johanna M. Jarcho;Daniel S. Pine,2018-11-01,3,Journal of Child and Adolescent Psychopharmacology,646-654,10.1089/cap.2017.0142,29792726,85056722440,"('2-s2.0-85056722440', 'Leibenluft')",Article,NARSAD,https://api.elsevier.com/content/abstract/scopus_id/85056722440,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85056722440&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85056722440&origin=inward +Identifying task-general effects of stimulus familiarity in the parietal memory network,Martin,Adrian W. Gilmore;Sarah E. Kalinowski;Stephen J. Gotts;Alex Martin;Shawn C. Milleville,2019-02-18,5,Neuropsychologia,31-43,10.1016/j.neuropsychologia.2018.12.023,30610842,85059839456,"('2-s2.0-85059839456', 'Martin')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85059839456,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85059839456&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85059839456&origin=inward +Bilateral functional connectivity at rest predicts apraxic symptoms after left hemisphere stroke,Martin,Laurel J. Buxbaum;Stephen J. Gotts;Christine E. Watson;Alex Martin,2019-01-01,4,NeuroImage: Clinical,,10.1016/j.nicl.2018.08.033,30612063,85059397375,"('2-s2.0-85059397375', 'Martin')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85059397375,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85059397375&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85059397375&origin=inward +Dissociations in the neural substrates of language and social functioning in autism spectrum disorder,Martin,Gregory L. Wallace;Jason Crutcher;Alex Martin,2018-08-01,0,Autism Research,1175-1186,10.1002/aur.1969,30365251,85055425406,"('2-s2.0-85055425406', 'Martin')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85055425406,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85055425406&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85055425406&origin=inward +Dynamic Neural Representations: An Inferential Challenge for fMRI,Martin,Avniel Singh Ghuman;Alex Martin,2019-07-01,2,Trends in Cognitive Sciences,534-536,10.1016/j.tics.2019.04.004,31103440,85065538990,"('2-s2.0-85065538990', 'Martin')",Short Survey,NSF,https://api.elsevier.com/content/abstract/scopus_id/85065538990,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85065538990&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85065538990&origin=inward +Stimulus vignetting and orientation selectivity in human visual cortex,Merriam,David J. Heeger;Zvi N. Roth;Elisha P. Merriam,2018-08-14,4,eLife,,10.7554/eLife.37241,30106372,85054133925,"('2-s2.0-85054133925', 'Merriam')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85054133925,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85054133925&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85054133925&origin=inward +Specific visual subregions of TPJ mediate reorienting of spatial attention,Merriam,Marisa Carrasco;David J. Heeger;Elisha P. Merriam;Laura Dugué,2018-01-01,18,Cerebral Cortex,2375-2390,10.1093/cercor/bhx140,28981585,85053080665,"('2-s2.0-85053080665', 'Merriam')",Article,,https://api.elsevier.com/content/abstract/scopus_id/85053080665,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85053080665&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85053080665&origin=inward +Lack of Association between Serotonin Transporter Gene (SLC6A4) Promoter Methylation and Amygdala Response during Negative Emotion Processing in Individuals with Alcohol Dependence,Momenan,Daniel B. Rosoff;Falk W. Lohoff;Audrey Luo;Samantha J. Fede;Jisoo Lee;Christine Muench;Hui Sun;Reza Momenan;Jeesun Jung;Katrin Charlet,2019-01-01,0,Alcohol and Alcoholism,209-215,10.1093/alcalc/agz032,31008507,85066163873,"('2-s2.0-85066163873', 'Momenan')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85066163873,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85066163873&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85066163873&origin=inward +The relationship between delay discounting and alcohol dependence in individuals with and without comorbid psychopathology,Momenan,Julia E. Swan;Matthew E. Sloan;Vijay A. Ramchandani;Joshua Gowin;Reza Momenan,2019-02-14,6,Psychopharmacology,775-785,10.1007/s00213-018-5113-3,30456539,85056848429,"('2-s2.0-85056848429', 'Momenan')",Article,,https://api.elsevier.com/content/abstract/scopus_id/85056848429,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85056848429&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85056848429&origin=inward +Mega-analysis of gray matter volume in substance dependence: General and substance-specific regional effects,Momenan,Elliot A. Stein;Alan Evans;Marc Etienne Rousseau;Anne Uhlmann;Alain Dagher;Mary M. Heitzeg;Yann Ying Chye;Ozlem Korucuoglu;Martin P. Paulus;Anna E. Goudriaan;Dick Veltman;Patricia Conrod;Maartje Luijten;Godfrey Pearlson;Margaret J. Wright;Rita Z. Goldstein;April May;Robert Hester;Sarah Whittle;Angelica Morales;Chiang Shan R. Li;Dan J. Stein;John J. Foxe;Rocio Martin-Santos;Nadia Solowij;Murat Yücel;Deborah Yurgelun-Todd;Renée Schluter;Catherine Orr;Nelly Alia-Klein;Valentina Lorenzetti;Betty Jo Salmeron;Bader Chaarani;Zsuzsika Sjoerds;Susan Tapert;Scott Mackey;Kent Hutchison;Samantha Brooks;Sheng Zhang;Reza Momenan;Hugh Garavan;Nicholas B. Allen;David C. Glahn;Albert Batalla;Elisabeth Caparelli;Derrek P. Hibar;Sylvane Desrivieres;Ruth Van Holst;Sara Blaine;Gunter Schumann;Philip Spechler;Nicholas Allgaier;Janna Cousijn;Lianne Schmaal;Paul M. Thompson;Edythe London;Sarah Feldstein-Ewing;Janice Bunn;Rajita Sinha;Neda Jahanshad,2019-02-01,34,American Journal of Psychiatry,119-128,10.1176/appi.ajp.2018.17040415,30336705,85061044348,"('2-s2.0-85061044348', 'Momenan')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85061044348,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85061044348&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85061044348&origin=inward +Resting state connectivity best predicts alcohol use severity in moderate to heavy alcohol users,Momenan,Samantha J. Fede;Erica N. Grodin;Nancy Diazgranados;Reza Momenan;Sarah F. Dean,2019-01-01,9,NeuroImage: Clinical,,10.1016/j.nicl.2019.101782,30921611,85063233336,"('2-s2.0-85063233336', 'Momenan')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85063233336,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85063233336&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85063233336&origin=inward +The major depressive disorder GWAS-supported variant rs10514299 in TMEM161B-MEF2C predicts putamen activation during reward processing in alcohol dependence,Momenan,Falk W. Lohoff;Carlos R. Cortes;Christine Muench;Melanie Schwandt;Reza Momenan;Jeesun Jung,2018-12-01,3,Translational Psychiatry,,10.1038/s41398-018-0184-9,30006604,85049883924,"('2-s2.0-85049883924', 'Momenan')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85049883924,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85049883924&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85049883924&origin=inward +Neural Correlates of Compulsive Alcohol Seeking in Heavy Drinkers,Momenan,Lauren Sussman;Markus Heilig;Kelsey Sundby;Grace M. Brennan;Erica N. Grodin;Nancy Diazgranados;Reza Momenan,2018-12-01,15,Biological Psychiatry: Cognitive Neuroscience and Neuroimaging,1022-1031,10.1016/j.bpsc.2018.06.009,30143454,85057151554,"('2-s2.0-85057151554', 'Momenan')",Article,NIAAA,https://api.elsevier.com/content/abstract/scopus_id/85057151554,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85057151554&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85057151554&origin=inward +Effects of Ketamine on Brain Activity During Emotional Processing: Differential Findings in Depressed Versus Healthy Control Participants,Nugent,Carlos A. Zarate;Maura L. Furey;Jessica L. Reed;Joanna E. Szczepanik;Jennifer W. Evans;Allison C. Nugent,2019-07-01,7,Biological Psychiatry: Cognitive Neuroscience and Neuroimaging,610-618,10.1016/j.bpsc.2019.01.005,30826253,85062038500,"('2-s2.0-85062038500', 'Nugent')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85062038500,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85062038500&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85062038500&origin=inward +Synaptic potentiation and rapid antidepressant response to ketamine in treatment-resistant major depression: A replication study,Nugent,Carlos A. Zarate;Jessica R. Gilbert;Allison C. Nugent;Kathleen E. Wills,2019-01-30,8,Psychiatry Research - Neuroimaging,64-66,10.1016/j.pscychresns.2018.09.001,30551012,85058137370,"('2-s2.0-85058137370', 'Nugent')",Article,NARSAD,https://api.elsevier.com/content/abstract/scopus_id/85058137370,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85058137370&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85058137370&origin=inward +Multimodal imaging reveals a complex pattern of dysfunction in corticolimbic pathways in major depressive disorder,Nugent,Carlos A. Zarate;Dipavo Banerjee;Sam L. Snider;Cristan Farmer;Jennifer W. Evans;Allison C. Nugent,2019-01-01,8,Human Brain Mapping,3940-3950,10.1002/hbm.24679,31179620,85067390070,"('2-s2.0-85067390070', 'Nugent')",Article,NARSAD,https://api.elsevier.com/content/abstract/scopus_id/85067390070,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85067390070&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85067390070&origin=inward +Mapping anticipatory anhedonia: an fMRI study,Nugent,Carlos A. Zarate;Jessica L. Reed;Carl W. Lejuez;Joanna E. Szczepanik;Jennifer W. Evans;Allison C. Nugent;Elizabeth D. Ballard,2019-12-01,1,Brain Imaging and Behavior,1624-1634,10.1007/s11682-019-00084-w,31030316,85064911728,"('2-s2.0-85064911728', 'Nugent')",Article,NARSAD,https://api.elsevier.com/content/abstract/scopus_id/85064911728,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85064911728&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85064911728&origin=inward +Functional Imaging of the Implicit Association of the Self With Life and Death,Nugent,Carlos A. Zarate;Jessica L. Reed;Daniel P. Dickstein;Matthew K. Nock;Jennifer W. Evans;Julia S. Yarrington;Allison C. Nugent;Elizabeth D. Ballard;Joanna Szczepanik,2019-12-01,2,Suicide and Life-Threatening Behavior,1600-1608,10.1111/sltb.12543,30761601,85061584307,"('2-s2.0-85061584307', 'Nugent')",Article,NARSAD,https://api.elsevier.com/content/abstract/scopus_id/85061584307,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85061584307&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85061584307&origin=inward +Altered cerebral benzodiazepine receptor binding in post-traumatic stress disorder,Nugent,Paul J. Carlson;Alexander Neumeister;Wayne C. Drevets;Omer Bonne;Inbal Reuveni;Alicja Lerner;Dennis S. Charney;Allison C. Nugent;Meena Vythilingam;Jessica Gill,2018-12-01,2,Translational Psychiatry,,10.1038/s41398-018-0257-9,30287828,85054428567,"('2-s2.0-85054428567', 'Nugent')",Article,,https://api.elsevier.com/content/abstract/scopus_id/85054428567,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85054428567&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85054428567&origin=inward +Neurophysiological Changes Associated with Antidepressant Response to Ketamine Not Observed in a Negative Trial of Scopolamine in Major Depressive Disorder,Nugent,Carlos A. Zarate;Marc S. Lener;Lawrence Park;Jessica Ellis;Cristan Farmer;Allison C. Nugent;Joanna Szczepanik;Maura Furey,2018-09-01,12,International Journal of Neuropsychopharmacology,10-18,10.1093/ijnp/pyy051,30184133,85057790880,"('2-s2.0-85057790880', 'Nugent')",Article,NARSAD,https://api.elsevier.com/content/abstract/scopus_id/85057790880,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85057790880&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85057790880&origin=inward +Glutamatergic signaling drives ketamine-mediated response in depression: Evidence from dynamic causal modeling,Nugent,Carlos A. Zarate;Kathleen E. Wills;Julia S. Yarrington;Allison C. Nugent;Jessica R. Gilbert,2018-01-01,7,International Journal of Neuropsychopharmacology,740-747,10.1093/ijnp/pyy041,29668918,85055321060,"('2-s2.0-85055321060', 'Nugent')",Article,NARSAD,https://api.elsevier.com/content/abstract/scopus_id/85055321060,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85055321060&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85055321060&origin=inward +Ketamine normalizes brain activity during emotionally valenced attentional processing in depression,Nugent,Carlos A. Zarate;Maura L. Furey;Jessica L. Reed;Joanna E. Szczepanik;Jennifer W. Evans;Allison C. Nugent,2018-01-01,13,NeuroImage: Clinical,92-101,10.1016/j.nicl.2018.07.006,30094160,85049802328,"('2-s2.0-85049802328', 'Nugent')",Article,NARSAD,https://api.elsevier.com/content/abstract/scopus_id/85049802328,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85049802328&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85049802328&origin=inward +Evaluating corrections for Eddy-currents and other EPI distortions in diffusion MRI: methodology and a dataset for benchmarking,Pierpaoli,Amritha Nayak;Carlo Pierpaoli;M. Okan Irfanoglu;Joelle Sarlls,2019-04-01,2,Magnetic Resonance in Medicine,2774-2787,10.1002/mrm.27577,30394561,85056086505,"('2-s2.0-85056086505', 'Pierpaoli')",Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85056086505,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85056086505&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85056086505&origin=inward +Neurobiological Markers of Resilience to Depression Following Childhood Maltreatment: The Role of Neural Circuits Supporting the Cognitive Control of Emotion,Pine,Katie A. McLaughlin;Jessica L. Jenness;Alexandra M. Rodman;David G. Weissman;Daniel S. Pine,2019-09-15,9,Biological Psychiatry,464-473,10.1016/j.biopsych.2019.04.033,31292066,85068373371,"('2-s2.0-85068373371', 'Pine')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85068373371,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85068373371&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85068373371&origin=inward +Changes in the dynamic network structure of PTSD symptoms pre-to-post combat,Pine,Ariel Ben Yehuda;Gad Lubin;Daniel S. Pine;Yair Bar-Haim;Ilan Wald;Adva Segal;Eyal Fruchter;Keren Ginat,2020-04-01,1,Psychological Medicine,746-753,10.1017/S0033291719000539,30919787,85063626687,"('2-s2.0-85063626687', 'Pine')",Article,ISF,https://api.elsevier.com/content/abstract/scopus_id/85063626687,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85063626687&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85063626687&origin=inward +Differential engagement of cognitive control regions and subgenual cingulate based upon presence or absence of comorbid anxiety with depression,Pine,Lisanne M. Jenkins;Alessandra M. Passarotti;Scott A. Langenecker;Yi Shin Chang;Katie L. Bessette;Kristy A. Skerrett;Samantha D. Corwin;Natania A. Crane;Jonathan P. Stange;Jon Kar Zubieta;Víctor G. Patrón;Daniel S. Pine,2018-12-01,1,Journal of Affective Disorders,371-380,10.1016/j.jad.2018.07.082,30145507,85051920438,"('2-s2.0-85051920438', 'Pine')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85051920438,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85051920438&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85051920438&origin=inward +The integration of functional brain activity from adolescence to adulthood,Pine,Ellen Leibenluft;Sophia Frangou;Monique Ernst;Prantik Kundu;Dana Rosen;Wen Ming Luh;Peter A. Bandettini;Brenda E. Benson;Daniel S. Pine,2018-04-04,7,Journal of Neuroscience,3559-3570,10.1523/JNEUROSCI.1864-17.2018,29487126,85051138382,"('2-s2.0-85051138382', 'Pine')",Article,,https://api.elsevier.com/content/abstract/scopus_id/85051138382,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85051138382&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85051138382&origin=inward +7 T MRI reveals hippocampal structural abnormalities associated with memory intrusions in childhood-onset schizophrenia,Rapoport,Diane Broadnax;Peter Gochman;Xueping Zhou;Adam Thomas;Dale Zhou;Siyuan Liu;Judith Rapoport;Rebecca Berman,2018-12-01,0,Schizophrenia Research,431-432,10.1016/j.schres.2018.07.023,30029830,85057850353,"('2-s2.0-85057850353', 'Rapoport')",Letter,,https://api.elsevier.com/content/abstract/scopus_id/85057850353,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85057850353&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85057850353&origin=inward +Imaging of meningeal inflammation should become part of the routine MRI protocol – Yes,Reich,Martina Absinta;Daniel S. Reich,2019-03-01,2,Multiple Sclerosis Journal,330-331,10.1177/1352458518794082,,85060215290,"('2-s2.0-85060215290', 'Reich')",Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85060215290,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85060215290&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85060215290&origin=inward +Spatial distribution of multiple sclerosis lesions in the cervical spinal cord,Reich,Yasuhiko Tachibana;Constantina Andrada Treaba;Dominique Eden;Sara M. Dupont;Josefina Maranzano;Yaou Liu;Sridar Narayanan;Seth A. Smith;Pierre Labauge;Henitsoa Rasoanandrianina;Jean Pelletier;Bertrand Audoin;Gilles Edan;Julien Cohen-Adad;Massimo Filippi;Jean Christophe Brisset;Masaaki Hori;Paola Valsasina;Anne Kerbrat;Erik Charlson;Ren Zhuoquiong;Shahamat Tauhid;Jan Hillert;Tobias Granberg;Maria A. Rocca;Jason Talbott;Olga Ciccarelli;Russell Ouellette;Marios Yiannakas;Benjamin De Leener;Elise Bannier;Ferran Prados;Govind Nair;Caterina Mainero;Timothy M. Shepherd;Charley Gros;Daniel S. Reich;Rohit Bakshi;Kouhei Kamiya;Hugh Kearney;Atef Badji;Virginie Callot;Jennifer Lefeuvre;Lydia Chougar;Leszek Stawiarz,2019-03-01,15,Brain,633-646,10.1093/brain/awy352,30715195,85062529087,"('2-s2.0-85062529087', 'Reich')",Article,DOD,https://api.elsevier.com/content/abstract/scopus_id/85062529087,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85062529087&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85062529087&origin=inward +A deep learning based anti-aliasing self super-resolution algorithm for MRI,Reich,Jonghye Woo;Pascal Sati;Jerry L. Prince;Daniel S. Reich;Can Zhao;Dzung L. Pham;Jiwon Oh;Blake E. Dewey;Aaron Carass;Peter A. Calabresi,2018-01-01,6,Lecture Notes in Computer Science (including subseries Lecture Notes in Artificial Intelligence and Lecture Notes in Bioinformatics),100-108,10.1007/978-3-030-00928-1_12,,85054053751,"('2-s2.0-85054053751', 'Reich')",Conference Paper,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85054053751,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85054053751&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85054053751&origin=inward +Multisite reliability and repeatability of an advanced brain MRI protocol,Reich,Govind Nair;Katherine Powers;Ian Tagge;Daniel S. Reich;Nico Papinutto;Rohit Bakshi;Daniel Pelletier;Roland G. Henry;Jiwon Oh;Peter A. Calabresi;Nancy L. Sicotte;Russell Shinohara;William D. Rooney;John Grinstead;Daniel L. Schwartz;R. Todd Constable;Sinyeob Ahn,2019-01-01,7,Journal of Magnetic Resonance Imaging,878-888,10.1002/jmri.26652,30652391,85060152881,"('2-s2.0-85060152881', 'Reich')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85060152881,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85060152881&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85060152881&origin=inward +Association between childhood anhedonia and alterations in large-scale resting-state networks and task-evoked activation,Stringaris,Narun Pornpattananangkul;Ellen Leibenluft;Daniel S. Pine;Argyris Stringaris,2019-06-01,7,JAMA Psychiatry,624-633,10.1001/jamapsychiatry.2019.0020,30865236,85063004708,"('2-s2.0-85063004708', 'Stringaris')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85063004708,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85063004708&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85063004708&origin=inward +Structural Brain Connectivity in Childhood Disruptive Behavior Problems: A Multidimensional Approach,Stringaris,Steven A. Kushner;Tonya White;Koen Bolhuis;James J. Hudziak;Argyris Stringaris;Ryan L. Muetzel;Manon H.J. Hillegers;Henning Tiemeier;Vincent W.V. Jaddoe,2019-02-15,4,Biological Psychiatry,336-344,10.1016/j.biopsych.2018.07.005,30119874,85051521885,"('2-s2.0-85051521885', 'Stringaris')",Article,EUR,https://api.elsevier.com/content/abstract/scopus_id/85051521885,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85051521885&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85051521885&origin=inward +Early variations in white matter microstructure and depression outcome in adolescents with subthreshold depression,Stringaris,Eric Artiges;Vincent Frouin;Eleni Tzavara;Argyris Stringaris;Marie Laure Paillère Martinot;Patricia Conrod;Andreas Heinz;Arun L.W. Bokde;Jean Luc Martinot;Maren Struve;Uli Bromberg;Hélène Vulser;Frauke Nees;Yvonne Grimmer;Rüdiger Brühl;Hervé Lemaitre;Charbel Massaad;Robert Goodman;Robert Whelan;Tomas Paus;Christian Büchel;Herta Flor;Betteke M. Van Noort;Gareth J. Barker;Luise Poustka;Viola Kappel;Henrik Walter;Penny Gowland;Sylvane Desrivières;Hugh Garavan;Michael N. Smolka;Anna Cattrell;Sarah Rodehacke;Jani Penttilä;Juergen Gallinat;Gunter Schumann;Tobias Banaschewski;Dimitri Papadopoulos-Orfanos;Tahmine Fadai;Ruben Miranda,2018-12-01,5,American Journal of Psychiatry,1255-1264,10.1176/appi.ajp.2018.17070825,30111185,85057593778,"('2-s2.0-85057593778', 'Stringaris')",Article,WT,https://api.elsevier.com/content/abstract/scopus_id/85057593778,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85057593778&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85057593778&origin=inward +Reward processing in depression: A conceptual and meta-analytic review across fMRI and EEG studies,Stringaris,Pablo Vidal-Ribas;Ellen Leibenluft;Ariela Kaiser;Hanna Keren;Argyris Stringaris;George A. Buzzell;Liana Meffert;Pedro M. Pan;Melissa A. Brotman;Selina Wolke;Daniel S. Pine;Georgia O'Callaghan,2018-11-01,40,American Journal of Psychiatry,1111-1120,10.1176/appi.ajp.2018.17101124,29921146,85056342442,"('2-s2.0-85056342442', 'Stringaris')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85056342442,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85056342442&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85056342442&origin=inward +Distinct brain structure and behavior related to ADHD and conduct disorder traits,Stringaris,Vincent Frouin;Gareth Barker;Argyris Stringaris;Marie Laure Paillère Martinot;Tomáš Paus;Andreas Heinz;Arun L.W. Bokde;Jean Luc Martinot;Patricia Conrod;Uli Bromberg;Maren Struve;Nora C. Vetter;Frauke Nees;Yvonne Grimmer;Christoph Abé;Charlotte Nymberg Thunell;Dimitri Papadopoulos Orfanos;Erin Burke Quinlan;Robert Whelan;Christian Büchel;Herta Flor;Bernd Ittermann;Luise Poustka;Viola Kappel;Henrik Walter;Frida Bayard;Penny Gowland;Sylvane Desrivières;Hugh Garavan;Michael N. Smolka;Jani Penttilä;Gunter Schumann;Tobias Banaschewski;Predrag Petrovic;Tahmine Fadai;Rita Almeida;Betteke van Noort,2018-01-01,3,Molecular Psychiatry,,10.1038/s41380-018-0202-6,,85052304815,"('2-s2.0-85052304815', 'Stringaris')",,,https://api.elsevier.com/content/abstract/scopus_id/85052304815,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85052304815&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85052304815&origin=inward +Functional MRI and direct cortical stimulation: Prediction of postoperative language decline,Theodore,Sara K. Inati;William D. Gaillard;Rachel Rolinski;Leigh N. Sepeta;Edythe Wiggs;Alison Austermuehle;Kareem A. Zaghloul;William H. Theodore;Shubhi Agrawal,2019-03-01,4,Epilepsia,560-570,10.1111/epi.14666,30740700,85061441395,"('2-s2.0-85061441395', 'Theodore')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85061441395,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85061441395&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85061441395&origin=inward +fMRI prediction of naming change after adult temporal lobe epilepsy surgery: Activation matters,Theodore,Eric J. Emery;Xiaozhen You;Ashley N. Zachery;Eleanor J. Fanto;Kareem Zaghloul;Sara K. Inati;William D. Gaillard;Leigh N. Sepeta;Edythe Wiggs;Gina Norato;William H. Theodore;Sierra C Germeyan;Madison M. Berl;Chelsea L. Black,2019-03-01,5,Epilepsia,527-538,10.1111/epi.14656,30740666,85061500598,"('2-s2.0-85061500598', 'Theodore')",Article,AAN,https://api.elsevier.com/content/abstract/scopus_id/85061500598,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85061500598&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85061500598&origin=inward +"A functional dissociation of face-, body- and scene-selective brain areas based on their response to moving and static stimuli",Ungerleider,Geena Ianni;Leslie G. Ungerleider;David Pitcher,2019-12-01,4,Scientific Reports,,10.1038/s41598-019-44663-9,31160680,85066625037,"('2-s2.0-85066625037', 'Ungerleider')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85066625037,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85066625037&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85066625037&origin=inward +The fusiform and occipital face areas can process a nonface category equivalently to faces,Ungerleider,Leslie G. Ungerleider;Zaid N. Safiullah;Valentinos Zachariou,2017-01-01,2,Journal of Cognitive Neuroscience,1499-1516,10.1162/jocn_a_01288,29877768,85052691396,"('2-s2.0-85052691396', 'Ungerleider')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85052691396,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85052691396&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85052691396&origin=inward +Left-shifting prism adaptation boosts reward-based learning,Wassermann,Zaynah M. Alam;Michael Freedberg;Selene Schintu;Sarah Shomstein;Eric M. Wassermann,2018-12-01,2,Cortex,279-286,10.1016/j.cortex.2018.09.021,30399479,85055890342,"('2-s2.0-85055890342', 'Wassermann')",Article,NSF,https://api.elsevier.com/content/abstract/scopus_id/85055890342,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85055890342&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85055890342&origin=inward +Central vein sign differentiates Multiple Sclerosis from central nervous system inflammatory vasculopathies,Reich,Niloufar Sadeghi;Lorenzo Emmi;Martina Absinta;Vittorio Martinelli;Bernard Dachy;Gaetano Perrotta;Alessandro Barilaro;Massimo Filippi;Luca Massacesi;Matteo Grammatico;Domenico Prisco;Roberta Scotti;Pascal Sati;Gregorio Spagni;Anna Maria Repice;Pietro Maggi;Luisa Vuolo;Daniel S. Reich;Giovanna Carlucci;Giacomo Emmi,2018-02-01,46,Annals of Neurology,283-294,10.1002/ana.25146,29328521,85042290887,"('2-s2.0-85042290887', 'Reich')",Article,CNHF,https://api.elsevier.com/content/abstract/scopus_id/85042290887,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85042290887&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85042290887&origin=inward +Impact of time-of-day on diffusivity measures of brain tissue derived from diffusion tensor imaging,Baker,Amrita Nayak;Neda Sadeghi;Joelle Sarlls;Chris I. Baker;Aaron Trefler;Carlo Pierpaoli;Cibu Thomas,2018-06-01,11,NeuroImage,25-34,10.1016/j.neuroimage.2018.02.026,29458189,85042380945,"('2-s2.0-85042380945', 'Baker')",Article,NIBIB,https://api.elsevier.com/content/abstract/scopus_id/85042380945,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85042380945&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85042380945&origin=inward +Improved visualization of cortical lesions in multiple sclerosis using 7T MP2RAGE,Cortese,V. Sethi;E. S. Beck;B. Dewey;P. Bhargava;P. Sati;D. S. Reich;I. C. Cortese;G. Nair;T. Kober,2018-03-01,18,American Journal of Neuroradiology,459-466,10.3174/ajnr.A5534,29439120,85043684245,"('2-s2.0-85043684245', 'Cortese')",Article,AAN,https://api.elsevier.com/content/abstract/scopus_id/85043684245,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85043684245&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85043684245&origin=inward +Default Mode Connectivity in Major Depressive Disorder Measured Up to 10 Days After Ketamine Administration,Nugent,Carlos A. Zarate;Jennifer W. Evans;Nancy Brutsché;Allison C. Nugent;Joanna Szczepanik;Lawrence T. Park,2018-10-15,37,Biological Psychiatry,582-590,10.1016/j.biopsych.2018.01.027,29580569,85044366429,"('2-s2.0-85044366429', 'Nugent')",Article,NARSAD,https://api.elsevier.com/content/abstract/scopus_id/85044366429,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85044366429&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85044366429&origin=inward +Towards a new approach to reveal dynamical organization of the brain using topological data analysis,Bandettini,Gunnar Carlsson;Olaf Sporns;Allan L. Reiss;Gary Glover;Javier Gonzalez-Castillo;Peter A. Bandettini;Manish Saggar,2018-12-01,41,Nature Communications,,10.1038/s41467-018-03664-4,29643350,85045255547,"('2-s2.0-85045255547', 'Bandettini')",Article,NARSAD,https://api.elsevier.com/content/abstract/scopus_id/85045255547,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85045255547&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85045255547&origin=inward +Diagnostic performance of central vein sign for multiple sclerosis with a simplified three-lesion algorithm,Reich,Pascal Sati;Daniel Ontaneda;Martina Absinta;Daniel S. Reich;Richard Watts;Andrew J. Solomon,2018-05-01,20,Multiple Sclerosis Journal,750-757,10.1177/1352458517726383,,85042269593,"('2-s2.0-85042269593', 'Reich')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85042269593,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85042269593&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85042269593&origin=inward +Imaging spinal cord atrophy in progressive myelopathies: HTLV-I-associated neurological disease (HAM/TSP) and multiple sclerosis (MS),Cortese,B. Jeanne Billioux;Joan Ohayon;Govind Nair;Chevaz Thomas;Daniel S. Reich;Steven Jacobson;Ashley Vellucci;Jenifer Dwyer;Irene Cortese;Yoshimi Enose-Akahata;Emily Charlip;Shila Azodi,2017-11-01,7,Annals of Neurology,719-728,10.1002/ana.25072,29024167,85033229158,"('2-s2.0-85033229158', 'Cortese')",Article,,https://api.elsevier.com/content/abstract/scopus_id/85033229158,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85033229158&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85033229158&origin=inward +Identification of chronic active multiple sclerosis lesions on 3T MRI,Reich,M. K. Schindler;P. Sati;A. Fechner;D. S. Reich;M. Absinta;G. Nair,2018-07-01,11,American Journal of Neuroradiology,1233-1238,10.3174/ajnr.A5660,29724768,85049867380,"('2-s2.0-85049867380', 'Reich')",Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85049867380,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85049867380&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85049867380&origin=inward +A functional connectivity-based neuromarker of sustained attention generalizes to predict recall in a reading task,Bandettini,Merage Ghane;Monica D. Rosenberg;David C. Jangraw;Puja Panwar;Javier Gonzalez-Castillo;Daniel A. Handwerker;Peter A. Bandettini,2018-02-01,18,NeuroImage,99-109,10.1016/j.neuroimage.2017.10.019,29031531,85032791586,"('2-s2.0-85032791586', 'Bandettini')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85032791586,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85032791586&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85032791586&origin=inward +Attenuated resting-state functional connectivity in patients with childhood- and adult-onset schizophrenia,Martin,Judith L. Rapoport;Liv S. Clasen;Nitin Gogtay;Alex Martin;Harrison M. McAdams;Rebecca E. Watsky;Dede Greenstein;Anna E. Ordóñez;Stephen J. Gotts;Siyuan Liu;Peter Gochman;Rebecca A. Berman;Lorie Shora;Deanna M. Barch;Francois M. Lalonde;Xueping Zhou,2018-07-01,4,Schizophrenia Research,219-225,10.1016/j.schres.2018.01.003,29310911,85039994457,"('2-s2.0-85039994457', 'Martin')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85039994457,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85039994457&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85039994457&origin=inward +Effectiveness of navigator-based prospective motion correction in mprage data acquired at 3T,Talagala,Joelle E. Sarlls;S. Lalith Talagala;Dan Rettmann;Vinai Roopchansingh;Francois Lalonde;Ajit Shankaranarayanan,2018-06-01,2,PLoS ONE,,10.1371/journal.pone.0199372,29953459,85049149728,"('2-s2.0-85049149728', 'Talagala')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85049149728,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85049149728&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85049149728&origin=inward +Attentional selection of multiple objects in the human visual system,Ungerleider,Nicole Mlynaryk;Leslie G. Ungerleider;Shruti Japee;Xilin Zhang,2017-12-01,5,NeuroImage,231-243,10.1016/j.neuroimage.2017.09.050,28951352,85030184023,"('2-s2.0-85030184023', 'Ungerleider')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85030184023,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85030184023&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85030184023&origin=inward +High-Resolution CBV-fMRI Allows Mapping of Laminar Activity and Connectivity of Cortical Input and Output in Human M1,Bandettini,Jozien Goense;David C. Jangraw;Maria Guidi;Benedikt A. Poser;Gang Chen;Javier Gonzalez-Castillo;Daniel A. Handwerker;Peter A. Bandettini;Laurentius Huber;Sean Marrett;Dimo Ivanov;Carsten Stüber;Andrew Hall,2017-12-20,61,Neuron,1253-1263.e7,10.1016/j.neuron.2017.11.005,29224727,85038221196,"('2-s2.0-85038221196', 'Bandettini')",Article,EC,https://api.elsevier.com/content/abstract/scopus_id/85038221196,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85038221196&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85038221196&origin=inward +Circular analysis in systems neuroscience: The dangers of double dipping,Baker,Nikolaus Kriegeskorte;Patrick S. Bellgowan;W. Kyle Simmons;Chris I. Baker,2009-01-01,1558,Nature Neuroscience,535-540,10.1038/nn.2303,19396166,67649135107,"('2-s2.0-67649135107', 'Baker')",Article,,https://api.elsevier.com/content/abstract/scopus_id/67649135107,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=67649135107&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=67649135107&origin=inward +Real-world scene representations in high-level visual cortex: It's the spaces more than the places,Baker,Cynthia S. Peng;Chris I. Baker;Dwight J. Kravitz,2011-05-18,168,Journal of Neuroscience,7322-7333,10.1523/JNEUROSCI.4588-10.2011,21593316,79956306362,"('2-s2.0-79956306362', 'Baker')",Article,,https://api.elsevier.com/content/abstract/scopus_id/79956306362,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79956306362&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79956306362&origin=inward +High-level visual object representations are constrained by position,Baker,Nikolaus Kriegeskorte;Chris I. Baker;Dwight J. Kravitz,2010-12-01,107,Cerebral Cortex,2916-2925,10.1093/cercor/bhq042,20351021,78349249010,"('2-s2.0-78349249010', 'Baker')",Article,,https://api.elsevier.com/content/abstract/scopus_id/78349249010,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=78349249010&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=78349249010&origin=inward +Deconstructing visual scenes in cortex: Gradients of object and spatial layout information,Baker,Chris I. Baker;Assaf Harel;Dwight J. Kravitz,2013-04-01,80,Cerebral Cortex,947-957,10.1093/cercor/bhs091,22473894,84875135931,"('2-s2.0-84875135931', 'Baker')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84875135931,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84875135931&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84875135931&origin=inward +Goal-dependent dissociation of visual and prefrontal cortices during working memory,Baker,Sue Hyun Lee;Chris I. Baker;Dwight J. Kravitz,2013-08-01,88,Nature Neuroscience,997-999,10.1038/nn.3452,23817547,84880919127,"('2-s2.0-84880919127', 'Baker')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84880919127,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84880919127&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84880919127&origin=inward +Task context impacts visual object processing differentially across the cortex,Baker,Chris I. Baker;Assaf Harel;Dwight J. Kravitz,2014-03-11,75,Proceedings of the National Academy of Sciences of the United States of America,,10.1073/pnas.1312567111,24567402,84896301173,"('2-s2.0-84896301173', 'Baker')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84896301173,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84896301173&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84896301173&origin=inward +Disentangling visual imagery and perception of real-world objects,Baker,Sue Hyun Lee;Chris I. Baker;Dwight J. Kravitz,2012-02-15,84,NeuroImage,4064-4073,10.1016/j.neuroimage.2011.10.055,22040738,84857030698,"('2-s2.0-84857030698', 'Baker')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/84857030698,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84857030698&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84857030698&origin=inward +Cortical representations of bodies and faces are strongest in commonly experienced configurations,Baker,Sandra Truong;Annie W.Y. Chan;Joseph Arizpe;Chris I. Baker;Dwight J. Kravitz,2010-04-01,55,Nature Neuroscience,417-418,10.1038/nn.2502,20208528,77950189801,"('2-s2.0-77950189801', 'Baker')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/77950189801,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77950189801&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77950189801&origin=inward +Global motion perception deficits in autism are reflected as early as primary visual cortex,Martin,Gregory L. Wallace;Simon Baron-Cohen;Caroline E. Robertson;Chris I. Baker;Alex Martin;Dwight J. Kravitz;Cibu Thomas,2014-01-01,56,Brain,2588-2599,10.1093/brain/awu189,25060095,84906662244,"('2-s2.0-84906662244', 'Martin')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/84906662244,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84906662244&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84906662244&origin=inward +A retinotopic basis for the division of high-level scene processing between lateral and ventral human occipitotemporal cortex,Baker,Edward Harry Silson;Dwight Jacob Kravitz;Richard Craig Reynolds;Chris Ian Baker;Annie Wai Yiu Chan,2015-01-01,50,Journal of Neuroscience,11921-11935,10.1523/JNEUROSCI.0137-15.2015,26311774,84940426288,"('2-s2.0-84940426288', 'Baker')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84940426288,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84940426288&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84940426288&origin=inward +Beyond perceptual expertise: Revisiting the neural substrates of expert object recognition,Baker,Dwight Kravitz;Chris I. Baker;Assaf Harel,2013-12-27,30,Frontiers in Human Neuroscience,,10.3389/fnhum.2013.00885,,84891657349,"('2-s2.0-84891657349', 'Baker')",Review,,https://api.elsevier.com/content/abstract/scopus_id/84891657349,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84891657349&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84891657349&origin=inward +Seeing is not feeling: Posterior parietal but not somatosensory cortex engagement during touch observation,Baker,Annie W.Y. Chan;Chris I. Baker,2015-01-01,22,Journal of Neuroscience,1468-1480,10.1523/JNEUROSCI.3621-14.2015,25632124,84921908336,"('2-s2.0-84921908336', 'Baker')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84921908336,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84921908336&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84921908336&origin=inward +"Evaluating the correspondence between face-, scene-, and object-selectivity and retinotopic organization within lateral occipitotemporal cortex",Baker,Dwight J. Kravitz;Iris I.A. Groen;Chris I. Baker;Edward H. Silson,2016-01-01,23,Journal of Vision,,10.1167/16.6.14,27105060,84992162473,"('2-s2.0-84992162473', 'Baker')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/84992162473,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84992162473&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84992162473&origin=inward +Impact of time-of-day on brain morphometric measures derived from T1-weighted magnetic resonance imaging,Thomas,Neda Sadeghi;Chris I. Baker;Adam G. Thomas;Aaron Trefler;Carlo Pierpaoli;Cibu Thomas,2016-06-01,25,NeuroImage,41-52,10.1016/j.neuroimage.2016.02.034,26921714,84961777771,"('2-s2.0-84961777771', 'Thomas')",Article,NICHD,https://api.elsevier.com/content/abstract/scopus_id/84961777771,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84961777771&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84961777771&origin=inward +Scene-selectivity and retinotopy in medial parietal cortex,Baker,Chris I. Baker;Edward H. Silson;Adam D. Steel,2016-08-18,26,Frontiers in Human Neuroscience,17,10.3389/fnhum.2016.00412,,84983801250,"('2-s2.0-84983801250', 'Baker')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/84983801250,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84983801250&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84983801250&origin=inward +Influence of lexical status and orthographic similarity on the multi-voxel response of the visual word form area,Baker,Dwight Kravitz;Hans P. Op de Beeck;Chris Baker;Annelies Baeck,2015-05-01,15,NeuroImage,321-328,10.1016/j.neuroimage.2015.01.060,25665965,84924560199,"('2-s2.0-84924560199', 'Baker')",Article,FWO,https://api.elsevier.com/content/abstract/scopus_id/84924560199,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84924560199&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84924560199&origin=inward +The impact of reward and punishment on skill learning depends on task demands,Baker,Charlotte J. Stagg;Chris I. Baker;Edward H. Silson;Adam Steel,2016-10-27,14,Scientific Reports,,10.1038/srep36056,27786302,84993994703,"('2-s2.0-84993994703', 'Baker')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84993994703,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84993994703&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84993994703&origin=inward +The impact of global signal regression on resting state correlations: Are anti-correlated networks introduced?,Bandettini,Rasmus M. Birn;Tyler B. Jones;Kevin Murphy;Daniel A. Handwerker;Peter A. Bandettini,2009-02-01,1469,NeuroImage,893-905,10.1016/j.neuroimage.2008.09.036,18976716,57649158932,"('2-s2.0-57649158932', 'Bandettini')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/57649158932,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=57649158932&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=57649158932&origin=inward +Information-based functional brain mapping,Bandettini,Nikolaus Kriegeskorte;Peter Bandettini;Rainer Goebel,2006-03-07,1160,Proceedings of the National Academy of Sciences of the United States of America,3863-3868,10.1073/pnas.0600244103,16537458,33644870032,"('2-s2.0-33644870032', 'Bandettini')",Article,,https://api.elsevier.com/content/abstract/scopus_id/33644870032,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33644870032&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33644870032&origin=inward +Separating respiratory-variation-related fluctuations from neuronal-activity-related fluctuations in fMRI,Bandettini,Monica A. Smith;Rasmus M. Birn;Peter A. Bandettini;Jason B. Diamond,2006-07-15,861,NeuroImage,1536-1548,10.1016/j.neuroimage.2006.02.048,16632379,33746852686,"('2-s2.0-33746852686', 'Bandettini')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/33746852686,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33746852686&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33746852686&origin=inward +Matching Categorical Object Representations in Inferior Temporal Cortex of Man and Monkey,Bandettini,Nikolaus Kriegeskorte;Hossein Esteky;Keiji Tanaka;Douglas A. Ruff;Marieke Mur;Jerzy Bodurka;Peter A. Bandettini;Roozbeh Kiani,2008-12-26,605,Neuron,1126-1141,10.1016/j.neuron.2008.10.043,19109916,57649196582,"('2-s2.0-57649196582', 'Bandettini')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/57649196582,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=57649196582&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=57649196582&origin=inward +The respiration response function: The temporal dynamics of fMRI signal fluctuations related to changes in respiration,Bandettini,Monica A. Smith;Rasmus M. Birn;Peter A. Bandettini;Tyler B. Jones,2008-04-01,316,NeuroImage,644-654,10.1016/j.neuroimage.2007.11.059,18234517,40649083494,"('2-s2.0-40649083494', 'Bandettini')",Article,,https://api.elsevier.com/content/abstract/scopus_id/40649083494,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=40649083494&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=40649083494&origin=inward +Resting-state fMRI confounds and cleanup,Bandettini,Kevin Murphy;Rasmus M. Birn;Peter A. Bandettini,2013-10-15,319,NeuroImage,349-359,10.1016/j.neuroimage.2013.04.001,23571418,84880332316,"('2-s2.0-84880332316', 'Bandettini')",Article,WCMR,https://api.elsevier.com/content/abstract/scopus_id/84880332316,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84880332316&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84880332316&origin=inward +Revealing representational content with pattern-information fMRI - An introductory guide,Bandettini,Nikolaus Kriegeskorte;Marieke Mur;Peter A. Bandettini,2009-04-03,243,Social Cognitive and Affective Neuroscience,101-109,10.1093/scan/nsn044,19151374,63349109274,"('2-s2.0-63349109274', 'Bandettini')",Article,,https://api.elsevier.com/content/abstract/scopus_id/63349109274,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=63349109274&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=63349109274&origin=inward +Comparison of multivariate classifiers and response normalizations for pattern-information fMRI,Bandettini,Nikolaus Kriegeskorte;Youn Kim;Peter A. Bandettini;Masaya Misaki,2010-10-01,261,NeuroImage,103-118,10.1016/j.neuroimage.2010.05.051,20580933,77955307443,"('2-s2.0-77955307443', 'Bandettini')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/77955307443,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77955307443&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77955307443&origin=inward +The effect of respiration variations on independent component analysis results of resting state functional connectivity,Bandettini,Kevin Murphy;Rasmus M. Birn;Peter A. Bandettini,2008-07-01,213,Human Brain Mapping,740-750,10.1002/hbm.20577,18438886,44949194744,"('2-s2.0-44949194744', 'Bandettini')",Article,,https://api.elsevier.com/content/abstract/scopus_id/44949194744,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=44949194744&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=44949194744&origin=inward +Spatial heterogeneity of the nonlinear dynamics in the FMRI BOLD response,Bandettini,Ziad S. Saad;Rasmus M. Birn;Peter A. Bandettini,2001-01-01,176,NeuroImage,817-826,10.1006/nimg.2001.0873,11554800,0034816846,"('2-s2.0-0034816846', 'Bandettini')",Article,,https://api.elsevier.com/content/abstract/scopus_id/0034816846,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0034816846&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0034816846&origin=inward +How long to scan? The relationship between fMRI temporal signal to noise ratio and necessary scan duration,Bandettini,Kevin Murphy;Jerzy Bodurka;Peter A. Bandettini,2007-01-15,198,NeuroImage,565-574,10.1016/j.neuroimage.2006.09.032,17126038,34548840105,"('2-s2.0-34548840105', 'Bandettini')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/34548840105,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34548840105&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34548840105&origin=inward +Periodic changes in fMRI connectivity,Bandettini,Javier Gonzalez-Castillo;Daniel A. Handwerker;Vinai Roopchansingh;Peter A. Bandettini,2012-11-15,221,NeuroImage,1712-1719,10.1016/j.neuroimage.2012.06.078,22796990,84866507939,"('2-s2.0-84866507939', 'Bandettini')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/84866507939,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84866507939&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84866507939&origin=inward +Event-related fMRI contrast when using constant interstimulus interval: Theory and experiment,Bandettini,Robert W. Cox;Peter A. Bandettini,2000-04-18,154,Magnetic Resonance in Medicine,540-548,10.1002/(SICI)1522-2594(200004)43:4<540::AID-MRM8>3.0.CO;2-R,10748429,0034025737,"('2-s2.0-0034025737', 'Bandettini')",Article,,https://api.elsevier.com/content/abstract/scopus_id/0034025737,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0034025737&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0034025737&origin=inward +Detection versus estimation in event-related fMRI: Choosing the optimal stimulus timing,Bandettini,Robert W. Cox;Rasmus M. Birn;Peter A. Bandettini,2002-01-01,160,NeuroImage,252-264,10.1006/nimg.2001.0964,,0036322924,"('2-s2.0-0036322924', 'Bandettini')",Article,,https://api.elsevier.com/content/abstract/scopus_id/0036322924,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0036322924&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0036322924&origin=inward +"Toward direct mapping of neuronal activity: MRI detection of ultraweak, transient magnetic field changes",Bandettini,Jerzy Bodurka;Peter A. Bandettini,2002-06-13,147,Magnetic Resonance in Medicine,1052-1058,10.1002/mrm.10159,12111950,0036267186,"('2-s2.0-0036267186', 'Bandettini')",Article,,https://api.elsevier.com/content/abstract/scopus_id/0036267186,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0036267186&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0036267186&origin=inward +What's new in neuroimaging methods?,Bandettini,Peter A. Bandettini,2009-01-01,166,Annals of the New York Academy of Sciences,260-293,10.1111/j.1749-6632.2009.04420.x,19338512,63449097461,"('2-s2.0-63449097461', 'Bandettini')",Article,,https://api.elsevier.com/content/abstract/scopus_id/63449097461,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=63449097461&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=63449097461&origin=inward +"Analyzing for information, not activation, to exploit high-resolution fMRI",Bandettini,Nikolaus Kriegeskorte;Peter Bandettini,2007-12-01,165,NeuroImage,649-662,10.1016/j.neuroimage.2007.02.022,17804260,35448999574,"('2-s2.0-35448999574', 'Bandettini')",Note,,https://api.elsevier.com/content/abstract/scopus_id/35448999574,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=35448999574&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=35448999574&origin=inward +"Whole-brain, time-locked activation with simple tasks revealed using massive averaging and model-free analysis",Bandettini,Noah Brenowitz;Javier Gonzalez-Castillo;Daniel A. Handwerker;Souheil J. Inati;Ziad S. Saad;Peter A. Bandettini,2012-04-03,162,Proceedings of the National Academy of Sciences of the United States of America,5487-5492,10.1073/pnas.1121049109,22431587,84859451115,"('2-s2.0-84859451115', 'Bandettini')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84859451115,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84859451115&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84859451115&origin=inward +Differentiating BOLD and non-BOLD signals in fMRI time series using multi-echo EPI,Bandettini,Prantik Kundu;Souheil J. Inati;Jennifer W. Evans;Wen Ming Luh;Peter A. Bandettini,2012-04-15,195,NeuroImage,1759-1770,10.1016/j.neuroimage.2011.12.028,22209809,84857738843,"('2-s2.0-84857738843', 'Bandettini')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/84857738843,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84857738843&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84857738843&origin=inward +How does an fMRI voxel sample the neuronal activity pattern: Compact-kernel or complex spatiotemporal filter?,Bandettini,Nikolaus Kriegeskorte;Peter Bandettini;Rhodri Cusack,2010-02-01,122,NeuroImage,1965-1976,10.1016/j.neuroimage.2009.09.059,19800408,71849089178,"('2-s2.0-71849089178', 'Bandettini')",Note,,https://api.elsevier.com/content/abstract/scopus_id/71849089178,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=71849089178&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=71849089178&origin=inward +The role of the human amygdala in the production of conditioned fear responses,Bandettini,David C. Knight;Hanh T. Nguyen;Peter A. Bandettini,2005-07-15,128,NeuroImage,1193-1200,10.1016/j.neuroimage.2005.03.020,15961053,20444420898,"('2-s2.0-20444420898', 'Bandettini')",Article,,https://api.elsevier.com/content/abstract/scopus_id/20444420898,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=20444420898&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=20444420898&origin=inward +Comparison of simultaneously measured perfusion and bold signal increases during brain activation with T1-based tissue identification,Bandettini,B. Douglas Ward;James S. Hyde;Wen Ming Luh;Peter A. Bandettini;Eric C. Wong,2000-07-18,110,Magnetic Resonance in Medicine,137-143,10.1002/1522-2594(200007)44:1<137::AID-MRM20>3.0.CO;2-R,10893532,0033937960,"('2-s2.0-0033937960', 'Bandettini')",Article,,https://api.elsevier.com/content/abstract/scopus_id/0033937960,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0033937960&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0033937960&origin=inward +Experimental designs and processing strategies for fMRI studies involving overt verbal responses,Bandettini,Robert W. Cox;Rasmus M. Birn;Peter A. Bandettini,2004-11-01,118,NeuroImage,1046-1058,10.1016/j.neuroimage.2004.07.039,15528105,7444229260,"('2-s2.0-7444229260', 'Bandettini')",Article,,https://api.elsevier.com/content/abstract/scopus_id/7444229260,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=7444229260&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=7444229260&origin=inward +Task-independent functional brain activity correlation with skin conductance changes: An fMRI study,Ungerleider,Leslie G. Ungerleider;Peter A. Bandettini;James C. Patterson,2002-01-01,104,NeuroImage,1797-1806,10.1006/nimg.2002.1306,12498753,0036939697,"('2-s2.0-0036939697', 'Ungerleider')",Article,,https://api.elsevier.com/content/abstract/scopus_id/0036939697,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0036939697&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0036939697&origin=inward +Mapping the MRI voxel volume in which thermal noise matches physiological noise-Implications for fMRI,Bandettini,K. Murphy;J. Bodurka;P. A. Bandettini;F. Ye;N. Petridou,2007-01-15,100,NeuroImage,542-549,10.1016/j.neuroimage.2006.09.039,17101280,34548813221,"('2-s2.0-34548813221', 'Bandettini')",Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/34548813221,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34548813221&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34548813221&origin=inward +fMRI in the presence of task-correlated breathing variations,Bandettini,Kevin Murphy;Daniel A. Handwerker;Rasmus M. Birn;Peter A. Bandettini,2009-09-01,97,NeuroImage,1092-1104,10.1016/j.neuroimage.2009.05.030,19460443,67651051881,"('2-s2.0-67651051881', 'Bandettini')",Article,,https://api.elsevier.com/content/abstract/scopus_id/67651051881,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=67651051881&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=67651051881&origin=inward +"Understanding neural system dynamics through task modulation and measurement of functional MRI amplitude, latency, and width",Bandettini,Z. S. Saad;P. A. Bandettini;P. S.F. Bellgowan,2003-02-04,83,Proceedings of the National Academy of Sciences of the United States of America,1415-1419,10.1073/pnas.0337747100,12552093,0037417820,"('2-s2.0-0037417820', 'Bandettini')",Article,,https://api.elsevier.com/content/abstract/scopus_id/0037417820,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0037417820&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0037417820&origin=inward +Impact of Continuous Versus Intermittent CS-UCS Pairing on Human Brain Activation During Pavlovian Fear Conditioning,Bandettini,Joseph E. Dunsmoor;David C. Knight;Peter A. Bandettini,2007-08-01,81,Behavioral Neuroscience,635-642,10.1037/0735-7044.121.4.635,17663589,34548862403,"('2-s2.0-34548862403', 'Bandettini')",Article,,https://api.elsevier.com/content/abstract/scopus_id/34548862403,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34548862403&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34548862403&origin=inward +Expression of conditional fear with and without awareness,Bandettini,David C. Knight;Hanh T. Nguyen;Peter A. Bandettini,2003-12-09,82,Proceedings of the National Academy of Sciences of the United States of America,15280-15283,10.1073/pnas.2535780100,14657356,0345598028,"('2-s2.0-0345598028', 'Bandettini')",Article,,https://api.elsevier.com/content/abstract/scopus_id/0345598028,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0345598028&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0345598028&origin=inward +Neural correlates of unconditioned response diminution during Pavlovian conditioning,Bandettini,Joseph E. Dunsmoor;David C. Knight;Peter A. Bandettini,2008-04-01,79,NeuroImage,811-817,10.1016/j.neuroimage.2007.11.042,18203622,40649102903,"('2-s2.0-40649102903', 'Bandettini')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/40649102903,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=40649102903&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=40649102903&origin=inward +Integrated strategy for improving functional connectivity mapping using multiecho fMRI,Bandettini,Valerie Voon;Yulia Worbe;Edward T. Bullmore;Prantik Kundu;Noah D. Brenowitz;Souheil J. Inati;Ziad S. Saad;Petra E. Vértes;Peter A. Bandettini,2013-10-01,130,Proceedings of the National Academy of Sciences of the United States of America,16187-16192,10.1073/pnas.1301725110,24038744,84885024283,"('2-s2.0-84885024283', 'Bandettini')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84885024283,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84885024283&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84885024283&origin=inward +Functional but not structural changes associated with learning: An exploration of longitudinal Voxel-Based Morphometry (VBM),Thomas,Douglas A. Ruff;Ziad S. Saad;Peter A. Bandettini;Adam G. Thomas;Alex Martin;Sean Marrett,2009-10-15,71,NeuroImage,117-125,10.1016/j.neuroimage.2009.05.097,19520171,68049112343,"('2-s2.0-68049112343', 'Thomas')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/68049112343,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=68049112343&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=68049112343&origin=inward +Direct magnetic resonance detection of neuronal electrical activity,Bandettini,Natalia Petridou;Afonso C. Silva;Jerzy Bodurka;Peter A. Bandettini;Murray Loew;Dietmar Plenz,2006-10-24,73,Proceedings of the National Academy of Sciences of the United States of America,16015-16020,10.1073/pnas.0603219103,17038505,33750449651,"('2-s2.0-33750449651', 'Bandettini')",Article,,https://api.elsevier.com/content/abstract/scopus_id/33750449651,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33750449651&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33750449651&origin=inward +"Direct detection of neuronal activity with MRI: Fantasy, possibility, or reality?",Bandettini,P. A. Bandettini;N. Petridou;J. Bodurka,2005-01-01,69,Applied Magnetic Resonance,65-88,10.1007/BF03166956,,26044450303,"('2-s2.0-26044450303', 'Bandettini')",Review,,https://api.elsevier.com/content/abstract/scopus_id/26044450303,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=26044450303&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=26044450303&origin=inward +From neuron to BOLD: New connections,Bandettini,P. A. Bandettini;L. G. Ungerleider,2001-09-12,66,Nature Neuroscience,864-866,10.1038/nn0901-864,11528412,0034873064,"('2-s2.0-0034873064', 'Bandettini')",Short Survey,,https://api.elsevier.com/content/abstract/scopus_id/0034873064,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0034873064&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0034873064&origin=inward +Functional responses in the human spinal cord during willed motor actions: Evidence for side- and rate-dependent activity,Bandettini,Gian Domenico Iannetti;Marta Maieron;Jerzy Bodurka;Peter A. Bandettini;Carlo A. Porro;Irene Tracey,2007-04-11,67,Journal of Neuroscience,4182-4190,10.1523/JNEUROSCI.3910-06.2007,17428996,34247099877,"('2-s2.0-34247099877', 'Bandettini')",Article,,https://api.elsevier.com/content/abstract/scopus_id/34247099877,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34247099877&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34247099877&origin=inward +Neural substrates of explicit and implicit fear memory,Bandettini,David C. Knight;Peter A. Bandettini;Najah S. Waters,2009-03-01,78,NeuroImage,208-214,10.1016/j.neuroimage.2008.11.015,19100329,60149087776,"('2-s2.0-60149087776', 'Bandettini')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/60149087776,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=60149087776&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=60149087776&origin=inward +The spatial extent of the BOLD response,Bandettini,Edgar A. DeYoe;Ziad S. Saad;Kristina M. Ropella;Peter A. Bandettini,2003-05-01,60,NeuroImage,132-144,10.1016/S1053-8119(03)00016-8,12781733,0038100597,"('2-s2.0-0038100597', 'Bandettini')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/0038100597,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0038100597&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0038100597&origin=inward +The continuing challenge of understanding and modeling hemodynamic variation in fMRI,Bandettini,Javier Gonzalez-Castillo;Daniel A. Handwerker;Mark D'Esposito;Peter A. Bandettini,2012-08-15,77,NeuroImage,1017-1023,10.1016/j.neuroimage.2012.02.015,22366081,84862978455,"('2-s2.0-84862978455', 'Bandettini')",Review,NIMH,https://api.elsevier.com/content/abstract/scopus_id/84862978455,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84862978455&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84862978455&origin=inward +Connectivity trajectory across lifespan differentiates the precuneus from the default network,Bandettini,Catie Chang;Ting Xu;Lili Jiang;Xi Nian Zuo;Zhi Yang;F. Xavier Castellanos;Daniel A. Handwerker;Peter A. Bandettini;Michael P. Milham,2014-04-01,86,NeuroImage,45-56,10.1016/j.neuroimage.2013.10.039,24287438,84890516699,"('2-s2.0-84890516699', 'Bandettini')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/84890516699,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84890516699&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84890516699&origin=inward +"Tracking ongoing cognition in individuals using brief, whole-brain functional connectivity patterns",Bandettini,Meghan E. Robinson;Laura C. Buchanan;Colin W. Hoy;Javier Gonzalez-Castillo;Daniel A. Handwerker;Ziad S. Saad;Peter A. Bandettini,2015-07-14,125,Proceedings of the National Academy of Sciences of the United States of America,8762-8767,10.1073/pnas.1501242112,26124112,84937242922,"('2-s2.0-84937242922', 'Bandettini')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/84937242922,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84937242922&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84937242922&origin=inward +The role of awareness in delay and trace fear conditioning in humans,Bandettini,David C. Knight;Hanh T. Nguyen;Peter A. Bandettini,2006-06-01,57,"Cognitive, Affective and Behavioral Neuroscience",157-162,10.3758/CABN.6.2.157,17007236,33748451366,"('2-s2.0-33748451366', 'Bandettini')",Article,,https://api.elsevier.com/content/abstract/scopus_id/33748451366,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33748451366&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33748451366&origin=inward +Physiological noise effects on the flip angle selection in BOLD fMRI,Bandettini,V. Roopchansingh;J. Gonzalez-Castillo;P. A. Bandettini;J. Bodurka,2011-02-14,62,NeuroImage,2764-2778,10.1016/j.neuroimage.2010.11.020,21073963,78650931643,"('2-s2.0-78650931643', 'Bandettini')",Article,,https://api.elsevier.com/content/abstract/scopus_id/78650931643,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=78650931643&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=78650931643&origin=inward +"Face-identity change activation outside the face system: ""Release from adaptation"" may not always indicate neuronal selectivity",Bandettini,Nikolaus Kriegeskorte;Douglas A. Ruff;Marieke Mur;Jerzy Bodurka;Peter A. Bandettini,2010-09-01,52,Cerebral Cortex,2027-2042,10.1093/cercor/bhp272,20051364,77955934165,"('2-s2.0-77955934165', 'Bandettini')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/77955934165,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77955934165&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77955934165&origin=inward +The spatial structure of resting state connectivity stability on the scale of minutes,Bandettini,Meghan E. Robinson;Laura C. Buchanan;Colin Weir Hoy;Javier Gonzalez-Castillo;Daniel A. Handwerker;Ziad S. Saad;Peter A. Bandettini,2014-01-01,70,Frontiers in Neuroscience,,10.3389/fnins.2014.00138,,84905043991,"('2-s2.0-84905043991', 'Bandettini')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84905043991,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84905043991&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84905043991&origin=inward +Integration of motion correction and physiological noise regression in fMRI,Bandettini,Rasmus M. Birn;Peter A. Bandettini;Tyler B. Jones,2008-08-15,53,NeuroImage,582-590,10.1016/j.neuroimage.2008.05.019,18583155,47949117197,"('2-s2.0-47949117197', 'Bandettini')",Article,,https://api.elsevier.com/content/abstract/scopus_id/47949117197,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=47949117197&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=47949117197&origin=inward +"The effect of stimulus duty cycle and ""off"" duration on BOLD response linearity",Bandettini,Rasmus M. Birn;Peter A. Bandettini,2005-08-01,46,NeuroImage,70-82,10.1016/j.neuroimage.2005.03.040,15914032,22044456021,"('2-s2.0-22044456021', 'Bandettini')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/22044456021,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=22044456021&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=22044456021&origin=inward +Noise reduction in multi-slice arterial spin tagging imaging,Bandettini,F. Q. Ye;Keith S. St. Lawrence;J. A. Frank;P. A. Bandettini,2005-03-01,42,Magnetic Resonance in Medicine,735-738,10.1002/mrm.20396,15723412,14744290317,"('2-s2.0-14744290317', 'Bandettini')",Article,,https://api.elsevier.com/content/abstract/scopus_id/14744290317,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=14744290317&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=14744290317&origin=inward +"Categorical, yet graded-single-image activation profiles of human category-selective cortical regions",Bandettini,Nikolaus Kriegeskorte;Peter De Weerd;Douglas A. Ruff;Marieke Mur;Jerzy Bodurka;Peter A. Bandettini,2012-06-20,45,Journal of Neuroscience,8649-8662,10.1523/JNEUROSCI.2334-11.2012,22723705,84862858651,"('2-s2.0-84862858651', 'Bandettini')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84862858651,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84862858651&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84862858651&origin=inward +Learning-related diminution of unconditioned SCR and fMRI signal responses,Bandettini,Margaret K. King;David C. Knight;Peter A. Bandettini;Najah S. Waters,2010-01-01,41,NeuroImage,843-848,10.1016/j.neuroimage.2009.07.012,19616105,70349972745,"('2-s2.0-70349972745', 'Bandettini')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/70349972745,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=70349972745&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=70349972745&origin=inward +Human object-similarity judgments reflect and transcend the primate-IT object representation,Bandettini,Rainer Goebel;Nikolaus Kriegeskorte;Marieke Mur;Jerzy Bodurka;Peter A. Bandettini;Mirjam Meys,2013-01-01,56,Frontiers in Psychology,,10.3389/fpsyg.2013.00128,,84878784896,"('2-s2.0-84878784896', 'Bandettini')",Article,MRC,https://api.elsevier.com/content/abstract/scopus_id/84878784896,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84878784896&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84878784896&origin=inward +Combining the tools: Activation- and information-based fMRI analysis,Bandettini,Nikolaus Kriegeskorte;Peter Bandettini,2007-12-01,35,NeuroImage,666-668,10.1016/j.neuroimage.2007.06.030,17976583,35448983424,"('2-s2.0-35448983424', 'Bandettini')",Note,,https://api.elsevier.com/content/abstract/scopus_id/35448983424,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=35448983424&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=35448983424&origin=inward +Multi-modal characterization of rapid anterior hippocampal volume increase associated with aerobic exercise,Thomas,Mark Jenkinson;Sean Foxley;Shannon H. Kolind;Helen Dawes;Nancy B. Rawlings;Charlotte J. Stagg;Peter A. Bandettini;Adam G. Thomas;Lucy Matthews;Thomas E. Nichols;Heidi Johansen-Berg;Andrea Dennis;Martyn Morris,2016-05-01,48,NeuroImage,162-170,10.1016/j.neuroimage.2015.10.090,26654786,84955575520,"('2-s2.0-84955575520', 'Thomas')",Article,NHRI,https://api.elsevier.com/content/abstract/scopus_id/84955575520,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84955575520&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84955575520&origin=inward +Characteristic cortical thickness patterns in adolescents with autism spectrum disorders: Interactions with age and intellectual ability revealed by canonical correlation analysis,Martin,Gregory L. Wallace;Masaya Misaki;Peter A. Bandettini;Alex Martin;Nathan Dankner,2012-04-15,26,NeuroImage,1890-1901,10.1016/j.neuroimage.2012.01.120,22326986,84857946258,"('2-s2.0-84857946258', 'Martin')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/84857946258,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84857946258&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84857946258&origin=inward +Brain network informed subject community detection in early-onset schizophrenia,Bandettini,Ting Xu;Xi Nian Zuo;Georg Northoff;Zhi Yang;Colin W. Hoy;Yong Xu;Gang Chen;Daniel A. Handwerker;Peter A. Bandettini,2014-07-03,32,Scientific Reports,,10.1038/srep05549,24989351,84903954873,"('2-s2.0-84903954873', 'Bandettini')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/84903954873,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84903954873&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84903954873&origin=inward +Separating slow BOLD from non-BOLD baseline drifts using multi-echo fMRI,Bandettini,Prantik Kundu;Jennifer W. Evans;Silvina G. Horovitz;Peter A. Bandettini,2015-01-05,31,NeuroImage,189-197,10.1016/j.neuroimage.2014.10.051,25449746,84910022208,"('2-s2.0-84910022208', 'Bandettini')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84910022208,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84910022208&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84910022208&origin=inward +Pseudo-continuous arterial spin labeling at 7 T for human brain: Estimation and correction for off-resonance effects using a Prescan,Talagala,Wen Ming Luh;S. Lalith Talagala;Tie Qiang Li;Peter A. Bandettini,2013-02-01,28,Magnetic Resonance in Medicine,402-410,10.1002/mrm.24266,22488568,84872973394,"('2-s2.0-84872973394', 'Talagala')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84872973394,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84872973394&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84872973394&origin=inward +Seven topics in functional magnetic resonance imaging,Bandettini,Peter A. Bandettini,2009-09-01,20,Journal of Integrative Neuroscience,371-403,10.1142/S0219635209002186,19938211,76449106575,"('2-s2.0-76449106575', 'Bandettini')",Review,,https://api.elsevier.com/content/abstract/scopus_id/76449106575,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=76449106575&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=76449106575&origin=inward +Genetic and Environmental Contributions to Functional Connectivity Architecture of the Human Brain,Bandettini,R. Cameron Craddock;Xi Nian Zuo;Zhi Yang;Katie L. McMahon;Greig I. De Zubicaray;F. Xavier Castellanos;Ian Hickie;Peter A. Bandettini;Clare Kelly;Michael P. Milham;Margaret J. Wright,2016-05-01,41,Cerebral Cortex,2341-2352,10.1093/cercor/bhw027,26891986,84965097479,"('2-s2.0-84965097479', 'Bandettini')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/84965097479,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84965097479&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84965097479&origin=inward +Task-based dynamic functional connectivity: Recent findings and open questions,Bandettini,Javier Gonzalez-Castillo;Peter A. Bandettini,2018-10-15,50,NeuroImage,526-533,10.1016/j.neuroimage.2017.08.006,28780401,85027128247,"('2-s2.0-85027128247', 'Bandettini')",Review,NIH,https://api.elsevier.com/content/abstract/scopus_id/85027128247,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85027128247&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85027128247&origin=inward +Using fMRI to decode true thoughts independent of intention to conceal,Bandettini,Georg Northoff;Zhi Yang;Peter Bandettini;Javier Gonzalez-Castillo;Rui Dai;Zirui Huang,2014-10-01,14,NeuroImage,80-92,10.1016/j.neuroimage.2014.05.034,24844742,84903538597,"('2-s2.0-84903538597', 'Bandettini')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/84903538597,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84903538597&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84903538597&origin=inward +Artifactual time-course correlations in echo-planar fMRI with implications for studies of brain function,Bandettini,Nikolaus Kriegeskorte;Jerzy Bodurka;Peter Bandettini,2008-12-17,11,International Journal of Imaging Systems and Technology,345-349,10.1002/ima.20166,,57549102118,"('2-s2.0-57549102118', 'Bandettini')",Article,,https://api.elsevier.com/content/abstract/scopus_id/57549102118,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=57549102118&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=57549102118&origin=inward +Effects of image contrast on functional MRI image registration,Bandettini,Carlton Chu;Javier Gonzalez-Castillo;Ziad S. Saad;Peter A. Bandettini;Wen Ming Luh;Kristen N. Duthie,2013-02-15,11,NeuroImage,163-174,10.1016/j.neuroimage.2012.10.076,23128074,84871027595,"('2-s2.0-84871027595', 'Bandettini')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/84871027595,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84871027595&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84871027595&origin=inward +Effects of thoracic pressure changes on MRI signals in the brain,Bandettini,Ronald M. Harper;Daniel A. Handwerker;Peter A. Bandettini;Paula Wu,2015-01-01,11,Journal of Cerebral Blood Flow and Metabolism,1024-1032,10.1038/jcbfm.2015.20,25712496,84930180212,"('2-s2.0-84930180212', 'Bandettini')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84930180212,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84930180212&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84930180212&origin=inward +"Task dependence, tissue specificity, and spatial distribution of widespread activations in large single-subject functional MRI datasets at 7T",Bandettini,Robert W. Cox;Vinai Roopchansingh;Colin W. Hoy;Javier Gonzalez-Castillo;Daniel A. Handwerker;Souheil J. Inati;Ziad S. Saad;Peter A. Bandettini,2015-01-01,9,Cerebral Cortex,4667-4677,10.1093/cercor/bhu148,25405938,84959440808,"('2-s2.0-84959440808', 'Bandettini')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84959440808,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84959440808&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84959440808&origin=inward +Techniques for blood volume fMRI with VASO: From low-resolution mapping towards sub-millimeter layer-dependent applications,Bandettini,Maria Guidi;Kâmil Uludağ;Benedikt A. Poser;Daniel A. Handwerker;Peter A. Bandettini;Laurentius Huber;Sean Marrett;Dimo Ivanov,2018-01-01,30,NeuroImage,131-143,10.1016/j.neuroimage.2016.11.039,27867088,85007356582,"('2-s2.0-85007356582', 'Bandettini')",Article,EC,https://api.elsevier.com/content/abstract/scopus_id/85007356582,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85007356582&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85007356582&origin=inward +Measuring the consistency of global functional connectivity using kernel regression methods,Bandettini,John Ashburner;Daniel A. Handwerker;Peter A. Bandettini;Carlton Chu,2011-08-29,6,"Proceedings - International Workshop on Pattern Recognition in NeuroImaging, PRNI 2011",41-44,10.1109/PRNI.2011.11,,80051970198,"('2-s2.0-80051970198', 'Bandettini')",Conference Paper,,https://api.elsevier.com/content/abstract/scopus_id/80051970198,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=80051970198&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=80051970198&origin=inward +Differential transient MEG and fMRI responses to visual stimulation onset rate,Bandettini,August S. Tuan;Geoffrey M. Boynton;Rasmus M. Birn;Peter A. Bandettini,2008-07-16,6,International Journal of Imaging Systems and Technology,17-28,10.1002/ima.20144,,46949096201,"('2-s2.0-46949096201', 'Bandettini')",Article,,https://api.elsevier.com/content/abstract/scopus_id/46949096201,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=46949096201&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=46949096201&origin=inward +"Evaluation of multi-echo ICA denoising for task based fMRI studies: Block designs, rapid event-related designs, and cardiac-gated fMRI",Bandettini,John A. Derbyshire;Cesar Caballero-Gaudes;David C. Jangraw;Laura C. Buchanan;Vinai Roopchansingh;Puja Panwar;Javier Gonzalez-Castillo;Daniel A. Handwerker;Peter A. Bandettini;Souheil Inati;Valentinos Zachariou,2016-11-01,14,NeuroImage,452-468,10.1016/j.neuroimage.2016.07.049,27475290,84981186502,"('2-s2.0-84981186502', 'Bandettini')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/84981186502,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84981186502&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84981186502&origin=inward +Accurate decoding of sub-TR timing differences in stimulations of sub-voxel regions from multi-voxel response patterns,Bandettini,Wen Ming Luh;Peter A. Bandettini;Masaya Misaki,2013-02-01,4,NeuroImage,623-633,10.1016/j.neuroimage.2012.10.069,23128073,84872258736,"('2-s2.0-84872258736', 'Bandettini')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/84872258736,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84872258736&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84872258736&origin=inward +Variance decomposition for single-subject task-based fMRI activity estimates across many sessions,Bandettini,Javier Gonzalez-Castillo;Peter A. Bandettini;Gang Chen;Thomas E. Nichols,2017-07-01,7,NeuroImage,206-218,10.1016/j.neuroimage.2016.10.024,27773827,85007106979,"('2-s2.0-85007106979', 'Bandettini')",Article,,https://api.elsevier.com/content/abstract/scopus_id/85007106979,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85007106979&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85007106979&origin=inward +"Time-Resolved Resting-State Functional Magnetic Resonance Imaging Analysis: Current Status, Challenges, and New Directions",Bandettini,Cesar Caballero-Gaudes;Vince Calhoun;Peter Bandettini;Gustavo Deco;Shella Keilholz,2017-10-01,30,Brain Connectivity,465-481,10.1089/brain.2017.0543,28874061,85031756535,"('2-s2.0-85031756535', 'Bandettini')",Review,,https://api.elsevier.com/content/abstract/scopus_id/85031756535,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85031756535&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85031756535&origin=inward +Cerebellum engages in automation of verb-generation skill,Bandettini,Xuchu Weng;Peter A. Bandettini;Paula Wu;Zhi Yang,2014-01-01,4,Journal of Integrative Neuroscience,1-17,10.1142/S0219635214500010,24738536,84899413629,"('2-s2.0-84899413629', 'Bandettini')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/84899413629,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84899413629&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84899413629&origin=inward +"Characterizing and utilizing fMRI fluctuations, patterns, and dynamics",Bandettini,Masaya Misaki;Prantik Kundu;Paul Guillod;Javier Gonzalez-Castillo;Peter A. Bandettini,2013-06-03,0,Progress in Biomedical Optics and Imaging - Proceedings of SPIE,,10.1117/12.2012737,,84878327205,"('2-s2.0-84878327205', 'Bandettini')",Conference Paper,,https://api.elsevier.com/content/abstract/scopus_id/84878327205,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84878327205&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84878327205&origin=inward +Clinical feasibility of using mean apparent propagator (MAP) MRI to characterize brain tissue microstructure,Pierpaoli,Joelle E. Sarlls;Evren Özarslan;Peter J. Basser;Alexandru V. Avram;M. Okan Irfanoglu;Elizabeth Hutchinson;Carlo Pierpaoli;Alan S. Barnett;Cibu Thomas,2016-02-15,30,NeuroImage,422-434,10.1016/j.neuroimage.2015.11.027,26584864,84960849135,"('2-s2.0-84960849135', 'Pierpaoli')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/84960849135,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84960849135&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84960849135&origin=inward +White matter microstructure from nonparametric axon diameter distribution mapping,Basser,Uri Nevo;Peter J. Basser;Dan Benjamini;Michal E. Komlosh;Lynne A. Holtzclaw,2016-07-15,35,NeuroImage,333-344,10.1016/j.neuroimage.2016.04.052,27126002,84973530104,"('2-s2.0-84973530104', 'Basser')",Article,NICHD,https://api.elsevier.com/content/abstract/scopus_id/84973530104,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84973530104&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84973530104&origin=inward +Tract Orientation and Angular Dispersion Deviation Indicator (TOADDI): A framework for single-subject analysis in diffusion tensor imaging,Pierpaoli,Terrence R. Oakes;Cheng Guan Koay;Peter J. Basser;Gerard Riedy;M. Okan Irfanoğlu;Carlo Pierpaoli;John M. Ollinger;Ping Hong Yeh,2016-02-01,1,NeuroImage,151-163,10.1016/j.neuroimage.2015.11.046,26638985,84949256230,"('2-s2.0-84949256230', 'Pierpaoli')",Article,NICHD,https://api.elsevier.com/content/abstract/scopus_id/84949256230,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84949256230&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84949256230&origin=inward +"Diffusion-tensor MRI: Theory, experimental design and data analysis - A technical review",Basser,Peter J. Basser;Derek K. Jones,2002-11-01,1026,NMR in Biomedicine,456-467,10.1002/nbm.783,12489095,0036869232,"('2-s2.0-0036869232', 'Basser')",Review,,https://api.elsevier.com/content/abstract/scopus_id/0036869232,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0036869232&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0036869232&origin=inward +Water diffusion changes in wallerian degeneration and their dependence on white matter architecture,Pierpaoli,Alan Barnett;Robert Chen;Anette Virta;La Roy Penix;Sinisa Pajevic;Peter Basser;Carlo Pierpaoli,2001-01-01,739,NeuroImage,1174-1185,10.1006/nimg.2001.0765,11352623,0034973970,"('2-s2.0-0034973970', 'Pierpaoli')",Article,NICHD,https://api.elsevier.com/content/abstract/scopus_id/0034973970,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0034973970&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0034973970&origin=inward +RESTORE: Robust estimation of tensors by outlier rejection,Pierpaoli,Lin Ching Chang;Derek K. Jones;Carlo Pierpaoli,2005-05-01,408,Magnetic Resonance in Medicine,1088-1095,10.1002/mrm.20426,15844157,18244400115,"('2-s2.0-18244400115', 'Pierpaoli')",Article,,https://api.elsevier.com/content/abstract/scopus_id/18244400115,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=18244400115&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=18244400115&origin=inward +Comprehensive Approach for Correction of Motion and Distortion in Diffusion-Weighted MRI,Basser,A. S. Barnett;P. J. Basser;Gustavo Kunde Rohde;C. Pierpaoli;S. Marenco,2004-01-01,361,Magnetic Resonance in Medicine,103-114,10.1002/mrm.10677,14705050,0345742636,"('2-s2.0-0345742636', 'Basser')",Article,,https://api.elsevier.com/content/abstract/scopus_id/0345742636,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0345742636&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0345742636&origin=inward +Anatomical accuracy of brain connections derived from diffusion MRI tractography is inherently limited,Pierpaoli,Frank Q. Ye;M. Okan Irfanoglu;David A. Leopold;Kadharbatcha S. Saleem;Pooja Modi;Carlo Pierpaoli;Cibu Thomas,2014-11-18,335,Proceedings of the National Academy of Sciences of the United States of America,16574-16579,10.1073/pnas.1405672111,25368179,84915758306,"('2-s2.0-84915758306', 'Pierpaoli')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84915758306,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84915758306&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84915758306&origin=inward +Parametric and non-parametric statistical analysis of DT-MRI data,Basser,Sinisa Pajevic;Peter J. Basser,2003-03-01,124,Journal of Magnetic Resonance,1-14,10.1016/S1090-7807(02)00178-7,12660106,0041702764,"('2-s2.0-0041702764', 'Basser')",Article,,https://api.elsevier.com/content/abstract/scopus_id/0041702764,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0041702764&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0041702764&origin=inward +Confidence mapping in diffusion tensor magnetic resonance imaging tractography using a bootstrap approach,Pierpaoli,Derek K. Jones;Carlo Pierpaoli,2005-05-01,114,Magnetic Resonance in Medicine,1143-1149,10.1002/mrm.20466,15844149,18244362334,"('2-s2.0-18244362334', 'Pierpaoli')",Article,,https://api.elsevier.com/content/abstract/scopus_id/18244362334,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=18244362334&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=18244362334&origin=inward +Mean apparent propagator (MAP) MRI: A novel diffusion imaging method for mapping tissue microstructure,Pierpaoli,Cheng Guan Koay;Timothy M. Shepherd;Evren Özarslan;M. Okan Irfanoǧlu;Peter J. Basser;Carlo Pierpaoli;Michal E. Komlosh,2013-09-01,153,NeuroImage,16-32,10.1016/j.neuroimage.2013.04.016,23587694,84877006595,"('2-s2.0-84877006595', 'Pierpaoli')",Article,NICHD,https://api.elsevier.com/content/abstract/scopus_id/84877006595,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84877006595&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84877006595&origin=inward +Effects of image distortions originating from susceptibility variations and concomitant fields on diffusion MRI tractography results,Pierpaoli,Lindsay Walker;Stefano Marenco;M. Okan Irfanoglu;Joelle Sarlls;Carlo Pierpaoli,2012-05-15,117,NeuroImage,275-288,10.1016/j.neuroimage.2012.02.054,22401760,84859091395,"('2-s2.0-84859091395', 'Pierpaoli')",Article,NICHD,https://api.elsevier.com/content/abstract/scopus_id/84859091395,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84859091395&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84859091395&origin=inward +Informed RESTORE: A method for robust estimation of diffusion tensor from low redundancy datasets in the presence of physiological noise artifacts,Pierpaoli,Lin Ching Chang;Carlo Pierpaoli;Lindsay Walker,2012-11-01,71,Magnetic Resonance in Medicine,1654-1663,10.1002/mrm.24173,22287298,84865661488,"('2-s2.0-84865661488', 'Pierpaoli')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84865661488,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84865661488&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84865661488&origin=inward +Observation of microscopic diffusion anisotropy in the spinal cord using double-pulsed gradient spin echo MRI,Basser,M. J. Lizak;F. Horkay;P. J. Basser;Michal E. Komlosh;R. Z. Freidlin,2008-04-01,54,Magnetic Resonance in Medicine,803-809,10.1002/mrm.21528,18383293,41849083445,"('2-s2.0-41849083445', 'Basser')",Article,,https://api.elsevier.com/content/abstract/scopus_id/41849083445,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=41849083445&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=41849083445&origin=inward +Spectral decomposition of a 4th-order covariance tensor: Applications to diffusion tensor MRI,Basser,Peter J. Basser;Sinisa Pajevic,2007-02-01,56,Signal Processing,220-236,10.1016/j.sigpro.2006.02.050,,33750978683,"('2-s2.0-33750978683', 'Basser')",Article,NICHD,https://api.elsevier.com/content/abstract/scopus_id/33750978683,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33750978683&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33750978683&origin=inward +Diffusion tensor imaging in young children with autism: Biological effects and potential confounds,Thurm,Babak Behseta;Marta Gozzi;Carlo Pierpaoli;Lindsay Walker;Rhoshel Lenroot;Audrey Thurm;Susan Swedo,2012-12-15,63,Biological Psychiatry,1043-1051,10.1016/j.biopsych.2012.08.001,22906515,84869093751,"('2-s2.0-84869093751', 'Thurm')",Article,CNRM,https://api.elsevier.com/content/abstract/scopus_id/84869093751,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84869093751&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84869093751&origin=inward +Dependence on diffusion time of apparent diffusion tensor of ex vivo calf tongue and heart,Pierpaoli,Gloria Chi-Fishman;Alan S. Barnett;Carlo Pierpaoli;Sungheon Kim,2005-12-01,59,Magnetic Resonance in Medicine,1387-1396,10.1002/mrm.20676,16265644,28444469213,"('2-s2.0-28444469213', 'Pierpaoli')",Article,,https://api.elsevier.com/content/abstract/scopus_id/28444469213,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=28444469213&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=28444469213&origin=inward +Effects of physiological noise in population analysis of diffusion tensor MRI data,Cohen,Nik Sharma;Cheng Guan Koay;Lindsay Walker;Lin Ching Chang;Ragini Verma;Carlo Pierpaoli;Leonardo Cohen,2011-01-15,47,NeuroImage,1168-1177,10.1016/j.neuroimage.2010.08.048,20804850,78649646790,"('2-s2.0-78649646790', 'Cohen')",Article,NICHD,https://api.elsevier.com/content/abstract/scopus_id/78649646790,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=78649646790&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=78649646790&origin=inward +Estimating intensity variance due to noise in registered images: Applications to diffusion tensor MRI,Basser,Gustavo K. Rohde;Alan S. Barnett;Peter J. Basser;Carlo Pierpaoli,2005-07-01,40,NeuroImage,673-684,10.1016/j.neuroimage.2005.02.023,15955477,20444494054,"('2-s2.0-20444494054', 'Basser')",Article,,https://api.elsevier.com/content/abstract/scopus_id/20444494054,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=20444494054&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=20444494054&origin=inward +DR-BUDDI (Diffeomorphic Registration for Blip-Up blip-Down Diffusion Imaging) method for correcting echo planar imaging distortions,Pierpaoli,M. Okan Irfanoglu;Joelle Sarlls;Elizabeth B. Hutchinson;Pooja Modi;Carlo Pierpaoli;Amritha Nayak,2015-02-01,67,NeuroImage,284-299,10.1016/j.neuroimage.2014.11.042,25433212,84920153111,"('2-s2.0-84920153111', 'Pierpaoli')",Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/84920153111,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84920153111&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84920153111&origin=inward +In vivo detection of microscopic anisotropy using quadruple pulsed-field gradient (qPFG) diffusion MRI on a clinical scanner,Basser,Peter J. Basser;Alexandru V. Avram;Evren Özarslan;Joelle E. Sarlls,2013-01-01,46,NeuroImage,229-239,10.1016/j.neuroimage.2012.08.048,22939872,84867460313,"('2-s2.0-84867460313', 'Basser')",Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/84867460313,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84867460313&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84867460313&origin=inward +Parsimonious model selection for tissue segmentation and classification applications: A study using simulated and experimental DTI data,Basser,Evren Özarslan;Cheng Guan Koay;Peter J. Basser;Raisa Z. Freidlin;Lin Ching Chang;Michal E. Komlosh;Derek K. Jones,2007-11-01,19,IEEE Transactions on Medical Imaging,1576-1584,10.1109/TMI.2007.907294,18041272,35648946356,"('2-s2.0-35648946356', 'Basser')",Article,CIT,https://api.elsevier.com/content/abstract/scopus_id/35648946356,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=35648946356&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=35648946356&origin=inward +A framework for the analysis of phantom data in multicenter diffusion tensor imaging studies,Pierpaoli,Nicholas Lange;Michael Curry;Lindsay Walker;Carlo Pierpaoli;Amritha Nayak,2013-10-01,26,Human Brain Mapping,2439-2454,10.1002/hbm.22081,22461391,84883753710,"('2-s2.0-84883753710', 'Pierpaoli')",Article,NICHD,https://api.elsevier.com/content/abstract/scopus_id/84883753710,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84883753710&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84883753710&origin=inward +Diffusion-weighted radial fast spin-echo for high-resolution diffusion tensor imaging at 3T,Pierpaoli,Joelle E. Sarlls;Carlo Pierpaoli,2008-08-01,14,Magnetic Resonance in Medicine,270-276,10.1002/mrm.21639,18666119,49049110253,"('2-s2.0-49049110253', 'Pierpaoli')",Article,,https://api.elsevier.com/content/abstract/scopus_id/49049110253,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=49049110253&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=49049110253&origin=inward +In vivo diffusion tensor imaging of the human optic chiasm at sub-millimeter resolution,Pierpaoli,Joelle E. Sarlls;Carlo Pierpaoli,2009-10-01,14,NeuroImage,1244-1251,10.1016/j.neuroimage.2009.05.098,19520170,67651017508,"('2-s2.0-67651017508', 'Pierpaoli')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/67651017508,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=67651017508&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=67651017508&origin=inward +Diffusion tensor histogram analysis of pediatric diffuse intrinsic pontine glioma,Pierpaoli,Joelle E. Sarlls;Lindsay Walker;Joanna H. Shih;Carlo Pierpaoli;Katherine E. Warren;Robyn S. Bent;Emilie A. Steffen-Smith,2014-01-01,10,BioMed Research International,,10.1155/2014/647356,25006580,84903650018,"('2-s2.0-84903650018', 'Pierpaoli')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84903650018,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84903650018&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84903650018&origin=inward +DR-BUDDI: Diffeomorphic registration for blip up-down diffusion imaging,Pierpaoli,M. Okan Irfanoglu;Joelle Sarlls;Andrew Knutsen;Pooja Modi;Carlo Pierpaoli;Amritha Nayak,2014-01-01,5,Lecture Notes in Computer Science (including subseries Lecture Notes in Artificial Intelligence and Lecture Notes in Bioinformatics),218-226,10.1007/978-3-319-10404-1_28,25333121,84906978503,"('2-s2.0-84906978503', 'Pierpaoli')",Conference Paper,,https://api.elsevier.com/content/abstract/scopus_id/84906978503,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84906978503&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84906978503&origin=inward +Parsimonious model selection for tissue classification: A DTI study of zebrafish,Basser,Peter J. Basser;Michal E. Komlosh;Raisa Z. Freidlin;Murray H. Loew,2007-11-23,0,Progress in Biomedical Optics and Imaging - Proceedings of SPIE,,10.1117/12.708312,,36248937190,"('2-s2.0-36248937190', 'Basser')",Conference Paper,,https://api.elsevier.com/content/abstract/scopus_id/36248937190,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=36248937190&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=36248937190&origin=inward +Evidence for abnormal cortical functional connectivity during working memory in schizophrenia,Berman,M. F. Egan;J. L. Holt;D. R. Weinberger;A. Meyer-Lindenberg;P. D. Kohn;K. F. Berman;J. B. Polin,2001-11-24,404,American Journal of Psychiatry,1809-1817,10.1176/appi.ajp.158.11.1809,11691686,0035154055,"('2-s2.0-0035154055', 'Berman')",Article,,https://api.elsevier.com/content/abstract/scopus_id/0035154055,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0035154055&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0035154055&origin=inward +Regionally specific disturbance of dorsolateral prefrontal-hippocampal functional connectivity in schizophrenia,Berman,Timothy Brown;Michael F. Egan;Philip D. Kohn;Rosanna K. Olsen;Andreas S. Meyer-Lindenberg;Karen Faith Berman;Daniel R. Weinberger,2005-04-01,418,Archives of General Psychiatry,379-386,10.1001/archpsyc.62.4.379,15809405,16344390356,"('2-s2.0-16344390356', 'Berman')",Article,,https://api.elsevier.com/content/abstract/scopus_id/16344390356,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=16344390356&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=16344390356&origin=inward +Menstrual cycle phase modulates reward-related neural function in women,Schmidt,David Rubinow;Daniella Furman;Peter J. Schmidt;Philip Kohn;Jean Claude Dreher;Karen Faith Berman,2007-02-13,323,Proceedings of the National Academy of Sciences of the United States of America,2465-2470,10.1073/pnas.0605569104,17267613,33847771238,"('2-s2.0-33847771238', 'Schmidt')",Article,,https://api.elsevier.com/content/abstract/scopus_id/33847771238,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33847771238&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33847771238&origin=inward +Neural mechanisms in Williams syndrome: A unique window to genetic influences on cognition and behaviour,Faith Berman,Andreas Meyer-Lindenberg;Karen Faith Berman;Carolyn B. Mervis,2006-05-01,299,Nature Reviews Neuroscience,380-393,10.1038/nrn1906,16760918,33745698871,"('2-s2.0-33745698871', 'Faith Berman')",Review,NICHD,https://api.elsevier.com/content/abstract/scopus_id/33745698871,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33745698871&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33745698871&origin=inward +Neural correlates of genetically abnormal social cognition in Williams syndrome,Berman,Carolyn B. Mervis;Ahmad R. Hariri;Karen E. Munoz;Andreas Meyer-Lindenberg;Colleen A. Morris;Karen Faith Berman;Venkata S. Mattay,2005-08-01,274,Nature Neuroscience,991-993,10.1038/nn1494,16007084,23044456645,"('2-s2.0-23044456645', 'Berman')",Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/23044456645,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=23044456645&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=23044456645&origin=inward +Meta-analysis of neuroimaging studies of the Wisconsin Card-Sorting Task and component processes,Berman,Stephanie Greer;Wei Li Chang;Bradley R. Buchsbaum;Karen Faith Berman,2005-05-01,295,Human Brain Mapping,35-45,10.1002/hbm.20128,15846821,18544391151,"('2-s2.0-18544391151', 'Berman')",Conference Paper,,https://api.elsevier.com/content/abstract/scopus_id/18544391151,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=18544391151&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=18544391151&origin=inward +Variation in dopamine genes influences responsivity of the human reward system,Berman,Philip Kohn;Jean Claude Dreher;Bhaskar Kolachana;Karen Faith Berman;Daniel R. Weinberger,2009-01-13,268,Proceedings of the National Academy of Sciences of the United States of America,617-622,10.1073/pnas.0805517106,19104049,58849166796,"('2-s2.0-58849166796', 'Berman')",Article,,https://api.elsevier.com/content/abstract/scopus_id/58849166796,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=58849166796&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=58849166796&origin=inward +Neural basis of genetically determined visuospatial construction deficit in Williams syndrome,Berman,Carolyn B. Mervis;Philip Kohn;J. Shane Kippenhan;Rosanna K. Olsen;Andreas Meyer-Lindenberg;Colleen A. Morris;Karen Faith Berman,2004-09-02,247,Neuron,623-631,10.1016/j.neuron.2004.08.014,15339645,4444331998,"('2-s2.0-4444331998', 'Berman')",Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/4444331998,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=4444331998&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=4444331998&origin=inward +Human dorsal and ventral auditory streams subserve rehearsal-based and echoic processes during verbal working memory,Berman,Paul Koch;Bradley R. Buchsbaum;Karen Faith Berman;Rosanna K. Olsen,2005-11-23,200,Neuron,687-697,10.1016/j.neuron.2005.09.029,16301183,27844556998,"('2-s2.0-27844556998', 'Berman')",Article,,https://api.elsevier.com/content/abstract/scopus_id/27844556998,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=27844556998&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=27844556998&origin=inward +"Conduction aphasia, sensory-motor integration, and phonological short-term memory - An aggregate analysis of lesion and fMRI data",Berman,Karen F. Berman;Mark D'Esposito;Bradley R. Buchsbaum;Nina Dronkers;Juliana Baldo;Kayoko Okada;Gregory Hickok,2011-12-01,181,Brain and Language,119-128,10.1016/j.bandl.2010.12.001,21256582,79551658486,"('2-s2.0-79551658486', 'Berman')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/79551658486,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79551658486&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79551658486&origin=inward +Neural coding of distinct statistical properties of reward information in humans,Berman,Philip Kohn;Jean Claude Dreher;Karen Faith Berman,2006-04-01,136,Cerebral Cortex,561-573,10.1093/cercor/bhj004,16033924,33644918886,"('2-s2.0-33644918886', 'Berman')",Article,,https://api.elsevier.com/content/abstract/scopus_id/33644918886,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33644918886&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33644918886&origin=inward +Fractionating the neural substrate of cognitive control processes,Berman,Jean Claude Dreher;Karen Faith Berman,2002-10-29,130,Proceedings of the National Academy of Sciences of the United States of America,14595-14600,10.1073/pnas.222193299,12391312,0037195076,"('2-s2.0-0037195076', 'Berman')",Article,,https://api.elsevier.com/content/abstract/scopus_id/0037195076,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0037195076&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0037195076&origin=inward +Age-related changes in midbrain dopaminergic regulation of the human reward system,Berman,Philip Kohn;Andreas Meyer-Lindenberg;Jean Claude Dreher;Karen Faith Berman,2008-09-30,125,Proceedings of the National Academy of Sciences of the United States of America,15106-15111,10.1073/pnas.0802127105,18794529,54449089027,"('2-s2.0-54449089027', 'Berman')",Article,,https://api.elsevier.com/content/abstract/scopus_id/54449089027,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=54449089027&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=54449089027&origin=inward +"Functional, structural, and metabolic abnormalities of the hippocampal formation in Williams syndrome",Berman,Carolyn B. Mervis;Colleen A. Morris;Stefano Marenco;Saumitra Das;Philip Kohn;Sonya Steele;Karen Faith Berman;Shane Kippenhan;Andreas Meyer-Lindenberg;Paul Koch;Deepak Sarpal;Venkata S. Mattay;Daniel R. Weinberger,2005-07-01,113,Journal of Clinical Investigation,1888-1895,10.1172/JCI24892,15951840,22144453872,"('2-s2.0-22144453872', 'Berman')",Article,,https://api.elsevier.com/content/abstract/scopus_id/22144453872,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=22144453872&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=22144453872&origin=inward +Genetic contributions to human gyrification: Sulcal morphometry in Williams syndrome,Berman,Carolyn B. Mervis;Philip Kohn;J. Shane Kippenhan;Rosanna K. Olsen;Andreas Meyer-Lindenberg;Colleen A. Morris;Karen Faith Berman,2005-08-24,102,Journal of Neuroscience,7840-7846,10.1523/JNEUROSCI.1722-05.2005,16120786,23944487203,"('2-s2.0-23944487203', 'Berman')",Article,,https://api.elsevier.com/content/abstract/scopus_id/23944487203,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=23944487203&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=23944487203&origin=inward +Genetic contributions to white matter architecture revealed by diffusion tensor imaging in Williams syndrome,Pierpaoli,Carolyn B. Mervis;Michael A. Siuta;Stefano Marenco;Samuel Grodofsky;J. Shane Kippenhan;Wei Li Chang;Philip Kohn;Carlo Pierpaoli;Andreas Meyer-Lindenberg;Colleen A. Morris;Karen Faith Berman;Daniel R. Weinberger,2007-09-18,72,Proceedings of the National Academy of Sciences of the United States of America,15117-15122,10.1073/pnas.0704311104,17827280,35448967833,"('2-s2.0-35448967833', 'Pierpaoli')",Article,,https://api.elsevier.com/content/abstract/scopus_id/35448967833,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=35448967833&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=35448967833&origin=inward +"Reading, hearing, and the planum temporale",Berman,Bradley R. Buchsbaum;Paul F. Koch;Philip Kohn;J. Shane Kippenhan;Rosanna K. Olsen;Karen Faith Berman,2005-01-15,65,NeuroImage,444-454,10.1016/j.neuroimage.2004.08.025,15627586,16244380802,"('2-s2.0-16244380802', 'Berman')",Article,,https://api.elsevier.com/content/abstract/scopus_id/16244380802,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=16244380802&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=16244380802&origin=inward +The neurobiology of glucocerebrosidase-associated parkinsonism: A positron emission tomography study of dopamine synthesis and regional cerebral blood flow,Berman,Catherine Groden;Karen F. Berman;Joseph C. Masdeu;Edythe Wiggs;Molly C. Chapman;Brett Cropp;Grisel Lopez;Philip D. Kohn;Joie Davis;Emerson D. Maniwang;Daniel P. Eisenberg;Angela Ianni;Ozlem Goker-Alpan;Ellen Sidransky,2012-01-01,50,Brain,2440-2448,10.1093/brain/aws174,,84864659715,"('2-s2.0-84864659715', 'Berman')",Article,NHGRI,https://api.elsevier.com/content/abstract/scopus_id/84864659715,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84864659715&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84864659715&origin=inward +A genetic model for understanding higher order visual processing: Functional interactions of the ventral visual stream in williams syndrome,Berman,Carolyn B. Mervis;Bradley R. Buchsbaum;J. Shane Kippenhan;Philip D. Kohn;Karen Faith Berman;Andreas Meyer-Lindenberg;Colleen A. Morris;Deepak Sarpal,2008-10-01,41,Cerebral Cortex,2402-2409,10.1093/cercor/bhn004,18308711,58149176754,"('2-s2.0-58149176754', 'Berman')",Article,,https://api.elsevier.com/content/abstract/scopus_id/58149176754,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=58149176754&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=58149176754&origin=inward +Abnormalities of dorsolateral prefrontal function in women with premenstrual dysphoric disorder: A multimodal neuroimaging study,Schmidt,Shau Ming Wei;Karen F. Berman;David R. Rubinow;Peter J. Schmidt;Gabriela Alarcón;Philip D. Kohn;Erica B. Baller,2013-03-01,41,American Journal of Psychiatry,305-314,10.1176/appi.ajp.2012.12030385,,84874773299,"('2-s2.0-84874773299', 'Schmidt')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84874773299,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84874773299&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84874773299&origin=inward +"The Williams syndrome chromosome 7q11.23 hemideletion confers hypersocial, anxious personality coupled with altered insula structure and function",Berman,Carolyn B. Mervis;Stefano Marenco;Philip Kohn;J. Shane Kippenhan;Mbemba Jabbi;Andreas Meyer-Lindenberg;Colleen A. Morris;Karen Faith Berman,2012-04-03,40,Proceedings of the National Academy of Sciences of the United States of America,,10.1073/pnas.1114774109,22411788,84859465051,"('2-s2.0-84859465051', 'Berman')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84859465051,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84859465051&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84859465051&origin=inward +Abnormalities in neural processing of emotional stimuli in Williams syndrome vary according to social vs. non-social content,Berman,Carolyn B. Mervis;Ahmad R. Hariri;Karen E. Muñoz;Andreas Meyer-Lindenberg;Colleen A. Morris;Karen Faith Berman;Venkata S. Mattay,2010-03-01,32,NeuroImage,340-346,10.1016/j.neuroimage.2009.11.069,20004252,75449118703,"('2-s2.0-75449118703', 'Berman')",Article,NARSAD,https://api.elsevier.com/content/abstract/scopus_id/75449118703,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=75449118703&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=75449118703&origin=inward +Interactive effect of apolipoprotein E genotype and age on hippocampal activation during memory processing in healthy adults,Berman,Matthew Emery;Karen F. Berman;Brita Elvevåg;Joseph C. Masdeu;Fabio Sambataro;Philip Kohn;Bhaskar Kolachana;Shane Kippenhan;Lisa M. Nichols;Venkata S. Mattay;Daniel R. Weinberger,2012-08-01,35,Archives of General Psychiatry,804-813,10.1001/archgenpsychiatry.2011.1893,22868934,84865530442,"('2-s2.0-84865530442', 'Berman')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84865530442,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84865530442&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84865530442&origin=inward +Bridging the gene-behavior divide through neuroimaging deletion syndromes: Velocardiofacial (22q11.2 Deletion) and Williams (7q11.23 Deletion) syndromes,Berman,Mbemba Jabbi;Daniel Paul Eisenberg;Karen Faith Berman,2010-11-01,21,NeuroImage,857-869,10.1016/j.neuroimage.2010.02.070,20206275,77956222262,"('2-s2.0-77956222262', 'Berman')",Review,NIH,https://api.elsevier.com/content/abstract/scopus_id/77956222262,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77956222262&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77956222262&origin=inward +NMDA Receptor Internalization by Autoantibodies: A Reversible Mechanism Underlying Psychosis?,Berman,Josep Dalmau;Karen F. Berman;Joseph C. Masdeu,2016-05-01,33,Trends in Neurosciences,300-310,10.1016/j.tins.2016.02.006,,84964316597,"('2-s2.0-84964316597', 'Berman')",Review,NIMH,https://api.elsevier.com/content/abstract/scopus_id/84964316597,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84964316597&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84964316597&origin=inward +The neural substrates of recognition memory for verbal information: Spanning the divide between short- and long-term memory,Berman,Bradley R. Buchsbaum;Karen Faith Berman;Aarthi Padmanabhan,2011-04-01,23,Journal of Cognitive Neuroscience,978-991,10.1162/jocn.2010.21496,20350181,78650789664,"('2-s2.0-78650789664', 'Berman')",Article,,https://api.elsevier.com/content/abstract/scopus_id/78650789664,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=78650789664&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=78650789664&origin=inward +Catechol-O-Methyltransferase Valine158Methionine Genotype and Resting Regional Cerebral Blood Flow in Medication-Free Patients with Schizophrenia,Berman,Dylan Wint;Daniel Paul Eisenberg;Philip D. Kohn;Bhaskar Kolachana;José Apud;Karen Faith Berman;Andreas Meyer-Lindenberg;Deepak Sarpal;Daniel R. Weinberger,2010-02-01,18,Biological Psychiatry,287-290,10.1016/j.biopsych.2009.08.039,19892319,73849130620,"('2-s2.0-73849130620', 'Berman')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/73849130620,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=73849130620&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=73849130620&origin=inward +Brain-derived neurotrophic factor (BDNF) Val66Met polymorphism differentially predicts hippocampal function in medication-free patients with schizophrenia,Berman,A. M. Ianni;S. M. Wei;D. P. Eisenberg;B. Kolachana;D. R. Weinberger;P. D. Kohn;K. F. Berman;J. Apud,2013-06-01,22,Molecular Psychiatry,713-720,10.1038/mp.2012.187,23319002,84878223109,"('2-s2.0-84878223109', 'Berman')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/84878223109,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84878223109&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84878223109&origin=inward +DISC1 and SLC12A2 interaction affects human hippocampal function and connectivity,Berman,Joseph H. Callicott;Karen F. Berman;David A.A. Baranger;Bai Lu;Hongjun Song;Guo Li Ming;Emer L. Feighery;Michael G. White;Qiang Chen;Venkata S. Mattay;Daniel R. Weinberger,2013-07-01,21,Journal of Clinical Investigation,2961-2964,10.1172/JCI67510,23921125,84879623565,"('2-s2.0-84879623565', 'Berman')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/84879623565,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84879623565&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84879623565&origin=inward +"Differential effects of common variants in SCN2A on general cognitive ability, brain physiology, and messenger RNA expression in schizophrenia cases and control individuals",Berman,Karen F. Berman;Joo Heon Shin;Yuan Gao;Bhaskar Kolachana;Daniel R. Weinberger;Kristin L. Bigos;Masatoshi Takeda;Ningping Feng;Dan Rujescu;Joey W. Trampush;Richard E. Straub;Joseph H. Callicott;Joel E. Kleinman;Ryota Hashimoto;Graham L. Baum;Thomas M. Hyde;Bin Xie;Hun Ki Lim;Dwight Dickinson;Gianluca Ursini,2014-01-01,25,JAMA Psychiatry,647-656,10.1001/jamapsychiatry.2014.157,24718902,84902159877,"('2-s2.0-84902159877', 'Berman')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/84902159877,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84902159877&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84902159877&origin=inward +Common and differential pathophysiological features accompany comparable cognitive impairments in medication-free patients with schizophrenia and in healthy aging subjects,Berman,Philip Kohn;Jean Claude Dreher;Jose Apud;Paul Koch;Karen Faith Berman;Daniel R. Weinberger,2012-05-15,22,Biological Psychiatry,890-897,10.1016/j.biopsych.2012.01.002,22341369,84860113976,"('2-s2.0-84860113976', 'Berman')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/84860113976,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84860113976&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84860113976&origin=inward +Brain-derived neurotrophic factor Val 66 met polymorphism affects resting regional cerebral blood flow and functional connectivity differentially in women versus men,Berman,Shau Ming Wei;Karen F. Berman;Philip D. Kohn;Jonathan S. Kippenhan;Bhaskar S. Kolachana;Daniel P. Eisenberg;Daniel R. Weinberger,2012-05-16,19,Journal of Neuroscience,7074-7081,10.1523/JNEUROSCI.5375-11.2012,22593075,84861131741,"('2-s2.0-84861131741', 'Berman')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84861131741,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84861131741&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84861131741&origin=inward +Convergent BOLD and Beta-Band Activity in Superior Temporal Sulcus and Frontolimbic Circuitry Underpins Human Emotion Cognition,Berman,Richard Coppola;Tiffany Nash;Karen F. Berman;Tom Holroyd;Stephen E. Robinson;Christopher Coutlee;Frederick W. Carver;J. Shane Kippenhan;Mbemba Jabbi;Brett Cropp;Philip D. Kohn;Qiang Chen;Angela Ianni,2015-01-01,18,Cerebral Cortex,1878-1888,10.1093/cercor/bht427,24464944,84936804404,"('2-s2.0-84936804404', 'Berman')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/84936804404,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84936804404&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84936804404&origin=inward +Retinotopically defined primary visual cortex in Williams syndrome,Berman,Carolyn B. Mervis;Shruti Japee;Philip Kohn;J. Shane Kippenhan;Ziad S. Saad;Rosanna K. Olsen;Andreas Meyer-Lindenberg;Colleen A. Morris;Karen Faith Berman,2009-01-01,14,Brain,635-644,10.1093/brain/awn362,19255058,64849086835,"('2-s2.0-64849086835', 'Berman')",Article,,https://api.elsevier.com/content/abstract/scopus_id/64849086835,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=64849086835&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=64849086835&origin=inward +Seeking optimal region-of-interest (ROI) single-value summary measures for fMRI studies in imaging genetics,Berman,Roberta Rasetti;Joseph H. Callicott;Karen F. Berman;Venkata S. Mattay;Yunxia Tong;Thomas E. Nichols;Qiang Chen;Daniel R. Weinberger,2016-03-01,22,PLoS ONE,,10.1371/journal.pone.0151391,26974435,84961629620,"('2-s2.0-84961629620', 'Berman')",Article,MRC,https://api.elsevier.com/content/abstract/scopus_id/84961629620,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84961629620&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84961629620&origin=inward +Variation in the Williams syndrome GTF2I gene and anxiety proneness interactively affect prefrontal cortical response to aversive stimuli,Berman,M. White;P. Kohn;V. Mattay;N. Turner;B. Kolachana;D. R. Weinberger;K. F. Berman;Q. Chen;D. Dickinson;J. S. Kippenhan;M. Jabbi,2015-08-25,15,Translational Psychiatry,,10.1038/tp.2015.98,26285132,84991010759,"('2-s2.0-84991010759', 'Berman')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/84991010759,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84991010759&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84991010759&origin=inward +Prefrontal GABA levels measured with magnetic resonance spectroscopy in patients with psychosis and unaffected siblings,Berman,Susan Kuo;Karen F. Berman;Christian Meyer;Stefano Marenco;Jun Shen;Jan Willem Van Der Veen;Katherine DeJong;Jose A. Apud;Dwight Dickinson;Alan S. Barnett;Daniel R. Weinberger,2016-05-01,23,American Journal of Psychiatry,527-534,10.1176/appi.ajp.2015.15020190,26806873,84965123814,"('2-s2.0-84965123814', 'Berman')",Conference Paper,,https://api.elsevier.com/content/abstract/scopus_id/84965123814,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84965123814&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84965123814&origin=inward +Automated quality assessment of structural magnetic resonance brain images based on a supervised machine learning algorithm,Berman,Ricardo A. Pizarro;Alan Barnett;Joseph H. Callicott;Karen F. Berman;Herve Lemaitre;Qian Luo;Venkata S. Mattay;Xi Cheng;Ena Xiao;Beth A. Verchinski;Aaron L. Goldman;Daniel R. Weinberger,2016-12-19,28,Frontiers in Neuroinformatics,,10.3389/fninf.2016.00052,,85011105698,"('2-s2.0-85011105698', 'Berman')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85011105698,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85011105698&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85011105698&origin=inward +Brain-derived neurotrophic factor Val66Met genotype and ovarian steroids interactively modulate working memory-related hippocampal function in women: a multimodal neuroimaging study,Schmidt,S. M. Wei;D. R. Rubinow;E. B. Baller;S. J. Soldin;B. Kolachana;P. J. Schmidt;P. D. Kohn;K. F. Berman;J. S. Kippenhan,2017-04-18,17,Molecular Psychiatry,,10.1038/mp.2017.72,28416813,85017509522,"('2-s2.0-85017509522', 'Schmidt')",,,https://api.elsevier.com/content/abstract/scopus_id/85017509522,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85017509522&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85017509522&origin=inward +Regional variations in brain gyrification are associated with general cognitive ability in humans,Berman,Karen F. Berman;Jessica Carrasco;J. Shane Kippenhan;Michael D. Gregory;Dwight Dickinson;Venkata S. Mattay;Daniel R. Weinberger,2016-05-23,30,Current Biology,1301-1305,10.1016/j.cub.2016.03.021,27133866,84964596780,"('2-s2.0-84964596780', 'Berman')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/84964596780,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84964596780&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84964596780&origin=inward +"Midbrain presynaptic dopamine tone predicts sustained and transient neural response to emotional salience in humans: fMRI, MEG and FDOPA PET",Berman,T. Nash;A. Ianni;T. Holroyd;P. Kohn;D. Rubinstein;R. Coppola;J. Shane Kippenhan;K. F. Berman;S. E. Robinson;J. C. Masdeu;F. W. Carver;M. Jabbi,2013-01-01,7,Molecular Psychiatry,4-6,10.1038/mp.2012.12,22411228,84871299789,"('2-s2.0-84871299789', 'Berman')",Letter,MEXT,https://api.elsevier.com/content/abstract/scopus_id/84871299789,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84871299789&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84871299789&origin=inward +"Effect of tolcapone on brain activity during a variable attentional control task: A double-blind, placebo-controlled, counter-balanced trial in healthy volunteers",Berman,Roberta Rasetti;Joseph H. Callicott;Karen F. Berman;Venkata S. Mattay;José A. Apud;Jingshan Chen;Sophia C. Magalona;Heather Decot;Qiang Chen;Daniel R. Weinberger;Ian Gold,2013-08-01,6,CNS Drugs,663-673,10.1007/s40263-013-0082-x,,84880799337,"('2-s2.0-84880799337', 'Berman')",Review,NIMH,https://api.elsevier.com/content/abstract/scopus_id/84880799337,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84880799337&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84880799337&origin=inward +Common variation in the DOPA decarboxylase (DDC) gene and human striatal DDC activity in vivo,Berman,Catherine E. Hegarty;Karen F. Berman;Joseph C. Masdeu;Philip D. Kohn;Bhaskar Kolachana;Michael D. Gregory;Angela M. Ianni;Daniel P. Eisenberg,2016-08-01,9,Neuropsychopharmacology,2303-2308,10.1038/npp.2016.31,26924680,84961391858,"('2-s2.0-84961391858', 'Berman')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/84961391858,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84961391858&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84961391858&origin=inward +Neanderthal-Derived Genetic Variation Shapes Modern Human Cranium and Brain,Berman,Karen F. Berman;J. Shane Kippenhan;Ziad S. Saad;Philip D. Kohn;Michael D. Gregory;Dwight Dickinson;Qiang Chen;Daniel P. Eisenberg;Venkata S. Mattay;Daniel R. Weinberger,2017-12-01,13,Scientific Reports,,10.1038/s41598-017-06587-0,28740249,85025842379,"('2-s2.0-85025842379', 'Berman')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85025842379,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85025842379&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85025842379&origin=inward +Hippocampal dysfunction in schizophrenia: Association with brain-derived neurotrophic factor genotype,Berman,A. M. Ianni;S. M. Wei;D. P. Eisenberg;B. Kolachana;D. R. Weinberger;P. D. Kohn;K. F. Berman;J. Apud,2013-06-01,3,Molecular Psychiatry,631,10.1038/mp.2013.53,23698315,84878226412,"('2-s2.0-84878226412', 'Berman')",Note,,https://api.elsevier.com/content/abstract/scopus_id/84878226412,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84878226412&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84878226412&origin=inward +Retrospective correction of frequency drift in spectral editing: The GABA editing example,Berman,Stefano Marenco;Jun Shen;Karen F. Berman;Jan Willem van der Veen,2017-08-01,8,NMR in Biomedicine,,10.1002/nbm.3725,28370463,85017375448,"('2-s2.0-85017375448', 'Berman')",Article,,https://api.elsevier.com/content/abstract/scopus_id/85017375448,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85017375448&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85017375448&origin=inward +Intracranial arteries in individuals with the elastin gene hemideletion of Williams syndrome,Berman,D. P. Wint;D. Sarpal;Karen F. Berman;C. B. Mervis;A. Meyer-Lindenberg;J. A. Butman;J. C. Masdeu;C. A. Morris,2014-01-01,3,American Journal of Neuroradiology,90-94,10.3174/ajnr.A3641,23868161,84892776847,"('2-s2.0-84892776847', 'Berman')",Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/84892776847,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84892776847&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84892776847&origin=inward +Catechol-O-methyltransferase and genetic variation under hemizygosity,Berman,Daniel Paul Eisenberg;Karen F. Berman,2014-03-01,0,Biological Psychiatry,346-347,10.1016/j.biopsych.2013.12.011,24507568,84893435489,"('2-s2.0-84893435489', 'Berman')",Note,NIMH,https://api.elsevier.com/content/abstract/scopus_id/84893435489,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84893435489&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84893435489&origin=inward +Reduced amygdala response to fearful expressions in children and adolescents with callous-unemotional traits and disruptive behavior disorders,Leibenluft,Ellen Leibenluft;Courtney Sims;David S. Kosson;Daniel S. Pine;Abigail A. Marsh;Elizabeth C. Finger;R. J.R. Blair;Marguerite E. Reid;Kenneth E. Towbin;Derek G.V. Mitchell,2008-01-01,500,American Journal of Psychiatry,712-720,10.1176/appi.ajp.2007.07071145,18281412,44949188705,"('2-s2.0-44949188705', 'Leibenluft')",Article,,https://api.elsevier.com/content/abstract/scopus_id/44949188705,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=44949188705&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=44949188705&origin=inward +Modulation of emotion by cognition and cognition by emotion,Pine,D. G.V. Mitchell;K. S. Blair;W. C. Drevets;E. E. Nelson;B. W. Smith;M. Vythilingam;A. Zametkin;D. Fridberg;J. Morton;R. J.R. Blair;D. S. Pine;A. Martin;D. Sturman;L. Pessoa,2007-03-01,254,NeuroImage,430-440,10.1016/j.neuroimage.2006.11.048,17239620,33846995991,"('2-s2.0-33846995991', 'Pine')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/33846995991,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33846995991&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33846995991&origin=inward +Abnormal ventromedial prefrontal cortex function in children with psychopathic traits during reversal learning,Leibenluft,Ellen Leibenluft;James R. Blair;Courtney Sims;David S. Kosson;Daniel S. Pine;Gang Chen;Elizabeth C. Finger;Abigail A. Marsh;Derek G. Mitchell;Marguerite E. Reid;Kenneth E. Towbin;Salima Budhani,2008-05-01,218,Archives of General Psychiatry,586-594,10.1001/archpsyc.65.5.586,18458210,43149088492,"('2-s2.0-43149088492', 'Leibenluft')",Article,,https://api.elsevier.com/content/abstract/scopus_id/43149088492,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=43149088492&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=43149088492&origin=inward +The neural basis of implicit moral attitude-An IAT study using event-related fMRI,Martin,R. James R. Blair;Qian Luo;Rebecca Richell;Marina Nakic;Thalia Wheatley;Alex Martin,2006-05-01,127,NeuroImage,1449-1457,10.1016/j.neuroimage.2005.11.005,16418007,33646470423,"('2-s2.0-33646470423', 'Martin')",Article,,https://api.elsevier.com/content/abstract/scopus_id/33646470423,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33646470423&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33646470423&origin=inward +"Choosing the lesser of two evils, the better of two goods: Specifying the roles of ventromedial prefrontal cortex and dorsal anterior cingulate in object choice",Pine,Karina Blair;Krystal Mondillo;James R. Blair;John Morton;Wayne C. Drevets;Daniel C. Pine;Abigail A. Marsh;Matthew Jones;Meena Vythilingam,2006-11-01,110,Journal of Neuroscience,11379-11386,10.1523/JNEUROSCI.1640-06.2006,17079666,33750952524,"('2-s2.0-33750952524', 'Pine')",Article,,https://api.elsevier.com/content/abstract/scopus_id/33750952524,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33750952524&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33750952524&origin=inward +"Psychopathy, frustration, and reactive aggression: The role of ventromedial prefrontal cortex",Blair,R. J.R. Blair,2010-08-01,126,British Journal of Psychology,383-399,10.1348/000712609X418480,19321035,77955084298,"('2-s2.0-77955084298', 'Blair')",Article,,https://api.elsevier.com/content/abstract/scopus_id/77955084298,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77955084298&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77955084298&origin=inward +Empathic responsiveness in amygdala and anterior cingulate cortex in youths with psychopathic traits,Pine,Jean Decety;Ilana T.N. Jurkowitz;Julia C. Schechter;Abigail A. Marsh;Elizabeth C. Finger;Katherine A. Fowler;R. J.R. Blair;Christopher J. Adalio;Daniel S. Pine,2013-08-01,140,Journal of Child Psychology and Psychiatry and Allied Disciplines,900-910,10.1111/jcpp.12063,23488588,84880573200,"('2-s2.0-84880573200', 'Pine')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84880573200,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84880573200&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84880573200&origin=inward +The impact of processing load on emotion,Pine,D. G.V. Mitchell;D. Fridberg;N. Kamel;M. Nakic;D. S. Pine;R. J.R. Blair,2007-02-01,107,NeuroImage,1299-1309,10.1016/j.neuroimage.2006.10.012,17161627,33846180689,"('2-s2.0-33846180689', 'Pine')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/33846180689,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33846180689&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33846180689&origin=inward +"Neural substrates of reward magnitude, probability, and risk during a wheel of fortune decision-making task",Blair,R. James R. Blair;Michael G. Hardin;Bruce W. Smith;Sandra Jazbec;Monique Ernst;Derek G.V. Mitchell;Daniel Fridberg,2009-01-15,105,NeuroImage,600-609,10.1016/j.neuroimage.2008.08.016,18804540,56349088838,"('2-s2.0-56349088838', 'Blair')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/56349088838,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=56349088838&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=56349088838&origin=inward +Neural correlates of response reversal: Considering acquisition,Pine,D. S. Pine;S. Budhani;A. A. Marsh;R. J.R. Blair,2007-02-15,81,NeuroImage,1754-1765,10.1016/j.neuroimage.2006.08.060,17188518,33846811290,"('2-s2.0-33846811290', 'Pine')",Article,,https://api.elsevier.com/content/abstract/scopus_id/33846811290,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33846811290&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33846811290&origin=inward +The impact of affect and frequency on lexical decision: The role of the amygdala and inferior frontal cortex,Blair,R. James R. Blair;Marina Nakic;Bruce W. Smith;Sarah Busis;Meena Vythilingam,2006-07-15,84,NeuroImage,1752-1761,10.1016/j.neuroimage.2006.02.022,16647271,33745437135,"('2-s2.0-33745437135', 'Blair')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/33745437135,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33745437135&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33745437135&origin=inward +Reduced amygdala-orbitofrontal connectivity during moral judgments in youths with disruptive behavior disorders and psychopathic traits,Pine,Henry H. Yu;Ilana T.N. Jurkowitz;Julia C. Schechter;Abigail A. Marsh;Elizabeth C. Finger;Katherine A. Fowler;R. J.R. Blair;Daniel S. Pine,2011-12-30,96,Psychiatry Research - Neuroimaging,279-286,10.1016/j.pscychresns.2011.07.008,22047730,82455212996,"('2-s2.0-82455212996', 'Pine')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/82455212996,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=82455212996&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=82455212996&origin=inward +Reduced amygdala response in youths with disruptive behavior disorders and psychopathic traits: Decreased emotional response versus increased top-down attention to nonemotional features,Pine,R. James R. Blair;Kayla Pope;Stephen Sinclair;Julia C. Schechter;Abigail A. Marsh;Christopher Adalio;Stuart F. White;Katherine A. Fowler;Daniel S. Pine,2012-07-01,102,American Journal of Psychiatry,750-758,10.1176/appi.ajp.2012.11081270,22456823,84863908499,"('2-s2.0-84863908499', 'Pine')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84863908499,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84863908499&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84863908499&origin=inward +Dominance and submission: The ventrolateral prefrontal cortex and responses to status cues,Blair,Matthew M. Jones;Abigail A. Marsh;R. J.R. Blair;Niveen Soliman;Karina S. Blair,2009-04-01,83,Journal of Cognitive Neuroscience,713-724,10.1162/jocn.2009.21052,18578604,65449173956,"('2-s2.0-65449173956', 'Blair')",Article,,https://api.elsevier.com/content/abstract/scopus_id/65449173956,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=65449173956&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=65449173956&origin=inward +Disrupted expected value and prediction error signaling in Youths with disruptive behavior disorders during a passive avoidance task,Pine,R. James R. Blair;Kayla Pope;Stephen Sinclair;Sarah J. Brislin;Stuart F. White;Katherine A. Fowler;W. Craig Williams;Daniel S. Pine,2013-03-01,81,American Journal of Psychiatry,315-323,10.1176/appi.ajp.2012.12060840,,84874768960,"('2-s2.0-84874768960', 'Pine')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84874768960,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84874768960&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84874768960&origin=inward +The interference of operant task performance by emotional distracters: An antagonistic relationship between the amygdala and frontoparietal cortices,Blair,D. G.V. Mitchell;K. Mondillo;E. C. Finger;Q. Luo;M. Vythilingam;R. J.R. Blair,2008-04-01,67,NeuroImage,859-868,10.1016/j.neuroimage.2007.08.002,18234519,40849087841,"('2-s2.0-40849087841', 'Blair')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/40849087841,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=40849087841&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=40849087841&origin=inward +Caught in the act: The impact of audience on the neural response to morally and socially inappropriate behavior,Blair,James R. Blair;Elizabeth C. Finger;Abigail A. Marsh;Niveen Kamel;Derek G.V. Mitchell,2006-10-15,61,NeuroImage,414-421,10.1016/j.neuroimage.2006.06.011,16891125,33748864036,"('2-s2.0-33748864036', 'Blair')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/33748864036,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33748864036&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33748864036&origin=inward +Cortical and subcortical abnormalities in youths with conduct disorder and elevated callous-unemotional traits,Martin,Gregory L. Wallace;R. James R. Blair;Stephen Sinclair;Stuart F. White;Alex Martin;Briana Robustelli;Soonjo Hwang,2014-01-01,71,Journal of the American Academy of Child and Adolescent Psychiatry,,10.1016/j.jaac.2013.12.008,24655655,84896491377,"('2-s2.0-84896491377', 'Martin')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/84896491377,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84896491377&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84896491377&origin=inward +Impaired functional but preserved structural connectivity in limbic white matter tracts in youth with conduct disorder or oppositional defiant disorder plus psychopathic traits,Pine,Robert James Blair;Karan Gupta;Kayla Pope;Courtney Sims;Stephen Sinclair;Catherine Majestic;Marguerite Reid Schneider;Karina Simone Blair;Iordanis Evangelou;Daniel Pine;Abigail Marsh;Katherine Fowler;Fernanda Tovar-Moll;Elizabeth Carrie Finger,2012-06-30,59,Psychiatry Research - Neuroimaging,239-244,10.1016/j.pscychresns.2011.11.002,22819939,84865177635,"('2-s2.0-84865177635', 'Pine')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/84865177635,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84865177635&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84865177635&origin=inward +Response options and expectations of reward in decision-making: The differential roles of dorsal and rostral anterior cingulate cortex,Blair,Abigail A. Marsh;Sarah Busis;R. J.R. Blair;Meena Vythilingam;Karina S. Blair,2007-04-01,54,NeuroImage,979-988,10.1016/j.neuroimage.2006.11.044,17292631,33947284907,"('2-s2.0-33947284907', 'Blair')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/33947284907,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33947284907&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33947284907&origin=inward +The role of the amygdala and rostral anterior cingulate in encoding expected outcomes during learning,Pine,D. S. Kosson;S. Budhani;G. Chen;M. Vythilingam;Z. S. Saad;R. J.R. Blair;M. Nakic;D. S. Pine,2006-02-15,41,NeuroImage,1161-1172,10.1016/j.neuroimage.2005.07.060,16387514,31844440020,"('2-s2.0-31844440020', 'Pine')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/31844440020,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=31844440020&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=31844440020&origin=inward +The neural substrates of action identification,Blair,Megan N. Kozak;Henry H. Yu;Abigail A. Marsh;R. J.R. Blair;Marguerite E. Reid;Daniel M. Wegner,2010-12-01,33,Social Cognitive and Affective Neuroscience,392-403,10.1093/scan/nsq004,20150343,78650626347,"('2-s2.0-78650626347', 'Blair')",Article,,https://api.elsevier.com/content/abstract/scopus_id/78650626347,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=78650626347&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=78650626347&origin=inward +"Adapting to dynamic stimulus-response values: Differential contributions of inferior frontal, dorsomedial, and dorsolateral regions of prefrontal cortex to decision making",Blair,R. James R. Blair;Karanvir Gupta;Qian Luo;Shelley B. Avny;Gang Chen;Elizabeth C. Finger;Tomasz Kasprzycki;Derek G.V. Mitchell,2009-09-02,41,Journal of Neuroscience,10827-10834,10.1523/JNEUROSCI.0963-09.2009,19726640,69749103853,"('2-s2.0-69749103853', 'Blair')",Article,,https://api.elsevier.com/content/abstract/scopus_id/69749103853,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=69749103853&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=69749103853&origin=inward +Punishing unfairness: Rewarding or the organization of a reactively aggressive response?,Blair,Sarah J. Brislin;Stuart F. White;Stephen Sinclair;James R. Blair,2014-01-01,35,Human Brain Mapping,2137-2147,10.1002/hbm.22316,23868733,84898046836,"('2-s2.0-84898046836', 'Blair')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/84898046836,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84898046836&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84898046836&origin=inward +Cognitive control of attention is differentially affected in trauma-exposed individuals with and without post-traumatic stress disorder,Pine,P. Ng;C. C. Wu;K. Mondillo;K. S. Blair;M. Scaramozza;D. S. Charney;M. Vythilingam;R. J.R. Blair;S. L. Crowe;D. S. Pine;D. E. McCaffrey,2013-01-01,52,Psychological Medicine,85-95,10.1017/S0033291712000840,22571775,84868131048,"('2-s2.0-84868131048', 'Pine')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84868131048,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84868131048&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84868131048&origin=inward +Dissociable roles of medial orbitofrontal cortex in human operant extinction learning,Blair,Elizabeth C. Finger;Matthew Jones;Derek G.V. Mitchell;R. J.R. Blair,2008-12-01,33,NeuroImage,748-755,10.1016/j.neuroimage.2008.08.021,18793731,54849405917,"('2-s2.0-54849405917', 'Blair')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/54849405917,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=54849405917&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=54849405917&origin=inward +The contribution of ventrolateral and dorsolateral prefrontal cortex to response reversal,Pine,D. G.V. Mitchell;R. A. Rhodes;D. S. Pine;R. J.R. Blair,2008-02-11,30,Behavioural Brain Research,80-87,10.1016/j.bbr.2007.08.034,17950474,36849000840,"('2-s2.0-36849000840', 'Pine')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/36849000840,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=36849000840&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=36849000840&origin=inward +Common regions of dorsal anterior cingulate and prefrontal-parietal cortices provide attentional control of distracters varying in emotionality and visibility,Blair,R. James R. Blair;Krystal Mondillo;Qian Luo;Matthew Jones;Derek Mitchell;Meena Vythilingam,2007-11-15,30,NeuroImage,631-639,10.1016/j.neuroimage.2007.07.051,17889565,35148862140,"('2-s2.0-35148862140', 'Blair')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/35148862140,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=35148862140&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=35148862140&origin=inward +Callous-unemotional traits modulate the neural response associated with punishing another individual during social exchange: A preliminary investigation,Blair,R. James R. Blair;Harma Meffert;Stephen Sinclair;Sarah J. Brislin;Stuart F. White,2013-01-31,30,Journal of Personality Disorders,99-112,10.1521/pedi.2013.27.1.99,23342960,84872915251,"('2-s2.0-84872915251', 'Blair')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84872915251,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84872915251&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84872915251&origin=inward +Reduced activity within the dorsal endogenous orienting of attention network to fearful expressions in youth with disruptive behavior disorders and psychopathic traits,Pine,Kayla Pope;Stephen Sinclair;R. James Blair;W. Craig Williams;Stuart F. White;Sarah J. Brislin;Katherine A. Fowler;Karina S. Blair;Daniel S. Pine,2012-08-01,29,Development and Psychopathology,1105-1116,10.1017/S0954579412000569,22781874,84863959324,"('2-s2.0-84863959324', 'Pine')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84863959324,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84863959324&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84863959324&origin=inward +Dissociable roles of ventromedial prefrontal cortex (vmPFC) and rostral anterior cingulate cortex (rACC) in value representation and optimistic bias,Pine,Marcela Otero;Cindy Teng;Stephanie Odenheimer;Madeline Jacobs;R. J.R. Blair;Karina S. Blair;Daniel S. Pine,2013-09-01,26,NeuroImage,103-110,10.1016/j.neuroimage.2013.03.063,23567883,84877081144,"('2-s2.0-84877081144', 'Pine')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/84877081144,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84877081144&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84877081144&origin=inward +Disrupted expected value signaling in youth with disruptive behavior disorders to environmental reinforcers,Pine,Stephen Sinclair;R. James Blair;Julia C. Schechter;Stuart F. White;Katherine A. Fowler;Catherine M. Majestic;Daniel S. Pine,2014-01-01,28,Journal of the American Academy of Child and Adolescent Psychiatry,579-588.e9,10.1016/j.jaac.2013.12.023,24745957,84898813425,"('2-s2.0-84898813425', 'Pine')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/84898813425,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84898813425&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84898813425&origin=inward +"The relationship between large cavum septum pellucidum and antisocial behavior, callous-unemotional traits and psychopathy in adolescents",Blair,R. James R. Blair;Kayla Pope;Stephen Sinclair;Sarah Brislin;Stuart F. White;Katherine A. Fowler,2013-05-01,26,Journal of Child Psychology and Psychiatry and Allied Disciplines,575-581,10.1111/j.1469-7610.2012.02603.x,22934662,84876293348,"('2-s2.0-84876293348', 'Blair')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84876293348,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84876293348&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84876293348&origin=inward +Looming animate and inanimate threats: The response of the amygdala and periaqueductal gray,Martin,Roberta Clanton;Dionne S. Coker-Appiah;Stuart F. White;R. J.R. Blair;Alex Martin;Jiongjong Yang,2013-11-01,30,Social Neuroscience,621-630,10.1080/17470919.2013.839480,24066700,84887081359,"('2-s2.0-84887081359', 'Martin')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/84887081359,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84887081359&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84887081359&origin=inward +Atypical visual processing in posttraumatic stress disorder,Blair,James R. Blair;Lars Michels;Ulrich Schnyder;Michael Rufer;Thomas Zeffiro;Matthis Schick;Chantal Martin-Soelch;Gregor Hasler;Christoph Mueller-Pfeiffer;Ruth O'Gorman;Thomas Schulte-Vels,2013-01-01,26,NeuroImage: Clinical,531-538,10.1016/j.nicl.2013.08.009,,84907427850,"('2-s2.0-84907427850', 'Blair')",Article,UZH,https://api.elsevier.com/content/abstract/scopus_id/84907427850,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84907427850&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84907427850&origin=inward +Prediction errors to emotional expressions: The roles of the amygdala in social referencing,Blair,Sarah J. Brislin;Stuart F. White;Harma Meffert;James R. Blair,2013-01-01,19,Social Cognitive and Affective Neuroscience,537-544,10.1093/scan/nsu085,24939872,84926469280,"('2-s2.0-84926469280', 'Blair')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84926469280,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84926469280&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84926469280&origin=inward +Compelling evidence that exposure therapy for PTSD normalizes brain function,Blair,Albert A. Rizzo;Michelle E. Costanzo;Michael J. Roy;James R. Blair,2014-01-01,20,Studies in Health Technology and Informatics,61-65,10.3233/978-1-61499-401-5-61,,84903149862,"('2-s2.0-84903149862', 'Blair')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84903149862,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84903149862&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84903149862&origin=inward +Executive attention control and emotional responding in attention-deficit/hyperactivity disorder - A functional MRI study,Blair,Stephen Sinclair;W. Craig Williams;Stuart F. White;R. J.R. Blair;Soonjo Hwang;Zachary T. Nolan,2015-01-01,16,NeuroImage: Clinical,545-554,10.1016/j.nicl.2015.10.005,26640766,84944675838,"('2-s2.0-84944675838', 'Blair')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/84944675838,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84944675838&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84944675838&origin=inward +The influence of valence and decision difficulty on selfreferential processing,Blair,Harma Meffert;James R. Blair;Laura Blanken;Stuart F. White;Karina S. Blair,2013-02-05,8,Frontiers in Human Neuroscience,,10.3389/fnhum.2013.00046,,84933679505,"('2-s2.0-84933679505', 'Blair')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84933679505,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84933679505&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84933679505&origin=inward +Cortical thinning and functional connectivity in psychopathy,Blair,R. J.R. Blair,2012-07-01,7,American Journal of Psychiatry,684-687,10.1176/appi.ajp.2012.12030396,22760187,84863897254,"('2-s2.0-84863897254', 'Blair')",Editorial,,https://api.elsevier.com/content/abstract/scopus_id/84863897254,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84863897254&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84863897254&origin=inward +The amygdala's response to face and emotional information and potential category-specific modulation of temporal cortex as a function of emotion,Martin,James R. Blair;Jiongjiong Yang;Christopher Adalio;Stuart F. White;Alex Martin;Zachary T. Nolan,2014-09-11,4,Frontiers in Human Neuroscience,,10.3389/fnhum.2014.00714,,84933673781,"('2-s2.0-84933673781', 'Martin')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84933673781,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84933673781&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84933673781&origin=inward +"Reactive aggression and functional, not neural, specificity",Blair,R. J.R. Blair,2010-08-01,2,British Journal of Psychology,407-410,10.1348/000712610X512122,20594400,77955067280,"('2-s2.0-77955067280', 'Blair')",Article,,https://api.elsevier.com/content/abstract/scopus_id/77955067280,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77955067280&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77955067280&origin=inward +BOLD data representing activation and connectivity for rare no-go versus frequent go cues,Blair,Harma Meffert;James R. Blair;Gang Chen;Soonjo Hwang;Zachary T. Nolan,2016-06-01,0,Data in Brief,66-70,10.1016/j.dib.2016.02.011,,84958581839,"('2-s2.0-84958581839', 'Blair')",,NIMH,https://api.elsevier.com/content/abstract/scopus_id/84958581839,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84958581839&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84958581839&origin=inward +Hierarchical and asymmetric temporal sensitivity in human auditory cortices,Blair,Stephen Fromm;Allen Braun;Anthony Boemio;David Poeppel,2005-03-01,359,Nature Neuroscience,389-395,10.1038/nn1409,15723061,14544293518,"('2-s2.0-14544293518', 'Blair')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/14544293518,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=14544293518&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=14544293518&origin=inward +"Language in context: Emergent features of word, sentence, and narrative comprehension",Blair,Grace Park;Stefan Kemeny;Carol Frattali;Jiang Xu;Allen Braun,2005-04-15,290,NeuroImage,1002-1015,10.1016/j.neuroimage.2004.12.013,15809000,16244371035,"('2-s2.0-16244371035', 'Blair')",Article,,https://api.elsevier.com/content/abstract/scopus_id/16244371035,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=16244371035&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=16244371035&origin=inward +Neural substrates of spontaneous musical performance: An fMRI study of jazz improvisation,Blair,Allen R. Braun;Charles J. Limb,2008-02-27,331,PLoS ONE,,10.1371/journal.pone.0001679,18301756,45949108217,"('2-s2.0-45949108217', 'Blair')",Article,,https://api.elsevier.com/content/abstract/scopus_id/45949108217,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=45949108217&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=45949108217&origin=inward +Symbolic gestures and spoken language are processed by a common neural system,Blair,Patrick J. Gannon;Jason F. Smith;Jiang Xu;Allen R. Braun;Karen Emmorey,2009-12-08,153,Proceedings of the National Academy of Sciences of the United States of America,20664-20669,10.1073/pnas.0909197106,19923436,73949084794,"('2-s2.0-73949084794', 'Blair')",Article,,https://api.elsevier.com/content/abstract/scopus_id/73949084794,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=73949084794&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=73949084794&origin=inward +Species-specific calls activate homologs of Broca's and Wernicke's areas in the macaque,Martin,Jonathan B. Fritz;Ricardo Gil-Da-Costa;Allen R. Braun;Alex Martin;Marco A. Lopes;Monica Mũoz,2006-08-01,104,Nature Neuroscience,1064-1070,10.1038/nn1741,16862150,33747593338,"('2-s2.0-33747593338', 'Martin')",Article,FRCT,https://api.elsevier.com/content/abstract/scopus_id/33747593338,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33747593338&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33747593338&origin=inward +Single-trial fMRI shows contralesional activity linked to overt naming errors in chronic aphasic patients,Martin,Dante Picchioni;Joe McArdle;Whitney Anne Postman-Caucheteux;Rasmus M. Birn;Allen R. Braun;Randall H. Pursley;Jeffrey M. Solomon;John A. Butman,2010-06-01,114,Journal of Cognitive Neuroscience,1299-1318,10.1162/jocn.2009.21261,19413476,77952037980,"('2-s2.0-77952037980', 'Martin')",Article,,https://api.elsevier.com/content/abstract/scopus_id/77952037980,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77952037980&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77952037980&origin=inward +Relating neuronal dynamics for auditory object processing to neuroimaging activity: A computational modeling and an fMRI study,Horwitz,B. Horwitz;A. R. Braun;M. A. Tagamets;F. T. Husain;S. J. Fromm,2004-04-01,72,NeuroImage,1701-1720,10.1016/j.neuroimage.2003.11.012,15050592,1842609633,"('2-s2.0-1842609633', 'Horwitz')",Article,NIDCD,https://api.elsevier.com/content/abstract/scopus_id/1842609633,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=1842609633&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=1842609633&origin=inward +Neural correlates of lyrical improvisation: An fMRI study of freestyle rap,Horwitz,Daniel A. Rizik-Baer;Katherine E. Swett;Yisheng Xu;Ho Ming Chow;Allen R. Braun;Michael G. Erkkinen;Michael W. Eagle;Siyuan Liu,2012-12-14,95,Scientific Reports,,10.1038/srep00834,23155479,84870804382,"('2-s2.0-84870804382', 'Horwitz')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/84870804382,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84870804382&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84870804382&origin=inward +Comparison of continuous overt speech fMRI using BOLD and arterial spin labeling,Horwitz,Frank Q. Ye;Stefan Kemeny;Allen R. Braun;Rasmus Birn,2005-03-01,69,Human Brain Mapping,173-183,10.1002/hbm.20078,15486986,14744281224,"('2-s2.0-14744281224', 'Horwitz')",Article,,https://api.elsevier.com/content/abstract/scopus_id/14744281224,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=14744281224&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=14744281224&origin=inward +Rhythmic alternating patterns of brain activity distinguish rapid eye movement sleep from other states of consciousness,Duyn,Dante Picchioni;Silvina G. Horovitz;Thomas J. Balkin;Walter S. Carr;Ho Ming Chow;Yisheng Xu;Allen R. Braun;Nate Coddington;Masaki Fukunaga;Jeff H. Duyn,2013-06-18,70,Proceedings of the National Academy of Sciences of the United States of America,10300-10305,10.1073/pnas.1217691110,23733938,84879298616,"('2-s2.0-84879298616', 'Duyn')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84879298616,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84879298616&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84879298616&origin=inward +Neural bases of categorization of simple speech and nonspeech sounds,Horwitz,Barry Horwitz;Fatima T. Husain;Lara A. Hosey;Allen R. Braun;Randall H. Pursley;Stephen J. Fromm,2006-08-01,45,Human Brain Mapping,636-651,10.1002/hbm.20207,16281285,33646337862,"('2-s2.0-33646337862', 'Horwitz')",Article,,https://api.elsevier.com/content/abstract/scopus_id/33646337862,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33646337862&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33646337862&origin=inward +Temporal dissociation of early lexical access and articulation using a delayed naming task - An fMRI study,Horwitz,Stefan Kemeny;Jiang Xu;Grace H. Park;Lara A. Hosey;Allen R. Braun;Carla M. Wettig,2006-04-01,47,Cerebral Cortex,587-595,10.1093/cercor/bhj006,16049190,33644898132,"('2-s2.0-33644898132', 'Horwitz')",Article,,https://api.elsevier.com/content/abstract/scopus_id/33644898132,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33644898132&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33644898132&origin=inward +CNS activation and regional connectivity during pantomime observation: No engagement of the mirror neuron system for deaf signers,Horwitz,Jiang Xu;Patrick Gannon;Susan Goldin-Meadow;Karen Emmorey;Allen Braun,2010-01-01,45,NeuroImage,994-1005,10.1016/j.neuroimage.2009.08.001,19679192,70349969798,"('2-s2.0-70349969798', 'Horwitz')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/70349969798,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=70349969798&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=70349969798&origin=inward +"Neural aspects of sentence comprehension: Syntactic complexity, reversibility, and reanalysis",Horwitz,Jed A. Meltzer;Robin J. Schafer;Allen R. Braun;Joseph J. McArdle,2010-08-01,49,Cerebral Cortex,1853-1864,10.1093/cercor/bhp249,19920058,77955945045,"('2-s2.0-77955945045', 'Horwitz')",Article,,https://api.elsevier.com/content/abstract/scopus_id/77955945045,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77955945045&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77955945045&origin=inward +fMRI study comparing names versus pictures of objects,Horwitz,Andrei Sevostianov;Stephen Fromm;Barry Horwitz;Rihana Williams;Allen R. Braun;Vladimir Nechaev,2002-07-18,36,Human Brain Mapping,168-175,10.1002/hbm.10037,12112770,0036303445,"('2-s2.0-0036303445', 'Horwitz')",Article,,https://api.elsevier.com/content/abstract/scopus_id/0036303445,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0036303445&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0036303445&origin=inward +Left hemispheric lateralization of brain activity during passive rhythm perception in musicians,Horwitz,Sherin Rouhani;Stefan Kemeny;Allen R. Braun;Charles J. Limb;Eric B. Ortigoza,2006-04-01,35,"Anatomical Record - Part A Discoveries in Molecular, Cellular, and Evolutionary Biology",382-389,10.1002/ar.a.20298,16550585,33645730628,"('2-s2.0-33645730628', 'Horwitz')",Article,,https://api.elsevier.com/content/abstract/scopus_id/33645730628,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33645730628&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33645730628&origin=inward +Infraslow EEG oscillations organize large-scale cortical-subcortical interactions during sleep: A combined EEG/fMRI study,Duyn,Dante Picchioni;Silvina G. Horovitz;Thomas J. Balkin;Jed A. Meltzer;Allen R. Braun;Walter S. Carr;Masaki Fukunaga;Jeff H. Duyn,2011-02-16,37,Brain Research,63-72,10.1016/j.brainres.2010.12.035,21168395,79251616988,"('2-s2.0-79251616988', 'Duyn')",Article,,https://api.elsevier.com/content/abstract/scopus_id/79251616988,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79251616988&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79251616988&origin=inward +Strategies for longitudinal neuroimaging studies of overt language production,Duyn,Jed A. Meltzer;Allen R. Braun;Whitney A. Postman-Caucheteux;Joseph J. McArdle,2009-08-15,34,NeuroImage,745-755,10.1016/j.neuroimage.2009.04.089,19427907,67449119154,"('2-s2.0-67449119154', 'Duyn')",Article,NIDCD,https://api.elsevier.com/content/abstract/scopus_id/67449119154,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=67449119154&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=67449119154&origin=inward +Effect of attention on central auditory processing: An fMRI study,Horwitz,Andrei Sevostianov;Stephen Fromm;Barry Horwitz;Allen Braun;Vladimir Nechaev,2002-01-01,31,International Journal of Neuroscience,587-606,10.1080/00207450290025671,12325392,0035987996,"('2-s2.0-0035987996', 'Horwitz')",Article,,https://api.elsevier.com/content/abstract/scopus_id/0035987996,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0035987996&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0035987996&origin=inward +"Encoding, rehearsal, and recall in signers and speakers: Shared network but differential engagement",Horwitz,A. Braun;M. Mukherjee;P. Hauser;M. Boutla;A. J. Newman;D. Bavelier;S. Kemeny,2008-10-01,31,Cerebral Cortex,2263-2274,10.1093/cercor/bhm248,18245041,58149199141,"('2-s2.0-58149199141', 'Horwitz')",Article,JSMF,https://api.elsevier.com/content/abstract/scopus_id/58149199141,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=58149199141&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=58149199141&origin=inward +Neural correlates and network connectivity underlying narrative production and comprehension: A combined fMRI and PET study,Horwitz,Jessica Carson;Nuria Y. AbdulSabur;Ho Ming Chow;Yisheng Xu;Allen R. Braun;Miranda Baxter;Siyuan Liu,2014-01-01,34,Cortex,107-127,10.1016/j.cortex.2014.01.017,24845161,84900857907,"('2-s2.0-84900857907', 'Horwitz')",Article,NIDCD,https://api.elsevier.com/content/abstract/scopus_id/84900857907,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84900857907&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84900857907&origin=inward +Neural substrates of graphomotor sequence learning: A combined fMRI and kinematic study,Horwitz,Rasmus Birn;Allen Braun;Bruce A. Swett;Jose L. Contreras-Vidal,2010-06-01,19,Journal of Neurophysiology,3366-3377,10.1152/jn.00449.2009,20375250,77953516605,"('2-s2.0-77953516605', 'Horwitz')",Article,,https://api.elsevier.com/content/abstract/scopus_id/77953516605,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77953516605&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77953516605&origin=inward +Neural responses to meaningless pseudosigns: Evidence for sign-based phonetic processing in superior temporal cortex,Horwitz,Allen Braun;Karen Emmorey;Jiang Xu,2011-04-01,17,Brain and Language,34-38,10.1016/j.bandl.2010.10.003,21094525,79953737154,"('2-s2.0-79953737154', 'Horwitz')",Article,NIDCD,https://api.elsevier.com/content/abstract/scopus_id/79953737154,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79953737154&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79953737154&origin=inward +Adaptive significance of right hemisphere activation in aphasic language comprehension,Horwitz,Jennifer Ryder;Jed A. Meltzer;Allen R. Braun;Suraji Wagage;Beth Solomon,2013-06-01,14,Neuropsychologia,1248-1259,10.1016/j.neuropsychologia.2013.03.007,23566891,84877838200,"('2-s2.0-84877838200', 'Horwitz')",Article,NIDCD,https://api.elsevier.com/content/abstract/scopus_id/84877838200,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84877838200&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84877838200&origin=inward +Denoising the speaking brain: Toward a robust technique for correcting artifact-contaminated fMRI data under severe motion,Horwitz,Govind S. Mattay;Nuria Y. AbdulSabur;Ho Ming Chow;Yisheng Xu;Allen R. Braun;Yunxia Tong;Siyuan Liu,2014-12-01,15,NeuroImage,33-47,10.1016/j.neuroimage.2014.09.013,25225001,84907500432,"('2-s2.0-84907500432', 'Horwitz')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/84907500432,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84907500432&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84907500432&origin=inward +Distinguishing the processing of gestures from signs in deaf individuals: An fMRI study,Horwitz,Debra J. Patkin;Barry Horwitz;Fatima T. Husain;Allen R. Braun;Hung Thai-Van,2009-06-18,9,Brain Research,140-150,10.1016/j.brainres.2009.04.034,19397900,67349168707,"('2-s2.0-67349168707', 'Horwitz')",Article,,https://api.elsevier.com/content/abstract/scopus_id/67349168707,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=67349168707&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=67349168707&origin=inward +Spatial and temporal features of superordinate semantic processing studied with fMRI and EEG,Horwitz,Michelle E. Costanzo;Stefan Kemeny;Jiang Xu;Allen R. Braun;Bruce Swett;Vladimir Nechaev;Joseph J. McArdle,2013-06-03,8,Frontiers in Human Neuroscience,,10.3389/fnhum.2013.00293,,84933674816,"('2-s2.0-84933674816', 'Horwitz')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84933674816,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84933674816&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84933674816&origin=inward +Lesion analysis of language production deficits in aphasia,Horwitz,Grace Park;Siyuan Liu;Therese Kling;Allen Braun;Jeffrey Solomon;Yasmeen Faroqi-Shah,2014-01-01,9,Aphasiology,258-277,10.1080/02687038.2013.853023,,84891871099,"('2-s2.0-84891871099', 'Horwitz')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84891871099,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84891871099&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84891871099&origin=inward +Personal experience with narrated events modulates functional connectivity within visual and motor systems during story comprehension,Horwitz,Raymond A. Mar;Ho Ming Chow;Yisheng Xu;Allen R. Braun;Siyuan Liu;Suraji Wagage,2015-04-01,10,Human Brain Mapping,1494-1505,10.1002/hbm.22718,25545633,84925061170,"('2-s2.0-84925061170', 'Horwitz')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84925061170,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84925061170&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84925061170&origin=inward +Neural mechanisms of auditory discrimination of long-duration tonal patterns: A neural modeling and FMRI study,Horwitz,Stefan Kemeny;Barry Horwitz;Fatima T. Husain;Jiang Xu;Allen R. Braun;Antonio Ulloa,2008-12-01,5,Journal of Integrative Neuroscience,501-527,10.1142/S021963520800199X,19132798,58149528283,"('2-s2.0-58149528283', 'Horwitz')",Article,,https://api.elsevier.com/content/abstract/scopus_id/58149528283,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=58149528283&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=58149528283&origin=inward +MEG-based detection and localization of perilesional dysfunction in chronic stroke,Horwitz,Jed A. Meltzer;Allen R. Braun;Ron K.O. Chu,2015-01-01,9,NeuroImage: Clinical,157-169,10.1016/j.nicl.2015.03.019,26106540,84928121502,"('2-s2.0-84928121502', 'Horwitz')",Article,HSF,https://api.elsevier.com/content/abstract/scopus_id/84928121502,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84928121502&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84928121502&origin=inward +Motor learning elicited by voluntary drive,Cohen,Leonardo G. Cohen;Silke Anders;Martin Lotze;Christoph Braun;Niels Birbaumer,2003-04-01,443,Brain,866-872,10.1093/brain/awg079,12615644,0037378803,"('2-s2.0-0037378803', 'Cohen')",Article,DFG,https://api.elsevier.com/content/abstract/scopus_id/0037378803,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0037378803&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0037378803&origin=inward +Think to move: A neuromagnetic brain-computer interface (BCI) system for chronic stroke,Cohen,Leonardo G. Cohen;Tyler Ard;Surjo Soekadar;Alissa Fourkas;Cornelia Weber;Jurgen Mellinger;Christoph Braun;Michael A. Dimyan;Ethan Buch;Niels Birbaumer;Andrea Caria,2008-01-01,391,Stroke,910-917,10.1161/STROKEAHA.107.505313,18258825,41249093155,"('2-s2.0-41249093155', 'Cohen')",Article,,https://api.elsevier.com/content/abstract/scopus_id/41249093155,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=41249093155&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=41249093155&origin=inward +Contribution of the ipsilateral motor cortex to recovery after chronic stroke,Hallett,Leonardo G. Cohen;Adriana B. Conforto;Mark Hallett;Nadja Kadom;Konrad J. Werhahn,2003-10-01,205,Annals of Neurology,464-472,10.1002/ana.10686,14520658,0141870057,"('2-s2.0-0141870057', 'Hallett')",Article,,https://api.elsevier.com/content/abstract/scopus_id/0141870057,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0141870057&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0141870057&origin=inward +Enhanced excitability of the human visual cortex induced by short-term light deprivation,Cohen,Babak Boroojerdi;Leonardo G. Cohen;Brian Corwell;Fortunato Battaglia;Khalaf O. Bushara;Ilka Immisch;Wolf Muellbacher,2000-01-01,174,Cerebral Cortex,529-534,10.1093/cercor/10.5.529,10847602,0034072443,"('2-s2.0-0034072443', 'Cohen')",Article,,https://api.elsevier.com/content/abstract/scopus_id/0034072443,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0034072443&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0034072443&origin=inward +Training-dependent plasticity in patients with multiple sclerosis,McFarland,Joan Ohayon;Leonardo G. Cohen;Joseph Frank;Katrin Morgen;Alessandro Tessitore;Lumy Sawaki;Henry McFarland;Roland Martin;Nadja Kadom,2004-01-01,95,Brain,2506-2517,10.1093/brain/awh266,15456705,8144223995,"('2-s2.0-8144223995', 'McFarland')",Article,,https://api.elsevier.com/content/abstract/scopus_id/8144223995,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=8144223995&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=8144223995&origin=inward +Enduring representational plasticity after somatosensory stimulation,Cohen,Leonardo G. Cohen;Carolyn W.H. Wu;Peter Van Gelderen;Takashi Hanakawa;Zaneb Yaseen,2005-10-01,81,NeuroImage,872-884,10.1016/j.neuroimage.2005.05.055,16084740,24944493256,"('2-s2.0-24944493256', 'Cohen')",Article,,https://api.elsevier.com/content/abstract/scopus_id/24944493256,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=24944493256&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=24944493256&origin=inward +Neural Substrates of Intermanual Transfer of a Newly Acquired Motor Skill,Cohen,M. A. Perez;D. T. Willingham;N. Sadato;S. Tanaka;L. G. Cohen;H. C. Tanabe;S. P. Wise,2007-11-06,93,Current Biology,1896-1902,10.1016/j.cub.2007.09.058,17964167,35548961930,"('2-s2.0-35548961930', 'Cohen')",Article,,https://api.elsevier.com/content/abstract/scopus_id/35548961930,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=35548961930&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=35548961930&origin=inward +Effects of different viewing perspectives on somatosensory activations during observation of touch,Cohen,Benjamin Xu;Leonardo G. Cohen;Herta Flor;Michael Schaefer,2009-09-15,83,Human Brain Mapping,2722-2730,10.1002/hbm.20701,19172650,69249147388,"('2-s2.0-69249147388', 'Cohen')",Article,,https://api.elsevier.com/content/abstract/scopus_id/69249147388,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=69249147388&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=69249147388&origin=inward +Parietofrontal integrity determines neural modulation associated with grasping imagery after stroke,Cohen,Leonardo G. Cohen;Ethan R. Buch;Cornelia Weber;Alissa D. Fourkas;Amirali Modir Shanechi;Niels Birbaumer,2012-01-01,83,Brain,596-614,10.1093/brain/awr331,,84857227822,"('2-s2.0-84857227822', 'Cohen')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84857227822,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84857227822&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84857227822&origin=inward +Comparison of representational maps using functional magnetic resonance imaging and transcranial magnetic stimulation,Cohen,H. Topka;W. Grodd;M. Lotze;L. G. Cohen;M. Erb;R. J. Kaethner,2003-02-01,65,Clinical Neurophysiology,306-312,10.1016/s1388-2457(02)00380-2,12559238,0037307528,"('2-s2.0-0037307528', 'Cohen')",Article,,https://api.elsevier.com/content/abstract/scopus_id/0037307528,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0037307528&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0037307528&origin=inward +MR compatible force sensing system for real-time monitoring of wrist moments during fMRI testing,Cohen,Bruce Dobkin;Leonardo G. Cohen;Timea Hodics;Benjamin Xu;Joseph Hidler,2006-09-15,43,Journal of Neuroscience Methods,300-307,10.1016/j.jneumeth.2006.01.016,16490258,33747389805,"('2-s2.0-33747389805', 'Cohen')",Article,USAMRAA,https://api.elsevier.com/content/abstract/scopus_id/33747389805,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33747389805&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33747389805&origin=inward +Interference with Existing Memories Alters Offline Intrinsic Functional Brain Connectivity,Cohen,Silvina G. Horovitz;Nitzan Censor;Leonardo G. Cohen,2014-01-08,35,Neuron,69-76,10.1016/j.neuron.2013.10.042,24411732,84891823186,"('2-s2.0-84891823186', 'Cohen')",Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/84891823186,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84891823186&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84891823186&origin=inward +Neuroimaging patterns associated with motor control in traumatic brain injury,Cohen,P. W. Schönle;W. Grodd;B. Kardatzki;E. Gut;Martin Lotze;L. G. Cohen;F. A. Rodden,2006-03-01,25,Neurorehabilitation and Neural Repair,14-23,10.1177/1545968305282919,16467275,32244437609,"('2-s2.0-32244437609', 'Cohen')",Article,,https://api.elsevier.com/content/abstract/scopus_id/32244437609,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=32244437609&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=32244437609&origin=inward +White matter microstructural correlates of superior long-term skill gained implicitly under randomized practice,Cohen,Ethan R. Buch;Sunbin Song;Nikhil Sharma;Leonardo G. Cohen,2012-07-01,27,Cerebral Cortex,1671-1677,10.1093/cercor/bhr247,21914632,84862857617,"('2-s2.0-84862857617', 'Cohen')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/84862857617,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84862857617&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84862857617&origin=inward +Predicting motor improvement after stroke with clinical assessment and diffusion tensor imaging,Cohen,Pierre Nicolo;Leonardo G. Cohen;Armin Schnider;Adrian G. Guggisberg;Ethan R. Buch;Sviatlana Rizk,2016-05-17,29,Neurology,1924-1925,10.1212/WNL.0000000000002675,27164664,84969262338,"('2-s2.0-84969262338', 'Cohen')",Short Survey,,https://api.elsevier.com/content/abstract/scopus_id/84969262338,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84969262338&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84969262338&origin=inward +Improving Motor Corticothalamic Communication after Stroke Using Real-Time fMRI Connectivity-Based Neurofeedback,Cohen,Ranganatha Sitaram;Leonardo G. Cohen;Marcos Fortunato De Barros Filho;Mohit Rana;Surjo R. Soekadar;Sook Lei Liew;Niels Birbaumer;Sonja Cornelsen,2016-08-01,41,Neurorehabilitation and Neural Repair,671-675,10.1177/1545968315619699,26671217,84978113405,"('2-s2.0-84978113405', 'Cohen')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84978113405,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84978113405&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84978113405&origin=inward +PreSMA stimulation changes task-free functional connectivity in the fronto-basal-ganglia that correlates with response inhibition efficiency,Horwitz,Leonardo G. Cohen;Joelle E. Sarlls;Barry Horwitz;Jason F. Smith;Benjamin Xu;Wen Tung Wang;Marco Sandrini;John A. Butman;Oluwole Awosika,2016-09-01,13,Human Brain Mapping,3236-3249,10.1002/hbm.23236,27144466,84982947783,"('2-s2.0-84982947783', 'Horwitz')",Article,NIDCD,https://api.elsevier.com/content/abstract/scopus_id/84982947783,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84982947783&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84982947783&origin=inward +Brain structural substrates of reward dependence during behavioral performance,Cohen,Leonardo G. Cohen;Bruno B. Averbeck;Eran Dayan;Janne M. Hamann,2014-12-03,12,Journal of Neuroscience,16433-16441,10.1523/JNEUROSCI.3141-14.2014,25471581,84914693457,"('2-s2.0-84914693457', 'Cohen')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/84914693457,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84914693457&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84914693457&origin=inward +Practice structure improves unconscious transitional memories by increasing synchrony in a premotor network,Cohen,Stephen J. Gotts;Sunbin Song;Eran Dayan;Leonardo G. Cohen,2015-08-29,11,Journal of Cognitive Neuroscience,1503-1512,10.1162/jocn_a_00796,25761004,84933511306,"('2-s2.0-84933511306', 'Cohen')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/84933511306,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84933511306&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84933511306&origin=inward +Altered human memory modification in the presence of normal consolidation,Cohen,Karim Nader;Nitzan Censor;Leonardo G. Cohen;Ethan R. Buch,2016-09-01,9,Cerebral Cortex,3828-3837,10.1093/cercor/bhv180,26271110,84988418840,"('2-s2.0-84988418840', 'Cohen')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84988418840,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84988418840&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84988418840&origin=inward +Baseline frontostriatal-limbic connectivity predicts reward-based memory formation,Cohen,Leonardo G. Cohen;Eran Dayan;Janne M. Hamann;Friedhelm C. Hummel,2014-01-01,11,Human Brain Mapping,5921-5931,10.1002/hbm.22594,25078102,84911456053,"('2-s2.0-84911456053', 'Cohen')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/84911456053,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84911456053&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84911456053&origin=inward +3D-printed head models for navigated non-invasive brain stimulation,Cohen,Ethan R. Buch;Ryan M. Thompson;Leonardo G. Cohen;Eran Dayan,2016-10-01,1,Clinical Neurophysiology,3341-3342,10.1016/j.clinph.2016.08.011,27614003,84985946996,"('2-s2.0-84985946996', 'Cohen')",Letter,NINDS,https://api.elsevier.com/content/abstract/scopus_id/84985946996,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84985946996&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84985946996&origin=inward +"A single family with writer's cramp, essential tremor, and primary writing tremor",Cohen,Leonardo G. Cohen;Lewis Sudarsky;Mark Hallett,1987-01-01,1,Movement Disorders,224-225,10.1002/mds.870020311,,84989636431,"('2-s2.0-84989636431', 'Cohen')",Erratum,,https://api.elsevier.com/content/abstract/scopus_id/84989636431,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84989636431&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84989636431&origin=inward +Reduced prefrontal glutamate/glutamine and γ-aminobutyric acid levels in major depression determined using proton magnetic resonance spectroscopy,Cohen,Toni Tumonis;Jun Shen;Wayne C. Drevets;Noah Meyers;Jan Willem Van Der Veen;Gregor Hasler,2007-02-01,528,Archives of General Psychiatry,193-200,10.1001/archpsyc.64.2.193,17283286,33846877408,"('2-s2.0-33846877408', 'Cohen')",Article,,https://api.elsevier.com/content/abstract/scopus_id/33846877408,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33846877408&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33846877408&origin=inward +Relationship between amygdala responses to masked faces and mood state and treatment in major depressive disorder,Cohen,Maura L. Furey;Wayne C. Drevets;Teresa A. Victor;Stephen J. Fromm;Arne Öhman,2010-11-01,256,Archives of General Psychiatry,1128-1138,10.1001/archgenpsychiatry.2010.144,21041614,78149330930,"('2-s2.0-78149330930', 'Cohen')",Article,,https://api.elsevier.com/content/abstract/scopus_id/78149330930,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=78149330930&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=78149330930&origin=inward +Neural and behavioral responses to tryptophan depletion in unmedicated patients with remitted major depressive disorder and controls,Nugent,Markus Schwarz;Earle E. Bain;Alexander Neumeister;Peter Herscovitch;Wayne C. Drevets;Omer Bonne;David A. Luckenbaugh;Dennis S. Charney;Allison C. Nugent;Tracy Waldeck;Marilla Geraci,2004-08-01,217,Archives of General Psychiatry,765-773,10.1001/archpsyc.61.8.765,15289275,3543136066,"('2-s2.0-3543136066', 'Nugent')",Article,,https://api.elsevier.com/content/abstract/scopus_id/3543136066,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=3543136066&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=3543136066&origin=inward +The ENIGMA Consortium: Large-scale collaborative analyses of neuroimaging and genetic data,Nugent,Martin Alda;Barbara Franke;David G. Brohawn;Nicholas G. Martin;Peter T. Fox;Christopher R.K. Ching;Kazima Bulayeva;Benedicto Crespo-Facorro;Nicola J. Armstrong;Jason L. Stein;Roberto Toro;Jan Buitelaar;Han G. Brunner;Eco J.C. de Geus;Michael Bauer;Randy L. Gollub;Saud Alhusaini;Giovanni Coppola;Joanne E. Curran;Gianpiero L. Cavalleri;Eva Maria Frey;Derrek P. Hibar;Beata Godlewska;Liana G. Apostolova;Nancy C. Andreasen;Vincent Frouin;Thomas Frodl;Dara M. Cannon;Hongwei Dong;Margaret J. Wright;Louise Emsell;Rita M. Cantor;Ole A. Andreassen;Sudheer Giddaluru;Giuseppe Delvecchio;Chantal Depondt;Clyde Francks;Sven Cichon;Stefan Ehrlich;Susanne Erk;Vince D. Calhoun;Kiki D. Chang;Srdjan Djurovic;Guillén Fernández;Tom Booth;Rachel M. Brouwer;Jorge Almeida;Patricia Conrod;Gary Donohoe;Anouk den Braber;Kathryn Alpert;Erlend Bøen;Torbjørn Elvsåshagen;Carrie E. Bearden;Janita Bralten;Melanie A. Carless;Rali Dimitrova;Ørjan Bergmann;Dorret I. Boomsma;Alejandro Arias Vasquez;David C. Glahn;M. Mallar Chakravarty;Greig I. de Zubicaray;Danai Dima;Gunter Schumann;Catherine Bois;Ingrid Agartz;Paul M. Thompson;Miguel E. Renteria;Ian J. Deary;Rita Z. Goldstein;Carl Johan Ekman;Iryna Fedko;Ravindranath Duggirala;Benjamin Aribisala;Neda Jahanshad;Vincent P. Clark;Tatiana Foroud;Sarah E. Medland;Simon E. Fisher;Scott Fears;Xavier Caseras;Thomas D. Dyer;Jesen Fagerness;Elisabeth B. Binder;Lieuwe de Haan;Randy L. Buckner;Henry J. Bockholt;Sophia Frangou;Juan R. Bustillo;Michael Czisch;Katja Appel;John Blangero;Hans J. Grabe;Hugh Garavan;Andrea Christoforou;Thomas Espeseth;Ian J. Bowman;Mark E. Bastin;Laura Almasy,2014-01-01,338,Brain Imaging and Behavior,153-182,10.1007/s11682-013-9269-5,24399358,84899930958,"('2-s2.0-84899930958', 'Nugent')",Article,ADNI,https://api.elsevier.com/content/abstract/scopus_id/84899930958,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84899930958&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84899930958&origin=inward +"Reduced hippocampal volume in unmedicated, remitted patients with major depression versus control subjects",Nugent,Earle E. Bain;Alexander Neumeister;Wayne C. Drevets;Theresa Young;Omer Bonne;David A. Luckenbaugh;Suzanne Wood;Dennis S. Charney;Allison C. Nugent,2005-04-15,208,Biological Psychiatry,935-937,10.1016/j.biopsych.2005.01.016,15820716,16844385523,"('2-s2.0-16844385523', 'Nugent')",Article,,https://api.elsevier.com/content/abstract/scopus_id/16844385523,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=16844385523&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=16844385523&origin=inward +Elevated Serotonin Transporter Binding in Major Depressive Disorder Assessed Using Positron Emission Tomography and [11C]DASB; Comparison with Bipolar Disorder,Nugent,Denise Rollis;Wayne C. Drevets;Masanori Ichise;Shilpa K. Gandhi;Husseini K. Manji;Dennis S. Charney;Dara M. Cannon;Jacqueline M. Klaver,2007-10-15,175,Biological Psychiatry,870-877,10.1016/j.biopsych.2007.03.016,17678634,34748836926,"('2-s2.0-34748836926', 'Nugent')",Article,,https://api.elsevier.com/content/abstract/scopus_id/34748836926,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34748836926&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34748836926&origin=inward +Cortical abnormalities in bipolar disorder investigated with MRI and voxel-based morphometry,Nugent,Carlos A. Zarate;Earle E. Bain;Sean Marrett;Wayne C. Drevets;Linda Mah;Allison C. Nugent;Dara M. Cannon;Michael P. Milham;Joseph L. Price;Daniel S. Pine,2006-04-01,156,NeuroImage,485-497,10.1016/j.neuroimage.2005.09.029,16256376,33645131763,"('2-s2.0-33645131763', 'Nugent')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/33645131763,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33645131763&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33645131763&origin=inward +Neural basis of abnormal response to negative feedback in unmedicated mood disorders,Nugent,Maura L. Furey;Wayne C. Drevets;Luke Clark;Joana V. Taylor Tavares;Guy B. Williams;Barbara J. Sahakian,2008-09-01,150,NeuroImage,1118-1126,10.1016/j.neuroimage.2008.05.049,18586109,48749096220,"('2-s2.0-48749096220', 'Nugent')",Article,WT,https://api.elsevier.com/content/abstract/scopus_id/48749096220,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=48749096220&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=48749096220&origin=inward +Differential effects of 5-HTTLPR genotypes on the behavioral and neural responses to tryptophan depletion in patients with major depression and controls,Nugent,Markus Schwarz;Alexander Neumeister;Peter Herscovitch;Wayne C. Drevets;Omer Bonne;David A. Luckenbaugh;Xian Zhang Hu;David Goldman;Dennis S. Charney;Allison C. Nugent,2006-09-11,125,Archives of General Psychiatry,978-986,10.1001/archpsyc.63.9.978,16953000,33748290041,"('2-s2.0-33748290041', 'Nugent')",Article,,https://api.elsevier.com/content/abstract/scopus_id/33748290041,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33748290041&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33748290041&origin=inward +Serotonin Transporter Binding in Bipolar Disorder Assessed using [11C]DASB and Positron Emission Tomography,Nugent,Denise Rollis;Wayne C. Drevets;Masanori Ichise;Shilpa K. Gandhi;Jacqueline M. Klaver;Husseini K. Manji;Dennis S. Charney;Allison C. Nugent;Dara M. Cannon;Stephen J. Fromm,2006-08-01,128,Biological Psychiatry,207-217,10.1016/j.biopsych.2006.05.005,16875929,33746218062,"('2-s2.0-33746218062', 'Nugent')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/33746218062,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33746218062&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33746218062&origin=inward +Localization of dysfunction in major depressive disorder: Prefrontal cortex and amygdala,Murray,Steven P. Wise;Elisabeth A. Murray;Wayne C. Drevets,2011-06-15,125,Biological Psychiatry,,10.1016/j.biopsych.2010.09.041,21111403,79958139969,"('2-s2.0-79958139969', 'Murray')",Review,NIMH,https://api.elsevier.com/content/abstract/scopus_id/79958139969,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79958139969&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79958139969&origin=inward +Prefrontal cortical abnormalities in currently depressed versus currently remitted patients with major depressive disorder,Nugent,Carlos A. Zarate;Herve Lemaitre;Giacomo Salvadore;Alexander Neumeister;Wayne C. Drevets;Ruth Tinsley;David A. Luckenbaugh;Allison C. Nugent;Dara M. Cannon,2011-02-14,101,NeuroImage,2643-2651,10.1016/j.neuroimage.2010.11.011,21073959,78650929772,"('2-s2.0-78650929772', 'Nugent')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/78650929772,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=78650929772&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=78650929772&origin=inward +Habenula volume in bipolar disorder and major depressive disorder: A high-resolution magnetic resonance imaging study,Nugent,Carlos A. Zarate;Jonathan P. Roiser;Fritz Henn;Wendy Bogers;Jonathan B. Savitz;Earle E. Bain;Alexander Neumeister;Wayne C. Drevets;Dennis S. Charney;Allison C. Nugent;Husseini K. Manji;Sean Marrett;Dara M. Cannon,2011-02-15,100,Biological Psychiatry,336-343,10.1016/j.biopsych.2010.09.027,21094939,79151474290,"('2-s2.0-79151474290', 'Nugent')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/79151474290,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79151474290&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79151474290&origin=inward +Normal prefrontal gamma-aminobutyric acid levels in remitted depressed subjects determined by proton magnetic resonance spectroscopy,Nugent,Toni Tumonis;Earle E. Bain;Alexander Neumeister;Jun Shen;Wayne C. Drevets;Jan Willem Van Der Veen;Dennis S. Charney;Gregor Hasler,2005-12-15,93,Biological Psychiatry,969-973,10.1016/j.biopsych.2005.05.017,16043137,29044439012,"('2-s2.0-29044439012', 'Nugent')",Article,,https://api.elsevier.com/content/abstract/scopus_id/29044439012,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=29044439012&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=29044439012&origin=inward +The Effects of Tryptophan Depletion on Neural Responses to Emotional Words in Remitted Depression,Nugent,Jonathan P. Roiser;S. Lalith Talagala;Jamey Levy;Wayne C. Drevets;Fritz A. Henn;Allison C. Nugent;Gregor Hasler;Stephen J. Fromm;Barbara J. Sahakian,2009-09-01,79,Biological Psychiatry,441-450,10.1016/j.biopsych.2009.05.002,19539268,68049127793,"('2-s2.0-68049127793', 'Nugent')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/68049127793,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=68049127793&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=68049127793&origin=inward +Effects of a α2C-adrenoreceptor gene polymorphism on neural responses to facial expressions in depression,Nugent,Alexander Neumeister;Wayne C. Drevets;Peter Herscovitch;Omer Bonne;David A. Luckenbaugh;Dennis S. Charney;Shannan Henry;David Goldman;Inna Belfer,2006-08-09,76,Neuropsychopharmacology,1750-1756,10.1038/sj.npp.1301010,16407897,33746310877,"('2-s2.0-33746310877', 'Nugent')",Article,,https://api.elsevier.com/content/abstract/scopus_id/33746310877,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33746310877&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33746310877&origin=inward +Amygdala volume in depressed patients with bipolar disorder assessed using high resolution 3T MRI: The impact of medication,Nugent,Rebecca Sills;Wendy Bogers;Earle E. Bain;Sean Marrett;Wayne C. Drevets;David A. Luckenbaugh;Alice Liu;Jonathan Savitz;Dennis S. Charney;Allison C. Nugent;Husseini K. Manji;Joseph L. Price;Dara M. Cannon;Carlos Zarate,2010-02-15,76,NeuroImage,2966-2976,10.1016/j.neuroimage.2009.11.025,19931399,73749084524,"('2-s2.0-73749084524', 'Nugent')",Article,,https://api.elsevier.com/content/abstract/scopus_id/73749084524,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=73749084524&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=73749084524&origin=inward +Reduced muscarinic type 2 receptor binding in subjects with bipolar disorder,Nugent,Shilpa Gandhi;Joan Williams;Richard E. Carson;Denise Rollis;Wayne C. Drevets;Michele Drevets;William C. Eckelman;Allison C. Nugent;Dara M. Cannon;Dale O. Kiesewetter;Gerardo Solorio,2006-07-12,73,Archives of General Psychiatry,741-747,10.1001/archpsyc.63.7.741,16818863,33745712727,"('2-s2.0-33745712727', 'Nugent')",Article,,https://api.elsevier.com/content/abstract/scopus_id/33745712727,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33745712727&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33745712727&origin=inward +Dopamine type-1 receptor binding in major depressive disorder assessed using positron emission tomography and [11C]NNC-112,Nugent,Summer A. Peck;Wayne C. Drevets;Kristine Erickson;Denise Rallis-Voak;Dara M. Cannon;Jacqueline M. Klaver,2009-04-01,73,Neuropsychopharmacology,1277-1287,10.1038/npp.2008.194,18946469,62349134479,"('2-s2.0-62349134479', 'Nugent')",Article,,https://api.elsevier.com/content/abstract/scopus_id/62349134479,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=62349134479&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=62349134479&origin=inward +No change in serotonin type 1A receptor binding in patients with posttraumatic stress disorder,Nugent,Earle Bain;Alexander Neumeister;Richard E. Carson;William Eckelman;Peter Herscovitch;Wayne C. Drevets;Omer Bonne;David A. Luckenbaugh;Dennis S. Charney;Allison C. Nugent;Meena Vythilingam,2005-02-01,59,American Journal of Psychiatry,383-385,10.1176/appi.ajp.162.2.383,15677606,13444278544,"('2-s2.0-13444278544', 'Nugent')",Article,,https://api.elsevier.com/content/abstract/scopus_id/13444278544,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=13444278544&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=13444278544&origin=inward +Scopolamine produces larger antidepressant and antianxiety effects in women than in men,Nugent,Ashish Khanna;Maura L. Furey;Elana M. Hoffman;Wayne C. Drevets,2010-11-01,76,Neuropsychopharmacology,2479-2488,10.1038/npp.2010.131,20736989,77958001705,"('2-s2.0-77958001705', 'Nugent')",Article,,https://api.elsevier.com/content/abstract/scopus_id/77958001705,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77958001705&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77958001705&origin=inward +Reward circuitry in resilience to severe trauma: An fMRI investigation of resilient special forces soldiers,Pine,Eric E. Nelson;Wayne Drevets;Monique Ernst;Dennis S. Charney;Gary Hazlett;Matthew Scaramozza;Tracy Waldeck;Meena Vythilingam;Daniel S. Pine;Steven M. Southwick,2009-04-30,58,Psychiatry Research - Neuroimaging,75-77,10.1016/j.pscychresns.2008.06.008,19243926,62149122946,"('2-s2.0-62149122946', 'Pine')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/62149122946,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=62149122946&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=62149122946&origin=inward +Lateralization and gender differences in the dopaminergic response to unpredictable reward in the human ventral striatum,Nugent,Peter Herscovitch;Richard E. Carson;Wayne C. Drevets;Krystle Barhaghi;Chantal Martin-Soelch;Allison Nugent;Joanna Szczepanik;Denise Rallis,2011-05-01,61,European Journal of Neuroscience,1706-1715,10.1111/j.1460-9568.2011.07642.x,21453423,79955549915,"('2-s2.0-79955549915', 'Nugent')",Article,,https://api.elsevier.com/content/abstract/scopus_id/79955549915,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79955549915&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79955549915&origin=inward +Prefrontal Cortical Gamma-Aminobutyric Acid Levels in Panic Disorder Determined by Proton Magnetic Resonance Spectroscopy,Pine,Jun Shen;Wayne C. Drevets;Jan Willem van der Veen;Daniel Pine;Gregor Hasler;Marilla Geraci,2009-02-01,41,Biological Psychiatry,273-275,10.1016/j.biopsych.2008.06.023,18692172,58149301402,"('2-s2.0-58149301402', 'Pine')",Article,,https://api.elsevier.com/content/abstract/scopus_id/58149301402,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=58149301402&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=58149301402&origin=inward +Heart rate variability during motor and cognitive tasks in females with major depressive disorder,Nugent,Allison Carol Nugent;Earle Eugene Bain;Julian Francis Thayer;Wayne Curtis Drevets;John James Sollers,2011-01-30,30,Psychiatry Research - Neuroimaging,1-8,10.1016/j.pscychresns.2010.08.013,21129936,78650172495,"('2-s2.0-78650172495', 'Nugent')",Article,,https://api.elsevier.com/content/abstract/scopus_id/78650172495,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=78650172495&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=78650172495&origin=inward +In vivo evaluation of the effect of stimulus distribution on FIR statistical efficiency in event-related fMRI,Duyn,Jacco A. de Zwart;J. Martijn Jansma;Maura L. Furey;Wayne C. Drevets;Peter van Gelderen;Jeff H. Duyn,2013-05-15,7,Journal of Neuroscience Methods,190-195,10.1016/j.jneumeth.2013.02.017,23473798,84876454339,"('2-s2.0-84876454339', 'Duyn')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/84876454339,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84876454339&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84876454339&origin=inward +Neural basis of global resting-state fMRI activity,Duyn,Marieke L. Schölvinck;Frank Q. Ye;David A. Leopold;Alexander Maier;Jeff H. Duyn,2010-06-01,526,Proceedings of the National Academy of Sciences of the United States of America,10238-10243,10.1073/pnas.0913110107,20439733,77953462218,"('2-s2.0-77953462218', 'Duyn')",Article,,https://api.elsevier.com/content/abstract/scopus_id/77953462218,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77953462218&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77953462218&origin=inward +Layer-specific variation of iron content in cerebral cortex as a source of MRI contrast,Duyn,Dragan Maric;Bing Yao;Tie Qiang Li;Peter Van Gelderen;Guofeng Zhang;Hellmut Merkle;Jeff H. Duyn;Karin Shmueli;Jacco A. De Zwart;Masaki Fukunaga;Jongho Lee;John F. Schenck;Maria A. Aronova;Richard D. Leapman,2010-02-23,236,Proceedings of the National Academy of Sciences of the United States of America,3834-3839,10.1073/pnas.0911177107,20133720,77649257562,"('2-s2.0-77649257562', 'Duyn')",Article,,https://api.elsevier.com/content/abstract/scopus_id/77649257562,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77649257562&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77649257562&origin=inward +Time-varying functional network information extracted from brief instances of spontaneous brain activity,Duyn,Xiao Liu;Jeff H. Duyn,2013-03-12,261,Proceedings of the National Academy of Sciences of the United States of America,4392-4397,10.1073/pnas.1216856110,23440216,84875045497,"('2-s2.0-84875045497', 'Duyn')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84875045497,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84875045497&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84875045497&origin=inward +Sensitivity of MRI resonance frequency to the orientation of brain tissue microstructure,Duyn,Peter Van Gelderen;Afonso C. Silva;Hellmut Merkle;Karin Shmueli;Masaki Fukunaga;Jongho Lee;Jeff H. Duyn,2010-03-16,180,Proceedings of the National Academy of Sciences of the United States of America,5130-5135,10.1073/pnas.0910222107,20202922,77950456760,"('2-s2.0-77950456760', 'Duyn')",Article,,https://api.elsevier.com/content/abstract/scopus_id/77950456760,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77950456760&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77950456760&origin=inward +EEG correlates of time-varying BOLD functional connectivity,Duyn,Catie Chang;Xiao Liu;Michael C. Chen;Zhongming Liu;Jeff H. Duyn,2013-05-05,188,NeuroImage,227-236,10.1016/j.neuroimage.2013.01.049,23376790,84874541551,"('2-s2.0-84874541551', 'Duyn')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/84874541551,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84874541551&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84874541551&origin=inward +Association between heart rate variability and fluctuations in resting-state functional connectivity,Duyn,Catie Chang;Gary H. Glover;Hans Jochen Heinze;Coraline D. Metzger;Martin Walter;Jeff H. Duyn,2013-03-01,154,NeuroImage,93-104,10.1016/j.neuroimage.2012.11.038,23246859,84871829601,"('2-s2.0-84871829601', 'Duyn')",Article,OVGU,https://api.elsevier.com/content/abstract/scopus_id/84871829601,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84871829601&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84871829601&origin=inward +Large-scale spontaneous fluctuations and correlations in brain electrical activity observed with magnetoencephalography,Duyn,Masaki Fukunaga;Jacco A. de Zwart;Zhongming Liu;Jeff H. Duyn,2010-05-01,102,NeuroImage,102-111,10.1016/j.neuroimage.2010.01.092,20123024,77950544458,"('2-s2.0-77950544458', 'Duyn')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/77950544458,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77950544458&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77950544458&origin=inward +Micro-compartment specific T2* relaxation in the brain,Reich,Pascal Sati;Daniel S. Reich;Afonso C. Silva;Peter van Gelderen;Hellmut Merkle;Jacco A. De Zwart;Jeff H. Duyn,2013-08-15,112,NeuroImage,268-278,10.1016/j.neuroimage.2013.03.005,23528924,84877044901,"('2-s2.0-84877044901', 'Reich')",Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/84877044901,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84877044901&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84877044901&origin=inward +Nonexponential T 2* decay in white matter,Reich,Pascal Sati;Daniel S. Reich;Peter Van Gelderen;Jacco A. De Zwart;Jongho Lee;Jeff H. Duyn,2012-01-01,75,Magnetic Resonance in Medicine,110-117,10.1002/mrm.22990,21630352,84255175912,"('2-s2.0-84255175912', 'Reich')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84255175912,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84255175912&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84255175912&origin=inward +Statistical feature extraction for artifact removal from concurrent fMRI-EEG recordings,Duyn,Jacco A. de Zwart;Peter van Gelderen;Li Wei Kuo;Zhongming Liu;Jeff H. Duyn,2012-02-01,58,NeuroImage,2073-2087,10.1016/j.neuroimage.2011.10.042,22036675,84855435144,"('2-s2.0-84855435144', 'Duyn')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/84855435144,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84855435144&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84855435144&origin=inward +Decomposition of spontaneous brain activity into distinct fMRI co-activation patterns,Duyn,Catie Chang;Xiao Liu;Jeff H. Duyn,2013-12-04,69,Frontiers in Systems Neuroscience,,10.3389/fnsys.2013.00101,,84889605075,"('2-s2.0-84889605075', 'Duyn')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84889605075,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84889605075&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84889605075&origin=inward +Finding thalamic BOLD correlates to posterior alpha EEG,Duyn,Jacco A. de Zwart;Bing Yao;Peter van Gelderen;Li Wei Kuo;Zhongming Liu;Jeff H. Duyn,2012-11-15,46,NeuroImage,1060-1069,10.1016/j.neuroimage.2012.08.025,22986355,84866060086,"('2-s2.0-84866060086', 'Duyn')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/84866060086,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84866060086&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84866060086&origin=inward +Decreased connectivity between the thalamus and the neocortex during human nonrapid eye movement sleep,Duyn,Dante Picchioni;Morgan L. Pixa;Silvina G. Horovitz;Allen R. Braun;Walter S. Carr;Masaki Fukunaga;Jeff H. Duyn,2014-02-01,37,Sleep,387-397,10.5665/sleep.3422,24497667,84893446105,"('2-s2.0-84893446105', 'Duyn')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84893446105,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84893446105&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84893446105&origin=inward +Characterization of a dielectric phantom for high-field magnetic resonance imaging applications,Duyn,Ryan Brown;Peter Van Gelderen;Natalia Gudino;Daniel K. Sodickson;Qi Duan;Jacco A. De Zwart;Jeff H. Duyn,2014-10-01,33,Medical Physics,,10.1118/1.4895823,25281973,84908425865,"('2-s2.0-84908425865', 'Duyn')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84908425865,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84908425865&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84908425865&origin=inward +Effects of magnetization transfer on T1 contrast in human brain white matter,Duyn,Xu Jiang;Peter van Gelderen;Jeff H. Duyn,2016-03-01,32,NeuroImage,85-95,10.1016/j.neuroimage.2015.12.032,26724780,84954217985,"('2-s2.0-84954217985', 'Duyn')",Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/84954217985,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84954217985&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84954217985&origin=inward +Improved Bloch-Siegert based B1 mapping by reducing off-resonance shift,Duyn,Jeff Duyn;Peter van Gelderen;Qi Duan,2013-09-01,16,NMR in Biomedicine,1070-1078,10.1002/nbm.2920,23355474,84882268901,"('2-s2.0-84882268901', 'Duyn')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84882268901,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84882268901&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84882268901&origin=inward +A torque balance measurement of anisotropy of the magnetic susceptibility in white matter,Duyn,Jeff H. Duyn;Hendrik Mandelkow;Peter Van Gelderen;Jacco A. De Zwart,2015-01-01,15,Magnetic Resonance in Medicine,1388-1396,10.1002/mrm.25524,25399830,84945441349,"('2-s2.0-84945441349', 'Duyn')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84945441349,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84945441349&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84945441349&origin=inward +Improving contrast to noise ratio of resonance frequency contrast images (phase images) using balanced steady-state free precession,Duyn,Masaki Fukunaga;Jongho Lee;Jeff H. Duyn,2011-02-14,11,NeuroImage,2779-2788,10.1016/j.neuroimage.2010.10.071,21040793,78650936663,"('2-s2.0-78650936663', 'Duyn')",Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/78650936663,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=78650936663&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=78650936663&origin=inward +Linear discriminant analysis achieves high classification accuracy for the BOLD fMRI response to naturalistic movie stimuli,Duyn,Jeff H. Duyn;Hendrik Mandelkow;Jacco A. De Zwart,2016-03-31,20,Frontiers in Human Neuroscience,1-12,10.3389/fnhum.2016.00128,,84964772093,"('2-s2.0-84964772093', 'Duyn')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84964772093,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84964772093&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84964772093&origin=inward +Early anti-correlated BOLD signal changes of physiologic origin,Duyn,Jacco A. de Zwart;Marta Bianciardi;Kevin Murphy;Molly G. Bright;Jeff H. Duyn,2014-02-15,16,NeuroImage,287-296,10.1016/j.neuroimage.2013.10.055,24211818,84890933895,"('2-s2.0-84890933895', 'Duyn')",Article,WT,https://api.elsevier.com/content/abstract/scopus_id/84890933895,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84890933895&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84890933895&origin=inward +Contributions to magnetic susceptibility of brain tissue,Duyn,John Schenck;Jeff H. Duyn,2017-04-01,44,NMR in Biomedicine,,10.1002/nbm.3546,27240118,84973444604,"('2-s2.0-84973444604', 'Duyn')",Review,,https://api.elsevier.com/content/abstract/scopus_id/84973444604,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84973444604&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84973444604&origin=inward +Tailored excitation using nonlinear B 0-shims,Duyn,Jeff Duyn;Peter Van Gelderen;Qi Duan,2012-03-01,7,Magnetic Resonance in Medicine,601-608,10.1002/mrm.23278,22222623,84857243554,"('2-s2.0-84857243554', 'Duyn')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84857243554,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84857243554&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84857243554&origin=inward +Detection of demyelination in multiple sclerosis by analysis of T 2 ∗ relaxation at 7 T,Reich,Pascal Sati;Daniel S. Reich;Peter Van Gelderen;Xiaozhen Li;Jacco A. De Zwart;Jeff H. Duyn,2015-01-01,12,NeuroImage: Clinical,709-714,10.1016/j.nicl.2015.02.021,26594617,84924815051,"('2-s2.0-84924815051', 'Reich')",Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/84924815051,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84924815051&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84924815051&origin=inward +Independent sources of spontaneous BOLD fluctuation along the visual pathway,Duyn,Jeff H. Duyn;Zhongming Liu;Peter Van Gelderen;Jacco A. De Zwart,2013-10-01,6,Brain Topography,525-537,10.1007/s10548-013-0290-1,23660870,84885052576,"('2-s2.0-84885052576', 'Duyn')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/84885052576,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84885052576&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84885052576&origin=inward +Heterogeneity of Multiple Sclerosis White Matter Lesions Detected With T2*-Weighted Imaging at 7.0 Tesla,Duyn,Francesca Bagnato;Joan M. Ohayon;Bing Yao;Vasiliki N. Ikonomidou;Fredric K. Cantor;Jeff Duyn,2015-01-01,10,Journal of Neuroimaging,799-806,10.1111/jon.12193,25657078,84939254120,"('2-s2.0-84939254120', 'Duyn')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84939254120,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84939254120&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84939254120&origin=inward +Optically controlled switch-mode current-source amplifiers for on-coil implementation in high-field parallel transmission,Duyn,Jacco A. de Zwart;Natalia Gudino;Peter van Gelderen;Hellmut Merkle;Jeff H. Duyn;Joe Murphy-Boesch;Stephen J. Dodd;Qi Duan,2016-07-01,7,Magnetic Resonance in Medicine,340-349,10.1002/mrm.25857,26256671,84974824221,"('2-s2.0-84974824221', 'Duyn')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84974824221,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84974824221&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84974824221&origin=inward +Rapid measurement of brain macromolecular proton fraction with transient saturation transfer MRI,Duyn,Xu Jiang;Peter van Gelderen;Jeff H. Duyn,2017-06-01,11,Magnetic Resonance in Medicine,2174-2185,10.1002/mrm.26304,27342121,84977108816,"('2-s2.0-84977108816', 'Duyn')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84977108816,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84977108816&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84977108816&origin=inward +Evolution of tumefactive lesions in multiple sclerosis: A 12-year study with serial imaging in a single patient,Bielekova,Francesca Bagnato;Natalie E. Cook;Bibiana Bielekova;Vasiliki N. Ikonomidou;Alexander Vortmeyer;Fernanda Tovar-Moll;Nancy D. Richert;Jeff H. Duyn,2013-01-01,1,Multiple Sclerosis Journal,1539-1543,10.1177/1352458513498124,24062416,84884541852,"('2-s2.0-84884541852', 'Bielekova')",Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/84884541852,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84884541852&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84884541852&origin=inward +Investigating lipids as a source of chemical exchange-induced MRI frequency shifts,Duyn,P. van Gelderen;S. J. Dodd;K. Shmueli;J. H. Duyn,2017-04-01,2,NMR in Biomedicine,,10.1002/nbm.3525,27076394,84963818868,"('2-s2.0-84963818868', 'Duyn')",Article,EPSRC,https://api.elsevier.com/content/abstract/scopus_id/84963818868,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84963818868&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84963818868&origin=inward +Evolution of Instrumentation for Functional Magnetic Resonance Imaging,Duyn,J. Duyn;J. A. de Zwart,2015-02-14,0,Brain Mapping: An Encyclopedic Reference,89-96,10.1016/B978-0-12-397025-1.00009-9,,84943277181,"('2-s2.0-84943277181', 'Duyn')",Chapter,,https://api.elsevier.com/content/abstract/scopus_id/84943277181,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84943277181&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84943277181&origin=inward +Optimization of a high sensitivity MRI receive coil for parallel human brain imaging,Duyn,Peter Van Gelderen;Patrick J. Ledden;Yuxi Pang;Renxin Chu;Peter Keilman;Jacco A. De Zwart;Jeff H. Duyn,2002-01-01,0,Proceedings - International Symposium on Biomedical Imaging,966-969,10.1109/ISBI.2002.1029423,,84948650823,"('2-s2.0-84948650823', 'Duyn')",Conference Paper,,https://api.elsevier.com/content/abstract/scopus_id/84948650823,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84948650823&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84948650823&origin=inward +"Erratum: Sensitivity of MRI resonance frequency to the orientation of brain tissue microstructure (Proceedings National Academy Science USA (2010) 107, (5130-5135) DOI: 10.1073/pnas.0910222107)",Duyn,Peter Van Gelderen;Afonso C. Silva;Hellmut Merkle;Karin Shmueli;Masaki Fukunaga;Jongho Lee;Jeff H. Duyn,2010-05-04,0,Proceedings of the National Academy of Sciences of the United States of America,8498,10.1073/pnas.1003440107,,77952398184,"('2-s2.0-77952398184', 'Duyn')",Erratum,,https://api.elsevier.com/content/abstract/scopus_id/77952398184,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77952398184&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77952398184&origin=inward +Spectral characteristics of semisolid protons in human brain white matter at 7 T,Duyn,Xu Jiang;Peter van Gelderen;Jeff H. Duyn,2017-11-01,5,Magnetic Resonance in Medicine,1950-1958,10.1002/mrm.26594,28150877,85011700174,"('2-s2.0-85011700174', 'Duyn')",Article,,https://api.elsevier.com/content/abstract/scopus_id/85011700174,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85011700174&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85011700174&origin=inward +Structural imaging differences and longitudinal changes in primary lateral sclerosis and amyotrophic lateral sclerosis,Duyn,Justin Y. Kwan;Tianxia Wu;Avner Meoded;Laura E. Danielian;Mary Kay Floeter,2013-01-28,49,NeuroImage: Clinical,151-160,10.1016/j.nicl.2012.12.003,,84872699821,"('2-s2.0-84872699821', 'Duyn')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/84872699821,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84872699821&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84872699821&origin=inward +Longitudinal imaging in C9orf72 mutation carriers: Relationship to phenotype,Duyn,Bryan J. Traynor;Laura E. Braun;Justin Y. Kwan;Devin Bageac;Laura E. Danielian;Mary Kay Floeter,2016-01-01,27,NeuroImage: Clinical,1035-1043,10.1016/j.nicl.2016.10.014,27995069,85002411690,"('2-s2.0-85002411690', 'Duyn')",Article,ATSDR,https://api.elsevier.com/content/abstract/scopus_id/85002411690,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85002411690&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85002411690&origin=inward +Impaired corticopontocerebellar tracts underlie pseudobulbar affect in motor neuron disorders,Duyn,Laura Danielian;Rohan Katipally;Tianxia Wu;Edward D. Huey;Avner Meoded;Matthew Stephen;Mary Kay Floeter;Meredith P. Kim;Olivia Schanz,2014-01-01,19,Neurology,620-627,10.1212/WNL.0000000000000693,25008395,84907424554,"('2-s2.0-84907424554', 'Duyn')",Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/84907424554,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84907424554&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84907424554&origin=inward +Cerebro-cerebellar connectivity is increased in primary lateral sclerosis,Duyn,Stephen J. Gotts;Rohan Katipally;Avner Meoded;Arthur E. Morrissette;Mary Kay Floeter;Olivia Schanz,2015-01-01,19,NeuroImage: Clinical,288-296,10.1016/j.nicl.2014.12.009,25610792,84920842790,"('2-s2.0-84920842790', 'Duyn')",Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/84920842790,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84920842790&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84920842790&origin=inward +"Pathology of callosal damage in ALS: An ex-vivo, 7 T diffusion tensor MRI study",Duyn,Hao Wei Wang;Joelle E. Sarlls;Justin Y. Kwan;Abhik Ray-Chaudhury;Robert C. Welsh;Sean Foxley;Zachary S. Gala;Saad Jbabdi;Devin Bageac;Laura E. Danielian;Mary Kay Floeter;Karla L. Miller;Agustin M. Cardenas,2017-01-01,17,NeuroImage: Clinical,200-208,10.1016/j.nicl.2017.04.024,28529876,85019030136,"('2-s2.0-85019030136', 'Duyn')",Article,UMD,https://api.elsevier.com/content/abstract/scopus_id/85019030136,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85019030136&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85019030136&origin=inward +Dynamic mapping of human cortical development during childhood through early adulthood,Rapoport,Judith L. Rapoport;Liv S. Clasen;Nitin Gogtay;Arthur W. Toga;A. Catherine Vaituzis;Kiralee M. Hayashi;Leslie Lusk;Tom F. Nugent;Paul M. Thompson;David H. Herman;Jay N. Giedd;Deanna Greenstein,2004-05-21,3330,Proceedings of the National Academy of Sciences of the United States of America,8174-8179,10.1073/pnas.0402680101,15148381,2542597718,"('2-s2.0-2542597718', 'Rapoport')",Article,,https://api.elsevier.com/content/abstract/scopus_id/2542597718,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=2542597718&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=2542597718&origin=inward +Developmental trajectories of brain volume abnormalities in children and adolescents with attention-deficit/hyperactivity disorder,Rapoport,Christen L. Ebens;Liv S. Clasen;Judith L. Rapoport;Patti P. Lee;Regina S. James;Alex Zijdenbos;F. Xavier Castellanos;James M. Walter;Alan C. Evans;Neal O. Jeffries;Jonathan D. Blumenthal;Wendy Sharp;Jay N. Giedd;Deanna K. Greenstein,2002-10-09,1116,Journal of the American Medical Association,1740-1748,10.1001/jama.288.14.1740,12365958,0037048693,"('2-s2.0-0037048693', 'Rapoport')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/0037048693,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0037048693&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0037048693&origin=inward +Why do many psychiatric disorders emerge during adolescence?,Rapoport,Matcheri Keshavan;Jay N. Giedd;Tomáš Paus,2008-12-01,1335,Nature Reviews Neuroscience,947-957,10.1038/nrn2513,19002191,56549127348,"('2-s2.0-56549127348', 'Rapoport')",Review,CIHR,https://api.elsevier.com/content/abstract/scopus_id/56549127348,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=56549127348&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=56549127348&origin=inward +Structural magnetic resonance imaging of the adolescent brain,Rapoport,Jay N. Giedd,2004-01-01,1015,Annals of the New York Academy of Sciences,77-85,10.1196/annals.1308.009,15251877,3042749798,"('2-s2.0-3042749798', 'Rapoport')",Conference Paper,,https://api.elsevier.com/content/abstract/scopus_id/3042749798,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=3042749798&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=3042749798&origin=inward +Intellectual ability and cortical development in children and adolescents,Shaw,A. Evans;P. Shaw;L. Clasen;R. Lenroot;D. Greenstein;N. Gogtay;J. Giedd;J. Rapoport;J. Lerch,2006-03-30,998,Nature,676-679,10.1038/nature04513,16572172,33645453807,"('2-s2.0-33645453807', 'Shaw')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/33645453807,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33645453807&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33645453807&origin=inward +Structural and functional brain development and its relation to cognitive development,Shaw,Kathleen M. Thomas;Jay N. Giedd;B. J. Casey,2000-01-01,972,Biological Psychology,241-257,10.1016/S0301-0511(00)00058-2,11035225,0034306447,"('2-s2.0-0034306447', 'Shaw')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/0034306447,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0034306447&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0034306447&origin=inward +Neurodevelopmental trajectories of the human cerebral cortex,Shaw,Noor J. Kabani;Judith L. Rapoport;Nitin Gogtay;Steve P. Wise;Alan Evans;Kristen Eckstrand;Rhoshel Lenroot;Jason P. Lerch;Philip Shaw;Liv Clasen;Jay N. Giedd;Deanna Greenstein,2008-04-02,997,Journal of Neuroscience,3586-3594,10.1523/JNEUROSCI.5309-07.2008,18385317,43649097736,"('2-s2.0-43649097736', 'Shaw')",Article,,https://api.elsevier.com/content/abstract/scopus_id/43649097736,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=43649097736&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=43649097736&origin=inward +Brain development in children and adolescents: Insights from anatomical magnetic resonance imaging,Shaw,Jay N. Giedd;Rhoshel K. Lenroot,2006-09-01,1021,Neuroscience and Biobehavioral Reviews,718-729,10.1016/j.neubiorev.2006.06.001,16887188,33747885370,"('2-s2.0-33747885370', 'Shaw')",Review,,https://api.elsevier.com/content/abstract/scopus_id/33747885370,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33747885370&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33747885370&origin=inward +Growth patterns in the developing brain detected by using continuum mechanical tensor maps,Shaw,Jay N. Gledd;Arthur W. Toga;Paul M. Thompson;David MacDonald;Alan C. Evans;Roger P. Woods,2000-03-09,673,Nature,190-193,10.1038/35004593,10724172,0034624843,"('2-s2.0-0034624843', 'Shaw')",Article,,https://api.elsevier.com/content/abstract/scopus_id/0034624843,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0034624843&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0034624843&origin=inward +Sexual dimorphism of brain developmental trajectories during childhood and adolescence,Shaw,Gregory L. Wallace;Liv S. Clasen;Nitin Gogtay;Elizabeth Molloy Wells;Jason Lerch;Alex P. Zijdenbos;Rhoshel K. Lenroot;Paul M. Thompson;Alan C. Evans;Jonathan D. Blumenthal;Jay N. Giedd;Deanna K. Greenstein,2007-07-15,723,NeuroImage,1065-1073,10.1016/j.neuroimage.2007.03.053,17513132,34347240342,"('2-s2.0-34347240342', 'Shaw')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/34347240342,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34347240342&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34347240342&origin=inward +Brain structural abnormalities in young children with autism spectrum disorder,Shaw,K. R. Maravilla;E. H. Aylward;S. D. Friedman;B. F. Sparks;D. Echelard;J. Munson;G. Dawson;A. A. Artru;D. W. Shaw;S. R. Dager;J. N. Giedd,2002-07-23,637,Neurology,184-192,10.1212/WNL.59.2.184,12136055,0037162380,"('2-s2.0-0037162380', 'Shaw')",Article,,https://api.elsevier.com/content/abstract/scopus_id/0037162380,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0037162380&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0037162380&origin=inward +The Teen Brain: Insights from Neuroimaging,Shaw,Jay N. Giedd,2008-04-01,473,Journal of Adolescent Health,335-343,10.1016/j.jadohealth.2008.01.007,18346658,40749109804,"('2-s2.0-40749109804', 'Shaw')",Review,,https://api.elsevier.com/content/abstract/scopus_id/40749109804,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=40749109804&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=40749109804&origin=inward +Mapping anatomical correlations across cerebral cortex (MACACC) using cortical thickness from MRI,Shaw,W. Philip Shaw;Rhoshel K. Lenroot;Jay Giedd;Jason P. Lerch;Alan C. Evans;Keith Worsley;Deanna K. Greenstein,2006-07-01,346,NeuroImage,993-1003,10.1016/j.neuroimage.2006.01.042,16624590,33744902596,"('2-s2.0-33744902596', 'Shaw')",Article,,https://api.elsevier.com/content/abstract/scopus_id/33744902596,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33744902596&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33744902596&origin=inward +"Mapping cortical change in Alzheimer's disease, brain development, and schizophrenia",Rapoport,Judith L. Rapoport;Arthur W. Toga;Nitin Gogtay;Stephen E. Rose;Yalin Wang;Andrew L. Janke;Kiralee M. Hayashi;James Semple;David M. Doddrell;Theo G.M. Van Erp;Greig I. De Zubicaray;Paul M. Thompson;Elizabeth R. Sowell;Jay N. Giedd;Tyrone D. Cannon,2004-11-08,300,NeuroImage,,10.1016/j.neuroimage.2004.07.071,15501091,7044253600,"('2-s2.0-7044253600', 'Rapoport')",Conference Paper,NIA,https://api.elsevier.com/content/abstract/scopus_id/7044253600,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=7044253600&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=7044253600&origin=inward +Anatomical MRI of the developing human brain: What have we learned?,Rapoport,Jan K. Buitelaar;Sarah Durston;B. J. Casey;Herman Van Engeland;Jay N. Giedd;Hilleke E. Hulshoff Pol,2001-01-01,310,Journal of the American Academy of Child and Adolescent Psychiatry,1012-1020,10.1097/00004583-200109000-00009,11556624,0034875926,"('2-s2.0-0034875926', 'Rapoport')",Article,,https://api.elsevier.com/content/abstract/scopus_id/0034875926,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0034875926&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0034875926&origin=inward +Childhood neglect is associated with reduced corpus callosum area,Rapoport,Nathalie L. Dumont;Catherine Vaituzis;Martin H. Teicher;Yutaka Ito;Jay N. Giedd;Susan L. Andersen,2004-07-15,313,Biological Psychiatry,80-85,10.1016/j.biopsych.2004.03.016,15231439,3042606335,"('2-s2.0-3042606335', 'Rapoport')",Article,NIDA,https://api.elsevier.com/content/abstract/scopus_id/3042606335,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=3042606335&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=3042606335&origin=inward +How does your cortex grow?,Raznahan,Gregory L. Wallace;Phillip Shaw;Nitin Gogtay;Dede Greenstein;Mike Stockman;Armin Raznahan;Francois Lalonde;Liv Clasen;Jay N. Giedd,2011-05-11,361,Journal of Neuroscience,7174-7177,10.1523/JNEUROSCI.0054-11.2011,21562281,79956325555,"('2-s2.0-79956325555', 'Raznahan')",Article,,https://api.elsevier.com/content/abstract/scopus_id/79956325555,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79956325555&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79956325555&origin=inward +Brain imaging of attention deficit/hyperactivity disorder,Raznahan,F. Xavier Castellanos;Jay N. Giedd;Elizabeth Molloy;Jonathan Blumenthal,2001-01-01,278,Annals of the New York Academy of Sciences,33-49,10.1111/j.1749-6632.2001.tb05772.x,11462751,0034952122,"('2-s2.0-0034952122', 'Raznahan')",Review,NIMH,https://api.elsevier.com/content/abstract/scopus_id/0034952122,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0034952122&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0034952122&origin=inward +Transitions into underage and problem drinking: Developmental processes and mechanisms between 10 and 15 years of age,Pine,Michael Windle;Jane D. Brown;Andrew J. Fuligni;Ronald E. Dahl;Daniel Pine;Adrian Angold;Linda P. Spear;Jay Giedd;Greg T. Smith,2008-04-01,263,Pediatrics,,10.1542/peds.2007-2243C,18381494,43549089992,"('2-s2.0-43549089992', 'Pine')",Conference Paper,,https://api.elsevier.com/content/abstract/scopus_id/43549089992,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=43549089992&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=43549089992&origin=inward +Dynamic mapping of normal human hippocampal development,Rapoport,Judith L. Rapoport;Arthur W. Toga;Nitin Gogtay;Kiralee M. Hayashi;Tom F. Nugent;Paul M. Thompson;David H. Herman;Liv Clasen;Anna Ordonez;Jay N. Giedd;Deanna Greenstein,2006-11-06,277,Hippocampus,664-672,10.1002/hipo.20193,16826559,33750449331,"('2-s2.0-33750449331', 'Rapoport')",Article,,https://api.elsevier.com/content/abstract/scopus_id/33750449331,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33750449331&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33750449331&origin=inward +Sex differences in the adolescent brain,Rapoport,Jay N. Giedd;Rhoshel K. Lenroot,2010-02-01,267,Brain and Cognition,46-55,10.1016/j.bandc.2009.10.008,19913969,72649104366,"('2-s2.0-72649104366', 'Rapoport')",Review,,https://api.elsevier.com/content/abstract/scopus_id/72649104366,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=72649104366&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=72649104366&origin=inward +MRI assessment of children with obsessive-compulsive disorder or tics associated with streptococcal infection,Rapoport,Judith L. Rapoport;Susan E. Swedo;Marjorie A. Garvey;Susan Perlmutter;Jay N. Giedd,2000-02-01,201,American Journal of Psychiatry,281-283,10.1176/appi.ajp.157.2.281,10671403,0033950798,"('2-s2.0-0033950798', 'Rapoport')",Article,,https://api.elsevier.com/content/abstract/scopus_id/0033950798,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0033950798&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0033950798&origin=inward +Differences in genetic and environmental influences on the human cerebral cortex associated with development during childhood and adolescence,Rapoport,Gregory L. Wallace;Sarah J. Ordaz;Kenneth S. Kendler;Rhoshel K. Lenroot;Michael C. Neale;Jason P. Lerch;Alan C. Evans;Jay N. Giedd;James E. Schmitt,2009-01-01,214,Human Brain Mapping,163-174,10.1002/hbm.20494,18041741,58149340253,"('2-s2.0-58149340253', 'Rapoport')",Article,,https://api.elsevier.com/content/abstract/scopus_id/58149340253,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=58149340253&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=58149340253&origin=inward +Cortical morphology in children and adolescents with different apolipoprotein E gene polymorphisms: an observational study,Shaw,Judith L. Rapoport;Kristin N. Taylor;Alan Evans;A. Blythe Rose;Jens C. Pruessner;Jason P. Lerch;Philip Shaw;Liv Clasen;Jay N. Giedd;Deanna Greenstein,2007-06-01,208,Lancet Neurology,494-500,10.1016/S1474-4422(07)70106-0,17509484,34248324435,"('2-s2.0-34248324435', 'Shaw')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/34248324435,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34248324435&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34248324435&origin=inward +Cerebellum development during childhood and adolescence: A longitudinal morphometric MRI study,Shaw,Ronald Pierson;Rhoshel K. Lenroot;Lan Tran;Henning Tiemeier;Jay N. Giedd;Deanna K. Greenstein,2010-01-01,231,NeuroImage,63-70,10.1016/j.neuroimage.2009.08.016,19683586,70349962939,"('2-s2.0-70349962939', 'Shaw')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/70349962939,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=70349962939&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=70349962939&origin=inward +Puberty-related influences on brain development,Shaw,Gregory L. Wallace;Liv S. Clasen;Julia W. Tossell;Dinggang Shen;George P. Chrousos;Catherine Stayer;Dede Greenstein;Sarah Ordaz;Carole A. Samango-Sprouse;Christos Davatzikos;Deborah Merke;Rhoshel Lenroot;Elizabeth A. Molloy;Jay N. Giedd;Jonathan D. Blumenthal,2006-07-25,187,Molecular and Cellular Endocrinology,154-162,10.1016/j.mce.2006.04.016,16765510,33745927160,"('2-s2.0-33745927160', 'Shaw')",Article,,https://api.elsevier.com/content/abstract/scopus_id/33745927160,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33745927160&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33745927160&origin=inward +Adolescent Maturity and the Brain: The Promise and Pitfalls of Neuroscience Research in Adolescent Health Policy,Shaw,Robert W. Blum;Jay N. Giedd;Sara B. Johnson,2009-09-01,236,Journal of Adolescent Health,216-221,10.1016/j.jadohealth.2009.05.016,19699416,68749110681,"('2-s2.0-68749110681', 'Shaw')",Review,,https://api.elsevier.com/content/abstract/scopus_id/68749110681,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=68749110681&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=68749110681&origin=inward +Anatomical brain magnetic resonance imaging of typically developing children and adolescents,Shaw,Gregory L. Wallace;Samantha L. White;Rhoshel K. Lenroot;Nancy R. Lee;Mark J. Celano;Jay N. Giedd;Francois M. Lalonde,2009-01-01,183,Journal of the American Academy of Child and Adolescent Psychiatry,465-470,10.1097/CHI.0b013e31819f2715,19395901,67650308858,"('2-s2.0-67650308858', 'Shaw')",Article,,https://api.elsevier.com/content/abstract/scopus_id/67650308858,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=67650308858&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=67650308858&origin=inward +Cortical development in typically developing children with symptoms of hyperactivity and impulsivity: Support for a dimensional view of attention deficit hyperactivity disorder,Shaw,Maria Liverpool;Alan Evans;Wendy Sharp;Mary Gilliam;Meaghan Malek;Jay Giedd;Philip Shaw;Judith Rapoport;Catherine Weddle;Deanna Greenstein,2011-02-01,189,American Journal of Psychiatry,143-151,10.1176/appi.ajp.2010.10030385,21159727,79952727568,"('2-s2.0-79952727568', 'Shaw')",Article,,https://api.elsevier.com/content/abstract/scopus_id/79952727568,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79952727568&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79952727568&origin=inward +Longitudinally mapping the influence of sex and androgen signaling on the dynamics of human cortical maturation in adolescence,Raznahan,Judith L. Rapoport;Yohan Lee;Nitin Gogtay;Dede Greenstein;Anjene Addington;Reva Stidd;Armin Raznahan;Robert Long;Liv Clasen;Jay N. Giedd,2010-09-28,171,Proceedings of the National Academy of Sciences of the United States of America,16988-16993,10.1073/pnas.1006025107,20841422,78049277844,"('2-s2.0-78049277844', 'Raznahan')",Article,MRC,https://api.elsevier.com/content/abstract/scopus_id/78049277844,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=78049277844&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=78049277844&origin=inward +Patterns of coordinated anatomical change in human cortical development: A longitudinal neuroimaging study of maturational coupling,Raznahan,Gregory L. Wallace;Dede Greenstein;Phillip W. Shaw;Michael Stockman;Armin Raznahan;Jason P. Lerch;Nancy Lee;Jay N. Giedd;Liv Clasen,2011-12-08,172,Neuron,873-884,10.1016/j.neuron.2011.09.028,22153381,83255194563,"('2-s2.0-83255194563', 'Raznahan')",Article,,https://api.elsevier.com/content/abstract/scopus_id/83255194563,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=83255194563&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=83255194563&origin=inward +The convergence of maturational change and structural covariance in human cortical networks,Raznahan,Armin Raznahan;Aaron Alexander-Bloch;Ed Bullmore;Jay Giedd,2013-02-13,195,Journal of Neuroscience,2889-2899,10.1523/JNEUROSCI.3554-12.2013,23407947,84873694011,"('2-s2.0-84873694011', 'Raznahan')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/84873694011,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84873694011&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84873694011&origin=inward +The anatomical distance of functional connections predicts brain network topology in health and schizophrenia,Rapoport,Nitin Gogtay;François Lalonde;Edward T. Bullmore;Reva Stidd;Jay Giedd;Petra E. Vértes;Aaron F. Alexander-Bloch;Judith Rapoport;Liv Clasen,2013-01-01,172,Cerebral Cortex,127-138,10.1093/cercor/bhr388,22275481,84870818294,"('2-s2.0-84870818294', 'Rapoport')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/84870818294,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84870818294&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84870818294&origin=inward +Klinefelter syndrome: Expanding the phenotype and identifying new research directions,Rapoport,Catherine Staessen;Jay Giedd;Huntingdon F. Willard;Terry Hassold;Bonnie Brinton;Carole Samango-Sprouse;Ronald S. Swerdloff;Heino F.L. Meyer-Bahlburg;Judith G. Hall;John M. Graham;C. Alvin Paulsen;Alan Rogol;Adrian S. Dobs;Dan Geschwind;Joe Leigh Simpson;Kyle Boone;Wael Salameh;Felix De La Cruz;Melissa Aylstock;Niels E. Skakkebaek,2003-11-01,141,Genetics in Medicine,460-468,10.1097/01.GIM.0000095626.54201.D0,14614399,10744225919,"('2-s2.0-10744225919', 'Rapoport')",Review,,https://api.elsevier.com/content/abstract/scopus_id/10744225919,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=10744225919&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=10744225919&origin=inward +Dynamically spreading frontal and cingulate deficits mapped in adolescents with schizophrenia,Rapoport,Judith L. Rapoport;Arthur W. Toga;Yasaman Alaghband;Lauren E. McLemore;Nitin Gogtay;Yihong Sui;Kiralee M. Hayashi;Rob Nicolson;Jonathan Blumenthal;Peter Gochman;Paul M. Thompson;Jay N. Giedd;Christine N. Vidal;Jennifer A. Geaga,2006-01-01,121,Archives of General Psychiatry,25-34,10.1001/archpsyc.63.1.25,16389194,29844439581,"('2-s2.0-29844439581', 'Rapoport')",Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/29844439581,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=29844439581&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=29844439581&origin=inward +Identification of genetically mediated cortical networks: A multivariate study of pediatric twins and siblings,Rapoport,J. E. Schmitt;J. P. Lerch;S. Ordaz;G. L. Wallace;K. N. Taylor;M. C. Neale;J. N. Giedd;K. S. Kendler;R. K. Lenroot;N. Kabani;D. Greenstein,2008-08-01,128,Cerebral Cortex,1737-1747,10.1093/cercor/bhm211,18234689,47649122268,"('2-s2.0-47649122268', 'Rapoport')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/47649122268,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=47649122268&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=47649122268&origin=inward +Childhood onset schizophrenia: Cortical brain abnormalities as young adults,Shaw,Nitin Gogtay;Jason Lerch;Peter Gochman;Deanna Greenstein;Philip Shaw;Liv Clasen;Judith Rapoport;Jay Giedd,2006-11-01,116,Journal of Child Psychology and Psychiatry and Allied Disciplines,1003-1012,10.1111/j.1469-7610.2006.01658.x,17073979,33750395407,"('2-s2.0-33750395407', 'Shaw')",Article,,https://api.elsevier.com/content/abstract/scopus_id/33750395407,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33750395407&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33750395407&origin=inward +A pediatric twin study of brain morphometry,Shaw,Gregory L. Wallace;Liv S. Clasen;Essi Viding;Sarah Ordaz;Michael A. Rosenthal;J. Eric Schmitt;Kenneth S. Kendler;Michael C. Neale;Rhoshel Lenroot;Elizabeth A. Molloy;Jay N. Giedd,2006-11-01,120,Journal of Child Psychology and Psychiatry and Allied Disciplines,987-993,10.1111/j.1469-7610.2006.01676.x,17073977,33750413136,"('2-s2.0-33750413136', 'Shaw')",Article,,https://api.elsevier.com/content/abstract/scopus_id/33750413136,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33750413136&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33750413136&origin=inward +Longitudinal four-dimensional mapping of subcortical anatomy in human development,Raznahan,Liv S. Clasen;Mallar M. Chakravarty;Armin Raznahan;Jon Pipitone;Jason P. Lerch;Phillip W. Shaw;Jay N. Giedd;Deanna Greenstein;Rebecca Berman,2014-01-28,154,Proceedings of the National Academy of Sciences of the United States of America,1592-1597,10.1073/pnas.1316911111,24474784,84893429469,"('2-s2.0-84893429469', 'Raznahan')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84893429469,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84893429469&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84893429469&origin=inward +Developmental changes in the structure of the social brain in late childhood and adolescence,Raznahan,Liv S. Clasen;Kathryn L. Mills;Sarah Jayne Blakemore;Francois Lalonde;Jay N. Giedd,2014-01-01,145,Social Cognitive and Affective Neuroscience,123-131,10.1093/scan/nss113,23051898,84891314298,"('2-s2.0-84891314298', 'Raznahan')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/84891314298,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84891314298&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84891314298&origin=inward +XXY (Klinefelter syndrome): A pediatric quantitative brain magnetic resonance imaging case-control study,Raznahan,Gregory L. Wallace;Liv S. Clasen;Julia W. Tossell;Elizabeth Molloy Wells;Catherine Stayer;Carole A. Samango-Sprouse;Rhoshel K. Lenroot;Jean E. Nelson;Jason P. Lerch;Alan C. Evans;Jay N. Giedd;Jonathan D. Blumenthal,2007-01-01,97,Pediatrics,,10.1542/peds.2005-2969,17200249,33846914971,"('2-s2.0-33846914971', 'Raznahan')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/33846914971,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33846914971&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33846914971&origin=inward +Quantitative morphology of the caudate and putamen in patients with cocaine dependence,Raznahan,J. H. Krystal;T. R. Kosten;C. Gottschalk;L. K. Jacobsen;J. N. Giedd,2001-03-21,92,American Journal of Psychiatry,486-489,10.1176/appi.ajp.158.3.486,11229995,0035092027,"('2-s2.0-0035092027', 'Raznahan')",Article,,https://api.elsevier.com/content/abstract/scopus_id/0035092027,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0035092027&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0035092027&origin=inward +Children with classic congenital adrenal hyperplasia have decreased amygdala volume: Potential prenatal and postnatal hormonal effects,Raznahan,George P. Chrousos;A. Catherine Vaituzis;Margaret F. Keil;Deborah P. Merke;Jeremy D. Fields;Jay N. Giedd,2003-04-01,89,Journal of Clinical Endocrinology and Metabolism,1760-1765,10.1210/jc.2002-021730,12679470,0038697900,"('2-s2.0-0038697900', 'Raznahan')",Article,,https://api.elsevier.com/content/abstract/scopus_id/0038697900,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0038697900&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0038697900&origin=inward +Cerebellar vermal volumes and behavioral correlates in children with autism spectrum disorder,Raznahan,Sara Jane Webb;Stephen R. Dager;Dennis W.W. Shaw;Bobbi Faun Sparks;Geraldine Dawson;Seth D. Friedman;Jay Giedd,2009-04-30,92,Psychiatry Research - Neuroimaging,61-67,10.1016/j.pscychresns.2008.06.001,19243924,62149117941,"('2-s2.0-62149117941', 'Raznahan')",Article,NICHD,https://api.elsevier.com/content/abstract/scopus_id/62149117941,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=62149117941&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=62149117941&origin=inward +Corpus callosum morphometrics in young children with autism spectrum disorder,Raznahan,Bobbi F. Sparks;Alan A. Artru;Inbal Boger-Megiddo;Stephen R. Dager;Dennis W.W. Shaw;Geraldine Dawson;Seth D. Friedman;Jay N. Giedd,2006-08-01,77,Journal of Autism and Developmental Disorders,733-739,10.1007/s10803-006-0121-2,16625438,33746639780,"('2-s2.0-33746639780', 'Raznahan')",Article,NICHD,https://api.elsevier.com/content/abstract/scopus_id/33746639780,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33746639780&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33746639780&origin=inward +Anatomic magnetic resonance imaging of the developing child and adolescent brain and effects of genetic variation,Raznahan,Gregory L. Wallace;Aaron Alexander-Bloch;Maria Liverpool;Rhoshel K. Lenroot;Nancy R. Lee;Francois Lalonde;Michael Stockman;Catherine Weddle;Jay N. Giedd,2010-12-01,82,Neuropsychology Review,349-361,10.1007/s11065-010-9151-9,21069466,79951674630,"('2-s2.0-79951674630', 'Raznahan')",Review,NIMH,https://api.elsevier.com/content/abstract/scopus_id/79951674630,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79951674630&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79951674630&origin=inward +Children experience cognitive decline despite reversal of brain atrophy one year after resolution of Cushing syndrome,Raznahan,Sarah L. Mehlinger;George P. Chrousos;E. A. Wiggs;A. Catherine Vaituzis;Margaret F. Keil;Deborah P. Merke;Erin Rawson;Constantine A. Stratakis;Stuart Holzer;Jay N. Giedd,2005-05-01,84,Journal of Clinical Endocrinology and Metabolism,2531-2536,10.1210/jc.2004-2488,15741254,21044458995,"('2-s2.0-21044458995', 'Raznahan')",Article,,https://api.elsevier.com/content/abstract/scopus_id/21044458995,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=21044458995&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=21044458995&origin=inward +Automated morphometric study of brain variation in XXY males,Raznahan,Dinggang Shen;Dengfeng Liu;Christos Davatzikos;Hong Liu;Liv Clasen;Jay Giedd,2004-10-01,69,NeuroImage,648-653,10.1016/j.neuroimage.2004.08.018,15488414,5744220126,"('2-s2.0-5744220126', 'Raznahan')",Article,,https://api.elsevier.com/content/abstract/scopus_id/5744220126,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=5744220126&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=5744220126&origin=inward +Structural MRI and Brain Development,Rapoport,Judith L. Rapoport;Arthur W. Toga;Nitin Gogtay;Alex Leow;Kiralee M. Hayashi;Rob Nicolson;Paul M. Thompson;Elizabeth R. Sowell;Jay N. Giedd;Christine N. Vidal,2005-12-01,72,International Review of Neurobiology,285-323,10.1016/S0074-7742(05)67009-2,16291026,33646366688,"('2-s2.0-33646366688', 'Rapoport')",Review,NIA,https://api.elsevier.com/content/abstract/scopus_id/33646366688,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33646366688&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33646366688&origin=inward +Morphological alteration of temporal lobe gray matter in dyslexia: An MRI study,Rapoport,Anil J. Patwardhan;Allan L. Reiss;J. Eric Schmitt;Stephan Eliez;Judith M. Rumsey;Jay N. Giedd,2000-01-01,65,Journal of Child Psychology and Psychiatry and Allied Disciplines,637-644,10.1111/1469-7610.00650,10946755,0033925811,"('2-s2.0-0033925811', 'Rapoport')",Article,,https://api.elsevier.com/content/abstract/scopus_id/0033925811,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0033925811&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0033925811&origin=inward +Reduced brain size and gyrification in the brains of dyslexic patients,Rapoport,Judith M. Rumsey;Julio Araque;Jay Giedd;Manuel F. Casanova,2004-01-01,62,Journal of Child Neurology,275-281,10.1177/088307380401900407,15163094,2442677843,"('2-s2.0-2442677843', 'Rapoport')",Article,,https://api.elsevier.com/content/abstract/scopus_id/2442677843,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=2442677843&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=2442677843&origin=inward +Review of twin and family studies on neuroanatomic phenotypes and typical neurodevelopment,Rapoport,J. Eric Schmitt;Kenneth S. Kendler;Michael C. Neale;William S. Kremen;Lisa T. Eyler;Jay N. Giedd,2007-10-01,66,Twin Research and Human Genetics,683-694,10.1375/twin.10.5.683,17903108,35348991547,"('2-s2.0-35348991547', 'Rapoport')",Review,NIH,https://api.elsevier.com/content/abstract/scopus_id/35348991547,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=35348991547&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=35348991547&origin=inward +Basal ganglia morphometry and repetitive behavior in young children with autism spectrum disorder,Rapoport,Bobbi F. Sparks;Matthew Bryan;Stephen R. Dager;Dennis W.W. Shaw;Geraldine Dawson;Annette Estes;Jay N. Giedd;Seth Friedman,2011-06-01,83,Autism Research,212-220,10.1002/aur.193,21480545,79958107525,"('2-s2.0-79958107525', 'Rapoport')",Article,,https://api.elsevier.com/content/abstract/scopus_id/79958107525,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79958107525&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79958107525&origin=inward +The changing impact of genes and environment on brain development during childhood and adolescence: Initial findings from a neuroimaging study of pediatric twins,Rapoport,Jay N. Giedd;Rhoshel K. Lenroot,2008-10-20,71,Development and Psychopathology,1161-1175,10.1017/S0954579408000552,18838036,53849133096,"('2-s2.0-53849133096', 'Rapoport')",Article,,https://api.elsevier.com/content/abstract/scopus_id/53849133096,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=53849133096&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=53849133096&origin=inward +Reduced gyral window and corpus callosum size in autism: Possible macroscopic correlates of a minicolumnopathy,Rapoport,Manuel F. Casanova;Hossam Hassan;Andrew E. Switala;Ayman El-Baz;Judith M. Rumsey;Glenn Mannheim;Meghan Mott;Rachid Fahmi;Jay Giedd;Aly Farag,2009-05-01,58,Journal of Autism and Developmental Disorders,751-764,10.1007/s10803-008-0681-4,19148739,67349203979,"('2-s2.0-67349203979', 'Rapoport')",Article,,https://api.elsevier.com/content/abstract/scopus_id/67349203979,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=67349203979&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=67349203979&origin=inward +Structural brain magnetic resonance imaging of pediatric twins,Rapoport,Michael C. Neale;James Eric Schmitt;Jay N. Giedd,2007-06-01,57,Human Brain Mapping,474-481,10.1002/hbm.20403,17437295,34249795175,"('2-s2.0-34249795175', 'Rapoport')",Review,,https://api.elsevier.com/content/abstract/scopus_id/34249795175,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34249795175&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34249795175&origin=inward +A multivariate analysis of neuroanatomic relationships in a genetically informative pediatric sample,Rapoport,Gregory L. Wallace;Liv S. Clasen;Sarah Ordaz;Michael A. Rosenthal;J. Eric Schmitt;Kenneth S. Kendler;Michael C. Neale;Rhoshel Lenroot;Elizabeth A. Molloy;Jay N. Giedd;Jonathan D. Blumenthal,2007-03-01,51,NeuroImage,70-82,10.1016/j.neuroimage.2006.04.232,17208460,33846946830,"('2-s2.0-33846946830', 'Rapoport')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/33846946830,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33846946830&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33846946830&origin=inward +Bipolar disorder and attention-deficit/hyperactivity disorder in children and adolescents,Rapoport,Jay N. Giedd,2000-07-25,46,Journal of Clinical Psychiatry,31-34,,10826658,0033920114,"('2-s2.0-0033920114', 'Rapoport')",Review,,https://api.elsevier.com/content/abstract/scopus_id/0033920114,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0033920114&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0033920114&origin=inward +Motion artifact in magnetic resonance imaging: Implications for automated analysis,Rapoport,Alex Zijdenbos;Jay N. Giedd;Elizabeth Molloy;Jonathan D. Blumenthal,2002-01-01,58,NeuroImage,89-92,10.1006/nimg.2002.1076,,0036331288,"('2-s2.0-0036331288', 'Rapoport')",Article,,https://api.elsevier.com/content/abstract/scopus_id/0036331288,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0036331288&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0036331288&origin=inward +Trajectories of anatomic brain development as a phenotype,Shaw,Julia Tossell;Nitin Gogtay;Anjene Addington;Rhoshel K. Lenroot;Francois Lalonde;Philip Shaw;Samantha White;Mark Celano;Jay N. Giedd,2008-11-19,39,Novartis Foundation Symposium,101-112,,18497098,48849100747,"('2-s2.0-48849100747', 'Shaw')",Conference Paper,,https://api.elsevier.com/content/abstract/scopus_id/48849100747,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=48849100747&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=48849100747&origin=inward +Cortical anatomy in human X monosomy,Raznahan,David H. Skuse;J. P. Lerch;Dene Robertson;Armin Raznahan;Francois Lalonde;William Cutter;Judith Ross;Eileen Daly;Gerard S. Conway;Jay N. Giedd;Declan D.G.M. Murphy,2010-02-15,46,NeuroImage,2915-2923,10.1016/j.neuroimage.2009.11.057,19948228,73749084874,"('2-s2.0-73749084874', 'Raznahan')",Article,MRC,https://api.elsevier.com/content/abstract/scopus_id/73749084874,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=73749084874&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=73749084874&origin=inward +Effects of sex chromosome aneuploidies on brain development: Evidence from neuroimaging studies,Raznahan,Nancy Raitano Lee;Jay N. Giedd;Rhoshel K. Lenroot,2009-01-01,41,Developmental Disabilities Research Reviews,318-327,10.1002/ddrr.86,,73849105651,"('2-s2.0-73849105651', 'Raznahan')",Article,,https://api.elsevier.com/content/abstract/scopus_id/73849105651,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=73849105651&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=73849105651&origin=inward +The epigenesis of planum temporale asymmetry in twins,Raznahan,Alex Zijdenbos;Jonathan Blumenthal;Elizabeth A. Molloy;Christiana M. Leonard;Mark A. Eckert;Jay N. Giedd,2002-01-01,35,Cerebral Cortex,749-755,10.1093/cercor/12.7.749,12050086,0036086106,"('2-s2.0-0036086106', 'Raznahan')",Article,NIDCD,https://api.elsevier.com/content/abstract/scopus_id/0036086106,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0036086106&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0036086106&origin=inward +Variance decomposition of MRI-based covariance maps using genetically informative samples and structural equation modeling,Raznahan,Gregory L. Wallace;Sarah E. Ordaz;J. Eric Schmitt;Kenneth S. Kendler;Rhoshel K. Lenroot;Elizabeth C. Prom;Michael C. Neale;Jason P. Lerch;Alan C. Evans;Jay N. Giedd,2009-08-01,40,NeuroImage,56-64,10.1016/j.neuroimage.2008.06.039,18672072,67349236042,"('2-s2.0-67349236042', 'Raznahan')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/67349236042,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=67349236042&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=67349236042&origin=inward +Distinct cortical correlates of autistic versus antisocial traits in a longitudinal sample of typically developing youth,Shaw,Gregory L. Wallace;Liv S. Clasen;Rhoshel K. Lenroot;Armin Raznahan;Philip Shaw;Alex Martin;Jay N. Giedd;Nancy Raitano Lee,2012-04-04,40,Journal of Neuroscience,4856-4860,10.1523/JNEUROSCI.6214-11.2012,22492041,84859340821,"('2-s2.0-84859340821', 'Shaw')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84859340821,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84859340821&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84859340821&origin=inward +A case study of a multiply talented savant with an autism spectrum disorder: Neuropsychological functioning and brain morphometry,Shaw,Gregory L. Wallace;Jay N. Giedd;Francesca Happé,2009-01-01,32,Philosophical Transactions of the Royal Society B: Biological Sciences,1425-1432,10.1098/rstb.2008.0330,19528026,66149108700,"('2-s2.0-66149108700', 'Shaw')",Article,,https://api.elsevier.com/content/abstract/scopus_id/66149108700,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=66149108700&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=66149108700&origin=inward +Transitions into underage and problem drinking: Summary of developmental processes and mechanisms: Ages 10-15,Pine,Michael Windle;Jane D. Brown;Andrew J. Fuligni;Ronald E. Dahl;Daniel Pine;Adrian Angold;Linda P. Spear;Jay Giedd;Greg T. Smith,2009-10-20,32,Alcohol Research and Health,30-40,,,70349995040,"('2-s2.0-70349995040', 'Pine')",Article,,https://api.elsevier.com/content/abstract/scopus_id/70349995040,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=70349995040&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=70349995040&origin=inward +Effects of the Val158Met catechol-O-methyltransferase polymorphism on cortical structure in children and adolescents,Shaw,A. Evans;P. Shaw;G. L. Wallace;A. Addington;J. Rapoport;J. N. Giedd,2009-04-01,31,Molecular Psychiatry,348-349,10.1038/mp.2008.121,19308019,62849124525,"('2-s2.0-62849124525', 'Shaw')",Letter,,https://api.elsevier.com/content/abstract/scopus_id/62849124525,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=62849124525&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=62849124525&origin=inward +Dosage effects of X and y chromosomes on language and social functioning in children with supernumerary sex chromosome aneuploidies: Implications for idiopathic language impairment and autism spectrum disorders,Shaw,Gregory L. Wallace;Liv S. Clasen;Elizabeth I. Adeyemi;Katherine C. Lopez;Jay N. Giedd;Jonathan D. Blumenthal;Nancy Raitano Lee,2012-10-01,39,Journal of Child Psychology and Psychiatry and Allied Disciplines,1072-1081,10.1111/j.1469-7610.2012.02573.x,22827287,84867076609,"('2-s2.0-84867076609', 'Shaw')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84867076609,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84867076609&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84867076609&origin=inward +Autism Risk Gene MET Variation and Cortical Thickness in Typically Developing Children and Adolescents,Raznahan,Gregory L. Wallace;Yohan Lee;Alexis Hedrick;Armin Raznahan;Liv Clasen;Jay N. Giedd;Deanna Greenstein,2012-12-01,29,Autism Research,434-439,10.1002/aur.1256,23097380,84871442139,"('2-s2.0-84871442139', 'Raznahan')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84871442139,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84871442139&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84871442139&origin=inward +A twin study of intracerebral volumetric relationships,Raznahan,Gregory L. Wallace;Dede Greenstein;Sarah E. Ordaz;J. Eric Schmitt;Kenneth S. Kendler;Rhoshel K. Lenroot;Michael C. Neale;Liv Clasen;Jay N. Giedd,2010-03-01,24,Behavior Genetics,114-124,10.1007/s10519-010-9332-6,20112130,77949264840,"('2-s2.0-77949264840', 'Raznahan')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/77949264840,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77949264840&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77949264840&origin=inward +Mapping cortical anatomy in preschool aged children with autism using surface-based morphometry,Raznahan,Susan E. Swedo;Marta Gozzi;Sarah J. Spence;Armin Raznahan;Rhoshel Lenroot;Audrey Thurm;Jay N. Giedd;Allison Hanley,2013-01-07,31,NeuroImage: Clinical,111-119,10.1016/j.nicl.2012.10.005,,84871724113,"('2-s2.0-84871724113', 'Raznahan')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84871724113,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84871724113&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84871724113&origin=inward +The anatomy of mentalization: A view from developmental neuroimaging,Raznahan,Jay N. Giedd,2003-03-01,21,Bulletin of the Menninger Clinic,132-142,10.1521/bumc.67.2.132.23445,14604098,0141870005,"('2-s2.0-0141870005', 'Raznahan')",Conference Paper,,https://api.elsevier.com/content/abstract/scopus_id/0141870005,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0141870005&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0141870005&origin=inward +Effects of hormones and sex chromosomes on stress-influenced regions of the developing pediatric brain,Raznahan,Gregory L. Wallace;Liv S. Clasen;A. Catherine Vaituzis;Michael A. Rosenthal;Deborah P. Merke;A. Blythe Rose;Jeremy D. Fields;Jay N. Giedd,2004-01-01,21,Annals of the New York Academy of Sciences,231-233,10.1196/annals.1314.027,15677417,14544289969,"('2-s2.0-14544289969', 'Raznahan')",Conference Paper,,https://api.elsevier.com/content/abstract/scopus_id/14544289969,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=14544289969&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=14544289969&origin=inward +A bivariate twin study of regional brain volumes and verbal and nonverbal intellectual skills during childhood and adolescence,Raznahan,Gregory L. Wallace;Liv S. Clasen;Sarah E. Medland;Rhoshel K. Lenroot;Michael C. Neale;Elizabeth C. Prom-Wormley;Jay N. Giedd;Nancy Raitano Lee;James E. Schmitt,2010-03-01,21,Behavior Genetics,125-134,10.1007/s10519-009-9329-1,20112131,77949267592,"('2-s2.0-77949267592', 'Raznahan')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/77949267592,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77949267592&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77949267592&origin=inward +"Linking Adolescent Sleep, Brain Maturation, and Behavior",Raznahan,Jay N. Giedd,2009-10-01,20,Journal of Adolescent Health,319-320,10.1016/j.jadohealth.2009.07.007,19766933,70349101247,"('2-s2.0-70349101247', 'Raznahan')",Editorial,,https://api.elsevier.com/content/abstract/scopus_id/70349101247,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=70349101247&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=70349101247&origin=inward +Effects of image orientation on the comparability of pediatric brain volumes using three-dimensional MR data,Raznahan,Anil J. Patwardhan;Donald C. Rojas;Chris D. White;Bradley S. Peterson;Allan L. Reiss;Gary H. Glover;Stephan Eliez;Ilana S. Warsofsky;Jay N. Giedd,2001-05-26,18,Journal of Computer Assisted Tomography,452-457,10.1097/00004728-200105000-00020,11351198,0035002285,"('2-s2.0-0035002285', 'Raznahan')",Article,,https://api.elsevier.com/content/abstract/scopus_id/0035002285,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0035002285&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0035002285&origin=inward +Quantitative medial temporal lobe brain morphology and hypothalamic-pituitary-adrenal axis function in cocaine dependence: A preliminary report,Raznahan,Leslie K. Jacobsen;Thomas R. Kosten;Mary Jeanne Kreek;Christopher Gottschalk;Jay N. Giedd,2001-03-01,17,Drug and Alcohol Dependence,49-56,10.1016/S0376-8716(00)00159-9,11173167,0035283391,"('2-s2.0-0035283391', 'Raznahan')",Article,VA,https://api.elsevier.com/content/abstract/scopus_id/0035283391,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0035283391&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0035283391&origin=inward +Individual and population penalized regression splines for accelerated longitudinal designs,Raznahan,Nicholas Lange;Louise M. Ryan;Jay N. Giedd;Jaroslaw Harezlak,2005-12-01,19,Biometrics,1037-1048,10.1111/j.1541-0420.2005.00376.x,16401277,32644444942,"('2-s2.0-32644444942', 'Raznahan')",Article,,https://api.elsevier.com/content/abstract/scopus_id/32644444942,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=32644444942&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=32644444942&origin=inward +Increased white matter gyral depth in dyslexia: Implications for corticocortical connectivity,Raznahan,Manuel F. Casanova;Andrew E. Switala;Judith M. Rumsey;Ayman S. El-Baz;Jay Giedd,2010-01-01,16,Journal of Autism and Developmental Disorders,21-29,10.1007/s10803-009-0817-1,19609661,77249137696,"('2-s2.0-77249137696', 'Raznahan')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/77249137696,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77249137696&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77249137696&origin=inward +Are there differences in brain morphometry between twins and unrelated singletons? A pediatric MRI study,Raznahan,J. E. Schmitt;J. D. Blumenthal;L. S. Clasen;G. L. Wallace;R. K. Lenroot;S. J. Ordaz;J. N. Giedd,2010-04-01,16,"Genes, Brain and Behavior",288-295,10.1111/j.1601-183X.2009.00558.x,20100212,77950800300,"('2-s2.0-77950800300', 'Raznahan')",Article,,https://api.elsevier.com/content/abstract/scopus_id/77950800300,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77950800300&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77950800300&origin=inward +Magnetic resonance imaging study of brain asymmetries in dyslexic patients,Raznahan,Gregory C. Postel;James D. Christensen;Manuel F. Cassanova;Judith M. Ramsey;David L. Garver;Jay Giedd,2005-10-01,11,Journal of Child Neurology,842-847,10.1177/08830738050200101401,16417884,31144441383,"('2-s2.0-31144441383', 'Raznahan')",Article,,https://api.elsevier.com/content/abstract/scopus_id/31144441383,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=31144441383&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=31144441383&origin=inward +Corpus callosum shape analysis with application to dyslexia,Raznahan,Manuel F. Casanova;Emily L. Williams;Andrew E. Switala;Ayman El-Baz;Judith M. Rumsey;Ahmed Elnakib;Jay Giedd,2010-06-01,13,Translational Neuroscience,124-130,10.2478/v10134-010-0017-8,,79952347304,"('2-s2.0-79952347304', 'Raznahan')",Article,,https://api.elsevier.com/content/abstract/scopus_id/79952347304,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79952347304&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79952347304&origin=inward +"Brain morphological abnormalities in 49,XXXXY syndrome: A pediatric magnetic resonance imaging study",Raznahan,Liv S. Clasen;Rhoshel K. Lenroot;Eva H. Baker;Benjamin Wade;Jay N. Giedd;Jonathan D. Blumenthal;Nancy Raitano Lee,2013-02-12,13,NeuroImage: Clinical,197-203,10.1016/j.nicl.2013.01.003,,84873427415,"('2-s2.0-84873427415', 'Raznahan')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/84873427415,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84873427415&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84873427415&origin=inward +Allelic variation within the putative autism spectrum disorder risk gene homeobox A1 and cerebellar maturation in typically developing children and adolescents,Raznahan,Yohan Lee;Dede Greenstein;Ron Pierson;Armin Raznahan;Francois Lalonde;Catherine Vaituzis;Lan Tran;Liv Clasen;Henning Tiemeier;Jay N. Giedd;Susan Mackie,2012-04-01,9,Autism Research,93-100,10.1002/aur.238,22359339,84865338870,"('2-s2.0-84865338870', 'Raznahan')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84865338870,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84865338870&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84865338870&origin=inward +Quantitative morphology of the corpus callosum in obsessive-compulsive disorder,Rapoport,Judith Rapoport;Francois Lalonde;Anand Mattai;Katherine C. Lopez;Liv Clasen;Benjamin Wade;Jay N. Giedd,2013-04-30,8,Psychiatry Research - Neuroimaging,1-6,10.1016/j.pscychresns.2012.10.012,23453697,84875380678,"('2-s2.0-84875380678', 'Rapoport')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84875380678,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84875380678&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84875380678&origin=inward +Neuroimaging of pediatric neuropsychiatric disorders: Is a picture really worth a thousand words?,Rapoport,J. N. Giedd,2001-01-01,6,Archives of General Psychiatry,443-444,10.1001/archpsyc.58.5.443,11343522,0035019475,"('2-s2.0-0035019475', 'Rapoport')",Note,,https://api.elsevier.com/content/abstract/scopus_id/0035019475,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0035019475&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0035019475&origin=inward +Improved corpus callosum area measurements by analysis of adjoining parasagittal slices,Raznahan,Benjamin Seavey Cutler Wade;Michael Joseph McLaughlin;Armin Raznahan;Francois Lalonde;Jay Norman Giedd;Michael Stockman,2013-03-30,5,Psychiatry Research - Neuroimaging,221-225,10.1016/j.pscychresns.2012.05.004,23149042,84875364569,"('2-s2.0-84875364569', 'Raznahan')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84875364569,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84875364569&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84875364569&origin=inward +In this issue/abstract thinking: Inside the adolescent brain,Raznahan,Stacy S. Drury;Jay Giedd,2009-01-01,0,Journal of the American Academy of Child and Adolescent Psychiatry,677-678,10.1097/CHI.0b013e3181a5e413,19542819,68749109390,"('2-s2.0-68749109390', 'Raznahan')",Article,,https://api.elsevier.com/content/abstract/scopus_id/68749109390,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=68749109390&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=68749109390&origin=inward +Cortical brain development in schizophrenia: Insights from neuroimaging studies in childhood-onset schizophrenia,Raznahan,Nitin Gogtay,2008-01-01,80,Schizophrenia Bulletin,30-36,10.1093/schbul/sbm103,17906336,37149022852,"('2-s2.0-37149022852', 'Raznahan')",Review,,https://api.elsevier.com/content/abstract/scopus_id/37149022852,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=37149022852&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=37149022852&origin=inward +Human fronto-mesolimbic networks guide decisions about charitable donation,Raznahan,Matteo Pardini;Ricardo De Oliveira-Souza;Jordan Grafman;Frank Krueger;Jorge Moll;Roland Zahn,2006-10-17,507,Proceedings of the National Academy of Sciences of the United States of America,15623-15628,10.1073/pnas.0604475103,17030808,33750325819,"('2-s2.0-33750325819', 'Raznahan')",Article,,https://api.elsevier.com/content/abstract/scopus_id/33750325819,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33750325819&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33750325819&origin=inward +Human prefrontal cortex: Processing and representational perspectives,Raznahan,Jacqueline N. Wood;Jordan Grafman,2003-01-01,449,Nature Reviews Neuroscience,139-147,10.1038/nrn1033,12563285,0037315630,"('2-s2.0-0037315630', 'Raznahan')",Article,,https://api.elsevier.com/content/abstract/scopus_id/0037315630,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0037315630&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0037315630&origin=inward +Functional networks in emotional moral and nonmoral social judgments,Raznahan,Ivanei E. Bramati;Ricardo De Oliveira-Souza;Jorge Moll;Jordan Grafman,2002-01-01,316,NeuroImage,696-703,10.1006/nimg.2002.1118,,0036335669,"('2-s2.0-0036335669', 'Raznahan')",Article,,https://api.elsevier.com/content/abstract/scopus_id/0036335669,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0036335669&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0036335669&origin=inward +Social concepts are represented in the superior anterior temporal cortex,Raznahan,Griselda Garrido;Jordan Grafman;Frank Krueger;Edward D. Huey;Jorge Moll;Roland Zahn,2007-04-10,290,Proceedings of the National Academy of Sciences of the United States of America,6430-6435,10.1073/pnas.0607061104,17404215,34547511134,"('2-s2.0-34547511134', 'Raznahan')",Article,,https://api.elsevier.com/content/abstract/scopus_id/34547511134,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34547511134&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34547511134&origin=inward +Neural correlates of trust,Raznahan,Nikolaus Kriegeskorte;Jordan Grafman;Armin Heinecke;Maren Strenziok;Frank Krueger;Kevin McCabe;Jorge Moll;Roland Zahn,2007-12-11,226,Proceedings of the National Academy of Sciences of the United States of America,20084-20089,10.1073/pnas.0710103104,18056800,38049112572,"('2-s2.0-38049112572', 'Raznahan')",Article,,https://api.elsevier.com/content/abstract/scopus_id/38049112572,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=38049112572&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=38049112572&origin=inward +The neural basis of human social values: Evidence from functional MRI,Raznahan,Griselda Garrido;Jordan Grafman;Frank Krueger;Edward D. Huey;Jorge Moll;Mirella Paiva;Roland Zahn,2009-02-01,199,Cerebral Cortex,276-283,10.1093/cercor/bhn080,18502730,58449086165,"('2-s2.0-58449086165', 'Raznahan')",Article,BMBF,https://api.elsevier.com/content/abstract/scopus_id/58449086165,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=58449086165&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=58449086165&origin=inward +Apathy and disinhibition in frontotemporal dementia: Insights into their neural correlates,Raznahan,E. D. Huey;P. F. Nichelli;F. Krueger;G. Zamboni;J. Grafman,2008-09-02,168,Neurology,736-742,10.1212/01.wnl.0000324920.96835.95,18765649,54049108530,"('2-s2.0-54049108530', 'Raznahan')",Article,,https://api.elsevier.com/content/abstract/scopus_id/54049108530,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=54049108530&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=54049108530&origin=inward +The self as a moral agent: Linking the neural bases of social agency and moral sensitivity,Raznahan,Ivanei E. Bramati;Mirella L.M.F. Paiva;Ricardo de Oliveira-Souza;Jordan Grafman;Egas M.A. Caparelli-Daquer;Jorge Moll;Roland Zahn;Griselda J. Garrido,2007-01-01,150,Social Neuroscience,336-352,10.1080/17470910701392024,18633822,34447525749,"('2-s2.0-34447525749', 'Raznahan')",Article,CNPq,https://api.elsevier.com/content/abstract/scopus_id/34447525749,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34447525749&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34447525749&origin=inward +The roles of timing and task order during task switching,Raznahan,Etienne Koechlin;Jean Claude Dreher;Jordan Grafman;Syed Omar Ali,2002-01-01,134,NeuroImage,95-109,10.1006/nimg.2002.1169,12482070,0036741224,"('2-s2.0-0036741224', 'Raznahan')",Article,,https://api.elsevier.com/content/abstract/scopus_id/0036741224,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0036741224&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0036741224&origin=inward +Cognitive and neural foundations of religious belief,Raznahan,Michael Su;Dimitrios Kapogiannis;Aron K. Barbey;Jordan Grafman;Frank Krueger;Giovanna Zamboni,2009-03-24,151,Proceedings of the National Academy of Sciences of the United States of America,4876-4881,10.1073/pnas.0811717106,19273839,63849207252,"('2-s2.0-63849207252', 'Raznahan')",Article,,https://api.elsevier.com/content/abstract/scopus_id/63849207252,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=63849207252&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=63849207252&origin=inward +Dissociating the roles of the rostral anterior cingulate and the lateral prefrontal cortices in performing two tasks simultaneously or successively,Raznahan,Jean Claude Dreher;Jordan Grafman,2003-04-01,120,Cerebral Cortex,329-339,10.1093/cercor/13.4.329,12631562,0037379819,"('2-s2.0-0037379819', 'Raznahan')",Article,,https://api.elsevier.com/content/abstract/scopus_id/0037379819,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0037379819&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0037379819&origin=inward +The roles of the cerebellum and basal ganglia in timing and error prediction,Raznahan,Jean Claude Dreher;Jordan Grafman,2002-01-01,117,European Journal of Neuroscience,1609-1619,10.1046/j.1460-9568.2002.02212.x,12405975,0036428729,"('2-s2.0-0036428729', 'Raznahan')",Article,,https://api.elsevier.com/content/abstract/scopus_id/0036428729,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0036428729&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0036428729&origin=inward +Social conceptual impairments in frontotemporal lobar degeneration with right anterior temporal hypometabolism,Raznahan,Michael Tierney;Jordan Grafman;Edward D. Huey;Frank Krueger;Jorge Moll;Roland Zahn;Vijeth Iyengar,2009-03-01,119,Brain,604-616,10.1093/brain/awn343,19153155,64849090602,"('2-s2.0-64849090602', 'Raznahan')",Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/64849090602,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=64849090602&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=64849090602&origin=inward +Neural correlates of automatic beliefs about gender and race,Raznahan,Kristine M. Knutson;Charlotte F. Manly;Linda Mah;Jordan Grafman,2007-10-01,104,Human Brain Mapping,915-930,10.1002/hbm.20320,17133388,35148839423,"('2-s2.0-35148839423', 'Raznahan')",Article,,https://api.elsevier.com/content/abstract/scopus_id/35148839423,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=35148839423&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=35148839423&origin=inward +Social contracts and precautions activate different neurological systems: An fMRI investigation of deontic reasoning,Raznahan,Laurence Fiddick;Jordan Grafman;Maria Vittoria Spampinato,2005-12-01,69,NeuroImage,778-786,10.1016/j.neuroimage.2005.05.033,15994098,28244480421,"('2-s2.0-28244480421', 'Raznahan')",Article,,https://api.elsevier.com/content/abstract/scopus_id/28244480421,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=28244480421&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=28244480421&origin=inward +Medial prefrontal and subcortical mechanisms underlying the acquisition of motor and cognitive action sequences in humans,Raznahan,Yves Burnod;Adrian Danek;Etienne Koechlin;Jordan Grafman,2002-07-18,65,Neuron,371-381,10.1016/S0896-6273(02)00742-0,,0037130475,"('2-s2.0-0037130475', 'Raznahan')",Article,,https://api.elsevier.com/content/abstract/scopus_id/0037130475,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0037130475&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0037130475&origin=inward +Clinicopathologic features of frontotemporal dementia with Progranulin sequence variation,Wassermann,P. Pietrini;J. C. Troncoso;B. Ghetti;E. D. Huey;M. A. Baraibar;S. Spina;A. G. Barbeito;E. M. Wassermann;R. Vidal;J. R. Murrell;J. Grafman,2007-01-01,62,Neurology,820-827,10.1212/01.wnl.0000254460.31273.2d,17202431,34047224991,"('2-s2.0-34047224991', 'Wassermann')",Article,,https://api.elsevier.com/content/abstract/scopus_id/34047224991,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34047224991&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34047224991&origin=inward +Politics on the brain: an FMRI investigation.,Wassermann,Kristine M. Knutson;Jacqueline N. Wood;Maria V. Spampinato;Jordan Grafman,2006-01-01,60,Social neuroscience,25-40,10.1080/17470910600670603,17372621,33847043309,"('2-s2.0-33847043309', 'Wassermann')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/33847043309,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33847043309&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33847043309&origin=inward +Event frequency modulates the processing of daily life activities in human medial prefrontal cortex,Wassermann,Jordan Grafman;Armin Heinecke;Frank Krueger;Jorge Moll;Roland Zahn,2007-10-01,59,Cerebral Cortex,2346-2353,10.1093/cercor/bhl143,17190970,34948857902,"('2-s2.0-34948857902', 'Wassermann')",Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/34948857902,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34948857902&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34948857902&origin=inward +Brain activation in processing temporal sequence: An fMRI study,Wassermann,Kristine M. Knutson;Jacqueline N. Wood;Jordan Grafman,2004-01-01,53,NeuroImage,1299-1307,10.1016/j.neuroimage.2004.08.012,15589094,13844310732,"('2-s2.0-13844310732', 'Wassermann')",Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/13844310732,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=13844310732&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=13844310732&origin=inward +The hippocampal system mediates logical reasoning about familiar spatial environments,Wassermann,Vinod Goel;Jordan Grafman;Milan Makale,2004-05-01,60,Journal of Cognitive Neuroscience,654-664,10.1162/089892904323057362,15165354,2442437936,"('2-s2.0-2442437936', 'Wassermann')",Article,,https://api.elsevier.com/content/abstract/scopus_id/2442437936,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=2442437936&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=2442437936&origin=inward +Category-specific representations of social and nonsocial knowledge in the human prefrontal cortex,Wassermann,M. Makale;J. N. Wood;Jordan Grafman;S. G. Romero,2003-02-15,45,Journal of Cognitive Neuroscience,236-248,10.1162/089892903321208178,12676061,0037440872,"('2-s2.0-0037440872', 'Wassermann')",Article,,https://api.elsevier.com/content/abstract/scopus_id/0037440872,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0037440872&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0037440872&origin=inward +Distributed neural systems for temporal production: A functional MRI study,Wassermann,Gianpaolo Basso;Matthew Peterson;Jordan Grafman;Paolo Nichelli;Charles M. Wharton,2003-01-30,38,Brain Research Bulletin,405-411,10.1016/S0361-9230(02)00941-3,12507693,0037472345,"('2-s2.0-0037472345', 'Wassermann')",Article,,https://api.elsevier.com/content/abstract/scopus_id/0037472345,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0037472345&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0037472345&origin=inward +Head of the caudate nucleus is most vulnerable in Chorea - Acanthocytosis: A voxel-based morphometry study,Wassermann,Adrian Danek;Jordan Grafman;Jan Kassubek;Karsten Henkel;John Butman,2006-10-01,40,Movement Disorders,1728-1731,10.1002/mds.21046,16874760,33750966722,"('2-s2.0-33750966722', 'Wassermann')",Article,,https://api.elsevier.com/content/abstract/scopus_id/33750966722,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33750966722&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33750966722&origin=inward +"Representation of attitudinal knowledge: Role of prefrontal cortex, amygdala and parahippocampal gyrus",Wassermann,Kristine M. Knutson;Jacqueline N. Wood;Jordan Grafman;Stephen G. Romero,2005-01-01,31,Neuropsychologia,249-259,10.1016/j.neuropsychologia.2004.11.011,15707909,13544274265,"('2-s2.0-13544274265', 'Wassermann')",Conference Paper,,https://api.elsevier.com/content/abstract/scopus_id/13544274265,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=13544274265&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=13544274265&origin=inward +A role for right ventrolateral prefrontal cortex in reasoning about indeterminate relations,Wassermann,Jordan Grafman;Marina Nakic;Kris Knutson;Vinod Goel;Melanie Stollstorff,2009-11-01,37,Neuropsychologia,2790-2797,10.1016/j.neuropsychologia.2009.06.002,19523967,70249145763,"('2-s2.0-70249145763', 'Wassermann')",Article,,https://api.elsevier.com/content/abstract/scopus_id/70249145763,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=70249145763&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=70249145763&origin=inward +Psychological structure and neural correlates of event knowledge,Wassermann,Kristine M. Knutson;Jacqueline N. Wood;Jordan Grafman,2005-08-01,32,Cerebral Cortex,1155-1161,10.1093/cercor/bhh215,15563720,25444512196,"('2-s2.0-25444512196', 'Wassermann')",Article,,https://api.elsevier.com/content/abstract/scopus_id/25444512196,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=25444512196&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=25444512196&origin=inward +Fronto-parietal regulation of media violence exposure in adolescents: A multi-method study,Wassermann,Elke Van der meer;Gopikrishna Deshpande;Rhoshel K. Lenroot;Jordan Grafman;Maren Strenziok;Frank Krueger,2011-10-01,37,Social Cognitive and Affective Neuroscience,537-547,10.1093/scan/nsq079,20934985,79960942747,"('2-s2.0-79960942747', 'Wassermann')",Article,,https://api.elsevier.com/content/abstract/scopus_id/79960942747,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79960942747&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79960942747&origin=inward +Integral calculus problem solving: An fMRI investigation,Wassermann,Matteo Pardini;Jacqueline N. Wood;Jordan Grafman;Maria Vittoria Spampinato;Sinisa Pajevic;Frank Krueger;George H. Weiss;Steffen Landgraf,2008-07-16,30,NeuroReport,1095-1099,10.1097/WNR.0b013e328303fd85,18596607,49949115092,"('2-s2.0-49949115092', 'Wassermann')",Article,,https://api.elsevier.com/content/abstract/scopus_id/49949115092,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=49949115092&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=49949115092&origin=inward +Anosognosia for behavioral disturbances in frontotemporal dementia and corticobasal syndrome: A voxel-based morphometry study,Wassermann,K. M. Knutson;E. D. Huey;F. Krueger;G. Zamboni;J. Grafman,2010-02-01,31,Dementia and Geriatric Cognitive Disorders,88-96,10.1159/000255141,20150729,76149120432,"('2-s2.0-76149120432', 'Wassermann')",Article,,https://api.elsevier.com/content/abstract/scopus_id/76149120432,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=76149120432&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=76149120432&origin=inward +An fMRI investigation of the effects of belief in free will on third-party punishment,Wassermann,Frank Krueger;Jordan Grafman;Henrik Walter;Morris Hoffman,2014-08-01,30,Social Cognitive and Affective Neuroscience,1143-1149,10.1093/scan/nst092,23887810,84905697935,"('2-s2.0-84905697935', 'Wassermann')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84905697935,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84905697935&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84905697935&origin=inward +Observing social gestures: An fMRI study,Wassermann,Kristine M. Knutson;Erin M. McClellan;Jordan Grafman,2008-06-01,18,Experimental Brain Research,187-198,10.1007/s00221-008-1352-6,18483724,45449089254,"('2-s2.0-45449089254', 'Wassermann')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/45449089254,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=45449089254&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=45449089254&origin=inward +Developmental effects of aggressive behavior in male adolescents assessed with structural and functional brain imaging,Wassermann,Kristine M. Knutson;Rhoshel K. Lenroot;Armin Heinecke;Maren Strenziok;Frank Krueger;Jordan Grafman;Elke van der Meer,2011-01-01,17,Social Cognitive and Affective Neuroscience,2-11,10.1093/scan/nsp036,19770220,78751679930,"('2-s2.0-78751679930', 'Wassermann')",Article,,https://api.elsevier.com/content/abstract/scopus_id/78751679930,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=78751679930&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=78751679930&origin=inward +The frontopolar cortex mediates event knowledge complexity: A parametric functional MRI study,Wassermann,Thomas Morland;Aron K. Barbey;Jordan Grafman;Maria Vittoria Spampinato;Frank Krueger;Edward D. Huey,2009-08-05,18,NeuroReport,1093-1097,10.1097/WNR.0b013e32832e7ea5,19590392,68249110401,"('2-s2.0-68249110401', 'Wassermann')",Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/68249110401,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=68249110401&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=68249110401&origin=inward +Regional brain atrophy and impaired decision making on the Balloon Analog Risk Task in behavioral variant frontotemporal dementia,Wassermann,Jordan Grafman;Maren Strenziok;Frank Krueger;Sarah Pulaski;Giovanna Zamboni;Deborah Clawson,2011-06-01,17,Cognitive and Behavioral Neurology,59-67,10.1097/WNN.0b013e3182255a7c,21697710,79959975905,"('2-s2.0-79959975905', 'Wassermann')",Article,,https://api.elsevier.com/content/abstract/scopus_id/79959975905,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79959975905&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79959975905&origin=inward +Brain networks shaping religious belief,Wassermann,Gopikrishna Deshpande;Dimitrios Kapogiannis;Frank Krueger;Jordan Henry Grafman;Matthew P. Thornburg,2014-02-01,19,Brain Connectivity,70-79,10.1089/brain.2013.0172,24279687,84907284993,"('2-s2.0-84907284993', 'Wassermann')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84907284993,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84907284993&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84907284993&origin=inward +Interest in politics modulates neural activity in the amygdala and ventral striatum,Wassermann,Frank Krueger;Marta Gozzi;Giovanna Zamboni;Jordan Grafman,2010-11-01,16,Human Brain Mapping,1763-1771,10.1002/hbm.20976,20162603,78649602256,"('2-s2.0-78649602256', 'Wassermann')",Article,,https://api.elsevier.com/content/abstract/scopus_id/78649602256,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=78649602256&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=78649602256&origin=inward +Neural correlates of script event knowledge: A neuropsychological study following prefrontal injury,Wassermann,Jacqueline N. Wood;Michael Tierney;Laura A. Bidwell;Jordan Grafman,2005-01-01,12,Cortex,796-804,10.1016/S0010-9452(08)70298-3,16350660,28444499651,"('2-s2.0-28444499651', 'Wassermann')",Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/28444499651,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=28444499651&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=28444499651&origin=inward +Individual differences in posterior cortical volume correlate with proneness to pride and gratitude,Wassermann,Jorge Moll;Roland Zahn;Jordan Grafman;Griselda Garrido,2014-01-01,11,Social Cognitive and Affective Neuroscience,1676-1683,10.1093/scan/nst158,24106333,84928686467,"('2-s2.0-84928686467', 'Wassermann')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84928686467,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84928686467&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84928686467&origin=inward +Lower Lateral Orbitofrontal Cortex Density Associated With More Frequent Exposure to Television and Movie Violence in Male Adolescents,Wassermann,Anne E. Openshaw;Jordan Grafman;Maren Strenziok;Frank Krueger;Giovanna Zamboni;Sarah J. Pulaski;Elke van der Meer,2010-06-01,9,Journal of Adolescent Health,607-609,10.1016/j.jadohealth.2009.11.196,20472220,77952104766,"('2-s2.0-77952104766', 'Wassermann')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/77952104766,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77952104766&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77952104766&origin=inward +Architecture of Counterfactual Thought in the Prefrontal Cortex,Wassermann,Frank Krueger;Aron K. Barbey;Jordan Grafman,2011-09-22,5,Predictions in the Brain: Using Our Past to Generate a Future,,10.1093/acprof:oso/9780195395518.003.0018,,84922760522,"('2-s2.0-84922760522', 'Wassermann')",Chapter,,https://api.elsevier.com/content/abstract/scopus_id/84922760522,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84922760522&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84922760522&origin=inward +Functional networks in emotional moral and nonmoral social judgments,Wassermann,Ivanei E. Bramati;Ricardo De Oliveira-Souza;Jorge Moll;Jordan Grafman,2013-01-01,0,Social Neuroscience: Key Readings,63-72,10.4324/9780203496190,,84920616344,"('2-s2.0-84920616344', 'Wassermann')",Chapter,,https://api.elsevier.com/content/abstract/scopus_id/84920616344,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84920616344&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84920616344&origin=inward +Executive Functions,Wassermann,Jordan Grafman,2009-05-01,0,Neuroergonomics: The brain at work,,10.1093/acprof:oso/9780195177619.003.0011,,84920753092,"('2-s2.0-84920753092', 'Wassermann')",Chapter,,https://api.elsevier.com/content/abstract/scopus_id/84920753092,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84920753092&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84920753092&origin=inward +Phasic and sustained fear in humans elicits distinct patterns of brain activity,Grillon,Christian Grillon;Raphael Kaplan;Gang Chen;Ruben P. Alvarez;Jerzy Bodurka,2011-03-01,182,NeuroImage,389-400,10.1016/j.neuroimage.2010.11.057,21111828,78951492017,"('2-s2.0-78951492017', 'Grillon')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/78951492017,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=78951492017&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=78951492017&origin=inward +The adaptive threat bias in anxiety: Amygdala-dorsomedial prefrontal cortex coupling and aversive amplification,Grillon,Christian Grillon;Danielle R. Charney;Katherine Vytal;Oliver J. Robinson;Cassie Overstreet,2012-03-01,107,NeuroImage,523-529,10.1016/j.neuroimage.2011.11.096,22178453,84857134559,"('2-s2.0-84857134559', 'Grillon')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84857134559,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84857134559&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84857134559&origin=inward +Neural substrates of classically conditioned fear-generalization in humans: A parametric fMRI study,Grillon,Richard C. Reynolds;Christian Grillon;Daniel E. Bradford;Ruben P. Alvarez;Shmuel Lissek;Philip Burton;Tori Espensen-Sturges,2014-01-01,105,Social Cognitive and Affective Neuroscience,1134-1142,10.1093/scan/nst096,23748500,84905921226,"('2-s2.0-84905921226', 'Grillon')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/84905921226,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84905921226&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84905921226&origin=inward +Stress increases aversive prediction error signal in the ventral striatum,Grillon,Christian Grillon;Danielle R. Charney;Katherine Vytal;Oliver J. Robinson;Cassie Overstreet,2013-03-05,50,Proceedings of the National Academy of Sciences of the United States of America,4129-4133,10.1073/pnas.1213923110,23401511,84874635488,"('2-s2.0-84874635488', 'Grillon')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84874635488,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84874635488&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84874635488&origin=inward +The dorsal medial prefrontal (anterior cingulate) cortex-amygdala aversive amplification circuit in unmedicated generalised and social anxiety disorders: An observational study,Grillon,Marissa Krimsky;Phillip Allen;Lynne Lieberman;Christian Grillon;Katherine Vytal;Oliver J. Robinson,2014-01-01,65,The Lancet Psychiatry,294-302,10.1016/S2215-0366(14)70305-0,,84920087047,"('2-s2.0-84920087047', 'Grillon')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/84920087047,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84920087047&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84920087047&origin=inward +FMRI functional connectivity applied to adolescent neurodevelopment,Grillon,Christian Grillon;Elizabeth A. Hale;Salvatore Torrisi;Monique Ernst;Nicholas Balderston,2015-03-01,42,Annual Review of Clinical Psychology,361-377,10.1146/annurev-clinpsy-032814-112753,25581237,84964285132,"('2-s2.0-84964285132', 'Grillon')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84964285132,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84964285132&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84964285132&origin=inward +Sustained anxiety increases amygdala-dorsomedial prefrontal coupling: A mechanism for maintaining an anxious state in healthy adults,Grillon,Christian Grillon;Danielle R. Charney;Oliver J. Robinson;Katherine E. Vytal;Cassie Overstreet,2014-01-01,39,Journal of Psychiatry and Neuroscience,321-329,10.1503/jpn.130145,24886788,84906815839,"('2-s2.0-84906815839', 'Grillon')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84906815839,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84906815839&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84906815839&origin=inward +Resting state connectivity of the bed nucleus of the stria terminalis at ultra-high field,Grillon,Richard Reynolds;Christian Grillon;Salvatore Torrisi;Monique Ernst;Julie L. Fudge;Andrew Davis;Katherine O'Connell;Nicholas Balderston,2015-10-01,44,Human Brain Mapping,4076-4088,10.1002/hbm.22899,26178381,84942233711,"('2-s2.0-84942233711', 'Grillon')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84942233711,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84942233711&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84942233711&origin=inward +Anxiety overrides the blocking effects of high perceptual load on amygdala reactivity to threat-related distractors,Grillon,Christian Grillon;Raphael Kaplan;Ruben P. Alvarez;Shmuel Lissek;Monique Ernst;Brian R. Cornwell,2011-04-01,27,Neuropsychologia,1363-1368,10.1016/j.neuropsychologia.2011.02.049,21376745,79954415976,"('2-s2.0-79954415976', 'Grillon')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/79954415976,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79954415976&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79954415976&origin=inward +Spontaneous fast gamma activity in the septal hippocampal region correlates with spatial learning in humans,Grillon,B. R. Cornwell;C. Grillon;C. Overstreet,2014-03-15,9,Behavioural Brain Research,258-264,10.1016/j.bbr.2013.12.031,24388977,84892446743,"('2-s2.0-84892446743', 'Grillon')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/84892446743,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84892446743&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84892446743&origin=inward +Prediction error representation in individuals with generalized anxiety disorder during passive avoidance,Blair,Harma Meffert;James R. Blair;Christian Grillon;Joseph Leshin;Bruno Averbeck;Stuart F. White;Elizabeth Lewis;Cindy Teng;Monique Ernst;Marilla Geraci;Karina S. Blair,2017-02-01,22,American Journal of Psychiatry,110-117,10.1176/appi.ajp.2016.15111410,27631963,85011629261,"('2-s2.0-85011629261', 'Blair')",Article,,https://api.elsevier.com/content/abstract/scopus_id/85011629261,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85011629261&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85011629261&origin=inward +Resting state connectivity of the human habenula at ultra-high field,Blair,Jonathan P. Roiser;Camilla L. Nord;Christian Grillon;Salvatore Torrisi;Nicholas L. Balderston;Monique Ernst,2017-02-15,22,NeuroImage,872-879,10.1016/j.neuroimage.2016.10.034,27780778,85006341547,"('2-s2.0-85006341547', 'Blair')",Article,,https://api.elsevier.com/content/abstract/scopus_id/85006341547,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85006341547&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85006341547&origin=inward +The neural basis of improved cognitive performance by threat of shock,Blair,Christian Grillon;Salvatore Torrisi;Monique Ernst;Andrew Davis;Katherine O'Connell;Oliver Robinson;Nicholas Balderston,2016-11-01,13,Social Cognitive and Affective Neuroscience,1677-1686,10.1093/scan/nsw088,27369069,84996843168,"('2-s2.0-84996843168', 'Blair')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84996843168,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84996843168&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84996843168&origin=inward +Threat of shock increases excitability and connectivity of the intraparietal sulcus,Blair,Richard Coppola;Tom Holroyd;Christian Grillon;Salvatore Torrisi;Frederick W. Carver;Nicholas L. Balderston;Elizabeth Hale;Monique Ernst;Abigail Hsiung,2017-05-30,9,eLife,,10.7554/eLife.23608,28555565,85021407223,"('2-s2.0-85021407223', 'Blair')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85021407223,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85021407223&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85021407223&origin=inward +Intrinsic functional connectivity of the central nucleus of the amygdala and bed nucleus of the stria terminalis,Blair,Adam X. Gorka;Christian Grillon;Salvatore Torrisi;Alexander J. Shackman;Monique Ernst,2018-03-01,20,NeuroImage,392-402,10.1016/j.neuroimage.2017.03.007,28392491,85017434759,"('2-s2.0-85017434759', 'Blair')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85017434759,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85017434759&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85017434759&origin=inward +"Reduced optimism and a heightened neural response to everyday worries are specific to generalized anxiety disorder, and not seen in social anxiety",Blair,M. Geraci;K. S. Blair;C. Teng;C. Grillon;M. Otero;M. Ernst;R. J.R. Blair;D. S. Pine,2017-07-01,7,Psychological medicine,1806-1815,10.1017/S0033291717000265,28290265,85015218683,"('2-s2.0-85015218683', 'Blair')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85015218683,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85015218683&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85015218683&origin=inward +Functional properties of brain areas associated with motor execution and imagery,Hallett,Peter Van Gelderen;Keiichiro Toma;Takashi Hanakawa;Mark Hallett;Michael A. Dimyan;Ilka Immisch,2003-02-01,415,Journal of Neurophysiology,989-1002,10.1152/jn.00132.2002,12574475,0037322777,"('2-s2.0-0037322777', 'Hallett')",Article,,https://api.elsevier.com/content/abstract/scopus_id/0037322777,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0037322777&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0037322777&origin=inward +Multimodal imaging of brain reorganization in motor areas of the contralesional hemisphere of well recovered patients after capsular stroke,Wassermann,Robert Chen;Daniel Waldvogel;Leonardo G. Cohen;Takahiro Matsuoka;Christian Gerloff;Kenji Ishii;George F. Wittenberg;Mark Hallett;Alexandra Sailer;Eric M. Wassermann;Khalaf Bushara,2006-01-01,327,Brain,791-808,10.1093/brain/awh713,16364955,33244467864,"('2-s2.0-33244467864', 'Wassermann')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/33244467864,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33244467864&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33244467864&origin=inward +A functional MRI study of automatic movements in patients with Parkinson's disease,Hallett,Tao Wu;Mark Hallett,2005-10-01,293,Brain,2250-2259,10.1093/brain/awh569,15958505,26044458489,"('2-s2.0-26044458489', 'Hallett')",Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/26044458489,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=26044458489&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=26044458489&origin=inward +Neural correlates of tic generation in Tourette syndrome: An event-related functional MRI study,Hallett,R. Wurzman;S. Matteson;K. Kansaku;M. Hallett;S. Bohlhalter;T. Hanakawa;A. Goldfine;G. Garraux,2006-01-01,266,Brain,2029-2037,10.1093/brain/awl050,16520330,33747885219,"('2-s2.0-33747885219', 'Hallett')",Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/33747885219,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33747885219&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33747885219&origin=inward +"Motor planning, imagery, and execution in the distributed motor network: A time-course study with functional MRI",Hallett,Takashi Hanakawa;Michael A. Dimyan;Mark Hallett,2008-12-01,282,Cerebral Cortex,2775-2788,10.1093/cercor/bhn036,18359777,54149106730,"('2-s2.0-54149106730', 'Hallett')",Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/54149106730,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=54149106730&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=54149106730&origin=inward +The relative metabolic demand of inhibition and excitation,Hallett,Daniel Waldvogel;Peter Van Gelderen;Ulf Ziemann;Mark Hallett;Ilka Immisch;Wolf Muellbacher,2000-08-31,230,Nature,995-998,10.1038/35023171,10984053,0034739056,"('2-s2.0-0034739056', 'Hallett')",Article,,https://api.elsevier.com/content/abstract/scopus_id/0034739056,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0034739056&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0034739056&origin=inward +Neural correlates of auditory-visual stimulus onset asynchrony detection,Hallett,Mark Hallett;Jordan Grafman;Khalafalla O. Bushara,2001-01-01,241,Journal of Neuroscience,300-304,10.1523/jneurosci.21-01-00300.2001,11150347,0035144735,"('2-s2.0-0035144735', 'Hallett')",Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/0035144735,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0035144735&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0035144735&origin=inward +Mechanisms Underlying Dopamine-Mediated Reward Bias in Compulsive Behaviors,Hallett,Raymond J. Dolan;Christina Brezing;Valerie Voon;Hubert H. Fernandez;Cecile Gallea;Mark Hallett;Mathias Pessiglione,2010-01-14,211,Neuron,135-142,10.1016/j.neuron.2009.12.027,20152119,73549113279,"('2-s2.0-73549113279', 'Hallett')",Article,WT,https://api.elsevier.com/content/abstract/scopus_id/73549113279,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=73549113279&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=73549113279&origin=inward +Emotional stimuli and motor conversion disorder,Hallett,Christina Brezing;Valerie Voon;W. Curt Lafrance;Karin Roelofs;Rezvan Ameli;Cecile Gallea;Mark Hallett,2010-01-01,198,Brain,1526-1536,10.1093/brain/awq054,20371508,77951920955,"('2-s2.0-77951920955', 'Hallett')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/77951920955,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77951920955&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77951920955&origin=inward +How Self-Initiated Memorized Movements Become Automatic: A Functional MRI Study,Hallett,Kenji Kansaku;Tao Wu;Mark Hallett,2004-04-01,183,Journal of Neurophysiology,1690-1698,10.1152/jn.01052.2003,14645385,1542720537,"('2-s2.0-1542720537', 'Hallett')",Article,,https://api.elsevier.com/content/abstract/scopus_id/1542720537,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=1542720537&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=1542720537&origin=inward +Neural correlates of cross-modal binding,Hallett,Kenji Kansaku;Keiichiro Toma;Takashi Hanakawa;Khalafalla O. Bushara;Mark Hallett;Ilka Immisch,2003-02-01,161,Nature Neuroscience,190-195,10.1038/nn993,12496761,0037315153,"('2-s2.0-0037315153', 'Hallett')",Article,VA,https://api.elsevier.com/content/abstract/scopus_id/0037315153,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0037315153&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0037315153&origin=inward +Impaired brain GABA in focal dystonia,Hallett,Lucien M. Levy;Mark Hallett,2002-01-12,152,Annals of Neurology,93-101,10.1002/ana.10073,11782988,0036135109,"('2-s2.0-0036135109', 'Hallett')",Article,,https://api.elsevier.com/content/abstract/scopus_id/0036135109,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0036135109&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0036135109&origin=inward +The involuntary nature of conversion disorder,Hallett,M. Bruno;C. Gallea;N. Hattori;M. Hallett;V. Voon;V. Ekanayake,2010-01-01,168,Neurology,223-228,10.1212/WNL.0b013e3181ca00e9,,74949105990,"('2-s2.0-74949105990', 'Hallett')",Article,,https://api.elsevier.com/content/abstract/scopus_id/74949105990,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=74949105990&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=74949105990&origin=inward +Impulsive choice and response in dopamine agonist-related impulse control behaviors,Hallett,Raymond J. Dolan;Meliha Skaljic;Christina Brezing;Valerie Voon;Hubert Fernandez;Brady Reynolds;Vindhya Ekanayake;Cecile Gallea;Mark Hallett;Marc N. Potenza,2010-01-01,151,Psychopharmacology,645-659,10.1007/s00213-009-1697-y,19838863,72049085005,"('2-s2.0-72049085005', 'Hallett')",Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/72049085005,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=72049085005&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=72049085005&origin=inward +Changes in Brain Anatomy in Focal Hand Dystonia,Hallett,Gaëtan Garraux;Andrew Bauer;Kenji Kansaku;Takashi Hanakawa;Mark Hallett;Tao Wu,2004-05-01,125,Annals of Neurology,736-739,10.1002/ana.20113,15122716,2142714500,"('2-s2.0-2142714500', 'Hallett')",Article,,https://api.elsevier.com/content/abstract/scopus_id/2142714500,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=2142714500&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=2142714500&origin=inward +The influence of normal human ageing on automatic movements,Hallett,Tao Wu;Mark Hallett,2005-01-15,134,Journal of Physiology,605-615,10.1113/jphysiol.2004.076042,15513939,12744277987,"('2-s2.0-12744277987', 'Hallett')",Article,,https://api.elsevier.com/content/abstract/scopus_id/12744277987,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=12744277987&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=12744277987&origin=inward +Dopamine agonists and risk: Impulse control disorders in Parkinson's; Disease,Hallett,Raymond J. Dolan;Mkael Symmonds;Christina Brezing;Valerie Voon;Jennifer Gao;Hubert Fernandez;Vindhya Ekanayake;Mark Hallett,2011-01-01,143,Brain,1438-1446,10.1093/brain/awr080,,79957464908,"('2-s2.0-79957464908', 'Hallett')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/79957464908,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79957464908&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79957464908&origin=inward +Neural correlates of dual task performance in patients with Parkinson's disease,Hallett,T. Wu;Mark Hallett,2008-07-01,123,"Journal of Neurology, Neurosurgery and Psychiatry",760-766,10.1136/jnnp.2007.126599,18006652,46249083043,"('2-s2.0-46249083043', 'Hallett')",Article,,https://api.elsevier.com/content/abstract/scopus_id/46249083043,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=46249083043&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=46249083043&origin=inward +The role of the dorsal stream for gesture production,Hallett,Daniel Waldvogel;Kenji Kansaku;Takashi Hanakawa;Lewis Wheaton;Stephan Bohlhalter;Mark Hallett;Esteban A. Fridman;Ilka Immisch;Tao Wu,2006-01-15,106,NeuroImage,417-428,10.1016/j.neuroimage.2005.07.026,16154363,30344470810,"('2-s2.0-30344470810', 'Hallett')",Article,,https://api.elsevier.com/content/abstract/scopus_id/30344470810,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=30344470810&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=30344470810&origin=inward +Evaluation of essential tremor with multi-voxel magnetic resonance spectroscopy,Hallett,James M. Dambrosia;John A. Butman;Fernando L. Pagan;Mark Hallett,2003-04-22,102,Neurology,1344-1347,10.1212/01.WNL.0000065885.15875.0D,12707440,0037461351,"('2-s2.0-0037461351', 'Hallett')",Article,,https://api.elsevier.com/content/abstract/scopus_id/0037461351,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0037461351&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0037461351&origin=inward +The role of the medial wall and its anatomical variations for bimanual antiphase and in-phase movements,Hallett,Daniel Waldvogel;Ilka Immisch;Peter Van Gelderen;Mark Hallett,2001-01-01,84,NeuroImage,674-684,10.1006/nimg.2001.0856,,0034867619,"('2-s2.0-0034867619', 'Hallett')",Article,DFG,https://api.elsevier.com/content/abstract/scopus_id/0034867619,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0034867619&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0034867619&origin=inward +The neural processes underlying self-agency,Hallett,John Kakareka;Tom Pohida;Prantik Kundu;Cecile Gallea;Jason Friedman;Randy Pursley;Mark Hallett;Fatta B. Nahab;Nathaniel Miletta,2011-01-01,93,Cerebral Cortex,48-55,10.1093/cercor/bhq059,20378581,78651321585,"('2-s2.0-78651321585', 'Hallett')",Article,,https://api.elsevier.com/content/abstract/scopus_id/78651321585,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=78651321585&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=78651321585&origin=inward +Finger and face representations in the ipsilateral precentral motor areas in humans,Hallett,Takashi Hanakawa;Michiko K. Bruno;Sachin Parikh;Mark Hallett,2005-05-01,72,Journal of Neurophysiology,2950-2958,10.1152/jn.00784.2004,15625099,17644375470,"('2-s2.0-17644375470', 'Hallett')",Article,,https://api.elsevier.com/content/abstract/scopus_id/17644375470,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=17644375470&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=17644375470&origin=inward +Generators of movement-related cortical potentials: fMRI-constrained EEG dipole source analysis,Hallett,Daniel Waldvogel;Benjamin Koshy;Keiichiro Toma;Takahiro Matsuoka;Takashi Hanakawa;Ilka Immisch;Mark Hallett;Tatsuya Mima;Holly Shill,2002-01-01,62,NeuroImage,161-173,10.1006/nimg.2002.1165,12482074,0036742170,"('2-s2.0-0036742170', 'Hallett')",Article,,https://api.elsevier.com/content/abstract/scopus_id/0036742170,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0036742170&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0036742170&origin=inward +Modifications of the interactions in the motor networks when a movement becomes automatic,Hallett,Piu Chan;Tao Wu;Mark Hallett,2008-09-19,62,Journal of Physiology,4295-4304,10.1113/jphysiol.2008.153445,18617569,51749110708,"('2-s2.0-51749110708', 'Hallett')",Article,,https://api.elsevier.com/content/abstract/scopus_id/51749110708,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=51749110708&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=51749110708&origin=inward +Gesture subtype-dependent left lateralization of praxis planning: An event-related fMRI study,Hallett,E. A. Shamim;N. Hattori;L. Wheaton;E. Fridman;M. Hallett;S. Bohlhalter;G. Garraux,2009-06-01,60,Cerebral Cortex,1256-1262,10.1093/cercor/bhn168,18796430,66549096839,"('2-s2.0-66549096839', 'Hallett')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/66549096839,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=66549096839&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=66549096839&origin=inward +Self-modulation of primary motor cortex activity with motor and motor imagery tasks using real-time fMRI-based neurofeedback,Hallett,Silvina G. Horovitz;Gaurav Venkataraman;Brian D. Berman;Mark Hallett,2012-01-16,67,NeuroImage,917-925,10.1016/j.neuroimage.2011.07.035,21803163,83055194569,"('2-s2.0-83055194569', 'Hallett')",Article,,https://api.elsevier.com/content/abstract/scopus_id/83055194569,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=83055194569&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=83055194569&origin=inward +Increased midbrain gray matter in Tourette's syndrome,Hallett,Gaëtan Garraux;Takashi Hanakawa;Alicja Lerner;Stephan Bohlhalter;Mark Hallett;Andrew Goldfine,2006-02-01,49,Annals of Neurology,381-385,10.1002/ana.20765,16437578,32044475419,"('2-s2.0-32044475419', 'Hallett')",Article,,https://api.elsevier.com/content/abstract/scopus_id/32044475419,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=32044475419&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=32044475419&origin=inward +Shared brain areas but not functional connections controlling movement timing and order,Hallett,Gaëtan Garraux;Kenji Kansaku;Guido Nolte;Christopher McKinney;Mark Hallett;Tao Wu,2005-06-01,45,Journal of Neuroscience,5290-5297,10.1523/JNEUROSCI.0340-05.2005,15930376,20044382622,"('2-s2.0-20044382622', 'Hallett')",Article,,https://api.elsevier.com/content/abstract/scopus_id/20044382622,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=20044382622&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=20044382622&origin=inward +"Mapping the basal ganglia: fMRI evidence for somatotopic representation of face, hand, and foot",Hallett,L. Maillard;A. E. Schulman;K. Ishii;K. Bushara;D. Waldvogel;Mark Hallett,2000-01-01,49,Neurology,377-383,10.1212/WNL.55.3.377,10932271,0033846858,"('2-s2.0-0033846858', 'Hallett')",Article,,https://api.elsevier.com/content/abstract/scopus_id/0033846858,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0033846858&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0033846858&origin=inward +The variability of serial fMRI data: Correlation between a visual and a motor task,Hallett,Daniel Waldvogel;Peter Van Gelderen;Mark Hallett;Ilka Immisch;Christopher Pfeiffer,2000-11-27,42,NeuroReport,3843-3847,10.1097/00001756-200011270-00048,11117501,0034722689,"('2-s2.0-0034722689', 'Hallett')",Article,,https://api.elsevier.com/content/abstract/scopus_id/0034722689,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0034722689&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0034722689&origin=inward +Involvement of primary motor cortex in motor imagery and mental practice,Hallett,Leonardo G. Cohen;Norihiro Sadato;Jordan Fieldman;Mark Hallett;Alvaro Pascual-Leone,1994-01-01,37,Behavioral and Brain Sciences,210,10.1017/S0140525X00034130,,84974186226,"('2-s2.0-84974186226', 'Hallett')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84974186226,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84974186226&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84974186226&origin=inward +Contagious yawning and the frontal lobe: An fMRI study,Hallett,Fatta B. Nahab;Ziad S. Saad;Noriaki Hattori;Mark Hallett,2009-05-01,34,Human Brain Mapping,1744-1751,10.1002/hbm.20638,18937281,66149095129,"('2-s2.0-66149095129', 'Hallett')",Article,,https://api.elsevier.com/content/abstract/scopus_id/66149095129,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=66149095129&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=66149095129&origin=inward +Gender difference in premotor activity during active tactile discrimination,Hallett,Vicente Ibañez;Norihiro Sadato;Marie Pierre Deiber;Mark Hallett,2000-01-01,31,NeuroImage,532-540,10.1006/nimg.2000.0566,10806038,0343566427,"('2-s2.0-0343566427', 'Hallett')",Article,JSPS,https://api.elsevier.com/content/abstract/scopus_id/0343566427,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0343566427&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0343566427&origin=inward +Individuated finger control in focal hand dystonia: An fMRI study,Hallett,Cecile Gallea;Ryan D. Moore;Silvina G. Horovitz;Mark Hallett,2012-07-16,34,NeuroImage,823-831,10.1016/j.neuroimage.2012.03.066,22484405,84861331638,"('2-s2.0-84861331638', 'Hallett')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84861331638,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84861331638&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84861331638&origin=inward +Frequency-dependent neural activity in Parkinson's disease,Hallett,Piu Chan;Yanan Hou;Mark Hallett;Tao Wu;Xuemin Wu,2014-01-01,42,Human Brain Mapping,5815-5833,10.1002/hbm.22587,25045127,84911413373,"('2-s2.0-84911413373', 'Hallett')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84911413373,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84911413373&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84911413373&origin=inward +Neural basis subserving the detection of postural instability: An fMRI study,Hallett,Semyon Slobounov;Tao Wu;Mark Hallett,2006-01-01,32,Motor Control,69-89,10.1123/mcj.10.1.69,16571908,33644798876,"('2-s2.0-33644798876', 'Hallett')",Article,,https://api.elsevier.com/content/abstract/scopus_id/33644798876,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33644798876&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33644798876&origin=inward +Effects of subconcussive head trauma on the default mode network of the brain,Hallett,Thomas Neuberger;Brian Johnson;Michael Gay;Mark Hallett;Semyon Slobounov,2014-01-01,56,Journal of Neurotrauma,1907-1913,10.1089/neu.2014.3415,25010992,84912001601,"('2-s2.0-84912001601', 'Hallett')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84912001601,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84912001601&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84912001601&origin=inward +Neural underpinning of postural responses to visual field motion,Hallett,Elena Slobounov;Karl Newell;Hiroshi Shibasaki;Mark Hallett;Semyon Slobounov;Tao Wu,2006-05-01,31,Biological Psychology,188-197,10.1016/j.biopsycho.2005.10.005,16338048,33645014385,"('2-s2.0-33645014385', 'Hallett')",Article,,https://api.elsevier.com/content/abstract/scopus_id/33645014385,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33645014385&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33645014385&origin=inward +The representation of blinking movement in cingulate motor areas: A functional magnetic resonance imaging study,Hallett,Takashi Hanakawa;Michael A. Dimyan;Mark Hallett,2008-04-01,30,Cerebral Cortex,930-937,10.1093/cercor/bhm129,17652462,40849130954,"('2-s2.0-40849130954', 'Hallett')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/40849130954,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=40849130954&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=40849130954&origin=inward +Role of the sensorimotor cortex in tourette syndrome using multimodal imaging,Hallett,Patrick Malone;Beth A. Belluscio;Silvina G. Horovitz;Jan Willem van der Veen;Sule Tinaz;Mark Hallett,2014-12-01,40,Human Brain Mapping,5834-5846,10.1002/hbm.22588,25044024,84911391886,"('2-s2.0-84911391886', 'Hallett')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/84911391886,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84911391886&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84911391886&origin=inward +Abnormal striatal dopaminergic neurotransmission during rest and task production in spasmodic dysphonia,Hallett,Kristina Simonyan;Peter Herscovitch;Brian D. Berman;Mark Hallett,2013-09-16,37,Journal of Neuroscience,14705-14714,10.1523/JNEUROSCI.0407-13.2013,24027271,84883677448,"('2-s2.0-84883677448', 'Hallett')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84883677448,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84883677448&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84883677448&origin=inward +Discrete parieto-frontal functional connectivity related to grasping,Hallett,Masao Matsuhashi;Noriaki Hattori;Lewis Wheaton;Hiroshi Shibasaki;Mark Hallett;Tao Wu,2009-03-01,23,Journal of Neurophysiology,1267-1282,10.1152/jn.90249.2008,19109459,64749114659,"('2-s2.0-64749114659', 'Hallett')",Article,,https://api.elsevier.com/content/abstract/scopus_id/64749114659,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=64749114659&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=64749114659&origin=inward +Neural correlates of blink suppression and the buildup of a natural bodily urge,Hallett,Silvina G. Horovitz;Mark Hallett;Brian D. Berman;Brent Morel,2012-01-16,37,NeuroImage,1441-1450,10.1016/j.neuroimage.2011.08.050,21906689,83055188065,"('2-s2.0-83055188065', 'Hallett')",Article,,https://api.elsevier.com/content/abstract/scopus_id/83055188065,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=83055188065&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=83055188065&origin=inward +Brain activity during visuomotor behavior triggered by arbitrary and spatially constrained cues: An fMRI study in humans,Hallett,Giancarlo Zito;Manabu Honda;Takashi Hanakawa;Mark Hallett;Michael A. Dimyan,2006-07-01,22,Experimental Brain Research,275-282,10.1007/s00221-005-0336-z,16418844,33744951823,"('2-s2.0-33744951823', 'Hallett')",Article,MEXT,https://api.elsevier.com/content/abstract/scopus_id/33744951823,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33744951823&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33744951823&origin=inward +A shared neural network for simple reaction time,Hallett,Takashi Hanakawa;Kenji Kansaku;Tao Wu;Mark Hallett,2004-06-01,22,NeuroImage,904-911,10.1016/j.neuroimage.2004.02.006,15193621,2942561100,"('2-s2.0-2942561100', 'Hallett')",Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/2942561100,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=2942561100&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=2942561100&origin=inward +The role of the human ventral premotor cortex in counting successive stimuli,Hallett,Kenji Kansaku;Keiji Matsuda;Norihiro Sadato;Ari Johnson;Mark Hallett;Benjamin Carver,2007-04-01,18,Experimental Brain Research,339-350,10.1007/s00221-006-0736-8,17051376,33947324029,"('2-s2.0-33947324029', 'Hallett')",Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/33947324029,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33947324029&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33947324029&origin=inward +Functional Anatomy of Writing with the Dominant Hand,Hallett,Silvina G. Horovitz;Muslimah Ali Najee-ullah;Cecile Gallea;Mark Hallett,2013-07-02,21,PLoS ONE,,10.1371/journal.pone.0067931,23844132,84879769291,"('2-s2.0-84879769291', 'Hallett')",Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/84879769291,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84879769291&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84879769291&origin=inward +Induction of motor associative plasticity in the posterior parietal cortex-primary motor network,Hallett,Sahana N. Kukke;Ana Carolina De Campos;Tianxia Wu;Han Wang;Chi Chao Chao;Mark Hallett;Anke Ninija Karabanov;Rainer Paine,2015-01-01,27,Cerebral Cortex,365-373,10.1093/cercor/bht230,23968834,84925003407,"('2-s2.0-84925003407', 'Hallett')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/84925003407,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84925003407&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84925003407&origin=inward +Modulation of functionally localized right insular cortex activity using real-time fMRI-based neurofeedback,Hallett,Silvina G. Horovitz;Brian D. Berman;Mark Hallett,2013-10-10,20,Frontiers in Human Neuroscience,,10.3389/fnhum.2013.00638,,84886410404,"('2-s2.0-84886410404', 'Hallett')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84886410404,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84886410404&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84886410404&origin=inward +In vivo neurochemistry of primary focal hand dystonia: A magnetic resonance spectroscopic neurometabolite profiling study at 3T,Hallett,Silvina G. Horovitz;Jan Willem Van Der Veen;Cecile Gallea;Priyantha Herath;Mark Hallett,2010-12-15,15,Movement Disorders,2800-2808,10.1002/mds.23306,20979122,78650227717,"('2-s2.0-78650227717', 'Hallett')",Article,,https://api.elsevier.com/content/abstract/scopus_id/78650227717,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=78650227717&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=78650227717&origin=inward +Lateralization of brain activity pattern during unilateral movement in Parkinson's disease,Hallett,Piu Chan;Jiarong Zhang;Yanan Hou;Mark Hallett;Tao Wu,2015-05-01,20,Human Brain Mapping,1878-1891,10.1002/hbm.22743,25644527,84927698944,"('2-s2.0-84927698944', 'Hallett')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/84927698944,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84927698944&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84927698944&origin=inward +How the brain handles temporally uncoupled bimanual movements,Hallett,Cecile Gallea;Henrik Foltys;Ingo G. Meister;Mark Hallett,2010-12-01,16,Cerebral Cortex,2996-3004,10.1093/cercor/bhq048,20356959,78349256624,"('2-s2.0-78349256624', 'Hallett')",Article,IZKF Würzburg,https://api.elsevier.com/content/abstract/scopus_id/78349256624,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=78349256624&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=78349256624&origin=inward +Deficits in task-set maintenance and execution networks in Parkinson’s disease,Hallett,Silvina G. Horovitz;Mark Hallett;Sule Tinaz;Peter Lauro,2016-04-01,19,Brain Structure and Function,1413-1425,10.1007/s00429-014-0981-8,25567420,84922359577,"('2-s2.0-84922359577', 'Hallett')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84922359577,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84922359577&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84922359577&origin=inward +Real time BOLD functional MRI neuro-feedback affects functional connectivity,Hallett,Silvina G. Horovitz;Brian D. Berman;Mark Hallett,2010-12-01,7,"2010 Annual International Conference of the IEEE Engineering in Medicine and Biology Society, EMBC'10",4270-4273,10.1109/IEMBS.2010.5627170,21096645,78650819014,"('2-s2.0-78650819014', 'Hallett')",Conference Paper,,https://api.elsevier.com/content/abstract/scopus_id/78650819014,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=78650819014&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=78650819014&origin=inward +Cortical activation and inter-hemispheric sensorimotor coherence in individuals with arm dystonia due to childhood stroke,Hallett,Ana Carolina de Campos;Nicholas Patronas;Katharine E. Alter;Sahana N. Kukke;Diane Damiano;Mark Hallett,2015-08-01,12,Clinical Neurophysiology,1589-1598,10.1016/j.clinph.2014.11.002,25499610,84937726021,"('2-s2.0-84937726021', 'Hallett')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/84937726021,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84937726021&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84937726021&origin=inward +Hemidystonia with one eye-of-the-tiger sign,Hallett,Sanjay Pandey;Debra L. Byler;Mark Hallett,2014-01-01,1,JAMA Neurology,1574-1575,10.1001/jamaneurol.2014.1077,25347119,84918505366,"('2-s2.0-84918505366', 'Hallett')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/84918505366,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84918505366&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84918505366&origin=inward +Impaired sense of agency in functional movement disorders: An fMRI study,Hallett,Carine Maurer;Qian Shen;Prantik Kundu;Mark Hallett;Fatta B. Nahab,2017-04-01,10,PLoS ONE,,10.1371/journal.pone.0172502,28448504,85018320139,"('2-s2.0-85018320139', 'Hallett')",Article,,https://api.elsevier.com/content/abstract/scopus_id/85018320139,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85018320139&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85018320139&origin=inward +Distributed and overlapping representations of faces and objects in ventral temporal cortex,Hallett,M. I. Gobbini;J. L. Schouten;P. Pietrini;J. V. Haxby;M. L. Furey;A. Ishai,2001-09-28,2338,Science,2425-2430,10.1126/science.1063736,11577229,0035964792,"('2-s2.0-0035964792', 'Hallett')",Article,,https://api.elsevier.com/content/abstract/scopus_id/0035964792,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0035964792&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0035964792&origin=inward +Human neural systems for face recognition and social communication,Hallett,James V. Haxby;Elizabeth A. Hoffman;M. Ida Gobbini,2002-01-01,836,Biological Psychiatry,59-67,10.1016/S0006-3223(01)01330-0,11801231,0036150870,"('2-s2.0-0036150870', 'Hallett')",Review,NIMH,https://api.elsevier.com/content/abstract/scopus_id/0036150870,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0036150870&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0036150870&origin=inward +Beyond sensory images: Object-based representation in the human ventral pathway,Cohen,Emiliano Ricciardi;Maura L. Furey;M. Ida Gobbini;James V. Haxby;Pietro Pietrini;W. H.Carolyn Wu;Leonardo Cohen;Mario Guazzelli,2004-04-13,316,Proceedings of the National Academy of Sciences of the United States of America,5658-5663,10.1073/pnas.0400707101,15064396,1842732156,"('2-s2.0-1842732156', 'Cohen')",Article,,https://api.elsevier.com/content/abstract/scopus_id/1842732156,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=1842732156&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=1842732156&origin=inward +Mothers' neural activation in response to pictures of their children and other children,Leibenluft,James V. Haxby;Tara Harrison;Ellen Leibenluft;M. Ida Gobbini,2004-08-15,312,Biological Psychiatry,225-232,10.1016/j.biopsych.2004.05.017,15312809,4143076897,"('2-s2.0-4143076897', 'Leibenluft')",Article,,https://api.elsevier.com/content/abstract/scopus_id/4143076897,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=4143076897&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=4143076897&origin=inward +A parametric fMRI study of overt and covert shifts of visuospatial attention,Leibenluft,John Ingeholm;Timothy M. Ellmore;Laurent Petit;James V. Haxby;Michael S. Beauchamp,2001-01-01,244,NeuroImage,310-321,10.1006/nimg.2001.0788,,0034899091,"('2-s2.0-0034899091', 'Leibenluft')",Article,,https://api.elsevier.com/content/abstract/scopus_id/0034899091,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0034899091&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0034899091&origin=inward +Social and emotional attachment in the neural representation of faces,Leibenluft,James V. Haxby;Ellen Leibenluft;Neil Santiago;M. Ida Gobbini,2004-01-01,203,NeuroImage,1628-1635,10.1016/j.neuroimage.2004.03.049,15275919,3242736839,"('2-s2.0-3242736839', 'Leibenluft')",Article,,https://api.elsevier.com/content/abstract/scopus_id/3242736839,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=3242736839&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=3242736839&origin=inward +Dissociation of face-selective cortical responses by attention,Leibenluft,Topi Tanskanen;Sari Avikainen;Maura L. Furey;Kimmo Uutela;James V. Haxby;Riitta Hari;Michael S. Beauchamp,2006-01-24,93,Proceedings of the National Academy of Sciences of the United States of America,1065-1070,10.1073/pnas.0510124103,16415158,32244444938,"('2-s2.0-32244444938', 'Leibenluft')",Article,,https://api.elsevier.com/content/abstract/scopus_id/32244444938,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=32244444938&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=32244444938&origin=inward +Overall vigilance and sustained attention decrements in healthy aging,Leibenluft,James V. Haxby;Annamaria Berardi;Raja Parasuraman,2001-01-01,46,Experimental Aging Research,19-39,10.1080/036107301750046124,11205528,0035148422,"('2-s2.0-0035148422', 'Leibenluft')",Article,,https://api.elsevier.com/content/abstract/scopus_id/0035148422,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0035148422&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0035148422&origin=inward +Brain mechanisms for simple perception and bistable perception,Leibenluft,Daniel Arteaga;Biyu J. He;Megan Wang,2013-08-27,44,Proceedings of the National Academy of Sciences of the United States of America,,10.1073/pnas.1221945110,23942129,84883313318,"('2-s2.0-84883313318', 'Leibenluft')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/84883313318,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84883313318&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84883313318&origin=inward +Modulating conscious movement intention by noninvasive brain stimulation and the underlying neural mechanisms,Hallett,Zachary H. Douglas;Brian Maniscalco;Biyu J. He;Mark Hallett;Eric M. Wassermann,2015-01-01,22,Journal of Neuroscience,7239-7255,10.1523/JNEUROSCI.4894-14.2015,25948272,84929379416,"('2-s2.0-84929379416', 'Hallett')",Article,NSFC,https://api.elsevier.com/content/abstract/scopus_id/84929379416,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84929379416&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84929379416&origin=inward +Anticipation of increasing monetary reward selectively recruits nucleus accumbens.,Hommer,B. Knutson;G. W. Fong;C. M. Adams;D. Hommer,2001-01-01,1342,The Journal of neuroscience : the official journal of the Society for Neuroscience,,10.1523/jneurosci.21-16-j0002.2001,11459880,0035882897,"('2-s2.0-0035882897', 'Hommer')",Article,NIAAA,https://api.elsevier.com/content/abstract/scopus_id/0035882897,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0035882897&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0035882897&origin=inward +Dissociation of reward anticipation and outcome with event-related fMRI,Hommer,Daniel Hommer;Grace W. Fong;Charles M. Adams;Brian Knutson;Jerald L. Varner,2001-12-04,905,NeuroReport,3683-3687,10.1097/00001756-200112040-00016,11726774,0035807944,"('2-s2.0-0035807944', 'Hommer')",Article,,https://api.elsevier.com/content/abstract/scopus_id/0035807944,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0035807944&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0035807944&origin=inward +FMRI visualization of brain activity during a monetary incentive delay task,Hommer,Erica Kaiser;Brian Knutson;Andrew Westdorp;Daniel Hommer,2000-01-01,766,NeuroImage,20-27,10.1006/nimg.2000.0593,10875899,0033860711,"('2-s2.0-0033860711', 'Hommer')",Article,NIAAA,https://api.elsevier.com/content/abstract/scopus_id/0033860711,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0033860711&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0033860711&origin=inward +Incentive-Elicited Brain Activation in Adolescents: Similarities and Differences from Young Adults,Hommer,James M. Bjork;Daniel W. Hommer;Grace W. Fong;Shannon M. Bennett;Brian Knutson;Daniel M. Caggiano,2004-02-25,391,Journal of Neuroscience,1793-1802,10.1523/JNEUROSCI.4862-03.2004,14985419,1442275743,"('2-s2.0-1442275743', 'Hommer')",Article,,https://api.elsevier.com/content/abstract/scopus_id/1442275743,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=1442275743&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=1442275743&origin=inward +Evidence for a gender-related effect of alcoholism on brain volumes,Hommer,R. Momenan;R. R. Rawlings;D. W. Hommer;E. Kaiser,2001-02-14,252,American Journal of Psychiatry,198-204,10.1176/appi.ajp.158.2.198,11156801,0035142459,"('2-s2.0-0035142459', 'Hommer')",Article,,https://api.elsevier.com/content/abstract/scopus_id/0035142459,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0035142459&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0035142459&origin=inward +Why we like to drink: A functional magnetic resonance imaging study of the rewarding and anxiolytic effects of alcohol,Hommer,James M. Bjork;Daniel W. Hommer;Jodi M. Gilman;Megan B. Davis;Vijay A. Ramchandani,2008-04-30,149,Journal of Neuroscience,4583-4591,10.1523/JNEUROSCI.0086-08.2008,18448634,44649095315,"('2-s2.0-44649095315', 'Hommer')",Article,,https://api.elsevier.com/content/abstract/scopus_id/44649095315,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=44649095315&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=44649095315&origin=inward +Striatal sensitivity to reward deliveries and omissions in substance dependent patients,Hommer,Ashley R. Smith;James M. Bjork;Daniel W. Hommer,2008-10-01,117,NeuroImage,1609-1621,10.1016/j.neuroimage.2008.06.035,18672069,55349098780,"('2-s2.0-55349098780', 'Hommer')",Article,NIAAA,https://api.elsevier.com/content/abstract/scopus_id/55349098780,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=55349098780&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=55349098780&origin=inward +Neuroimaging in alcoholism: Ethanol and brain damage,Momenan,D. J. Drobes;I. Agartz;A. Heinz;K. Mann;C. Harper;G. Mundle;R. R. Rawlings;R. Bares;M. S. George;A. Pfefferbaum;E. V. Sullivan;H. J. Machulla;R. Momenan;S. Shoaf;D. W. Hommer;M. Reimold;R. F. Anton,2001-01-01,90,Alcoholism: Clinical and Experimental Research,,10.1111/j.1530-0277.2001.tb02383.x,11391058,0034965354,"('2-s2.0-0034965354', 'Momenan')",Conference Paper,,https://api.elsevier.com/content/abstract/scopus_id/0034965354,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0034965354&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0034965354&origin=inward +Incentive-elicited striatal activation in adolescent children of alcoholics,Hommer,Brian Knutson;James M. Bjork;Daniel W. Hommer,2008-08-01,91,Addiction,1308-1319,10.1111/j.1360-0443.2008.02250.x,18851716,47549110235,"('2-s2.0-47549110235', 'Hommer')",Article,,https://api.elsevier.com/content/abstract/scopus_id/47549110235,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=47549110235&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=47549110235&origin=inward +Anticipating instrumentally obtained and passively-received rewards: A factorial fMRI investigation,Hommer,James M. Bjork;Daniel W. Hommer,2007-02-12,79,Behavioural Brain Research,165-170,10.1016/j.bbr.2006.10.034,17140674,33845993627,"('2-s2.0-33845993627', 'Hommer')",Article,NIAAA,https://api.elsevier.com/content/abstract/scopus_id/33845993627,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33845993627&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33845993627&origin=inward +Blunted rostral anterior cingulate response during a simplified decoding task of negative emotional facial expressions in alcoholic patients,Momenan,Robert Rawlings;David George;Daniel W. Hommer;Jasmin B. Salloum;Vijay A. Ramchandani;Jerzy Bodurka;Reza Momenan,2007-09-01,84,Alcoholism: Clinical and Experimental Research,1490-1504,10.1111/j.1530-0277.2007.00447.x,17624997,34548209896,"('2-s2.0-34548209896', 'Momenan')",Article,,https://api.elsevier.com/content/abstract/scopus_id/34548209896,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34548209896&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34548209896&origin=inward +Delay Discounting Correlates with Proportional Lateral Frontal Cortex Volumes,Momenan,Reza Momenan;James M. Bjork;Daniel W. Hommer,2009-04-15,84,Biological Psychiatry,710-713,10.1016/j.biopsych.2008.11.023,19121516,62749093177,"('2-s2.0-62749093177', 'Momenan')",Article,,https://api.elsevier.com/content/abstract/scopus_id/62749093177,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=62749093177&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=62749093177&origin=inward +Developmental differences in posterior mesofrontal cortex recruitment by risky rewards,Hommer,Cinnamon L. Danube;Ashley R. Smith;James M. Bjork;Daniel W. Hommer,2007-05-02,68,Journal of Neuroscience,4839-4849,10.1523/JNEUROSCI.5469-06.2007,17475792,34247882872,"('2-s2.0-34247882872', 'Hommer')",Article,,https://api.elsevier.com/content/abstract/scopus_id/34247882872,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34247882872&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34247882872&origin=inward +Modulation of brain response to emotional images by alcohol cues in alcohol-dependent patients,Hommer,Jodi M. Gilman;Daniel W. Hommer,2008-09-01,78,Addiction Biology,423-434,10.1111/j.1369-1600.2008.00111.x,18507736,49349090929,"('2-s2.0-49349090929', 'Hommer')",Article,,https://api.elsevier.com/content/abstract/scopus_id/49349090929,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=49349090929&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=49349090929&origin=inward +Incentive-elicited mesolimbic activation and externalizing symptomatology in adolescents,Hommer,Ashley R. Smith;James M. Bjork;Daniel W. Hommer;Gang Chen,2010-07-01,74,Journal of Child Psychology and Psychiatry and Allied Disciplines,827-837,10.1111/j.1469-7610.2009.02201.x,20025620,77953210452,"('2-s2.0-77953210452', 'Hommer')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/77953210452,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77953210452&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77953210452&origin=inward +Amygdalar recruitment during anticipation of monetary rewards: An event-related fMRI study,Hommer,Shannon Bennett;Daniel W. Hommer;Grace W. Fong;Charles M. Adams;Brian Knutson;Jerald L. Varner,2003-01-01,45,Annals of the New York Academy of Sciences,476-478,10.1111/j.1749-6632.2003.tb07103.x,12724180,0242668386,"('2-s2.0-0242668386', 'Hommer')",Conference Paper,NIAAA,https://api.elsevier.com/content/abstract/scopus_id/0242668386,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0242668386&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0242668386&origin=inward +Effects of alcohol dependence on cortical thickness as determined by magnetic resonance imaging,Momenan,Daniel W. Hommer;Stefanie van Rafelghem;Ziad S. Saad;Michael J. Kerich;Reza Momenan;Leah E. Steckler,2012-11-30,50,Psychiatry Research - Neuroimaging,101-111,10.1016/j.pscychresns.2012.05.003,23149031,84872419562,"('2-s2.0-84872419562', 'Momenan')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84872419562,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84872419562&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84872419562&origin=inward +Reduced posterior mesofrontal cortex activation by risky rewards in substance-dependent patients,Momenan,Reza Momenan;Ashley R. Smith;James M. Bjork;Daniel W. Hommer,2008-05-01,38,Drug and Alcohol Dependence,115-128,10.1016/j.drugalcdep.2007.12.014,18295984,40649120997,"('2-s2.0-40649120997', 'Momenan')",Article,NIGMS,https://api.elsevier.com/content/abstract/scopus_id/40649120997,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=40649120997&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=40649120997&origin=inward +"Mesolimbic recruitment by nondrug rewards in detoxified alcoholics: Effort anticipation, reward anticipation, and reward delivery",Hommer,Ashley R. Smith;James M. Bjork;Daniel W. Hommer;Gang Chen,2012-09-01,38,Human Brain Mapping,2174-2188,10.1002/hbm.21351,22281932,84864949308,"('2-s2.0-84864949308', 'Hommer')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84864949308,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84864949308&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84864949308&origin=inward +CSF monoamine metabolites and MRI brain volumes in alcohol dependence,Momenan,Daniel W. Hommer;Ingrid Agartz;Robert R. Rawlings;Reza Momenan;Susan Shoaf,2003-01-20,29,Psychiatry Research - Neuroimaging,21-35,10.1016/S0925-4927(02)00084-7,12589880,0037455417,"('2-s2.0-0037455417', 'Momenan')",Article,,https://api.elsevier.com/content/abstract/scopus_id/0037455417,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0037455417&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0037455417&origin=inward +Voxel-based homogeneity probability maps of gray matter in groups: Assessing the reliability of functional effects,Momenan,Robert Rawlings;Daniel Hommer;Brian Knutson;Grace Fong;Reza Momenan,2004-03-01,11,NeuroImage,965-972,10.1016/j.neuroimage.2003.10.038,15006663,1542375978,"('2-s2.0-1542375978', 'Momenan')",Article,NARSAD,https://api.elsevier.com/content/abstract/scopus_id/1542375978,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=1542375978&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=1542375978&origin=inward +Dietary tyrosine/phenylalanine depletion effects on behavioral and brain signatures of human motivational processing,Hommer,Steven J. Grant;James M. Bjork;Daniel W. Hommer;Gang Chen,2014-02-01,13,Neuropsychopharmacology,595-604,10.1038/npp.2013.232,23995581,84892668864,"('2-s2.0-84892668864', 'Hommer')",Article,NIAAA,https://api.elsevier.com/content/abstract/scopus_id/84892668864,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84892668864&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84892668864&origin=inward +Smaller right amygdala in Caucasian alcohol-dependent male patients with a history of intimate partner violence: A volumetric imaging study,Momenan,Lishu Zhang;Joshua D. McKellar;Daniel W. Hommer;David T. George;Robert R. Rawlings;Melanie L. Schwandt;Reza Momenan;Mike Kerich,2013-05-01,14,Addiction Biology,537-547,10.1111/j.1369-1600.2011.00381.x,21995346,84876133622,"('2-s2.0-84876133622', 'Momenan')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84876133622,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84876133622&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84876133622&origin=inward +Relationship Between Liver Function and Brain Shrinkage in Patients with Alcohol Dependence,Momenan,Robert Rawlings;Daniel W. Hommer;Jonathan Walker;Markus Heilig;Chun Hsin Chen;Reza Momenan,2012-04-01,15,Alcoholism: Clinical and Experimental Research,625-632,10.1111/j.1530-0277.2011.01662.x,21995416,84859213871,"('2-s2.0-84859213871', 'Momenan')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84859213871,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84859213871&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84859213871&origin=inward +Single subject image analysis using the complex general linear model - An application to functional magnetic resonance imaging with multiple inputs,Hommer,Daniel W. Hommer;Jasmin B. Salloum;Lawrence A. Woltz;Robert R. Rawlings;Daniel E. Rio,2006-04-01,4,Computer Methods and Programs in Biomedicine,10-19,10.1016/j.cmpb.2005.12.003,16530880,33645286187,"('2-s2.0-33645286187', 'Hommer')",Article,,https://api.elsevier.com/content/abstract/scopus_id/33645286187,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33645286187&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33645286187&origin=inward +An application of the complex general linear model to analysis of FMRI single subjects multiple stimuli input data,Hommer,Robert Rawlings;Daniel Hommer;Daniel Rio;Lawrence Woltz;Jodi Gilman,2009-06-22,1,Progress in Biomedical Optics and Imaging - Proceedings of SPIE,,10.1117/12.811811,,67249123854,"('2-s2.0-67249123854', 'Hommer')",Conference Paper,,https://api.elsevier.com/content/abstract/scopus_id/67249123854,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=67249123854&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=67249123854&origin=inward +Development of the complex general linear model in the fourier domain: Application to fMRI multiple input-output evoked responses for single subjects,Hommer,Daniel E. Rio;Daniel W. Hommer;Lawrence A. Woltz;Robert R. Rawlings;Jodi Gilman,2013-07-19,0,Computational and Mathematical Methods in Medicine,,10.1155/2013/645043,23840281,84880165844,"('2-s2.0-84880165844', 'Hommer')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84880165844,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84880165844&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84880165844&origin=inward +The functional overlap of executive control and language processing in bilinguals,Horwitz,Barry Horwitz;Walter J.B. Van Heuven;Jason F. Smith;Emily L. Coderre,2016-05-01,27,Bilingualism,471-488,10.1017/S1366728915000188,,84930438413,"('2-s2.0-84930438413', 'Horwitz')",Article,NIDCD,https://api.elsevier.com/content/abstract/scopus_id/84930438413,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84930438413&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84930438413&origin=inward +Dissociating neural correlates of meaningful emblems from meaningless gestures in deaf signers and hearing non-signers,Horwitz,Debra J. Patkin;Barry Horwitz;Fatima T. Husain;Allen R. Braun;Jieun Kim,2012-10-10,9,Brain Research,24-35,10.1016/j.brainres.2012.08.029,22968047,84866500865,"('2-s2.0-84866500865', 'Horwitz')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84866500865,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84866500865&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84866500865&origin=inward +Detecting Functional Connectivity during Audiovisual Integration with MEG: A Comparison of Connectivity Metrics,Horwitz,Richard Coppola;Tyler Ard;Tom Holroyd;Barry Horwitz;Frederick W. Carver,2015-08-01,3,Brain Connectivity,336-348,10.1089/brain.2014.0296,25599264,84954359433,"('2-s2.0-84954359433', 'Horwitz')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84954359433,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84954359433&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84954359433&origin=inward +Increased oxidative metabolism in the Li-Fraumeni syndrome,Talagala,Joon Young Park;Dotti J. Tripodi;Cory U. Lago;S. Lalith Talagala;Ju Gyeong Kang;Ross Arena;Jie Zhuang;Ping Yuan Wang;Qais A. Ali;Francesco S. Celi;Jeong W. Choi;Robert S. Balaban;Paul M. Hwang;Wenzhe Ma;Louise C. Strong,2013-03-14,65,New England Journal of Medicine,1027-1032,10.1056/NEJMoa1214091,,84874962987,"('2-s2.0-84874962987', 'Talagala')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84874962987,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84874962987&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84874962987&origin=inward +Imaging cortical anatomy by high-resolution MR at 3.0T: Detection of the stripe of Gennari in visual area 17,Duyn,Peter Van Gelderen;Adrian Danek;Alan P. Koretsky;Peter Bandettini;Jeff Duyn;Jordan Grafman;Emmanuel L. Barbier;Alexander Vortmeyer;Sean Marrett,2002-10-01,120,Magnetic Resonance in Medicine,735-738,10.1002/mrm.10255,12353293,0036787435,"('2-s2.0-0036787435', 'Duyn')",Article,,https://api.elsevier.com/content/abstract/scopus_id/0036787435,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0036787435&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0036787435&origin=inward +Limbic hyperactivation during processing of neutral facial expressions in children with bipolar disorder,Pine,Deborah T. Vinton;Ellen Leibenluft;Brendan A. Rich;Rebecca E. Hommer;Lisa H. Berghorst;Stephen J. Fromm;Erin B. McClure;Roxann Roberson-Nay;Daniel S. Pine,2006-06-06,240,Proceedings of the National Academy of Sciences of the United States of America,8900-8905,10.1073/pnas.0603246103,16735472,33745030267,"('2-s2.0-33745030267', 'Pine')",Article,,https://api.elsevier.com/content/abstract/scopus_id/33745030267,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33745030267&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33745030267&origin=inward +Frontotemporal alterations in pediatric bipolar disorder: Results of a voxel-based morphometry study,Nugent,Ellen Leibenluft;Wayne C. Drevets;Daniel P. Dickstein;Dennis S. Charney;Allison C. Nugent;Michael P. Milham;Daniel S. Pine,2005-07-01,194,Archives of General Psychiatry,734-741,10.1001/archpsyc.62.7.734,15997014,21744449188,"('2-s2.0-21744449188', 'Nugent')",Article,,https://api.elsevier.com/content/abstract/scopus_id/21744449188,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=21744449188&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=21744449188&origin=inward +Amygdala activation during emotion processing of neutral faces in children with severe mood dysregulation versus ADHD or bipolar disorder,Pine,Sarah E. Horsey;Michelle M. Reising;Ellen Leibenluft;Amanda E. Guyer;Laura A. Thomas;Brendan A. Rich;Jessica R. Lunsford;Kenneth Towbin;Melissa A. Brotman;Stephen J. Fromm;Daniel S. Pine,2010-01-01,211,American Journal of Psychiatry,61-69,10.1176/appi.ajp.2009.09010043,19917597,73949111386,"('2-s2.0-73949111386', 'Pine')",Article,,https://api.elsevier.com/content/abstract/scopus_id/73949111386,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=73949111386&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=73949111386&origin=inward +Neural connectivity in children with bipolar disorder: Impairment in the face emotion processing circuit,Pine,Ellen Leibenluft;Daniel P. Dickstein;Brendan A. Rich;Lisa H. Berghorst;Melissa A. Brotman;Stephen J. Fromm;Daniel S. Pine,2008-01-01,98,Journal of Child Psychology and Psychiatry and Allied Disciplines,88-96,10.1111/j.1469-7610.2007.01819.x,18181882,37548998957,"('2-s2.0-37548998957', 'Pine')",Article,,https://api.elsevier.com/content/abstract/scopus_id/37548998957,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=37548998957&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=37548998957&origin=inward +Neural activation during encoding of emotional faces in pediatric bipolar disorder,Pine,Roxann Roberson-nay;Ellen Leibenluft;Deborah Vinton;Daniel P. Dickstein;Brendan A. Rich;Daniel S. Pine;Lisa Berghorst,2007-11-01,65,Bipolar Disorders,679-692,10.1111/j.1399-5618.2007.00418.x,17988357,35748984107,"('2-s2.0-35748984107', 'Pine')",Article,,https://api.elsevier.com/content/abstract/scopus_id/35748984107,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=35748984107&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=35748984107&origin=inward +Applications of multivariate modeling to neuroimaging group analysis: A comprehensive alternative to univariate general linear model,Leibenluft,Ellen Leibenluft;Robert W. Cox;Gang Chen;Ziad S. Saad;Nancy E. Adleman,2014-10-01,96,NeuroImage,571-588,10.1016/j.neuroimage.2014.06.027,24954281,84904821099,"('2-s2.0-84904821099', 'Leibenluft')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/84904821099,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84904821099&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84904821099&origin=inward +Inhibitory motor control in response stopping and response switching,Leibenluft,Ellen Leibenluft;Naomi M. Kenner;Martha Skup;Rebecca E. Hommer;Jeanette A. Mumford;Russell A. Poldrack,2010-06-23,61,Journal of Neuroscience,8512-8518,10.1523/JNEUROSCI.1096-10.2010,20573898,77954092726,"('2-s2.0-77954092726', 'Leibenluft')",Article,,https://api.elsevier.com/content/abstract/scopus_id/77954092726,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77954092726&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77954092726&origin=inward +Brain systems underlying response flexibility in healthy and bipolar adolescents: An event-related fMRI study,Pine,Eric E. Nelson;Deborah T. Vinton;Ellen Leibenluft;Daniel S. Pine;Rebecca E. Hommer;Daniel P. Dickstein;Brendan A. Rich;Melissa A. Brotman;Kenneth E. Towbin;Lisa Berghorst,2007-12-01,49,Bipolar Disorders,810-819,10.1111/j.1399-5618.2007.00419.x,18076530,36749028840,"('2-s2.0-36749028840', 'Pine')",Article,,https://api.elsevier.com/content/abstract/scopus_id/36749028840,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=36749028840&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=36749028840&origin=inward +Altered neural function in pediatric bipolar disorder during reversal learning,Pine,Ellen Leibenluft;James R. Blair;Martha Skup;Daniel P. Dickstein;Elizabeth C. Finger;Daniel S. Pine,2010-11-01,46,Bipolar Disorders,707-719,10.1111/j.1399-5618.2010.00863.x,21040288,78049516789,"('2-s2.0-78049516789', 'Pine')",Article,,https://api.elsevier.com/content/abstract/scopus_id/78049516789,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=78049516789&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=78049516789&origin=inward +Neural mechanisms of frustration in chronically irritable children,Pine,Ellen Leibenluft;Pilyoung Kim;Richard C. Reynolds;Megan E. Connolly;Daniel S. Pine;Christen M. Deveney;Catherine T. Haring;Brian L. Bones,2013-10-01,66,American Journal of Psychiatry,1186-1194,10.1176/appi.ajp.2013.12070917,,84885192759,"('2-s2.0-84885192759', 'Pine')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84885192759,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84885192759&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84885192759&origin=inward +Neural correlates of reversal learning in severe mood dysregulation and pediatric bipolar disorder,Blair,R. James R. Blair;Ellen Leibenluft;Reilly Kayser;Daniel Dickstein;Daniel Pine;Nancy E. Adleman,2011-01-01,52,Journal of the American Academy of Child and Adolescent Psychiatry,1173-1185.e2,10.1016/j.jaac.2011.07.011,,80054867803,"('2-s2.0-80054867803', 'Blair')",Article,,https://api.elsevier.com/content/abstract/scopus_id/80054867803,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=80054867803&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=80054867803&origin=inward +Amygdala hyperactivation during face emotion processing in unaffected youth at risk for bipolar disorder,Pine,Ellen Leibenluft;Aviva K. Olsavsky;Julia G. Rutenberg;Christen M. Deveney;Eli J. Muhrer;Kenneth Towbin;Melissa A. Brotman;Stephen J. Fromm;Daniel S. Pine,2012-03-01,53,Journal of the American Academy of Child and Adolescent Psychiatry,294-303,10.1016/j.jaac.2011.12.008,22365465,84857595862,"('2-s2.0-84857595862', 'Pine')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84857595862,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84857595862&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84857595862&origin=inward +Differing amygdala responses to facial expressions in children and adults with bipolar disorder,Zarate,Carlos A. Zarate;R. James R. Blair;Ellen Leibenluft;Pilyoung Kim;Laura A. Thomas;Brooke H. Rosen;Melissa A. Brotman;Alexander M. Moscicki;Daniel S. Pine,2012-06-01,32,American Journal of Psychiatry,642-649,10.1176/appi.ajp.2012.11081245,,84862221668,"('2-s2.0-84862221668', 'Zarate')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84862221668,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84862221668&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84862221668&origin=inward +Cross-sectional and longitudinal abnormalities in brain structure in children with severe mood dysregulation or bipolar disorder,Pine,Ellen Leibenluft;Reilly Kayser;Daniel S. Pine;Daniel P. Dickstein;Varun Razdan;Melissa A. Brotman;Stephen J. Fromm;Nancy E. Adleman,2012-11-01,44,Journal of Child Psychology and Psychiatry and Allied Disciplines,1149-1156,10.1111/j.1469-7610.2012.02568.x,22650379,84867576031,"('2-s2.0-84867576031', 'Pine')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84867576031,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84867576031&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84867576031&origin=inward +Elevated amygdala responses to emotional faces in youths with chronic irritability or bipolar disorder,Blair,Ellen Leibenluft;Pilyoung Kim;Richard C. Reynolds;Daniel S. Pine;Abigail A. Marsh;Kendra E. Hinton;Nancy E. Adleman;R. J.R. Blair;Hannah S. Milch;Laura A. Thomas;Brian L. Bones,2013-06-03,34,NeuroImage: Clinical,637-645,10.1016/j.nicl.2013.04.007,,84878267180,"('2-s2.0-84878267180', 'Blair')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/84878267180,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84878267180&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84878267180&origin=inward +Neural correlates of irritability in disruptive mood dysregulation and bipolar disorders,Pine,Ellen Leibenluft;Pilyoung Kim;Richard C. Reynolds;Jillian Lee Wiggins;Daniel S. Pine;Gang Chen;Melissa A. Brotman;Nancy E. Adleman;Allison H. Oakes,2016-07-01,42,American Journal of Psychiatry,722-730,10.1176/appi.ajp.2015.15060833,26892942,84991214825,"('2-s2.0-84991214825', 'Pine')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/84991214825,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84991214825&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84991214825&origin=inward +A developmental study of the neural circuitry mediating motor inhibition in bipolar disorder,Stringaris,Carlos A. Zarate;Ellen Leibenluft;Judah D. Weathers;Daniel S. Pine;Argyris Stringaris;Christen M. Deveney;Stephanie B. LeBourdais;Melissa A. Brotman;Stephen J. Fromm;Megan E. Connolly,2012-06-01,30,American Journal of Psychiatry,633-641,10.1176/appi.ajp.2012.11081244,,84862195360,"('2-s2.0-84862195360', 'Stringaris')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84862195360,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84862195360&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84862195360&origin=inward +A Genome-Wide Association Study of Amygdala Activation in Youths With and Without Bipolar Disorder,Leibenluft,Ellen Leibenluft;Francis J. McMahon;Martha Skup;Melissa A. Brotman;Nirmala Akula;Xinmin Liu,2010-01-01,20,Journal of the American Academy of Child and Adolescent Psychiatry,33-41,10.1097/00004583-201001000-00007,20215924,73649122016,"('2-s2.0-73649122016', 'Leibenluft')",Article,,https://api.elsevier.com/content/abstract/scopus_id/73649122016,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=73649122016&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=73649122016&origin=inward +Aberrant amygdala intrinsic functional connectivity distinguishes youths with bipolar disorder from those with severe mood dysregulation,Pine,Ellen Leibenluft;Richard C. Reynolds;Daniel S. Pine;Derek Hsu;Daniel P. Dickstein;Joel Stoddard;Melissa A. Brotman;Monique Ernst,2015-01-01,24,Psychiatry Research - Neuroimaging,120-125,10.1016/j.pscychresns.2014.11.006,25544024,84922827361,"('2-s2.0-84922827361', 'Pine')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/84922827361,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84922827361&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84922827361&origin=inward +Proton magnetic resonance spectroscopy in youth with severe mood dysregulation,Pine,Kenneth E. Towbin;Ellen Leibenluft;Daniel P. Dickstein;Jan Willem van der Veen;Lisa Knopf;Daniel S. Pine,2008-05-30,15,Psychiatry Research - Neuroimaging,30-39,10.1016/j.pscychresns.2007.11.006,18403184,43049161272,"('2-s2.0-43049161272', 'Pine')",Article,NARSAD,https://api.elsevier.com/content/abstract/scopus_id/43049161272,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=43049161272&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=43049161272&origin=inward +Fronto-limbic-striatal dysfunction in pediatric and adult patients with bipolar disorder: Impact of face emotion and attentional demands,Zarate,E. J. Muhrer;J. G. Rutenberg;C. M. Deveney;A. K. Olsavsky;M. A. Brotman;N. E. Adleman;W. L. Tseng;S. J. Fromm;C. A. Zarate;D. S. Pine;E. Leibenluft,2014-01-01,25,Psychological Medicine,1639-1651,10.1017/S003329171300202X,23930595,84899710852,"('2-s2.0-84899710852', 'Zarate')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84899710852,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84899710852&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84899710852&origin=inward +Parametric modulation of neural activity during face emotion processing in unaffected youth at familial risk for bipolar disorder,Pine,Ellen Leibenluft;Laura A. Thomas;Christen M. Deveney;Kendra E. Hinton;Jennifer Y. Yi;Melissa A. Brotman;Daniel S. Pine,2014-01-01,15,Bipolar Disorders,756-763,10.1111/bdi.12193,24617738,84925940729,"('2-s2.0-84925940729', 'Pine')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84925940729,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84925940729&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84925940729&origin=inward +Abnormal fusiform activation during emotional-face encoding assessed with functional magnetic resonance imaging,Pine,Ellen Leibenluft;Aviva K. Olsavsky;Daniel S. Pine;Eli J. Muhrer;Nancy E. Adleman;Stephen J. Fromm;Melissa A. Brotman;Brian L. Bones;Reilly R. Kayser;Carlos Zarate,2013-05-30,16,Psychiatry Research - Neuroimaging,161-163,10.1016/j.pscychresns.2013.01.006,23541333,84876788858,"('2-s2.0-84876788858', 'Pine')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/84876788858,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84876788858&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84876788858&origin=inward +An fMRI study of emotional face encoding in youth at risk for bipolar disorder,Pine,A. K. Olsavsky;B. L. Bones;R. R. Kayser;M. A. Brotman;W. L. Tseng;S. J. Fromm;D. S. Pine;E. Leibenluft,2015-01-01,21,European Psychiatry,94-98,10.1016/j.eurpsy.2014.05.004,25172156,84920938450,"('2-s2.0-84920938450', 'Pine')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/84920938450,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84920938450&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84920938450&origin=inward +Neural activation during risky decision-making in youth at high risk for substance use disorders,Leibenluft,Tom A. Hummer;Peter Finn;Ellen Leibenluft;Leslie A. Hulvershorn;Lauren Overhage;Melissa A. Cyders;Rena Fukunaga;Allyson Dir;Amit Anand;Joshua Brown,2015-08-30,16,Psychiatry Research - Neuroimaging,102-111,10.1016/j.pscychresns.2015.05.007,26071624,84938745618,"('2-s2.0-84938745618', 'Leibenluft')",Article,AACAP,https://api.elsevier.com/content/abstract/scopus_id/84938745618,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84938745618&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84938745618&origin=inward +A developmental neuroimaging investigation of the change paradigm,Pine,Ellen Leibenluft;Martha Skup;Julie M. Hall;Laura A. Thomas;Daniel S. Pine;Sarah E. Jenkins,2011-01-01,7,Developmental Science,148-161,10.1111/j.1467-7687.2010.00967.x,21159096,78650158125,"('2-s2.0-78650158125', 'Pine')",Article,,https://api.elsevier.com/content/abstract/scopus_id/78650158125,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=78650158125&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=78650158125&origin=inward +Association of irritability and anxiety with the neural mechanisms of implicit face emotion processing in youths with psychopathology,Pine,Laura Donahue;Pilyoung Kim;Wan Ling Tseng;Kenneth E. Towbin;Ellen Leibenluft;Daniel S. Pine;Gang Chen;Joel Stoddard;Melissa A. Brotman;Jennifer Yi,2017-01-01,23,JAMA Psychiatry,95-103,10.1001/jamapsychiatry.2016.3282,27902832,85011396226,"('2-s2.0-85011396226', 'Pine')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85011396226,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85011396226&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85011396226&origin=inward +Comparing Brain Morphometry Across Multiple Childhood Psychiatric Disorders,Pine,Elizabeth R. Steuber;Ellen Leibenluft;Daniel S. Pine;Sara N. Lever;Andrea L. Gold;Melissa A. Brotman;Stephen J. Fromm;Sven C. Mueller;Nancy E. Adleman,2016-12-01,22,Journal of the American Academy of Child and Adolescent Psychiatry,1027-1037.e3,10.1016/j.jaac.2016.08.008,27871637,84996636665,"('2-s2.0-84996636665', 'Pine')",Conference Paper,,https://api.elsevier.com/content/abstract/scopus_id/84996636665,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84996636665&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84996636665&origin=inward +Neural response during explicit and implicit face processing varies developmentally in bipolar disorder,Zarate,Carlos A. Zarate;Ellen Leibenluft;Richard C. Reynolds;Laura A. Thomas;Eli M. Muhrer;Daniel S. Pine;Christen M. Deveney;Kendra E. Hinton;Melissa A. Brotman;Nancy E. Adleman,2013-01-01,5,Social Cognitive and Affective Neuroscience,1984-1992,10.1093/scan/nsu014,24493839,84928689508,"('2-s2.0-84928689508', 'Zarate')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84928689508,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84928689508&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84928689508&origin=inward +Neural Markers in Pediatric Bipolar Disorder and Familial Risk for Bipolar Disorder,Pine,Ellen Leibenluft;Pilyoung Kim;Richard C. Reynolds;Jillian Lee Wiggins;Daniel S. Pine;Gang Chen;Caroline G. Wambach;Kenneth Towbin;Melissa A. Brotman;Nancy E. Adleman,2017-01-01,17,Journal of the American Academy of Child and Adolescent Psychiatry,67-78,10.1016/j.jaac.2016.10.009,27993231,85006340167,"('2-s2.0-85006340167', 'Pine')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85006340167,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85006340167&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85006340167&origin=inward +Behavioral and Neural Sustained Attention Deficits in Disruptive Mood Dysregulation Disorder and Attention-Deficit/Hyperactivity Disorder,Pine,Susan Zhang;Kenneth E. Towbin;Ellen Leibenluft;Jillian Lee Wiggins;Alexa Curhan;Daniel S. Pine;David Pagliaccio;Melissa A. Brotman;Nancy E. Adleman,2017-05-01,6,Journal of the American Academy of Child and Adolescent Psychiatry,426-435,10.1016/j.jaac.2017.02.008,28433092,85016555669,"('2-s2.0-85016555669', 'Pine')",Article,,https://api.elsevier.com/content/abstract/scopus_id/85016555669,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85016555669&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85016555669&origin=inward +Functional connectivity during masked and unmasked face emotion processing in bipolar disorder,Zarate,Carlos A. Zarate;Ellen Leibenluft;Wan Ling Tseng;Joel Stoddard;Melissa A. Brotman;Laura A. Thomas;Elizabeth Harkins;Daniel S. Pine,2016-12-30,2,Psychiatry Research - Neuroimaging,1-9,10.1016/j.pscychresns.2016.10.006,27814457,84994291800,"('2-s2.0-84994291800', 'Zarate')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/84994291800,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84994291800&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84994291800&origin=inward +Brain activation abnormalities during speech and non-speech in stuttering speakers,Zarate,Mary Kay Kenney;Soo Eun Chang;Christy L. Ludlow;Torrey M.J. Loucks,2009-05-15,112,NeuroImage,201-212,10.1016/j.neuroimage.2009.01.066,19401143,62749197293,"('2-s2.0-62749197293', 'Zarate')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/62749197293,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=62749197293&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=62749197293&origin=inward +Central nervous system control of the laryngeal muscles in humans,Zarate,Christy L. Ludlow,2005-07-28,94,Respiratory Physiology and Neurobiology,205-222,10.1016/j.resp.2005.04.015,15927543,23444462637,"('2-s2.0-23444462637', 'Zarate')",Article,,https://api.elsevier.com/content/abstract/scopus_id/23444462637,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=23444462637&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=23444462637&origin=inward +Human brain activation during phonation and exhalation: Common volitional control for two upper airway functions,Zarate,Kristina Simonyan;Catherine L. Reynolds;Torrey M.J. Loucks;Christopher J. Poletto;Christy L. Ludlow,2007-05-15,82,NeuroImage,131-143,10.1016/j.neuroimage.2007.01.049,17428683,34247222555,"('2-s2.0-34247222555', 'Zarate')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/34247222555,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34247222555&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34247222555&origin=inward +Focal white matter changes in spasmodic dysphonia: A combined diffusion tensor imaging and neuropathological study,Hallett,Kristina Simonyan;Michael R. Lewin-Smith;John Ostuni;Alexander O. Vortmeyer;Elisabeth J. Rushing;Fernanda Tovar-Moll;Mark Hallett;Christy L. Ludlow;Victor F. Kalasinsky,2008-01-01,90,Brain,447-459,10.1093/brain/awm303,18083751,38849191142,"('2-s2.0-38849191142', 'Hallett')",Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/38849191142,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=38849191142&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=38849191142&origin=inward +Abnormal activation of the primary somatosensory cortex in spasmodic dysphonia: An fMRI Study,Hallett,Kristina Simonyan;Christy L. Ludlow,2010-11-01,85,Cerebral Cortex,2749-2759,10.1093/cercor/bhq023,20194686,77957842072,"('2-s2.0-77957842072', 'Hallett')",Article,,https://api.elsevier.com/content/abstract/scopus_id/77957842072,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77957842072&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77957842072&origin=inward +Functional neuroanatomy of human voluntary cough and sniff production,Hallett,Kristina Simonyan;Torrey M.J. Loucks;Ziad S. Saad;Christopher J. Poletto;Christy L. Ludlow,2007-08-15,60,NeuroImage,401-409,10.1016/j.neuroimage.2007.05.021,17574873,34548862046,"('2-s2.0-34548862046', 'Hallett')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/34548862046,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34548862046&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34548862046&origin=inward +Common neural substrates support speech and non-speech vocal tract gestures,Hallett,Mary Kay Kenney;Torrey M.J. Loucks;Soo Eun Chang;Christopher J. Poletto;Christy L. Ludlow,2009-08-01,43,NeuroImage,314-325,10.1016/j.neuroimage.2009.03.032,19327400,67349243451,"('2-s2.0-67349243451', 'Hallett')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/67349243451,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=67349243451&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=67349243451&origin=inward +Abnormal structure-function relationship in spasmodic dysphonia,Hallett,Kristina Simonyan;Christy L. Ludlow,2012-02-01,47,Cerebral Cortex,417-425,10.1093/cercor/bhr120,21666131,84858262181,"('2-s2.0-84858262181', 'Hallett')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84858262181,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84858262181&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84858262181&origin=inward +Developing an anatomical model of the human laryngeal cartilages from magnetic resonance imaging,Hallett,W. Scott Selbie;Christy L. Ludlow;Sally L. Gewalt,2002-09-01,22,Journal of the Acoustical Society of America,1077-1090,10.1121/1.1501586,12243156,0036712795,"('2-s2.0-0036712795', 'Hallett')",Article,,https://api.elsevier.com/content/abstract/scopus_id/0036712795,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0036712795&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0036712795&origin=inward +Similarities in speech and white matter characteristics in idiopathic developmental stuttering and adult-onset stuttering,Hallett,Christy L. Ludlow;Soo Eun Chang;Anna Synnestvedt;John Ostuni,2010-09-01,16,Journal of Neurolinguistics,455-469,10.1016/j.jneuroling.2008.11.004,,77954534915,"('2-s2.0-77954534915', 'Hallett')",Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/77954534915,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77954534915&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77954534915&origin=inward +Repetition and the brain: Neural models of stimulus-specific effects,Martin,Kalanit Grill-Spector;Richard Henson;Alex Martin,2006-01-01,1470,Trends in Cognitive Sciences,14-23,10.1016/j.tics.2005.11.006,16321563,30044437340,"('2-s2.0-30044437340', 'Martin')",Review,,https://api.elsevier.com/content/abstract/scopus_id/30044437340,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=30044437340&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=30044437340&origin=inward +The representation of object concepts in the brain,Martin,Alex Martin,2007-02-23,1017,Annual Review of Psychology,25-45,10.1146/annurev.psych.57.102904.190143,16968210,33847072067,"('2-s2.0-33847072067', 'Martin')",Article,,https://api.elsevier.com/content/abstract/scopus_id/33847072067,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33847072067&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33847072067&origin=inward +Representation of manipulable man-made objects in the dorsal stream,Martin,Linda L. Chao;Alex Martin,2000-01-01,883,NeuroImage,478-484,10.1006/nimg.2000.0635,10988041,0033778373,"('2-s2.0-0033778373', 'Martin')",Article,,https://api.elsevier.com/content/abstract/scopus_id/0033778373,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0033778373&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0033778373&origin=inward +Semantic memory and the brain: Structure and processes,Martin,L. L. Chao;A. Martin,2001-04-01,868,Current Opinion in Neurobiology,194-201,10.1016/S0959-4388(00)00196-3,11301239,0035312810,"('2-s2.0-0035312810', 'Martin')",Review,NIMH,https://api.elsevier.com/content/abstract/scopus_id/0035312810,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0035312810&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0035312810&origin=inward +Integration of auditory and visual information about objects in superior temporal sulcus,Martin,Alex Martin;Kathryn E. Lee;Michael S. Beauchamp;Brenna D. Argall,2004-03-04,482,Neuron,809-823,10.1016/S0896-6273(04)00070-4,15003179,1542268973,"('2-s2.0-1542268973', 'Martin')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/1542268973,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=1542268973&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=1542268973&origin=inward +Parallel visual motion processing streams for manipulable objects and human movements,Martin,James V. Haxby;Kathryn E. Lee;Michael S. Beauchamp;Alex Martin,2002-03-28,397,Neuron,149-159,10.1016/S0896-6273(02)00642-6,11931749,0037187721,"('2-s2.0-0037187721', 'Martin')",Article,,https://api.elsevier.com/content/abstract/scopus_id/0037187721,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0037187721&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0037187721&origin=inward +fMRI Responses to Video and Point-Light Displays of Moving Humans and Manipulable Objects,Martin,James V. Haxby;Kathryn E. Lee;Michael S. Beauchamp;Alex Martin,2003-10-01,341,Journal of Cognitive Neuroscience,991-1001,10.1162/089892903770007380,14614810,0142025001,"('2-s2.0-0142025001', 'Martin')",Article,,https://api.elsevier.com/content/abstract/scopus_id/0142025001,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0142025001&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0142025001&origin=inward +Unraveling multisensory integration: Patchy organization within human STS multisensory cortex,Duyn,Brenna D. Argall;Jerzy Bodurka;Alex Martin;Michael S. Beauchamp;Jeff H. Duyn,2004-11-01,355,Nature Neuroscience,1190-1192,10.1038/nn1333,15475952,7044264448,"('2-s2.0-7044264448', 'Duyn')",Article,,https://api.elsevier.com/content/abstract/scopus_id/7044264448,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=7044264448&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=7044264448&origin=inward +Pictures of appetizing foods activate gustatory cortices for taste and reward,Martin,W. Kyle Simmons;Lawrence W. Barsalou;Alex Martin,2005-10-01,338,Cerebral Cortex,1602-1608,10.1093/cercor/bhi038,15703257,25144434898,"('2-s2.0-25144434898', 'Martin')",Article,NSF,https://api.elsevier.com/content/abstract/scopus_id/25144434898,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=25144434898&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=25144434898&origin=inward +"See me, hear me, touch me: Multisensory integration in lateral occipital-temporal cortex",Martin,Michael S. Beauchamp,2005-01-01,255,Current Opinion in Neurobiology,145-153,10.1016/j.conb.2005.03.011,15831395,20544448036,"('2-s2.0-20544448036', 'Martin')",Review,NIMH,https://api.elsevier.com/content/abstract/scopus_id/20544448036,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=20544448036&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=20544448036&origin=inward +A common neural substrate for perceiving and knowing about color,Martin,Ken McRae;W. Kyle Simmons;Vimal Ramjee;Lawrence W. Barsalou;Alex Martin;Michael S. Beauchamp,2007-08-03,240,Neuropsychologia,2802-2810,10.1016/j.neuropsychologia.2007.05.002,17575989,34547436874,"('2-s2.0-34547436874', 'Martin')",Article,NSERC,https://api.elsevier.com/content/abstract/scopus_id/34547436874,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34547436874&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34547436874&origin=inward +Long-lasting cortical plasticity in the object naming system,Martin,Timothy Ellmore;Miranda Van Turennout;Alex Martin,2000-12-07,192,Nature Neuroscience,1329-1334,10.1038/81873,11100155,0033711374,"('2-s2.0-0033711374', 'Martin')",Article,,https://api.elsevier.com/content/abstract/scopus_id/0033711374,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0033711374&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0033711374&origin=inward +Action-Related Properties Shape Object Representations in the Ventral Stream,Martin,Raffaella I. Rumiati;Bradford Z. Mahon;Alfonso Caramazza;Alex Martin;Shawn C. Milleville;Gioia A.L. Negri,2007-08-02,204,Neuron,507-520,10.1016/j.neuron.2007.07.011,17678861,34547160845,"('2-s2.0-34547160845', 'Martin')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/34547160845,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34547160845&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34547160845&origin=inward +Neural foundations for understanding social and mechanical concepts,Martin,Jill Weisberg;Alex Martin,2003-05-01,181,Cognitive Neuropsychology,575-587,10.1080/02643290342000005,,0038486607,"('2-s2.0-0038486607', 'Martin')",Review,,https://api.elsevier.com/content/abstract/scopus_id/0038486607,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0038486607&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0038486607&origin=inward +Experience-dependent modulation of category-related cortical activity,Martin,Jill Weisberg;Linda L. Chao;Alex Martin,2002-01-01,172,Cerebral Cortex,545-551,10.1093/cercor/12.5.545,11950772,0036259085,"('2-s2.0-0036259085', 'Martin')",Article,,https://api.elsevier.com/content/abstract/scopus_id/0036259085,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0036259085&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0036259085&origin=inward +Neural systems supporting lexical search guided by letter and semantic category cues: A self-paced overt response fMRI study of verbal fluency,Bandettini,Alex Martin;Rasmus M. Birn;Tyler B. Jones;Laura Case;Lauren Kenworthy;Peter A. Bandettini;Rachel Caravella,2010-01-01,195,NeuroImage,1099-1107,10.1016/j.neuroimage.2009.07.036,19632335,70349952389,"('2-s2.0-70349952389', 'Bandettini')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/70349952389,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=70349952389&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=70349952389&origin=inward +Statistical criteria in fMRI studies of multisensory integration,Bandettini,Michael S. Beauchamp,2005-07-12,157,Neuroinformatics,93-113,10.1385/NI:03:02:93,15988040,21344455127,"('2-s2.0-21344455127', 'Bandettini')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/21344455127,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=21344455127&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=21344455127&origin=inward +Fractionation of social brain circuits in autism spectrum disorders,Martin,Gregory L. Wallace;Robert W. Cox;Stephen J. Gotts;W. Kyle Simmons;Alex Martin;Lydia A. Milbury,2012-01-01,189,Brain,2711-2725,10.1093/brain/aws160,22791801,84866396847,"('2-s2.0-84866396847', 'Martin')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/84866396847,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84866396847&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84866396847&origin=inward +A neural system for learning about object function,Martin,Jill Weisberg;Miranda Van Turennout;Alex Martin,2007-03-01,147,Cerebral Cortex,513-521,10.1093/cercor/bhj176,16581980,33846977727,"('2-s2.0-33846977727', 'Martin')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/33846977727,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33846977727&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33846977727&origin=inward +The selectivity and functional connectivity of the anterior temporal lobes,Martin,W. Kyle Simmons;Patrick S.F. Bellgowan;Mark Reddish;Alex Martin,2010-04-01,146,Cerebral Cortex,813-825,10.1093/cercor/bhp149,19620621,77949422404,"('2-s2.0-77949422404', 'Martin')",Article,,https://api.elsevier.com/content/abstract/scopus_id/77949422404,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77949422404&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77949422404&origin=inward +Age-related temporal and parietal cortical thinning in autism spectrum disorders,Martin,Gregory L. Wallace;Lauren Kenworthy;Alex Martin;Nathan Dankner;Jay N. Giedd,2010-12-01,154,Brain,3745-3754,10.1093/brain/awq279,20926367,78649897373,"('2-s2.0-78649897373', 'Martin')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/78649897373,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=78649897373&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=78649897373&origin=inward +Understanding animate agents: Distinct roles for the social network and mirror system: Research report,Martin,Thalia Wheatley;Shawn C. Milleville;Alex Martin,2007-06-01,143,Psychological Science,469-474,10.1111/j.1467-9280.2007.01923.x,17576256,34250325112,"('2-s2.0-34250325112', 'Martin')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/34250325112,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34250325112&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34250325112&origin=inward +Automatic priming of semantically related words reduces activity in the fusiform gyrus,Martin,Thalia Wheatley;Jill Weisberg;Michael S. Beauchamp;Alex Martin,2005-12-01,130,Journal of Cognitive Neuroscience,1871-1885,10.1162/089892905775008689,16356325,33644901812,"('2-s2.0-33644901812', 'Martin')",Article,,https://api.elsevier.com/content/abstract/scopus_id/33644901812,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33644901812&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33644901812&origin=inward +The perils of global signal regression for group comparisons: A case study of Autism Spectrum Disorders,Martin,Gregory L. Wallace;Hang Joon Jo;Robert W. Cox;Stephen J. Gotts;Ziad S. Saad;Alex Martin,2013-07-12,162,Frontiers in Human Neuroscience,,10.3389/fnhum.2013.00356,,84887546061,"('2-s2.0-84887546061', 'Martin')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84887546061,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84887546061&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84887546061&origin=inward +Simplified intersubject averaging on the cortical surface using SUMA,Martin,Ziad S. Saad;Michael S. Beauchamp;Brenna D. Argall,2006-01-01,126,Human Brain Mapping,14-27,10.1002/hbm.20158,16035046,32044472524,"('2-s2.0-32044472524', 'Martin')",Article,,https://api.elsevier.com/content/abstract/scopus_id/32044472524,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=32044472524&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=32044472524&origin=inward +Sources of group differences in functional connectivity: An investigation applied to autism spectrum disorder,Bandettini,Rasmus M. Birn;Tyler B. Jones;Lauren Kenworthy;Peter A. Bandettini;Alex Martin;Shawn C. Milleville;Laura K. Case,2010-01-01,123,NeuroImage,401-414,10.1016/j.neuroimage.2009.07.051,19646533,70349969868,"('2-s2.0-70349969868', 'Bandettini')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/70349969868,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=70349969868&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=70349969868&origin=inward +The anterior temporal lobes and the functional architecture of semantic memory,Martin,W. Kyle Simmons;Alex Martin,2009-01-01,126,Journal of the International Neuropsychological Society,645-649,10.1017/S1355617709990348,19631024,70349423423,"('2-s2.0-70349423423', 'Martin')",Review,,https://api.elsevier.com/content/abstract/scopus_id/70349423423,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=70349423423&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=70349423423&origin=inward +Modulation of neural activity during object naming: Effects of time and practice,Martin,Miranda Van Turennout;Lisa Bielamowicz;Alex Martin,2003-04-01,106,Cerebral Cortex,381-391,10.1093/cercor/13.4.381,12631567,0037382263,"('2-s2.0-0037382263', 'Martin')",Article,,https://api.elsevier.com/content/abstract/scopus_id/0037382263,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0037382263&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0037382263&origin=inward +Grounding object concepts in perception and action: Evidence from fMRI studies of tools,Martin,Michael S. Beauchamp;Alex Martin,2007-01-01,109,Cortex,461-468,10.1016/S0010-9452(08)70470-2,17533768,34248593724,"('2-s2.0-34248593724', 'Martin')",Article,,https://api.elsevier.com/content/abstract/scopus_id/34248593724,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34248593724&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34248593724&origin=inward +Two distinct forms of functional lateralization in the human brain,Martin,Gregory L. Wallace;Hang Joon Jo;Robert W. Cox;Stephen J. Gotts;Ziad S. Saad;Alex Martin,2013-09-03,144,Proceedings of the National Academy of Sciences of the United States of America,,10.1073/pnas.1302581110,23959883,84883412265,"('2-s2.0-84883412265', 'Martin')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/84883412265,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84883412265&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84883412265&origin=inward +Toward an evolutionary perspective on conceptual representation: Species-specific calls activate visual and affective processing systems in the macaque,Martin,Peter Herscovitch;Richard E. Carson;Marc D. Hauser;Marco Lopes;Ricardo Gil-da-Costa;Alex Martin;Allen Braun,2004-12-14,93,Proceedings of the National Academy of Sciences of the United States of America,17516-17521,10.1073/pnas.0408077101,15583132,10644277895,"('2-s2.0-10644277895', 'Martin')",Article,,https://api.elsevier.com/content/abstract/scopus_id/10644277895,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=10644277895&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=10644277895&origin=inward +Distinct roles for medial temporal lobe structures in memory for objects and their locations,Martin,Elizabeth A. Buffalo;Patrick S.F. Bellgowan;Alex Martin,2006-10-09,89,Learning and Memory,638-643,10.1101/lm.251906,16980544,33749325994,"('2-s2.0-33749325994', 'Martin')",Article,,https://api.elsevier.com/content/abstract/scopus_id/33749325994,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33749325994&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33749325994&origin=inward +Repetition priming and repetition suppression: A case for enhanced efficiency through neural synchronization,Martin,Carson C. Chow;Stephen J. Gotts;Alex Martin,2012-08-01,102,Cognitive Neuroscience,227-237,10.1080/17588928.2012.670617,,84864692538,"('2-s2.0-84864692538', 'Martin')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/84864692538,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84864692538&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84864692538&origin=inward +Improved BOLD detection in the medial temporal region using parallel imaging and voxel volume reduction,Bandettini,Peter Van Gelderen;Jerzy Bodurka;Patrick S.F. Bellgowan;Peter A. Bandettini;Alex Martin,2006-02-15,67,NeuroImage,1244-1251,10.1016/j.neuroimage.2005.08.042,16242347,31844449196,"('2-s2.0-31844449196', 'Bandettini')",Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/31844449196,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=31844449196&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=31844449196&origin=inward +Neural basis of visually guided head movements studied with fMRI,Bandettini,Laurent Petit;Michael S. Beauchamp,2003-05-01,64,Journal of Neurophysiology,2516-2527,10.1152/jn.00988.2002,12611944,0037879576,"('2-s2.0-0037879576', 'Bandettini')",Article,,https://api.elsevier.com/content/abstract/scopus_id/0037879576,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0037879576&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0037879576&origin=inward +"Increased gyrification, but comparable surface area in adolescents with autism spectrum disorders",Martin,Gregory L. Wallace;Lauren Kenworthy;Alex Martin;Briana Robustelli;Nathan Dankner;Jay N. Giedd,2013-01-01,78,Brain,1956-1967,10.1093/brain/awt106,,84878872023,"('2-s2.0-84878872023', 'Martin')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/84878872023,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84878872023&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84878872023&origin=inward +Neuropsychological and neuroimaging perspectives on conceptual knowledge: An introduction,Martin,Alfonso Caramazza;Alex Martin,2003-05-01,50,Cognitive Neuropsychology,195-212,10.1080/02643290342000050,,0037703784,"('2-s2.0-0037703784', 'Martin')",Review,,https://api.elsevier.com/content/abstract/scopus_id/0037703784,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0037703784&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0037703784&origin=inward +A wavelet-based method for measuring the oscillatory dynamics of resting-state functional connectivity in MEG,Martin,Avniel Singh Ghuman;Alex Martin;Jonathan R. McDaniel,2011-05-01,46,NeuroImage,69-77,10.1016/j.neuroimage.2011.01.046,21256967,79953048045,"('2-s2.0-79953048045', 'Martin')",Article,,https://api.elsevier.com/content/abstract/scopus_id/79953048045,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79953048045&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79953048045&origin=inward +Object-form topology in the ventral temporal lobe: Response to I. Gauthier (2000),Ungerleider,Linda L. Chao;James V. Haxby;Leslie G. Ungerleider;Alex Martin;Alumit Ishai,2000-01-01,37,Trends in Cognitive Sciences,3-4,10.1016/S1364-6613(99)01423-0,,0033957387,"('2-s2.0-0033957387', 'Ungerleider')",Short Survey,,https://api.elsevier.com/content/abstract/scopus_id/0033957387,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0033957387&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0033957387&origin=inward +Spontaneous resting-state BOLD fluctuations reveal persistent domain-specific neural networks,Martin,W. K. Simmons;Alex Martin,2012-04-01,44,Social Cognitive and Affective Neuroscience,467-475,10.1093/scan/nsr018,21586527,84857320551,"('2-s2.0-84857320551', 'Martin')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84857320551,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84857320551&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84857320551&origin=inward +Measuring selectivity in fMRI data [2],Martin,W. Kyle Simmons;Patrick S.F. Bellgowan;Alex Martin,2007-01-01,33,Nature Neuroscience,4-5,10.1038/nn0107-4,17189941,33845873303,"('2-s2.0-33845873303', 'Martin')",Letter,,https://api.elsevier.com/content/abstract/scopus_id/33845873303,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33845873303&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33845873303&origin=inward +Lateralized spatial and object memory encoding in entorhinal and perirhinal cortices,Martin,Elizabeth A. Buffalo;Jerzy Bodurka;Patrick S.F. Bellgowan;Alex Martin,2009-07-01,32,Learning and Memory,433-438,10.1101/lm.1357309,19553381,67649628233,"('2-s2.0-67649628233', 'Martin')",Article,,https://api.elsevier.com/content/abstract/scopus_id/67649628233,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=67649628233&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=67649628233&origin=inward +Detection of eye movements from fMRI data,Martin,Michael S. Beauchamp,2003-02-01,28,Magnetic Resonance in Medicine,376-380,10.1002/mrm.10345,12541259,0037308617,"('2-s2.0-0037308617', 'Martin')",Article,,https://api.elsevier.com/content/abstract/scopus_id/0037308617,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0037308617&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0037308617&origin=inward +Object repetition leads to local increases in the temporal coordination of neural responses,Martin,Stephen J. Gotts;Jessica R. Gilbert;Frederick W. Carver;Alex Martin,2010-01-01,28,Frontiers in Human Neuroscience,,10.3389/fnhum.2010.00030,,79951843292,"('2-s2.0-79951843292', 'Martin')",Article,,https://api.elsevier.com/content/abstract/scopus_id/79951843292,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79951843292&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79951843292&origin=inward +Longitudinal cortical development during adolescence and young adulthood in autism spectrum disorder: Increased cortical thinning but comparable surface area changes,Martin,Gregory L. Wallace;Ian W. Eisenberg;Lauren Kenworthy;Alex Martin;Briana Robustelli;Nathan Dankner;Jay N. Giedd,2015-01-01,40,Journal of the American Academy of Child and Adolescent Psychiatry,464-469,10.1016/j.jaac.2015.03.007,26004661,84930179650,"('2-s2.0-84930179650', 'Martin')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/84930179650,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84930179650&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84930179650&origin=inward +Resting-state functional connectivity predicts longitudinal change in autistic traits and adaptive functioning in autism,Martin,Gregory L. Wallace;Mark Plitta;Lauren Kenworthy;Alex Martin;Kelly Anne Barnes,2015-12-01,40,Proceedings of the National Academy of Sciences of the United States of America,E6699-E6706,10.1073/pnas.1510098112,26627261,84948674649,"('2-s2.0-84948674649', 'Martin')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84948674649,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84948674649&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84948674649&origin=inward +Shades of Déjerine-Forging a Causal Link between the Visual Word Form Area and Reading,Martin,Alex Martin,2006-04-20,24,Neuron,173-175,10.1016/j.neuron.2006.04.004,16630825,33646033141,"('2-s2.0-33646033141', 'Martin')",Short Survey,,https://api.elsevier.com/content/abstract/scopus_id/33646033141,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33646033141&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33646033141&origin=inward +Quantifying Agreement between Anatomical and Functional Interhemispheric Correspondences in the Resting Brain,Martin,Hang Joon Jo;Robert W. Cox;Stephen J. Gotts;Ziad S. Saad;Alex Martin,2012-11-08,14,PLoS ONE,,10.1371/journal.pone.0048847,23144995,84869027003,"('2-s2.0-84869027003', 'Martin')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84869027003,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84869027003&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84869027003&origin=inward +Broad and narrow conceptual tuning in the human frontal lobes,Martin,Shawn C. Milleville;Stephen J. Gotts;Patrick S.F. Bellgowan;Alex Martin,2011-02-01,17,Cerebral Cortex,477-491,10.1093/cercor/bhq113,20562319,78651470188,"('2-s2.0-78651470188', 'Martin')",Article,,https://api.elsevier.com/content/abstract/scopus_id/78651470188,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=78651470188&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=78651470188&origin=inward +Repetition priming and repetition suppression: Multiple mechanisms in need of testing,Martin,Carson C. Chow;Stephen J. Gotts;Alex Martin,2012-08-01,21,Cognitive Neuroscience,250-259,10.1080/17588928.2012.697054,,84864701276,"('2-s2.0-84864701276', 'Martin')",Editorial,NIMH,https://api.elsevier.com/content/abstract/scopus_id/84864701276,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84864701276&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84864701276&origin=inward +Spontaneous neural activity predicts individual differences in performance,Martin,Kelly Anne Barnes;W. Dale Stevens;Alex Martin,2012-02-28,10,Proceedings of the National Academy of Sciences of the United States of America,3201-3202,10.1073/pnas.1200329109,22343289,84857745398,"('2-s2.0-84857745398', 'Martin')",Note,,https://api.elsevier.com/content/abstract/scopus_id/84857745398,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84857745398&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84857745398&origin=inward +Aberrant neural mediation of verbal fluency in autism spectrum disorders,Bandettini,Gregory L. Wallace;Lauren Kenworthy;Peter A. Bandettini;Alex Martin;Shawn C. Milleville;Laura K. Case;Rasmus Birn,2013-11-01,13,Brain and Cognition,218-226,10.1016/j.bandc.2013.08.003,24056237,84884325627,"('2-s2.0-84884325627', 'Bandettini')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/84884325627,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84884325627&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84884325627&origin=inward +Making the causal link: Frontal cortex activity and repetition priming,Martin,Stephen J. Gotts;Alex Martin,2005-09-01,7,Nature Neuroscience,1134-1135,10.1038/nn0905-1134,16127445,27744520243,"('2-s2.0-27744520243', 'Martin')",Short Survey,,https://api.elsevier.com/content/abstract/scopus_id/27744520243,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=27744520243&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=27744520243&origin=inward +Insistence on sameness relates to increased covariance of gray matter structure in autism spectrum disorder,Martin,Gregory L. Wallace;Stephen J. Gotts;Ian W. Eisenberg;Lauren Kenworthy;Alex Martin,2015-10-01,13,Molecular Autism,,10.1186/s13229-015-0047-7,,84942898228,"('2-s2.0-84942898228', 'Martin')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84942898228,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84942898228&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84942898228&origin=inward +Object identification leads to a conceptual broadening of object representations in lateral prefrontal cortex,Martin,Shawn C. Milleville;Stephen J. Gotts;Alex Martin,2015-09-01,7,Neuropsychologia,62-78,10.1016/j.neuropsychologia.2014.10.041,25445775,84944097585,"('2-s2.0-84944097585', 'Martin')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/84944097585,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84944097585&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84944097585&origin=inward +Interferon-β-1b slows progression of atrophy in RRMS: Three-year follow-up in NAb- and NAb+ patients,McFarland,T. Howard;H. F. McFarland;B. Lewis;P. A. Calabresi;R. Stone;C. Bash;J. A. Frank;N. Richert;L. Stone,2004-03-09,71,Neurology,719-725,10.1212/01.WNL.0000113765.75855.19,,1542346260,"('2-s2.0-1542346260', 'McFarland')",Article,,https://api.elsevier.com/content/abstract/scopus_id/1542346260,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=1542346260&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=1542346260&origin=inward +In vivo detection of cortical plaques by MR imaging in patients with multiple sclerosis,Talagala,Francesca Bagnato;M. M. Cao;H. F. McFarland;M. Riva;J. A. Butman;J. M. Ohayon;S. Gupta;S. L. Talagala;L. Pezawas;F. Tovar-Moll;M. Calabrese,2006-11-01,65,American Journal of Neuroradiology,2161-2167,,17110688,33646799546,"('2-s2.0-33646799546', 'Talagala')",Article,,https://api.elsevier.com/content/abstract/scopus_id/33646799546,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33646799546&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33646799546&origin=inward +Thalamic involvement and its impact on clinical disability in patients with multiple sclerosis: A diffusion tensor imaging study at 3T,Talagala,Francesca Bagnato;I. E. Evangelou;J. L. Ostuni;H. F. McFarland;S. Auh;J. M. Ohayon;S. L. Talagala;A. W. Chiu;N. D. Richert;F. Tovar-Moll;M. Ehrmantraut,2009-08-01,58,American Journal of Neuroradiology,1380-1386,10.3174/ajnr.A1564,19369608,68549136725,"('2-s2.0-68549136725', 'Talagala')",Article,,https://api.elsevier.com/content/abstract/scopus_id/68549136725,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=68549136725&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=68549136725&origin=inward +Magnetic resonance imaging as a surrogate outcome for multiple sclerosis relapses,McFarland,M. D. Hughes;H. F. McFarland;D. H. Miller;G. R. Cutter;J. Petkau;U. Held;S. C. Reingold;Jerry S. Wolinsky;T. R. Fleming,2008-07-01,45,Multiple Sclerosis,770-778,10.1177/1352458507088104,18535021,48349142161,"('2-s2.0-48349142161', 'McFarland')",Article,,https://api.elsevier.com/content/abstract/scopus_id/48349142161,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=48349142161&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=48349142161&origin=inward +Relationship between inflammatory lesions and cerebral atrophy in multiple sclerosis,McFarland,T. Howard;H. F. McFarland;R. Stone;C. Bash;J. A. Frank;J. Ohayon;J. Ostuni;N. D. Richert,2006-02-01,28,Neurology,551-556,10.1212/01.wnl.0000197982.78063.06,16505310,33644993732,"('2-s2.0-33644993732', 'McFarland')",Article,,https://api.elsevier.com/content/abstract/scopus_id/33644993732,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33644993732&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33644993732&origin=inward +Treatment with the phosphodiesterase type-4 inhibitor rolipram fails to inhibit blood-brain barrier disruption in multiple sclerosis,Bielekova,Joan Ohayon;Thomas Howard;Bibiana Bielekova;Gregg Blevins;Henry F. McFarland;Claus Steffen Stürzebecher;Amy N. Packer;Nancy Richert;Roland Martin,2009-12-28,29,Multiple Sclerosis,1206-1214,10.1177/1352458509345903,19776093,72449209373,"('2-s2.0-72449209373', 'Bielekova')",Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/72449209373,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=72449209373&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=72449209373&origin=inward +Multisequence-imaging protocols to detect cortical lesions of patients with multiple sclerosis: Observations from a post-mortem 3 Tesla imaging study,McFarland,Francesca Bagnato;Bing Yao;Sandra Moore;Hellmut Merkle;Marcela Montequin;Martha Quezado;Ellen Condon;Deborah Tkaczyk;Henry McFarland;Fredric Cantor,2009-07-15,21,Journal of the Neurological Sciences,80-85,10.1016/j.jns.2009.03.021,19394970,67349250116,"('2-s2.0-67349250116', 'McFarland')",Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/67349250116,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=67349250116&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=67349250116&origin=inward +Heterogeneity in response to interferon beta in patients with multiple sclerosis: A 3-year monthly imaging study,McFarland,Joan Ohayon;Francesca Bagnato;Mary Ehrmantraut;Giuseppe Bomboi;Deeya Gaindh;Henry F. McFarland;Nancy Richert;Annie W. Chiu;Fredric K. Cantor;Joseph A. Frank;Shiva Gupta,2009-01-01,19,Archives of Neurology,39-43,10.1001/archneur.66.1.noc80047,19001157,58449083627,"('2-s2.0-58449083627', 'McFarland')",Article,,https://api.elsevier.com/content/abstract/scopus_id/58449083627,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=58449083627&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=58449083627&origin=inward +T1 cortical hypointensities and their association with cognitive disability in multiple sclerosis,McFarland,Francesca Bagnato;Joan Ohayon;Mary Ehrmantraut;Sungyoung Auh;Zeena Salman;Susan K. Stern;Henry F. McFarland;Vasiliki N. Ikonomidou;Clelia Pellicano;Fredric K. Cantor;Antonio Gallo;Robert Kane,2010-10-01,15,Multiple Sclerosis,1203-1212,10.1177/1352458510377223,20699284,77957565209,"('2-s2.0-77957565209', 'McFarland')",Article,,https://api.elsevier.com/content/abstract/scopus_id/77957565209,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77957565209&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77957565209&origin=inward +Quality and Quantity of Diffuse and Focal White Matter Disease and Cognitive Disability of Patients with Multiple Sclerosis,Mcfarland,Jhalak Agarwal;Francesca Bagnato;Giuseppe Bomboi;Iordanis E. Evangelou;Joan M. Ohayon;Mary Ehrmantraut;Sungyoung Auh;Susan K. Stern;Robert L. Kane;Vasiliki N. Ikonomidou;Clelia Pellicano;Stefano Pellegrini;Antonio Gallo;Fredric K. Cantor;Henry F. Mcfarland,2011-04-01,11,Journal of Neuroimaging,,10.1111/j.1552-6569.2010.00488.x,20626570,79953057659,"('2-s2.0-79953057659', 'Mcfarland')",Article,,https://api.elsevier.com/content/abstract/scopus_id/79953057659,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79953057659&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79953057659&origin=inward +Interferon-beta-1b effects on re-enhancing lesions in patients with multiple sclerosis,McFarland,Francesca Bagnato;J. L. Ostuni;T. A. Tasciyan;H. F. McFarland;P. A. Muraro;J. A. Frank;J. M. Ohayon;J. M. Solomon;S. Gupta;R. D. Stone;N. D. Richert;M. M. Cao,2005-12-01,11,Multiple Sclerosis,658-668,10.1191/1352458505ms1229oa,16320725,28044453525,"('2-s2.0-28044453525', 'McFarland')",Article,,https://api.elsevier.com/content/abstract/scopus_id/28044453525,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=28044453525&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=28044453525&origin=inward +A case study on the effect of neutralizing antibodies to interferon beta 1b in multiple sclerosis patients followed for 3 years with monthly imaging,McFarland,F. Bagnato;H. F. McFarland;A. W. Chiu;J. A. Frank;S. Pellegrini;V. N. Ikonomidou;N. D. Richert;M. Ehrmantraut,2007-10-01,11,Clinical and Experimental Immunology,61-67,10.1111/j.1365-2249.2007.03467.x,17666095,34548538497,"('2-s2.0-34548538497', 'McFarland')",Article,,https://api.elsevier.com/content/abstract/scopus_id/34548538497,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34548538497&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34548538497&origin=inward +Examination of the role of magnetic resonance imaging in multiple sclerosis: A problem-orientated approach,McFarland,Henry F. McFarland,2009-10-01,10,Annals of Indian Academy of Neurology,254-263,10.4103/0972-2327.58284,,72949110763,"('2-s2.0-72949110763', 'McFarland')",Review,,https://api.elsevier.com/content/abstract/scopus_id/72949110763,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=72949110763&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=72949110763&origin=inward +Contrast-enhanced MRI lesions during treatment with interferonβ-1b predict increase in T1 black hole volume in patients with relapsing-remitting multiple sclerosis,McFarland,A. L.T. Crawford;H. F. McFarland;Katrin Morgen;R. Martin;J. A. Frank;R. D. Stone;N. D. Richert,2005-04-01,9,Multiple Sclerosis,146-148,10.1191/1352458505ms1147oa,15794386,15544379472,"('2-s2.0-15544379472', 'McFarland')",Article,,https://api.elsevier.com/content/abstract/scopus_id/15544379472,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=15544379472&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=15544379472&origin=inward +Ring and nodular multiple sclerosis lesions: A retrospective natural history study,McFarland,F. Bagnato;H. F. McFarland;J. A. Frank;M. Davis;S. Auh;M. Riva;N. D. Richert,2010-01-01,10,Neurology,851-856,10.1212/WNL.0b013e3181d31df5,,77949363891,"('2-s2.0-77949363891', 'McFarland')",Article,,https://api.elsevier.com/content/abstract/scopus_id/77949363891,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77949363891&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77949363891&origin=inward +The effect of interferon beta-1b on size of short-lived enhancing lesions in patients with multiple sclerosis,McFarland,Joan Ohayon;Francesca Bagnato;Deeya Gaindh;Clelia Pellicano;Neal JefFries;Henry McFarland;Joseph A. Frank;Nancy D. Richert,2008-12-01,4,Expert Opinion on Biological Therapy,1823-1829,10.1517/14712590802510629,18990070,57649230797,"('2-s2.0-57649230797', 'McFarland')",Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/57649230797,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=57649230797&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=57649230797&origin=inward +Semi-automatic segmentation and modeling of the cervical spinal cord for volume quantification in multiple sclerosis patients from magnetic resonance images,McFarland,Joan Ohayon;Francesca Bagnato;Iordanis E. Evangelou;Henry F. McFarland;Fredric K. Cantor;Antonio Gallo;Pavlina Sonkova,2008-05-19,2,Progress in Biomedical Optics and Imaging - Proceedings of SPIE,,10.1117/12.773055,,43449138818,"('2-s2.0-43449138818', 'McFarland')",Conference Paper,,https://api.elsevier.com/content/abstract/scopus_id/43449138818,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=43449138818&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=43449138818&origin=inward +Oxytocin modulates neural circuitry for social cognition and fear in humans,McFarland,Sarina Siddhanti;Daniela Mier;Stefanie Lis;Peter Kirsch;Bernd Gallhofer;Christine Esslinger;Harald Gruppe;Andreas Meyer-Lindenberg;Qiang Chen;Venkata S. Mattay,2005-12-07,1085,Journal of Neuroscience,11489-11493,10.1523/JNEUROSCI.3984-05.2005,16339042,30544438866,"('2-s2.0-30544438866', 'McFarland')",Article,,https://api.elsevier.com/content/abstract/scopus_id/30544438866,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=30544438866&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=30544438866&origin=inward +Hierarchical organization of human cortical networks in health and Schizophrenia,McFarland,Edward Bullmore;Beth A. Verchinski;Andreas Meyer-Lindenberg;Danielle S. Bassett;Venkata S. Mattay;Daniel R. Weinberger,2008-09-10,785,Journal of Neuroscience,9239-9248,10.1523/JNEUROSCI.1929-08.2008,18784304,55249083831,"('2-s2.0-55249083831', 'McFarland')",Article,,https://api.elsevier.com/content/abstract/scopus_id/55249083831,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=55249083831&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=55249083831&origin=inward +A validated network of effective amygdala connectivity,McFarland,Venkata S. Mattay;Jason L. Stein;Caroline F. Zink;Lisa M. Wiedholz;Andreas Meyer-Lindenberg;Danielle S. Bassett;Daniel R. Weinberger,2007-07-01,304,NeuroImage,736-745,10.1016/j.neuroimage.2007.03.022,17475514,34250332251,"('2-s2.0-34250332251', 'McFarland')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/34250332251,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34250332251&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34250332251&origin=inward +Know Your Place: Neural Processing of Social Hierarchy in Humans,McFarland,Yunxia Tong;Jason L. Stein;Danielle S. Bassett;Caroline F. Zink;Andreas Meyer-Lindenberg;Qiang Chen,2008-04-24,315,Neuron,273-283,10.1016/j.neuron.2008.01.025,18439411,42149160144,"('2-s2.0-42149160144', 'McFarland')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/42149160144,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=42149160144&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=42149160144&origin=inward +Widespread reductions of cortical thickness in schizophrenia and spectrum disorders and evidence of heritability,McFarland,Priv Doz;Bruce Fischl;Lukas Pezawas;Beth A. Verchinski;Andreas Meyer-Lindenberg;Qiang Chen;Aaron L. Goldman;Venkata S. Mattay;Daniel R. Weinberger,2009-05-01,196,Archives of General Psychiatry,467-477,10.1001/archgenpsychiatry.2009.24,19414706,65549089478,"('2-s2.0-65549089478', 'McFarland')",Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/65549089478,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=65549089478&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=65549089478&origin=inward +Genetic variation in MAOA modulates ventromedial prefrontal circuitry mediating individual differences in human personality,McFarland,M. F. Egan;V. S. Mattay;A. R. Hariri;M. Genderson;J. H. Callicott;B. Kolachana;D. R. Weinberger;A. Meyer-Lindenberg;T. E. Goldberg;J. W. Buckholtz,2008-03-01,167,Molecular Psychiatry,313-324,10.1038/sj.mp.4002020,17519928,39449099581,"('2-s2.0-39449099581', 'McFarland')",Article,,https://api.elsevier.com/content/abstract/scopus_id/39449099581,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=39449099581&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=39449099581&origin=inward +Evaluation of automated brain MR image segmentation and volumetry methods,McFarland,Aaron Goldman;Frederick Klauschen;Arvid Lundervold;Vincent Barra;Andreas Meyer-Lindenberg,2009-04-01,157,Human Brain Mapping,1310-1327,10.1002/hbm.20599,18537111,63849340463,"('2-s2.0-63849340463', 'McFarland')",Article,,https://api.elsevier.com/content/abstract/scopus_id/63849340463,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=63849340463&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=63849340463&origin=inward +Heritability of Brain Morphology Related to Schizophrenia: A Large-Scale Automated Magnetic Resonance Imaging Segmentation Study,McFarland,Brad Zoltick;Bruce Fischl;Lukas Pezawas;Beth A. Verchinski;Andreas Meyer-Lindenberg;Aaron L. Goldman;Venkata S. Mattay;Daniel R. Weinberger,2008-03-01,112,Biological Psychiatry,475-483,10.1016/j.biopsych.2007.06.006,17727823,38949151125,"('2-s2.0-38949151125', 'McFarland')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/38949151125,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=38949151125&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=38949151125&origin=inward +Vasopressin modulates medial prefrontal cortex-amygdala circuitry during emotion processing in humans,McFarland,Shabnam Hakimi;Lucas Kempf;Jason L. Stein;Caroline F. Zink;Andreas Meyer-Lindenberg,2010-05-19,86,Journal of Neuroscience,7017-7022,10.1523/JNEUROSCI.4899-09.2010,20484643,77952625256,"('2-s2.0-77952625256', 'McFarland')",Article,,https://api.elsevier.com/content/abstract/scopus_id/77952625256,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77952625256&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77952625256&origin=inward +"Deficits in cortical, diencephalic and midbrain gray matter in alcoholism measured by VBM: Effects of co-morbid substance abuse",Hommer,Daniel W. Hommer;Henry Lin;Erica N. Grodin;Caitlin A. Durkee;Reza Momenan,2013-04-24,37,NeuroImage: Clinical,469-476,10.1016/j.nicl.2013.03.013,,84876376841,"('2-s2.0-84876376841', 'Hommer')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84876376841,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84876376841&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84876376841&origin=inward +White matter microstructure alterations: A study of alcoholics with and without post-traumatic stress disorder,Hommer,Reza Momenan;Daniel W. Hommer;Joelle E. Sarlls;Caitlin A. Durkee,2013-11-18,18,PLoS ONE,,10.1371/journal.pone.0080952,24260518,84894102678,"('2-s2.0-84894102678', 'Hommer')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84894102678,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84894102678&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84894102678&origin=inward +Serotonin versus catecholamine deficiency: behavioral and neural effects of experimental depletion in remitted depression,Nugent,P. Homan;D. S. Charney;W. C. Drevets;A. Neumeister;A. C. Nugent;G. Hasler,2015-03-17,17,Translational psychiatry,e532,10.1038/tp.2015.25,25781231,85009124365,"('2-s2.0-85009124365', 'Nugent')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85009124365,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85009124365&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85009124365&origin=inward +Deriving frequency-dependent spatial patterns in MEG-derived resting state sensorimotor network: A novel multiband ICA technique,Nugent,Richard Coppola;Carlos A. Zarate;Bruce Luber;Stephen E. Robinson;Frederick W. Carver;Allison C. Nugent,2017-02-01,7,Human Brain Mapping,779-791,10.1002/hbm.23417,27770478,84992360788,"('2-s2.0-84992360788', 'Nugent')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/84992360788,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84992360788&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84992360788&origin=inward +The diffusion tensor imaging (DTI) component of the NIH MRI study of normal brain development (PedsDTI),Pierpaoli,Robert C. McKinstry;Dah Jyuu Wang;Michael J. Rivkin;Lindsay Walker;M. Okan Irfanoglu;Lin Ching Chang;Judith Rumsey;James McCracken;Carlo Pierpaoli;Amritha Nayak;Kelly N. Botteron,2016-01-01,23,NeuroImage,1125-1130,10.1016/j.neuroimage.2015.05.083,26048622,84949323637,"('2-s2.0-84949323637', 'Pierpaoli')",Article,NICHD,https://api.elsevier.com/content/abstract/scopus_id/84949323637,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84949323637&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84949323637&origin=inward +DR-TAMAS: Diffeomorphic Registration for Tensor Accurate Alignment of Anatomical Structures,Pierpaoli,Neda Sadeghi;Jeffrey Jenkins;M. Okan Irfanoglu;Elizabeth B. Hutchinson;Carlo Pierpaoli;Amritha Nayak;Cibu P. Thomas,2016-05-15,17,NeuroImage,439-454,10.1016/j.neuroimage.2016.02.066,26931817,84960908679,"('2-s2.0-84960908679', 'Pierpaoli')",Article,NICHD,https://api.elsevier.com/content/abstract/scopus_id/84960908679,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84960908679&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84960908679&origin=inward +Amygdala and nucleus accumbens in responses to receipt and omission of gains in adults and adolescents,Leibenluft,Eric E. Nelson;Ellen Leibenluft;Daniel S. Pine;Sandra Jazbec;James Blair;Christopher S. Monk;Erin B. McClure;Monique Ernst,2005-05-01,441,NeuroImage,1279-1291,10.1016/j.neuroimage.2004.12.038,15850746,17844403263,"('2-s2.0-17844403263', 'Leibenluft')",Article,,https://api.elsevier.com/content/abstract/scopus_id/17844403263,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=17844403263&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=17844403263&origin=inward +Amygdala and ventrolateral prefrontal cortex activation to masked angry faces in children and adolescents with generalized anxiety disorder,Pine,Brendan P. Bradley;Hugo M.C. Louro;Xiaoqin Mai;Daniel S. Pine;Gang Chen;Eva H. Telzer;Erin B. McClure-Tone;Christopher S. Monk;Karin Mogg;Monique Ernst,2008-05-01,444,Archives of General Psychiatry,568-576,10.1001/archpsyc.65.5.568,18458208,43149105989,"('2-s2.0-43149105989', 'Pine')",Article,,https://api.elsevier.com/content/abstract/scopus_id/43149105989,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=43149105989&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=43149105989&origin=inward +Adolescent immaturity in attention-related brain engagement to emotional facial expressions,Leibenluft,Eric E. Nelson;Robert M. Bilder;Eric Zarahn;Ellen Leibenluft;Daniel S. Pine;Dennis S. Charney;Christopher S. Monk;Erin B. McClure;Monique Ernst,2003-09-01,355,NeuroImage,420-428,10.1016/S1053-8119(03)00355-0,14527602,0141535155,"('2-s2.0-0141535155', 'Leibenluft')",Article,,https://api.elsevier.com/content/abstract/scopus_id/0141535155,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0141535155&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0141535155&origin=inward +Abnormal attention modulation of fear circuit function in pediatric generalized anxiety disorder,Blair,Eric E. Nelson;R. James R. Blair;Ellen Leibenluft;Stephen Fromm;Daniel S. Pine;Abby Adler;Dennis S. Charney;Christopher S. Monk;Erin B. McClure;Monique Ernst;Jessica M. Parrish,2007-01-01,312,Archives of General Psychiatry,97-106,10.1001/archpsyc.64.1.97,17199059,33846002401,"('2-s2.0-33846002401', 'Blair')",Article,,https://api.elsevier.com/content/abstract/scopus_id/33846002401,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33846002401&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33846002401&origin=inward +Neural substrates of choice selection in adults and adolescents: Development of the ventrolateral prefrontal and anterior cingulate cortices,Blair,Eric E. Nelson;Neir Eshel;Daniel S. Pine;R. James Blair;Monique Ernst,2007-01-16,268,Neuropsychologia,1270-1279,10.1016/j.neuropsychologia.2006.10.004,17118409,33846109355,"('2-s2.0-33846109355', 'Blair')",Article,,https://api.elsevier.com/content/abstract/scopus_id/33846109355,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33846109355&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33846109355&origin=inward +Choice selection and reward anticipation: An fMRI study,Leibenluft,Eric E. Nelson;Dennis Charney;Eric Zarahn;Ellen Leibenluft;Neir Eshel;Daniel S. Pine;Erin B. McClure;Alan Zametkin;Kenneth Towbin;Christopher S. Monk;Suzanne Munson;James Blair;Monique Ernst,2004-09-08,258,Neuropsychologia,1585-1597,10.1016/j.neuropsychologia.2004.05.011,15327927,4344608937,"('2-s2.0-4344608937', 'Leibenluft')",Article,,https://api.elsevier.com/content/abstract/scopus_id/4344608937,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=4344608937&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=4344608937&origin=inward +Amygdala and nucleus accumbens activation to emotional facial expressions in children and adolescents at risk for major depression,Blair,Rachel G. Klein;Stephen Fromm;Daniel S. Pine;R. James Blair;Monique Ernst;Eva H. Telzer;Salvatore Mannuzza;Erin B. McClure-Tone;Mary Guardino;Christopher S. Monk;Carrie L. Masten;John L. Moulton;Elizabeth A. Schroth,2008-01-01,261,American Journal of Psychiatry,90-98,10.1176/appi.ajp.2007.06111917,17986682,39049092692,"('2-s2.0-39049092692', 'Blair')",Article,,https://api.elsevier.com/content/abstract/scopus_id/39049092692,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=39049092692&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=39049092692&origin=inward +A developmental examination of amygdala response to facial expressions,Leibenluft,Eric E. Nelson;Ellen Leibenluft;Amanda E. Guyer;Monique Ernst;Abby D. Adler;Stephen J. Fromm;Erin B. McClure-Tone;Christopher S. Monk;Roxann Roberson-Nay;Daniel S. Pine,2008-09-01,230,Journal of Cognitive Neuroscience,1565-1582,10.1162/jocn.2008.20114,18345988,50649121042,"('2-s2.0-50649121042', 'Leibenluft')",Article,,https://api.elsevier.com/content/abstract/scopus_id/50649121042,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=50649121042&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=50649121042&origin=inward +Amygdala and ventrolateral prefrontal cortex function during anticipated peer evaluation in pediatric social anxiety,Blair,Eric E. Nelson;Jennifer Y.F. Lau;Ellen Leibenluft;Richard C. Reynolds;Amanda E. Guyer;Nathan A. Fox;Jessica Parrish;Daniel S. Pine;Gang Chen;Erin B. McClure-Tone;R. J.R. Blair;Monique Ernst;Nina D. Shiffrin,2008-11-01,233,Archives of General Psychiatry,1303-1312,10.1001/archpsyc.65.11.1303,18981342,55749114253,"('2-s2.0-55749114253', 'Blair')",Article,,https://api.elsevier.com/content/abstract/scopus_id/55749114253,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=55749114253&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=55749114253&origin=inward +A developmental examination of gender differences in brain engagement during evaluation of threat,Leibenluft,Eric E. Nelson;Robert M. Bilder;Ellen Leibenluft;Eric Zarahn;Daniel S. Pine;Dennis S. Charney;Christopher S. Monk;Erin B. McClure;Monique Ernst,2004-06-01,167,Biological Psychiatry,1047-1055,10.1016/j.biopsych.2004.02.013,15158422,2542421114,"('2-s2.0-2542421114', 'Leibenluft')",Article,,https://api.elsevier.com/content/abstract/scopus_id/2542421114,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=2542421114&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=2542421114&origin=inward +Response to emotional expressions in generalized social phobia and generalized anxiety disorder: Evidence for separate disorders,Blair,Karina Blair;Krystal Mondillo;Daniel McCaffrey;Wayne C. Drevets;Jonathan Shaywitz;Bruce W. Smith;Madeline Jacobs;Matthew Jones;Dennis S. Charney;Elizabeth Finger;R. J.R. Blair;Rebecca Rhodes;Meena Vythilingam;Daniel S. Pine;Marilla Geraci,2008-09-01,181,American Journal of Psychiatry,1193-1202,10.1176/appi.ajp.2008.07071060,18483136,51349103469,"('2-s2.0-51349103469', 'Blair')",Article,,https://api.elsevier.com/content/abstract/scopus_id/51349103469,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=51349103469&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=51349103469&origin=inward +Common and distinct amygdala-function perturbations in depressed vs anxious adolescents,Leibenluft,Eric E. Nelson;Jennifer Y.F. Lau;Ellen Leibenluft;Amanda E. Guyer;Katja Beesdo;Daniel S. Pine;Hans Ulrich Wittchen;Michelle A. Goldwin;Erin B. McClure-Tone;Christopher S. Monk;Stephen J. Fromm;Monique Ernst,2009-03-01,178,Archives of General Psychiatry,275-285,10.1001/archgenpsychiatry.2008.545,19255377,61449255440,"('2-s2.0-61449255440', 'Leibenluft')",Article,,https://api.elsevier.com/content/abstract/scopus_id/61449255440,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=61449255440&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=61449255440&origin=inward +Striatal functional alteration in adolescents characterized by early childhood behavioral inhibition,Pine,Eric E. Nelson;James M. Bjork;Heather A. Henderson;Amanda E. Guyer;Nathan A. Fox;Daniel S. Pine;Michael G. Hardin;Monique Ernst;Christopher S. Monk;Roxann Roberson-Nay;Koraly Perez-Edgar,2006-09-08,157,Journal of Neuroscience,6399-6405,10.1523/JNEUROSCI.0666-06.2006,16775126,33745775065,"('2-s2.0-33745775065', 'Pine')",Article,,https://api.elsevier.com/content/abstract/scopus_id/33745775065,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33745775065&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33745775065&origin=inward +Disrupted reinforcement signaling in the orbitofrontal cortex and caudate in youths with conduct disorder or oppositional defiant disorder and a high level of psychopathic traits,Pine,R. James R. Blair;Pamela Ng;Courtney Sims;Elizabeth C. Finger;Abigail A. Marsh;Marguerite E. Reid;Karina S. Blair;Daniel S. Pine,2011-02-01,158,American Journal of Psychiatry,152-162,10.1176/appi.ajp.2010.10010129,21078707,79952714381,"('2-s2.0-79952714381', 'Pine')",Article,,https://api.elsevier.com/content/abstract/scopus_id/79952714381,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79952714381&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79952714381&origin=inward +Attention alters neural responses to evocative faces in behaviorally inhibited adolescents,Pine,Eric E. Nelson;Koraly Pérez-Edgar;Heather A. Henderson;Amanda E. Guyer;Nathan A. Fox;Michael G. Hardin;Monique Ernst;Kaitlin Poeth;Erin B. McClure;Roxann Roberson-Nay;Daniel S. Pine,2007-05-01,147,NeuroImage,1538-1546,10.1016/j.neuroimage.2007.02.006,17376704,34147108781,"('2-s2.0-34147108781', 'Pine')",Article,NICHD,https://api.elsevier.com/content/abstract/scopus_id/34147108781,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34147108781&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34147108781&origin=inward +Probing the neural correlates of anticipated peer evaluation in adolescence,Pine,Eric E. Nelson;Amanda E. Guyer;Erin B. McClure-Tone;Daniel S. Pine;Nina D. Shiffrin,2009-07-01,142,Child Development,1000-1015,10.1111/j.1467-8624.2009.01313.x,19630890,67650632629,"('2-s2.0-67650632629', 'Pine')",Article,,https://api.elsevier.com/content/abstract/scopus_id/67650632629,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=67650632629&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=67650632629&origin=inward +Selective reduction in amygdala volume in pediatric anxiety disorders: A voxel-based morphometry investigation,Nugent,Dennis Charney;Ellen Leibenluft;Daniel S. Dickstein;Wayne C. Drevets;Daniel S. Pine;Allison C. Nugent;Michael P. Milham;Monique Ernst,2005-05-01,133,Biological Psychiatry,961-966,10.1016/j.biopsych.2005.01.038,15860335,18044379146,"('2-s2.0-18044379146', 'Nugent')",Article,,https://api.elsevier.com/content/abstract/scopus_id/18044379146,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=18044379146&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=18044379146&origin=inward +Early-life stress is associated with impairment in cognitive control in adolescence: An fMRI study,Leibenluft,Ellen Leibenluft;Sven C. Mueller;Francoise S. Maheu;Darcy Mandell;Monique Ernst;Elizabeth Peloso;Mary Dozier;Daniel S. Pine,2010-08-01,140,Neuropsychologia,3037-3044,10.1016/j.neuropsychologia.2010.06.013,20561537,77955282298,"('2-s2.0-77955282298', 'Leibenluft')",Article,NARSAD,https://api.elsevier.com/content/abstract/scopus_id/77955282298,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77955282298&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77955282298&origin=inward +Neural response to self- and other referential praise and criticism in generalized social phobia,Blair,Karina Blair;Pamela Ng;Daniel McCaffrey;Daniel S. Pine;Gang Chen;Matthew Jones;R. J.R. Blair;Meena Vythilingam;Jeffrey Devido;Nick Hollon;Marilla Geraci,2008-10-01,115,Archives of General Psychiatry,1176-1184,10.1001/archpsyc.65.10.1176,18838634,53849128548,"('2-s2.0-53849128548', 'Blair')",Article,,https://api.elsevier.com/content/abstract/scopus_id/53849128548,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=53849128548&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=53849128548&origin=inward +A preliminary study of medial temporal lobe function in youths with a history of caregiver deprivation and emotional neglect,Pine,Jennifer Y.F. Lau;Françoise S. Maheu;Amanda E. Guyer;Darcy Mandell;Monique Ernst;John P. Ackerman;Kaitlin Poeth;Elizabeth Peloso;Mary Dozier;Daniel S. Pine;Jessica Jenness,2010-03-01,127,"Cognitive, Affective and Behavioral Neuroscience",34-49,10.3758/CABN.10.1.34,20233954,77953104977,"('2-s2.0-77953104977', 'Pine')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/77953104977,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77953104977&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77953104977&origin=inward +fMRI predictors of treatment outcome in pediatric anxiety disorders,Leibenluft,Eric E. Nelson;Ellen Leibenluft;Daniel S. Pine;Abby Adler;Samantha Smith;Christopher S. Monk;Erin B. McClure;Monique Ernst;Jennifer Cameron,2007-03-01,114,Psychopharmacology,97-105,10.1007/s00213-006-0542-9,16972100,33847105048,"('2-s2.0-33847105048', 'Leibenluft')",Article,,https://api.elsevier.com/content/abstract/scopus_id/33847105048,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33847105048&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33847105048&origin=inward +Increased Amygdala Activity During Successful Memory Encoding in Adolescent Major Depressive Disorder: An fMRI Study,Leibenluft,Eric E. Nelson;Ellen Leibenluft;Amanda E. Guyer;Daniel S. Pine;Stephen J. Fromm;Dennis S. Charney;James Blair;Christopher S. Monk;Erin B. McClure;Roxann Roberson-Nay;Monique Ernst,2006-11-01,101,Biological Psychiatry,966-973,10.1016/j.biopsych.2006.02.018,16603133,33750072007,"('2-s2.0-33750072007', 'Leibenluft')",Article,,https://api.elsevier.com/content/abstract/scopus_id/33750072007,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33750072007&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33750072007&origin=inward +"Relationship between trait anxiety, prefrontal cortex, and attention bias to angry faces in children and adolescents",Pine,Brendan P. Bradley;Xiaoqin Mai;Daniel S. Pine;Eva H. Telzer;Christopher S. Monk;Karin Mogg;Monique Ernst,2008-10-01,117,Biological Psychology,216-222,10.1016/j.biopsycho.2008.05.004,18599179,50849131654,"('2-s2.0-50849131654', 'Pine')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/50849131654,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=50849131654&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=50849131654&origin=inward +Intrinsic functional connectivity of amygdala-based networks in adolescent generalized anxiety disorder,Pine,Amy K. Roy;Brenda Benson;Teresa Daniele;Christina Carlisi;Justin S.A. Perry;F. Xavier Castellanos;Monique Ernst;Julie L. Fudge;Clare Kelly;Michael P. Milham;Daniel S. Pine,2013-01-01,130,Journal of the American Academy of Child and Adolescent Psychiatry,,10.1016/j.jaac.2012.12.010,,84875232388,"('2-s2.0-84875232388', 'Pine')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84875232388,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84875232388&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84875232388&origin=inward +Amygdala Function and 5-HTT Gene Variants in Adolescent Anxiety and Major Depressive Disorder,Pine,Eric E. Nelson;Jennifer Y.F. Lau;Amanda E. Guyer;Beata Buzas;Monique Ernst;Colin Hodgkinson;David Goldman;Pei Hong Shen;Christopher S. Monk;Stephen J. Fromm;Daniel S. Pine,2009-02-15,87,Biological Psychiatry,349-355,10.1016/j.biopsych.2008.08.037,18950748,58349113592,"('2-s2.0-58349113592', 'Pine')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/58349113592,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=58349113592&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=58349113592&origin=inward +Neurodevelopmental aspects of spatial navigation: A virtual reality fMRI study,Pine,Joseph Grun;Vivian Koda;Robert M. Bilder;Eric Zarahn;Neil Burgess;Eleanor A. Maguire;Abby Fyer;Philip R. Szeszko;Daniel S. Pine,2002-01-01,88,NeuroImage,396-406,10.1006/nimg.2001.0988,,0036334961,"('2-s2.0-0036334961', 'Pine')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/0036334961,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0036334961&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0036334961&origin=inward +Neural correlates of reward processing in adolescents with a history of inhibited temperament,Pine,Eric E. Nelson;Brenda Benson;Amanda E. Guyer;Nathan A. Fox;Yair Bar-Haim;Daniel S. Pine;Amber Williams;Monique Ernst;Koraly Perez-Edgar,2009-08-01,94,Psychological Science,1009-1018,10.1111/j.1467-9280.2009.02401.x,19594857,68249129557,"('2-s2.0-68249129557', 'Pine')",Article,,https://api.elsevier.com/content/abstract/scopus_id/68249129557,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=68249129557&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=68249129557&origin=inward +Conduct disorder and callous-unemotional traits in youth,Blair,R. James R. Blair;Ellen Leibenluft;Daniel S. Pine,2014-12-04,134,New England Journal of Medicine,2207-2216,10.1056/NEJMra1315612,25470696,84918793901,"('2-s2.0-84918793901', 'Blair')",Review,,https://api.elsevier.com/content/abstract/scopus_id/84918793901,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84918793901&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84918793901&origin=inward +Developmental differences in neuronal engagement during implicit encoding of emotional faces: An event-related fMRI study,Leibenluft,Eric E. Nelson;Ellen Leibenluft;Eric Zarahn;Monique Ernst;Christopher S. Monk;Erin B. McClure;Daniel S. Pine,2003-10-01,77,Journal of Child Psychology and Psychiatry and Allied Disciplines,1015-1024,10.1111/1469-7610.00186,14531584,0141921574,"('2-s2.0-0141921574', 'Leibenluft')",Article,,https://api.elsevier.com/content/abstract/scopus_id/0141921574,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0141921574&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0141921574&origin=inward +Striatal functional alteration during incentive anticipation in pediatric anxiety disorders,Pine,Eric E. Nelson;Brenda Benson;Amanda E. Guyer;Nathan A. Fox;Daniel S. Pine;Allison Detloff;Monique Ernst;Victoria R. Choate;Koraly Perez-Edgar,2012-01-01,89,American Journal of Psychiatry,205-212,10.1176/appi.ajp.2011.11010006,,84857600286,"('2-s2.0-84857600286', 'Pine')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84857600286,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84857600286&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84857600286&origin=inward +Distinct neural signatures of threat learning in adolescents and adults,Grillon,Eric E. Nelson;Ellen Leibenluft;Christian Grillon;Daniel S. Pine;Jennifer Y. Lau;Adrian Angold;Shmuel Lissek;Michelle Goldwin;Nina Shiffrin;Jennifer C. Britton;Maxine Norcross;Monique Ernst,2011-03-15,101,Proceedings of the National Academy of Sciences of the United States of America,4500-4505,10.1073/pnas.1005494108,21368210,79952729757,"('2-s2.0-79952729757', 'Grillon')",Article,,https://api.elsevier.com/content/abstract/scopus_id/79952729757,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79952729757&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79952729757&origin=inward +"Nucleus accumbens, thalamus and insula connectivity during incentive anticipation in typical adults and adolescents",Pine,Amanda E. Guyer;Stephen Fromm;Allison Detloff;Monique Ernst;Youngsun T. Cho;Julie L. Fudge;Daniel S. Pine,2013-02-01,86,NeuroImage,508-521,10.1016/j.neuroimage.2012.10.013,23069809,84870260560,"('2-s2.0-84870260560', 'Pine')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84870260560,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84870260560&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84870260560&origin=inward +BDNF gene polymorphism (Val66Met) predicts amygdala and anterior hippocampus responses to emotional faces in anxious and depressed adolescents,Leibenluft,Jennifer Y.F. Lau;Ellen Leibenluft;Beata Buzas;Eric Nelson;Monique Ernst;Colin Hodgkinson;David Goldman;Lindsey Sankin;Daniel S. Pine,2010-11-01,75,NeuroImage,952-961,10.1016/j.neuroimage.2009.11.026,19931400,77955227027,"('2-s2.0-77955227027', 'Leibenluft')",Article,,https://api.elsevier.com/content/abstract/scopus_id/77955227027,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77955227027&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77955227027&origin=inward +A Functional Magnetic Resonance Imaging Investigation of Uncertainty in Adolescents with Anxiety Disorders,Pine,Daniel S. Pine;Kristin Gotimer;Sara Hefton;F. Xavier Castellanos;Amy L. Krain;Michael P. Milham;Monique Ernst,2008-03-15,80,Biological Psychiatry,563-568,10.1016/j.biopsych.2007.06.011,17719566,39449128305,"('2-s2.0-39449128305', 'Pine')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/39449128305,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=39449128305&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=39449128305&origin=inward +Plasticity for affective neurocircuitry: How the environment affects gene expression,Pine,Nathan A. Fox;Amie A. Hane;Daniel S. Pine,2007-02-01,71,Current Directions in Psychological Science,1-5,10.1111/j.1467-8721.2007.00464.x,,33947263246,"('2-s2.0-33947263246', 'Pine')",Article,,https://api.elsevier.com/content/abstract/scopus_id/33947263246,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33947263246&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33947263246&origin=inward +"Reduced dorsal anterior cingulate cortical activity during emotional regulation and top-down attentional control in generalized social phobia, generalized anxiety disorder, and comorbid generalized social phobia/generalized anxiety disorder",Blair,Marcela Otero;James R. Blair;Daniel S. Pine;Bruce W. Smith;Karina S. Blair;Jeffrey Devido;Nick Hollon;Marilla Geraci,2012-09-15,92,Biological Psychiatry,476-482,10.1016/j.biopsych.2012.04.013,22592057,84865227012,"('2-s2.0-84865227012', 'Blair')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/84865227012,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84865227012&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84865227012&origin=inward +A preliminary investigation of neural correlates of treatment in adolescents with generalized anxiety disorder,Pine,Brendan P. Bradley;Daniel S. Pine;Julie Maslowsky;Erin McClure-Tone;Christopher S. Monk;Karin Mogg;Monique Ernst,2010-04-01,80,Journal of Child and Adolescent Psychopharmacology,105-111,10.1089/cap.2009.0049,20415605,77951687142,"('2-s2.0-77951687142', 'Pine')",Article,,https://api.elsevier.com/content/abstract/scopus_id/77951687142,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77951687142&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77951687142&origin=inward +An fMRI examination of developmental differences in the neural correlates of uncertainty and decision-making,Pine,Rachel G. Klein;Sara Hefton;F. Xavier Castellanos;Monique Ernst;Amy L. Krain;Michael P. Milham;Daniel S. Pine,2006-11-01,57,Journal of Child Psychology and Psychiatry and Allied Disciplines,1023-1030,10.1111/j.1469-7610.2006.01677.x,17073981,33750407771,"('2-s2.0-33750407771', 'Pine')",Article,,https://api.elsevier.com/content/abstract/scopus_id/33750407771,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33750407771&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33750407771&origin=inward +Response to learned threat: An fMRI study in adolescent and adult anxiety,Leibenluft,Eric E. Nelson;Ellen Leibenluft;Christian Grillon;Daniel S. Pine;Gang Chen;Monique Ernst;Tomer Shechner;Shmuel Lissek;Jennifer C. Britton;Maxine A. Norcross;Kristin L. Szuhany,2013-10-01,87,American Journal of Psychiatry,1195-1204,10.1176/appi.ajp.2013.12050651,,84885223873,"('2-s2.0-84885223873', 'Leibenluft')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84885223873,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84885223873&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84885223873&origin=inward +Training-associated changes and stability of attention bias in youth: Implications for Attention Bias Modification Treatment for pediatric anxiety,Pine,Michelle A. Clementi;Carolyn N. Spiro;Maxine A. Norcross;Yair Bar-Haim;Daniel S. Pine;Gang Chen;Tomer Shechner;Kara M. Lindstrom;Jennifer C. Britton;Lindsey S. Sankin,2013-01-01,69,Developmental Cognitive Neuroscience,52-64,10.1016/j.dcn.2012.11.001,23200784,84875963708,"('2-s2.0-84875963708', 'Pine')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/84875963708,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84875963708&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84875963708&origin=inward +Methods for developmental studies of fear conditioning circuitry,Pine,Joseph Grun;Vivian Koda;Robert M. Bilder;Neil Burgess;Elizabeth A. Phelps;Wei Li;Eleanor A. Maguire;Abby Fyer;Babak Ardekani;Philip R. Szeszko;Daniel S. Pine,2001-08-01,49,Biological Psychiatry,225-228,10.1016/S0006-3223(01)01159-3,11513822,0035421353,"('2-s2.0-0035421353', 'Pine')",Review,NIMH,https://api.elsevier.com/content/abstract/scopus_id/0035421353,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0035421353&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0035421353&origin=inward +Optimizing the Design and Analysis of Clinical Functional Magnetic Resonance Imaging Research Studies,Pine,Stephen Strother;Stephan Heckers;Cameron S. Carter;Daniel S. Pine;Thomas Nichols,2008-11-15,52,Biological Psychiatry,842-849,10.1016/j.biopsych.2008.06.014,18718572,54149098555,"('2-s2.0-54149098555', 'Pine')",Review,JSMF,https://api.elsevier.com/content/abstract/scopus_id/54149098555,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=54149098555&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=54149098555&origin=inward +Atypical modulation of medial prefrontal cortex to self-referential comments in generalized social phobia,Blair,Marcela Otero;Catherine Majestic;Stephanie Odenheimer;Madeline Jacobs;R. J.R. Blair;Karina S. Blair;Daniel S. Pine;Marilla Geraci,2011-07-30,51,Psychiatry Research - Neuroimaging,38-45,10.1016/j.pscychresns.2010.12.016,21601433,79957587777,"('2-s2.0-79957587777', 'Blair')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/79957587777,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79957587777&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79957587777&origin=inward +Patterns of neural connectivity during an attention bias task moderate associations between early childhood temperament and internalizing symptoms in young adulthood,Pine,Jillian E. Hardee;Koraly Pérez-Edgar;Brendan P. Bradley;Nathan A. Fox;Yair Bar-Haim;Daniel S. Pine;Gang Chen;Brenda E. Benson;Karin Mogg;Monique Ernst;Jennifer C. Britton,2013-08-15,64,Biological Psychiatry,273-279,10.1016/j.biopsych.2013.01.036,23489415,84880783821,"('2-s2.0-84880783821', 'Pine')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/84880783821,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84880783821&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84880783821&origin=inward +Amygdala function in adolescents with congenital adrenal hyperplasia: A model for the study of early steroid abnormalities,Pine,Françoise S. Maheu;Elizabeth Schroth;Eric Nelson;Daniel S. Pine;Deborah P. Merke;Julie Hardin;Rachel Allen;Jennifer Cameron;Stuart Holzer;Monique Ernst;Liza Green Golan,2007-05-01,46,Neuropsychologia,2104-2113,10.1016/j.neuropsychologia.2007.01.019,17336344,34247485995,"('2-s2.0-34247485995', 'Pine')",Article,NICHD,https://api.elsevier.com/content/abstract/scopus_id/34247485995,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34247485995&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34247485995&origin=inward +Striatal responses to negative monetary outcomes differ between temperamentally inhibited and non-inhibited adolescents,Pine,Brenda Benson;Nathan A. Fox;Yair Bar-Haim;Allison Detloff;Daniel S. Pine;Monique Ernst;Koraly Perez-Edgar;Sarah M. Helfinstein,2011-02-01,45,Neuropsychologia,479-485,10.1016/j.neuropsychologia.2010.12.015,21167189,79551500383,"('2-s2.0-79551500383', 'Pine')",Article,NSF,https://api.elsevier.com/content/abstract/scopus_id/79551500383,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79551500383&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79551500383&origin=inward +Altered amygdala and hippocampus function in adolescents with hypercortisolemia: A functional magnetic resonance imaging study of Cushing syndrome,Pine,Françoise S. Maheu;Margaret F. Keil;Deborah P. Merke;Monique Ernst;Constantine A. Stratakis;Daniel S. Pine;Luigi Mazzone,2008-10-20,43,Development and Psychopathology,1177-1189,10.1017/S0954579408000564,18838037,53849118466,"('2-s2.0-53849118466', 'Pine')",Article,,https://api.elsevier.com/content/abstract/scopus_id/53849118466,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=53849118466&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=53849118466&origin=inward +Neural responses to peer rejection in anxious adolescents: Contributions from the amygdala-hippocampal complex,Pine,Eric E. Nelson;Jennifer Y.F. Lau;Erin B. Tone;Amanda E. Guyer;Jessica M. Parrish;Daniel S. Pine;Jessica Jenness,2012-01-01,42,International Journal of Behavioral Development,36-44,10.1177/0165025411406854,,84855643831,"('2-s2.0-84855643831', 'Pine')",Conference Paper,NIMH,https://api.elsevier.com/content/abstract/scopus_id/84855643831,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84855643831&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84855643831&origin=inward +Gray matter volume in adolescent anxiety: An impact of the brain-derived neurotrophic factor Val66met polymorphism?,Pine,Elena Gorodetsky;Monique Ernst;Aveline Aouidad;David Goldman;Sven C. Mueller;Daniel S. Pine,2013-02-01,51,Journal of the American Academy of Child and Adolescent Psychiatry,184-195,10.1016/j.jaac.2012.11.016,23357445,84872920006,"('2-s2.0-84872920006', 'Pine')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/84872920006,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84872920006&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84872920006&origin=inward +Experience-dependent plasticity for attention to threat: Behavioral and neurophysiological evidence in humans,Leibenluft,Eric E. Nelson;Lee Anne Montgomery;Eric Zarahn;Ellen Leibenluft;Amanda E. Guyer;Girma Woldehawariat;Daniel S. Pine;Dennis S. Charney;Christopher S. Monk;Erin B. McClure;Monique Ernst,2004-10-15,31,Biological Psychiatry,607-610,10.1016/j.biopsych.2004.07.012,15476691,5044222459,"('2-s2.0-5044222459', 'Leibenluft')",Article,,https://api.elsevier.com/content/abstract/scopus_id/5044222459,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=5044222459&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=5044222459&origin=inward +Cortical Brain Regions Engaged by Masked Emotional Faces in Adolescents and Adults: An fMRI Study,Pine,Joseph Grun;Vivian Koda;Robert M. Bilder;Eric Zarahn;Wei Li;Abby Fyer;Babak Ardekani;Philip R. Szeszko;Daniel S. Pine,2001-06-01,30,Emotion,137-147,10.1037/1528-3542.1.2.137,12899193,0041829003,"('2-s2.0-0041829003', 'Pine')",Article,,https://api.elsevier.com/content/abstract/scopus_id/0041829003,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0041829003&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0041829003&origin=inward +The neural correlates of emotion-based cognitive control in adults with early childhood behavioral inhibition,Pine,Ellen Leibenluft;Nathan A. Fox;Monique Ernst;Tomer Shechner;Amit Etkin;Johanna M. Jarcho;Daniel S. Pine,2013-02-01,45,Biological Psychology,306-314,10.1016/j.biopsycho.2012.09.008,23046903,84871483084,"('2-s2.0-84871483084', 'Pine')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/84871483084,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84871483084&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84871483084&origin=inward +Lasting associations between early-childhood temperament and late-adolescent reward-circuitry response to peer feedback,Pine,Eric E. Nelson;Brenda Benson;Amanda E. Guyer;Nathan A. Fox;Yair Bar-Haim;Daniel S. Pine;Monique Ernst;Victoria R. Choate;Johanna M. Jarcho;Koraly Perez-Edgar,2014-01-01,44,Development and Psychopathology,229-243,10.1017/S0954579413000941,24444176,84896459938,"('2-s2.0-84896459938', 'Pine')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/84896459938,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84896459938&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84896459938&origin=inward +Longitudinal study of striatal activation to reward and loss anticipation from mid-adolescence into late adolescence/early adulthood,Pine,K. Perez-Edgar;C. Lamm;A. E. Guyer;M. Ernst;N. A. Fox;D. S. Pine;B. E. Benson,2014-01-01,36,Brain and Cognition,51-60,10.1016/j.bandc.2013.12.003,24485273,84906260452,"('2-s2.0-84906260452', 'Pine')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/84906260452,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84906260452&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84906260452&origin=inward +Normative data on development of neural and behavioral mechanisms underlying attention orienting toward social-emotional stimuli: An exploratory study,Leibenluft,Eric E. Nelson;Ellen Leibenluft;Brendan P. Bradley;Amanda E. Guyer;Nathan A. Fox;Daniel S. Pine;Yair Bar-Haim;Kara M. Lindstrom;Christopher S. Monk;Karin Mogg;Monique Ernst;Jennifer C. Britton,2009-09-25,24,Brain Research,61-70,10.1016/j.brainres.2009.07.045,19631626,69449084507,"('2-s2.0-69449084507', 'Leibenluft')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/69449084507,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=69449084507&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=69449084507&origin=inward +Fluoxetine administered to juvenile monkeys: Effects on the serotonin transporter and behavior,Leibenluft,Eric E. Nelson;Robert Gladding;Chul Hyoung Lyoo;Jeremy Kruger;Ellen Leibenluft;Per Svenningsson;James T. Winslow;Jeih San Liow;Robert B. Innis;Victor W. Pike;Cheryl Morse;Stephen J. Suomi;Ioline D. Henter;Bo Zhang;Pam L. Noble;Stal Saurav Shrestha;Daniel S. Pine,2014-03-01,34,American Journal of Psychiatry,323-331,10.1176/appi.ajp.2013.13020183,24480874,84894284825,"('2-s2.0-84894284825', 'Leibenluft')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84894284825,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84894284825&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84894284825&origin=inward +A Neuroimaging Method for the Study of Threat in Adolescents,Grillon,Eric E. Nelson;Eric Zarahn;Christian Grillon;Johanna M.P. Baas;Daniel S. Pine;Dennis S. Charney;Christopher S. Monk;Erin B. McClure;Monique Ernst,2003-12-18,24,Developmental Psychobiology,359-366,10.1002/dev.10146,15027419,0344666712,"('2-s2.0-0344666712', 'Grillon')",Article,,https://api.elsevier.com/content/abstract/scopus_id/0344666712,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0344666712&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0344666712&origin=inward +Approach-withdrawal and the role of the striatum in the temperament of behavioral inhibition,Pine,Nathan A. Fox;Daniel S. Pine;Sarah M. Helfinstein,2012-05-01,25,Developmental Psychology,815-826,10.1037/a0026402,22148946,84865628437,"('2-s2.0-84865628437', 'Pine')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84865628437,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84865628437&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84865628437&origin=inward +Age-related changes in the intrinsic functional connectivity of the human ventral vs. dorsal striatum from childhood to middle age,Leibenluft,Amy K. Roy;Brenda Benson;Ellen Leibenluft;Christina Carlisi;Paul F. Collins;Monica Luciana;James N. Porter;Monique Ernst;Daniel S. Pine,2015-01-01,38,Developmental Cognitive Neuroscience,83-95,10.1016/j.dcn.2014.08.011,25257972,84922239203,"('2-s2.0-84922239203', 'Leibenluft')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/84922239203,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84922239203&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84922239203&origin=inward +The influence of context valence in the neural coding of monetary outcomes,Pine,Michael G. Hardin;Daniel S. Pine;Monique Ernst,2009-10-15,23,NeuroImage,249-257,10.1016/j.neuroimage.2009.06.050,19560546,67949118682,"('2-s2.0-67949118682', 'Pine')",Article,,https://api.elsevier.com/content/abstract/scopus_id/67949118682,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=67949118682&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=67949118682&origin=inward +Striatal dysfunction during failed motor inhibition in children at risk for bipolar disorder,Pine,Ellen Leibenluft;Pilyoung Kim;Daniel S. Pine;Christen M. Deveney;Melissa A. Brotman;Stephen J. Fromm;Megan E. Connolly;Sarah E. Jenkins,2012-08-07,23,Progress in Neuro-Psychopharmacology and Biological Psychiatry,127-133,10.1016/j.pnpbp.2012.02.014,22414616,84862844396,"('2-s2.0-84862844396', 'Pine')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/84862844396,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84862844396&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84862844396&origin=inward +DRD4 and striatal modulation of the link between childhood behavioral inhibition and adolescent anxiety,Pine,Jillian E. Hardee;Eric E. Nelson;Elena Gorodetsky;Koraly Pérez-Edgar;Amanda E. Guyer;Nathan A. Fox;Monique Ernst;David Goldman;Brenda E. Benson;Daniel S. Pine,2014-01-01,26,Social Cognitive and Affective Neuroscience,445-453,10.1093/scan/nst001,23314010,84898785141,"('2-s2.0-84898785141', 'Pine')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/84898785141,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84898785141&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84898785141&origin=inward +Early hyperandrogenism affects the development of hippocampal function: Preliminary evidence from a functional magnetic resonance imaging study of boys with familial male precocious puberty,Pine,Ellen W. Leschek;Darcy Mandell;Deborah P. Merke;Monique Ernst;Sven C. Mueller;Daniel S. Pine,2009-01-01,21,Journal of Child and Adolescent Psychopharmacology,41-50,10.1089/cap.2008.031,19232022,60749137154,"('2-s2.0-60749137154', 'Pine')",Article,,https://api.elsevier.com/content/abstract/scopus_id/60749137154,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=60749137154&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=60749137154&origin=inward +Do you make a difference? Social context in a betting task,Pine,Eric E. Nelson;Monique Ernst;Daniel S. Pine;Norberto Eiji Nawa,2008-12-01,19,Social Cognitive and Affective Neuroscience,367-376,10.1093/scan/nsn032,19015081,58149109034,"('2-s2.0-58149109034', 'Pine')",Article,,https://api.elsevier.com/content/abstract/scopus_id/58149109034,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=58149109034&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=58149109034&origin=inward +Enduring influence of early temperament on neural mechanisms mediating attention-emotion conflict in adults,Pine,Ellen Leibenluft;Kathryn A. Degnan;Nathan A. Fox;Monique Ernst;Tomer Shechner;Johanna M. Jarcho;Daniel S. Pine;Koraly Perez-Edgar,2014-01-01,26,Depression and Anxiety,53-62,10.1002/da.22140,23861165,84891831556,"('2-s2.0-84891831556', 'Pine')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84891831556,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84891831556&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84891831556&origin=inward +Robust resting state fMRI processing for studies on typical brain development based on multi-echo EPI acquisition,Bandettini,Monique Ernst;Prantik Kundu;Dana Rosen;Katherine L. Baldwin;Wen Ming Luh;Brenda E. Benson;Peter A. Bandettini;Daniel S. Pine,2015-03-11,27,Brain Imaging and Behavior,56-73,10.1007/s11682-014-9346-4,25592183,84925485661,"('2-s2.0-84925485661', 'Bandettini')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/84925485661,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84925485661&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84925485661&origin=inward +Alterations in amygdala functional connectivity reflect early temperament,Pine,Amy Krain Roy;Kathryn A. Degnan;Nathan A. Fox;Monique Ernst;Brenda E. Benson;Daniel S. Pine;Koraly Perez-Edgar,2014-12-01,23,Biological Psychology,248-254,10.1016/j.biopsycho.2014.09.007,25261727,84908381331,"('2-s2.0-84908381331', 'Pine')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/84908381331,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84908381331&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84908381331&origin=inward +Loss aversion and 5HTT gene variants in adolescent anxiety,Pine,Elena Gorodetsky;Daniel S. Pine;Rista C. Plate;David Goldman;Monique Ernst;Christina O. Carlisi,2014-01-01,18,Developmental Cognitive Neuroscience,77-85,10.1016/j.dcn.2013.10.002,24280015,84897110700,"('2-s2.0-84897110700', 'Pine')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84897110700,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84897110700&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84897110700&origin=inward +Steroid abnormalities and the developing brain: Declarative memory for emotionally arousing and neutral material in children with congenital adrenal hyperplasia,Pine,Françoise S. Maheu;Margaret F. Keil;Daniel S. Pine;Deborah P. Merke;Monique Ernst;Julie Hardin;Kaitlin Poeth;Elizabeth A. Schroth,2008-02-01,13,Psychoneuroendocrinology,238-245,10.1016/j.psyneuen.2007.11.006,18162329,38349126011,"('2-s2.0-38349126011', 'Pine')",Article,NICHD,https://api.elsevier.com/content/abstract/scopus_id/38349126011,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=38349126011&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=38349126011&origin=inward +Preliminary findings: Neural responses to feedback regarding betrayal and cooperation in adolescent anxiety disorders,Pine,Eric E. Nelson;Allison M. Detloff;Monique Ernst;Norberto E. Nawa;Erin B. McClure-Tone;Stephen J. Fromm;Daniel S. Pine,2011-05-01,14,Developmental Neuropsychology,453-472,10.1080/87565641.2010.549876,21516543,79956223886,"('2-s2.0-79956223886', 'Pine')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/79956223886,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79956223886&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79956223886&origin=inward +Neural activation during anticipated peer evaluation and laboratory meal intake in overweight girls with and without loss of control eating,Pine,Eric E. Nelson;Lauren B. Shomaker;Jack A. Yanovski;Andrew P. Demidowich;Louise Hannallah;Sheila M. Brady;Sara E. Field;Anna Vannucci;Scott G. Engel;Johanna M. Jarcho;Daniel S. Pine;Amber B. Courville;Marian Tanofsky-Kraff;Adrienne L. Romer,2015-03-01,18,NeuroImage,343-353,10.1016/j.neuroimage.2014.12.054,25550068,84922258357,"('2-s2.0-84922258357', 'Pine')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/84922258357,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84922258357&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84922258357&origin=inward +"Amygdala–Cortical Connectivity: Associations with Anxiety, Development, and Threat",Leibenluft,Ellen Leibenluft;Carolyn N. Spiro;Tomer Shechner;Andrea L. Gold;Daniel S. Pine;Madeline J. Farber;Jennifer C. Britton,2016-10-01,29,Depression and Anxiety,917-926,10.1002/da.22470,27699940,84991094042,"('2-s2.0-84991094042', 'Leibenluft')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84991094042,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84991094042&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84991094042&origin=inward +Childhood abuse and reduced cortical thickness in brain regions involved in emotional processing,Pine,Daniel S. Busso;Katie A. McLaughlin;Hilary K. Lambert;Matthew Peverill;Sonia Alves;Andrea L. Gold;Margaret A. Sheridan;Daniel S. Pine,2016-10-01,37,Journal of Child Psychology and Psychiatry and Allied Disciplines,1154-1164,10.1111/jcpp.12630,27647051,84988443599,"('2-s2.0-84988443599', 'Pine')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/84988443599,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84988443599&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84988443599&origin=inward +"Social Stress, Affect, and Neural Function in Adolescence",Pine,Erin B. McClure;Daniel S. Pine,2007-03-22,9,Adolescent Psychopathology and the Developing Brain: Integrating Brain and Prevention Science,,10.1093/acprof:oso/9780195306255.003.0010,,84918931540,"('2-s2.0-84918931540', 'Pine')",Chapter,,https://api.elsevier.com/content/abstract/scopus_id/84918931540,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84918931540&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84918931540&origin=inward +Early-Childhood Social Reticence Predicts Brain Function in Preadolescent Youths During Distinct Forms of Peer Evaluation,Leibenluft,Eric E. Nelson;Megan M. Davis;Kathryn A. Degnan;Heather A. Henderson;Ellen Leibenluft;Nathan A. Fox;Joel Stoddard;Tomer Shechner;Johanna M. Jarcho;Daniel S. Pine,2016-06-01,22,Psychological Science,821-835,10.1177/0956797616638319,27150109,84983022102,"('2-s2.0-84983022102', 'Leibenluft')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84983022102,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84983022102&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84983022102&origin=inward +Role of contingency in striatal response to incentive in adolescents with anxiety,Pine,Eric E. Nelson;Amanda E. Guyer;Daniel S. Pine;Brenda E. Benson;Monique Ernst,2014-01-01,13,"Cognitive, Affective and Behavioral Neuroscience",155-168,10.3758/s13415-014-0307-6,25183555,84922983681,"('2-s2.0-84922983681', 'Pine')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/84922983681,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84922983681&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84922983681&origin=inward +Empirical examination of the potential adverse psychological effects associated with pediatric fMRI scanning,Pine,Johanna Jarcho;Daniel S. Pine;Tomer Shechner;Naomi Wakschlag;Jennifer C. Britton;Monique Ernst,2013-06-01,4,Journal of Child and Adolescent Psychopharmacology,357-362,10.1089/cap.2012.0076,23738869,84879370070,"('2-s2.0-84879370070', 'Pine')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/84879370070,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84879370070&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84879370070&origin=inward +Altered striatal intrinsic functional connectivity in pediatric anxiety,Pine,Brenda Benson;Madeline Farber;Julia Dorfman;Daniel Pine;Monique Ernst,2016-05-01,2,Neuropsychologia,159-168,10.1016/j.neuropsychologia.2016.03.019,27004799,84962576502,"('2-s2.0-84962576502', 'Pine')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/84962576502,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84962576502&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84962576502&origin=inward +PET Imaging of Serotonin Transmission in Monkeys: Effects of Maternal Separation and Long-Term Fluoxetine Treatment during Adolescence,Pine,Robert Gladding;Eric E. Nelson;Per Svenningsson;James T. Winslow;Jeih San Liow;Robert B. Innis;Victor W. Pike;Stephen J. Suomi;Pam L. Noble;Saurav Shrestha;Daniel S. Pine,2013-12-01,0,"Catecholamine Research in the 21st Century: Abstracts and Graphical Abstracts, 10th International Catecholamine Symposium, 2012",157-158,10.1016/B978-0-12-800044-1.00139-2,,84902064254,"('2-s2.0-84902064254', 'Pine')",Chapter,,https://api.elsevier.com/content/abstract/scopus_id/84902064254,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84902064254&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84902064254&origin=inward +Differences in neural response to extinction recall in young adults with or without history of behavioral inhibition,Leibenluft,Ellen Leibenluft;Nathan A. Fox;Gang Chen;Tomer Shechner;Jamie A. Mash;Johanna M. Jarcho;Daniel S. Pine;Jennifer C. Britton,2018-02-01,6,Development and Psychopathology,179-189,10.1017/S0954579417000554,28534459,85019554319,"('2-s2.0-85019554319', 'Leibenluft')",Review,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85019554319,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85019554319&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85019554319&origin=inward +Rare structural variants disrupt multiple genes in neurodevelopmental pathways in schizophrenia,Rapoport,Abhishek Bhandari;Barry Merriman;Shane E. McCarthy;Kristen Eckstrand;Sean Davis;Peter Gochman;Evan E. Eichler;Robert L. Findling;Laila Noory;Mary Claire King;Nitin Gogtay;Zugen Chen;Stanley F. Nelson;Caitlin F. Rippey;Philip Butler;Jon M. McClellan;Sunday M. Stray;Dheeraj Malhotra;Patricia Roccanova;Ming K. Lee;Judith L. Rapoport;Thomas Stromberg;Sarah B. Pierce;Andrew B. Singleton;B. Lakshmi;Tom Walsh;Carl Baker;Vlad Makarov;Robert Long;Jonathan Sebat;Mary Kusenda;Anjené M. Addington;Greg M. Cooper;Alex S. Nord;Paul S. Meltzer;Linmarie Sikich,2008-04-25,1314,Science,539-543,10.1126/science.1155174,18369103,42349088634,"('2-s2.0-42349088634', 'Rapoport')",Article,,https://api.elsevier.com/content/abstract/scopus_id/42349088634,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=42349088634&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=42349088634&origin=inward +Attention-deficit/hyperactivity disorder is characterized by a delay in cortical maturation,Shaw,A. Evans;J. L. Rapoport;P. Shaw;J. P. Lerch;L. Clasen;K. Eckstrand;W. Sharp;J. Giedd;J. Blumenthal;D. Greenstein,2007-12-04,974,Proceedings of the National Academy of Sciences of the United States of America,19649-19654,10.1073/pnas.0707741104,18024590,37649015910,"('2-s2.0-37649015910', 'Shaw')",Article,,https://api.elsevier.com/content/abstract/scopus_id/37649015910,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=37649015910&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=37649015910&origin=inward +Mapping adolescent brain change reveals dynamic wave of accelerated gray matter loss in very early-onset schizophrenia,Rapoport,Judith L. Rapoport;Arthur W. Toga;Jonathan Blumenthal;Peter Gochman;Paul M. Thompson;Robert Nicolson;Jay N. Giedd;Christine Vidal,2001-09-25,613,Proceedings of the National Academy of Sciences of the United States of America,11650-11655,10.1073/pnas.201243998,11573002,0035949688,"('2-s2.0-0035949688', 'Rapoport')",Article,,https://api.elsevier.com/content/abstract/scopus_id/0035949688,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0035949688&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0035949688&origin=inward +Longitudinal mapping of cortical thickness and clinical outcome in children and adolescents with attention-deficit/hyperactivity disorder,Shaw,Alan Evans;Jason Lerch;F. Xavier Castellanos;Jay Giedd;Philip Shaw;Liv Clasen;Judith Rapoport;Wendy Sharp;Deanna Greenstein,2006-12-01,475,Archives of General Psychiatry,540-549,10.1001/archpsyc.63.5.540,16651511,33646932136,"('2-s2.0-33646932136', 'Shaw')",Article,,https://api.elsevier.com/content/abstract/scopus_id/33646932136,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33646932136&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33646932136&origin=inward +Quantitative brain magnetic resonance imaging in girls with attention-deficit/hyperactivity disorder,Rapoport,Judith L. Rapoport;A. Catherine Vaituzis;Alex Zijdenbos;Jean Nelson;F. Xavier Castellanos;James M. Walter;Thanhlan Tran;Alan C. Evans;Patrick C. Berquin;Wendy Sharp;Jay N. Giedd;Jonathan D. Blumenthal;Theresa M. Bastain,2001-01-01,329,Archives of General Psychiatry,289-295,10.1001/archpsyc.58.3.289,11231836,0035095868,"('2-s2.0-0035095868', 'Rapoport')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/0035095868,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0035095868&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0035095868&origin=inward +A unified statistical approach to deformation-based morphometry,Rapoport,J. L. Rapoport;A. C. Evans;M. K. Chung;T. Paus;D. L. Collins;K. J. Worsley;C. Cherif;J. N. Giedd,2001-01-01,270,NeuroImage,595-606,10.1006/nimg.2001.0862,11506533,0034868081,"('2-s2.0-0034868081', 'Rapoport')",Article,,https://api.elsevier.com/content/abstract/scopus_id/0034868081,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0034868081&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0034868081&origin=inward +Autism spectrum disorders and childhood-onset schizophrenia: Clinical and biological contributions to a relation revisited,Rapoport,Alex Chavez;Nitin Gogtay;Anjene Addington;Judith Rapoport;Deanna Greenstein,2009-01-01,238,Journal of the American Academy of Child and Adolescent Psychiatry,10-18,10.1097/CHI.0b013e31818b1c63,,58249135361,"('2-s2.0-58249135361', 'Rapoport')",Erratum,,https://api.elsevier.com/content/abstract/scopus_id/58249135361,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=58249135361&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=58249135361&origin=inward +Cerebellar development and clinical outcome in attention deficit hyperactivity disorder,Shaw,Judith L. Rapoport;Ron Pierson;Tom F. Nugent;Rhoshel Lenroot;Philip Shaw;Wendy S. Sharp;Jay N. Giedd;Deanna K. Greenstein;Susan Mackie,2007-01-01,221,American Journal of Psychiatry,647-655,10.1176/ajp.2007.164.4.647,17403979,34247535549,"('2-s2.0-34247535549', 'Shaw')",Article,,https://api.elsevier.com/content/abstract/scopus_id/34247535549,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34247535549&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34247535549&origin=inward +Deformation-based surface morphometry applied to gray matter deformation,Rapoport,Judith L. Rapoport;Moo K. Chung;Jonathan Taylor;Tomáš Paus;Keith J. Worsley;Alan C. Evans;Steve Robbins;Jay N. Giedd,2003-02-01,199,NeuroImage,198-213,10.1016/S1053-8119(02)00017-4,12595176,0037330723,"('2-s2.0-0037330723', 'Rapoport')",Article,,https://api.elsevier.com/content/abstract/scopus_id/0037330723,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0037330723&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0037330723&origin=inward +"Polymorphisms of the dopamine D4 receptor, clinical outcome, and cortical structure in attention-deficit/hyperactivity disorder",Shaw,Judith L. Rapoport;Alan Evans;Jason Lerch;Michele Gornick;Anjene Addington;F. Xavier Castellanos;Jeffrey Seal;Philip Shaw;Wendy Sharp;Jay N. Giedd;Deanna Greenstein,2007-08-01,185,Archives of General Psychiatry,921-931,10.1001/archpsyc.64.8.921,17679637,34547750487,"('2-s2.0-34547750487', 'Shaw')",Article,,https://api.elsevier.com/content/abstract/scopus_id/34547750487,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34547750487&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34547750487&origin=inward +Psychostimulant treatment and the developing cortex in attention deficit hyperactivity disorder,Shaw,Judith L. Rapoport;Liv S. Clasen;Meaghan Morrison;Kristen Eckstrand;Philip Shaw;Alan C. Evans;Wendy S. Sharp;Deanna K. Greenstein,2009-01-01,174,American Journal of Psychiatry,58-63,10.1176/appi.ajp.2008.08050781,18794206,59749095103,"('2-s2.0-59749095103', 'Shaw')",Article,,https://api.elsevier.com/content/abstract/scopus_id/59749095103,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=59749095103&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=59749095103&origin=inward +Progressive brain volume loss during adolescence in childhood-onset schizophrenia,Rapoport,Judith L. Rapoport;Liv S. Clasen;Nitin Gogtay;Alexandra L. Sporn;Jonathan Blumenthal;Peter Gochman;Neal O. Jeffries;Jay N. Giedd;Marge Lenane;Deanna K. Greenstein,2003-12-01,141,American Journal of Psychiatry,2181-2189,10.1176/appi.ajp.160.12.2181,14638588,3042753009,"('2-s2.0-3042753009', 'Rapoport')",Article,,https://api.elsevier.com/content/abstract/scopus_id/3042753009,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=3042753009&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=3042753009&origin=inward +Development of cortical asymmetry in typically developing children and its disruption in attention-deficit/hyperactivity disorder,Shaw,Alan Evans;Kristen Eckstrand;Wendy Sharp;Francois Lalonde;Cara Rabin;Philip Shaw;Judith Rapoport;Claude Lepage;Deanna Greenstein;J. N. Giedd,2009-08-01,144,Archives of General Psychiatry,888-896,10.1001/archgenpsychiatry.2009.103,19652128,68149160814,"('2-s2.0-68149160814', 'Shaw')",Article,,https://api.elsevier.com/content/abstract/scopus_id/68149160814,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=68149160814&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=68149160814&origin=inward +Comparison of Progressive Cortical Gray Matter Loss in Childhood-Onset Schizophrenia with That in Childhood-Onset Atypical Psychoses,Rapoport,Judith L. Rapoport;Liv S. Clasen;Nitin Gogtay;Alan Evans;Rob Nicolson;Tom F. Nugent;Alexandra Sporn;Pete Gochman;Marge Lenane;Jay N. Giedd;Deanna Greenstein,2004-01-01,120,Archives of General Psychiatry,17-22,10.1001/archpsyc.61.1.17,14706940,9144232250,"('2-s2.0-9144232250', 'Rapoport')",Article,,https://api.elsevier.com/content/abstract/scopus_id/9144232250,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=9144232250&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=9144232250&origin=inward +Childhood psychiatric disorders as anomalies in neurodevelopmental trajectories,Shaw,Nitin Gogtay;Philip Shaw;Judith Rapoport,2010-06-01,125,Human Brain Mapping,917-925,10.1002/hbm.21028,20496382,77952899674,"('2-s2.0-77952899674', 'Shaw')",Review,,https://api.elsevier.com/content/abstract/scopus_id/77952899674,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77952899674&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77952899674&origin=inward +Premorbid speech and language impairments in childhood-onset schizophrenia: Association with risk factors,Hommer,Judith L. Rapoport;Susan D. Hamburger;Sujatha Singaracharlu;Daniel W. Hommer;Dolores Malaspina;Rob Nicolson;Peter Gochman;Gunvant K. Thaker;Jeffrey Bedwell;Tom Fernandez;Marianne Wudarsky;Jay N. Giedd;Marge Lenane,2000-05-01,105,American Journal of Psychiatry,794-800,10.1176/appi.ajp.157.5.794,10784474,12944305949,"('2-s2.0-12944305949', 'Hommer')",Article,,https://api.elsevier.com/content/abstract/scopus_id/12944305949,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=12944305949&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=12944305949&origin=inward +Three-dimensional brain growth abnormalities in childhood-onset schizophrenia visualized by using tensor-based morphometry,Rapoport,Alex Chavez;Arthur W. Toga;Nitin Gogtay;Judith L. Rapoport;Allen Lu;Paul M. Thompson;Andrea D. Klunder;Agatha D. Lee;Alex D. Leow;Jay N. Giedd;Deanna Greenstein,2008-10-14,97,Proceedings of the National Academy of Sciences of the United States of America,15979-15984,10.1073/pnas.0806485105,18852461,57349098187,"('2-s2.0-57349098187', 'Rapoport')",Article,,https://api.elsevier.com/content/abstract/scopus_id/57349098187,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=57349098187&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=57349098187&origin=inward +Neuregulin 1 (8p12) and childhood-onset schizophrenia: Susceptibility haplotypes for diagnosis and brain developmental trajectories,Shaw,J. L. Rapoport;P. Shaw;M. Coffey;L. Clasen;R. Long;P. Gochman;J. Seal;N. Gogtay;M. C. Gornick;A. M. Addington;D. Greenstein,2007-02-01,95,Molecular Psychiatry,195-205,10.1038/sj.mp.4001906,17033632,33846496323,"('2-s2.0-33846496323', 'Shaw')",Article,,https://api.elsevier.com/content/abstract/scopus_id/33846496323,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33846496323&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33846496323&origin=inward +Anatomic brain abnormalities in monozygotic twins discordant for attention deficit hyperactivity disorder,Rapoport,Judith L. Rapoport;Rebecca F. Gottesman;F. Xavier Castellanos;Wendy S. Sharp;Jay N. Giedd;Deanna K. Greenstein,2003-09-01,93,American Journal of Psychiatry,1693-1696,10.1176/appi.ajp.160.9.1693,12944348,0642343889,"('2-s2.0-0642343889', 'Rapoport')",Article,,https://api.elsevier.com/content/abstract/scopus_id/0642343889,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0642343889&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0642343889&origin=inward +Progressive loss of cerebellar volume in childhood-onset schizophrenia,Rapoport,Judith L. Rapoport;A. Catherine Vaituzis;F. Xavier Castellanos;Audrey Keller;Neal O. Jeffries;Jay N. Giedd,2003-01-01,92,American Journal of Psychiatry,128-133,10.1176/appi.ajp.160.1.128,12505811,0037228033,"('2-s2.0-0037228033', 'Rapoport')",Article,,https://api.elsevier.com/content/abstract/scopus_id/0037228033,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0037228033&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0037228033&origin=inward +Dynamic mapping of cortical development before and after the onset of pediatric bipolar illness,Leibenluft,Judith L. Rapoport;Arthur W. Toga;Nitin Gogtay;Ellen Leibenluft;David Jung;Wendy Sharp;Kiralee M. Hayashi;Cathy Vaituzis;Marge Lenane;Tom F. Nugent Iii;David H. Herman;Paul M. Thompson;Liv Clasen;Anna Ordonez;Jay N. Giedd;Deanna Greenstein,2007-09-01,96,Journal of Child Psychology and Psychiatry and Allied Disciplines,852-862,10.1111/j.1469-7610.2007.01747.x,17714370,34547843470,"('2-s2.0-34547843470', 'Leibenluft')",Article,,https://api.elsevier.com/content/abstract/scopus_id/34547843470,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34547843470&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34547843470&origin=inward +Longitudinal brain changes in early-onset psychosis,Rapoport,Nitin Gogtay;Judith Rapoport;Dolores Moreno;David Fraguas;Celso Arango;Carmen Moreno;Manuel Desco;Anthony James;Mara Parellada;Salvador Martínez,2008-03-01,69,Schizophrenia Bulletin,341-353,10.1093/schbul/sbm157,18234701,40049110129,"('2-s2.0-40049110129', 'Rapoport')",Review,NIMH,https://api.elsevier.com/content/abstract/scopus_id/40049110129,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=40049110129&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=40049110129&origin=inward +Childhood-onset psychotic disorders: Magnetic resonance imaging of volumetric differences in brain structure,Rapoport,J. L. Rapoport;J. E. Nelson;S. Kumra;K. McKenna;L. K. Jacobsen;J. Bedwell;M. Lenane;A. C. Vaituzis;S. Hamburger;J. N. Giedd,2000-09-18,64,American Journal of Psychiatry,1467-1474,10.1176/appi.ajp.157.9.1467,10964864,0033849886,"('2-s2.0-0033849886', 'Rapoport')",Article,,https://api.elsevier.com/content/abstract/scopus_id/0033849886,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0033849886&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0033849886&origin=inward +Structural brain MRI abnormalities in healthy siblings of patients with childhood-onset schizophrenia,Rapoport,Judith L. Rapoport;Liv S. Clasen;Nitin Gogtay;Alex Zijdenbos;Peter A. Gochman;Alexandra Sporn;Marge Lenane;Jay N. Giedd;Deanna Greenstein,2003-03-01,57,American Journal of Psychiatry,569-571,10.1176/appi.ajp.160.3.569,12611841,0037362607,"('2-s2.0-0037362607', 'Rapoport')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/0037362607,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0037362607&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0037362607&origin=inward +DUF1220-domain copy number implicated in human brain-size pathology and evolution,Raznahan,Rachel Sugalski;Majesta S. O'bleness;Tasha Fingerlin;Judith Rapoport;Jonathan M. Davis;Jay Giedd;J. G. Keeney;Ayelet Erez;Jay Jackson;Nicola Brunetti-Pierri;C. Michael Dickens;Nathan Anderson;Megan Sikela;Sau Wai Cheung;James R. Lupski;Armin Raznahan;Laura J. Dumas;James M. Sikela;Sandesh S.C. Nagamani,2012-09-07,70,American Journal of Human Genetics,444-454,10.1016/j.ajhg.2012.07.016,22901949,84866056199,"('2-s2.0-84866056199', 'Raznahan')",Article,MCHB,https://api.elsevier.com/content/abstract/scopus_id/84866056199,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84866056199&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84866056199&origin=inward +Dynamic mapping of hippocampal development in childhood onset schizophrenia,Rapoport,Judith L. Rapoport;Arthur W. Toga;Nitin Gogtay;David Jung;Kiralee M. Hayashi;Tom F. Nugent;Marge Lenane;Paul M. Thompson;David H. Herman;Liv Clasen;Anna Ordonez;Jay N. Giedd;Deanna Greenstein,2007-02-01,50,Schizophrenia Research,62-70,10.1016/j.schres.2006.10.014,17161938,33846584937,"('2-s2.0-33846584937', 'Rapoport')",Article,,https://api.elsevier.com/content/abstract/scopus_id/33846584937,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33846584937&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33846584937&origin=inward +"Brain development in healthy, hyperactive, and psychotic children",Rapoport,Judith L. Rapoport;Nitin Gogtay;Jay Giedd,2002-08-19,50,Archives of Neurology,1244-1248,10.1001/archneur.59.8.1244,12164719,0036337907,"('2-s2.0-0036337907', 'Rapoport')",Review,,https://api.elsevier.com/content/abstract/scopus_id/0036337907,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0036337907&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0036337907&origin=inward +Corpus callosum development in childhood-onset schizophrenia,Rapoport,Judith L. Rapoport;Liv S. Clasen;Hong Liu;Jonathan Blumenthal;Audrey Keller;Neal O. Jeffries;Jay N. Giedd,2003-07-01,44,Schizophrenia Research,105-114,10.1016/S0920-9964(02)00354-7,12765750,0038402732,"('2-s2.0-0038402732', 'Rapoport')",Article,,https://api.elsevier.com/content/abstract/scopus_id/0038402732,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0038402732&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0038402732&origin=inward +Children and adolescents with psychotic disorder not otherwise specified: A 2- to 8-year follow-up study,Rapoport,Judith L. Rapoport;Sanjiv Kumra;Rob Nicolson;Frances Brookner;Peter Gochman;Lori Spechler;Gunvant K. Thaker;Marianne Wudarsky;Jay N. Giedd;Marge Lenane,2001-01-01,41,Comprehensive Psychiatry,319-325,10.1053/comp.2001.24573,11458307,0034937483,"('2-s2.0-0034937483', 'Rapoport')",Article,,https://api.elsevier.com/content/abstract/scopus_id/0034937483,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0034937483&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0034937483&origin=inward +"Catechol-o-methyl transferase (COMT) val158met polymorphism and adolescent cortical development in patients with childhood-onset schizophrenia, their non-psychotic siblings, and healthy controls",Raznahan,Judith L. Rapoport;Yohan Lee;Nitin Gogtay;Anjene Addington;Armin Raznahan;Pete Gochman;Robert Long;Liv Clasen;Jay N. Giedd;Deanna Greenstein,2011-08-15,38,NeuroImage,1517-1523,10.1016/j.neuroimage.2011.05.032,21620981,79960283056,"('2-s2.0-79960283056', 'Raznahan')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/79960283056,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79960283056&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79960283056&origin=inward +Normalization of cortical gray matter deficits in nonpsychotic siblings of patients with childhood-onset schizophrenia,Rapoport,Judith L. Rapoport;Julia W. Tossell;Nitin Gogtay;Reva Stidd;Brian Weisinger;Anand A. Mattai;Liv Clasen;Rachel Miller;Deanna Greenstein,2011-07-01,40,Journal of the American Academy of Child and Adolescent Psychiatry,697-704,10.1016/j.jaac.2011.03.016,21703497,79959662116,"('2-s2.0-79959662116', 'Rapoport')",Article,,https://api.elsevier.com/content/abstract/scopus_id/79959662116,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79959662116&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79959662116&origin=inward +Hippocampal volume development in healthy siblings of childhood-onset schizophrenia patients,Rapoport,Nitin Gogtay;Reva Stidd;Brian Weisinger;Francois Lalonde;Avinash Hosanagar;Anand Mattai;Liv Clasen;Judith Rapoport;Deanna Greenstein,2011-04-01,36,American Journal of Psychiatry,427-435,10.1176/appi.ajp.2010.10050681,21245087,79955142750,"('2-s2.0-79955142750', 'Rapoport')",Article,,https://api.elsevier.com/content/abstract/scopus_id/79955142750,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79955142750&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79955142750&origin=inward +Effects of clozapine and olanzapine on cortical thickness in childhood-onset schizophrenia,Rapoport,Alex Chavez;Nitin Gogtay;Reva Stidd;Jennifer Bakalar;Anand Mattai;Liv Clasen;Judith Rapoport;Deanna Greenstein,2010-01-01,29,Schizophrenia Research,44-48,10.1016/j.schres.2009.10.018,19913390,71549142556,"('2-s2.0-71549142556', 'Rapoport')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/71549142556,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=71549142556&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=71549142556&origin=inward +Developmental trajectories of the corpus callosum in attention-deficit/ hyperactivity disorder,Rapoport,Liv Clasen;Mary Gilliam;Francois Lalonde;Meaghan Malek;Jay Giedd;Philip Shaw;Michael Stockman;Judith Rapoport;Wendy Sharp;Deanna Greenstein,2011-05-01,34,Biological Psychiatry,839-846,10.1016/j.biopsych.2010.11.024,21247556,79954911270,"('2-s2.0-79954911270', 'Rapoport')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/79954911270,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79954911270&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79954911270&origin=inward +Cerebellar development in childhood onset schizophrenia and non-psychotic siblings,Rapoport,Alex Chavez;Nitin Gogtay;Judith Rapoport;Liv Clausen;Lan Tran;Rhoshel Lenroot;A. C. Vaituzis;Deanna Greenstein,2011-09-30,25,Psychiatry Research - Neuroimaging,131-137,10.1016/j.pscychresns.2011.02.010,21803550,80051704258,"('2-s2.0-80051704258', 'Rapoport')",Article,,https://api.elsevier.com/content/abstract/scopus_id/80051704258,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=80051704258&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=80051704258&origin=inward +Delayed white matter growth trajectory in young nonpsychotic siblings of patients with childhood-onset schizophrenia,Rapoport,Alex Chavez;Arthur W. Toga;Nitin Gogtay;Judith L. Rapoport;Christina P. Boyle;Reva Stidd;Brian Weisinger;Paul M. Thompson;Xue Hua;Suh Lee;Jay N. Giedd;Liv Clasen,2012-09-01,24,Archives of General Psychiatry,875-884,10.1001/archgenpsychiatry.2011.2084,22945617,84866046475,"('2-s2.0-84866046475', 'Rapoport')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84866046475,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84866046475&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84866046475&origin=inward +Brain imaging in normal and abnormal brain development: New perspectives for child psychiatry,Rapoport,Nitin Gogate;Judith L. Rapoport;Kristin Janson;Jay Giedd,2001-01-01,20,Clinical Neuroscience Research,283-290,10.1016/S1566-2772(01)00014-7,,0001357913,"('2-s2.0-0001357913', 'Rapoport')",Article,,https://api.elsevier.com/content/abstract/scopus_id/0001357913,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0001357913&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0001357913&origin=inward +Hippocampal shape abnormalities of patients with childhood-onset schizophrenia and their unaffected siblings,Rapoport,Nitin Gogtay;Sarah L.M. Johnson;Kathryn I. Alpert;Francois Lalonde;Lei Wang;Liv Clasen;Judith Rapoport;Rachel Miller;Deanna Greenstein,2013-01-01,22,Journal of the American Academy of Child and Adolescent Psychiatry,,10.1016/j.jaac.2013.02.003,23622854,84876782347,"('2-s2.0-84876782347', 'Rapoport')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/84876782347,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84876782347&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84876782347&origin=inward +Striatal shape abnormalities as novel neurodevelopmental endophenotypes in schizophrenia: A longitudinal study,Rapoport,Judith L. Rapoport;M. Mallar Chakravarty;Nitin Gogtay;D. Louis Collins;Armin Raznahan;Philip Shaw;Jason P. Lerch;Jay N. Giedd,2015-04-01,35,Human Brain Mapping,1458-1469,10.1002/hbm.22715,25504933,84925273002,"('2-s2.0-84925273002', 'Rapoport')",Article,NSERC,https://api.elsevier.com/content/abstract/scopus_id/84925273002,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84925273002&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84925273002&origin=inward +Remission status and cortical thickness in childhood-onset schizophrenia,Rapoport,Judith L. Rapoport;Nitin Gogtay;Sarah Wolfe;Peter Gochman;Deanna K. Greenstein,2008-01-01,14,Journal of the American Academy of Child and Adolescent Psychiatry,1133-1140,10.1097/CHI.0b013e3181825b0c,18724254,55249124339,"('2-s2.0-55249124339', 'Rapoport')",Article,,https://api.elsevier.com/content/abstract/scopus_id/55249124339,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=55249124339&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=55249124339&origin=inward +General absence of abnormal cortical asymmetry in childhood-onset schizophrenia: A longitudinal study,Rapoport,Judith L. Rapoport;Julia W. Tossell;Nitin Gogtay;Alan C. Evans;Anand A. Mattai;Jennifer L. Bakalar;Rachel Miller;Liv Clasen;Deanna K. Greenstein,2009-11-01,12,Schizophrenia Research,12-16,10.1016/j.schres.2009.07.026,19734017,70349412917,"('2-s2.0-70349412917', 'Rapoport')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/70349412917,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=70349412917&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=70349412917&origin=inward +Absence of anatomic corpus callosal abnormalities in childhood-onset schizophrenia patients and healthy siblings,Rapoport,Nitin Gogtay;Sarah L.M. Johnson;Francois Lalonde;Liv Clasen;Judith Rapoport;Rachel Miller;Deanna Greenstein,2013-01-30,12,Psychiatry Research - Neuroimaging,11-16,10.1016/j.pscychresns.2012.09.013,23154096,84872837908,"('2-s2.0-84872837908', 'Rapoport')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/84872837908,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84872837908&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84872837908&origin=inward +Psychotic symptoms and gray matter deficits in clinical pediatric populations,Rapoport,Judith L. Rapoport;Nitin Gogtay;Reva Stidd;Brian Weisinger;Oscar Fernandez de la Vega;Deanna Greenstein;Jennifer L. Bakalar;Rachel Miller;Liv Clasen,2012-09-01,10,Schizophrenia Research,149-154,10.1016/j.schres.2012.07.006,22835806,84865340281,"('2-s2.0-84865340281', 'Rapoport')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84865340281,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84865340281&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84865340281&origin=inward +Defining the contribution of genetic risk to structural and functional anomalies in ADHD,Rapoport,Judith L. Rapoport;Philip Shaw,2008-01-01,6,Journal of the American Academy of Child and Adolescent Psychiatry,2-3,10.1097/chi.0b013e31815aac83,18174819,37849007193,"('2-s2.0-37849007193', 'Rapoport')",Editorial,,https://api.elsevier.com/content/abstract/scopus_id/37849007193,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=37849007193&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=37849007193&origin=inward +Hippocampal volume change relates to clinical outcome in childhood-onset schizophrenia,Rapoport,J. L. Rapoport;P. Gochman;L. A. Friedman;N. Gogtay;A. A. Anvari;D. Greenstein,2015-01-01,5,Psychological Medicine,2667-2674,10.1017/S0033291715000677,25936396,84938738172,"('2-s2.0-84938738172', 'Rapoport')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84938738172,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84938738172&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84938738172&origin=inward +Longitudinal brain Changes in early-onset psychosis,Rapoport,Nitin Gogtay;Judith Rapoport;Dolores Moreno;David Fraguas;Celso Arango;Carmen Moreno;Manuel Desco;Anthony James;Salvador Martinez;Mara Parellada,2010-06-01,0,Information Psychiatrique,513-527,10.1684/ipe.2010.0650,,77957890548,"('2-s2.0-77957890548', 'Rapoport')",Article,,https://api.elsevier.com/content/abstract/scopus_id/77957890548,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77957890548&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77957890548&origin=inward +Structural brain development between childhood and adulthood: Convergence across four longitudinal samples,Raznahan,Megan M. Herting;Kathryn L. Mills;Sarah Jayne Blakemore;Anne Lise Goddings;Rosa Meuwese;Ronald E. Dahl;Berna Güroğlu;Armin Raznahan;Elizabeth R. Sowell;Eveline A. Crone;Christian K. Tamnes,2016-11-01,128,NeuroImage,273-281,10.1016/j.neuroimage.2016.07.044,27453157,84982786684,"('2-s2.0-84982786684', 'Raznahan')",Article,UiO,https://api.elsevier.com/content/abstract/scopus_id/84982786684,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84982786684&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84982786684&origin=inward +Subtle in-scanner motion biases automated measurement of brain anatomy from in vivo MRI,Raznahan,Aaron Alexander-Bloch;Michael Stockman;Francois Lalonde;Armin Raznahan;Liv Clasen;Jay Giedd;Lisa Ronan,2016-07-01,58,Human Brain Mapping,2385-2397,10.1002/hbm.23180,27004471,84974711219,"('2-s2.0-84974711219', 'Raznahan')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84974711219,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84974711219&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84974711219&origin=inward +Disrupted sensorimotor and social-cognitive networks underlie symptoms in childhoodonset schizophrenia,Raznahan,Alex Martin;Nitin Gogtay;Harrison M. McAdams;Rebecca E. Watsky;Dede Greenstein;Stephen J. Gotts;Francois Lalonde;Armin Raznahan;Rebecca A. Berman;Liv Clasen;Judith Rapoport;Anna E. Ordonez;Lorie Shora,2016-01-01,42,Brain,276-291,10.1093/brain/awv306,26493637,84964614347,"('2-s2.0-84964614347', 'Raznahan')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/84964614347,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84964614347&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84964614347&origin=inward +Dissociations in cortical morphometry in youth with down syndrome: Evidence for reduced surface area but increased thickness,Shaw,Liv S. Clasen;Nitin Gogtay;François M. Lalonde;David I. Driver;Elizabeth I. Adeyemi;Amy Lin;Armin Raznahan;Ellen Condon;Philip Shaw;Jay N. Giedd;Nancy Raitano Lee,2016-01-01,23,Cerebral Cortex,2982-2990,10.1093/cercor/bhv107,26088974,84981249262,"('2-s2.0-84981249262', 'Shaw')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/84981249262,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84981249262&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84981249262&origin=inward +An allometric analysis of sex and sex chromosome dosage effects on subcortical anatomy in humans,Raznahan,M. Mallar Chakravarty;Paul Kirkpatrick Reardon;Jonathan Blumenthal;Armin Raznahan;Jason P. Lerch;Liv Clasen;Jay N. Giedd,2016-02-24,22,Journal of Neuroscience,2438-2448,10.1523/JNEUROSCI.3195-15.2016,26911691,84959421386,"('2-s2.0-84959421386', 'Raznahan')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84959421386,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84959421386&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84959421386&origin=inward +Cortical thickness change in autism during early childhood,Thurm,Cristan Farmer;Armin Raznahan;Jay Giedd;Audrey Thurm;Elizabeth Smith;Susan Swedo;Deanna Greenstein,2016-07-01,20,Human Brain Mapping,2616-2629,10.1002/hbm.23195,27061356,84974667659,"('2-s2.0-84974667659', 'Thurm')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/84974667659,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84974667659&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84974667659&origin=inward +Globally Divergent but Locally Convergent X- and Y-Chromosome Influences on Cortical Development,Raznahan,Gregory L. Wallace;Liv S. Clasen;Armin Raznahan;Deanna Greenstein;Jay N. Giedd;Jonathan D. Blumenthal;Nancy Raitano Lee,2016-01-01,19,Cerebral Cortex,70-79,10.1093/cercor/bhu174,25146371,84959428581,"('2-s2.0-84959428581', 'Raznahan')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84959428581,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84959428581&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84959428581&origin=inward +Longitudinal stability of the folding pattern of the anterior cingulate cortex during development,Raznahan,D. Rivière;C. Tissier;J. F. Mangin;M. Plaze;A. Raznahan;O. Gay;A. Cachia;O. Houdé;N. Gogtay;J. Giedd;C. Fisher;G. Borst,2016-06-01,17,Developmental Cognitive Neuroscience,122-127,10.1016/j.dcn.2016.02.011,26974743,84960349719,"('2-s2.0-84960349719', 'Raznahan')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84960349719,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84960349719&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84960349719&origin=inward +Triangulating the sexually dimorphic brain through high-resolution neuroimaging of murine sex chromosome aneuploidies,Raznahan,Ronald Swerdloff;Christina Wang;Frank Probst;Jason Lerch;Armin Raznahan;Deanna Greenstein;Jay Giedd;Yan He Lue,2015-11-26,11,Brain Structure and Function,3581-3593,10.1007/s00429-014-0875-9,25146308,84942313058,"('2-s2.0-84942313058', 'Raznahan')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84942313058,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84942313058&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84942313058&origin=inward +Subject-level measurement of local cortical coupling,Raznahan,Kosha Ruparel;Simon N. Vandekar;Raquel E. Gur;Russell T. Shinohara;David R. Roalf;Theodore D. Satterthwaite;Armin Raznahan;Ruben C. Gur;Ryan D. Hopson,2016-06-01,7,NeuroImage,88-97,10.1016/j.neuroimage.2016.03.002,26956908,84961836759,"('2-s2.0-84961836759', 'Raznahan')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/84961836759,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84961836759&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84961836759&origin=inward +Normative brain size variation and brain shape diversity in humans,Raznahan,Liv S. Clasen;M. Mallar Chakravarty;Aaron Alexander-Bloch;Raquel E. Gur;P. K. Reardon;Min Tae M. Park;Russell T. Shinohara;Raihaan Patel;Theodore D. Satterthwaite;Ruben C. Gur;Armin Raznahan;Jay N. Giedd;Simon Vandekar;Jason P. Lerch;Siyuan Liu;Francois M. Lalonde;Jakob Seidlitz;Jonathan D. Blumenthal,2018-01-01,36,Science,1222-1227,10.1126/science.aar2578,29853553,85048179321,"('2-s2.0-85048179321', 'Raznahan')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85048179321,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85048179321&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85048179321&origin=inward +Evolution of the blood-brain barrier in newly forming multiple sclerosis lesions,Bielekova,Roger D. Stone;Iordanis E. Evangelou;Bibiana Bielekova;Daniel S. Reich;Colin D. Shea;Luca Massacesi;María I. Gaitán;Kaylan M. Fenton,2011-07-01,102,Annals of Neurology,22-29,10.1002/ana.22472,21710622,79960839634,"('2-s2.0-79960839634', 'Bielekova')",Article,,https://api.elsevier.com/content/abstract/scopus_id/79960839634,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79960839634&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79960839634&origin=inward +"Autosomal recessive phosphoglucomutase 3 (PGM3) mutations link glycosylation defects to atopy, immune deficiency, autoimmunity, and neurocognitive impairment",Reich,Ian T. Lamborn;Emily S. Kim;Lynne A. Wolfe;Joshua McElwee;Kelly D. Stone;Alexandra F. Freeman;Helen F. Matthews;Sarah M. Kranick;Joshua D. Milner;Hudson H. Freeze;Jonathan J. Lyons;Matthew Biancalana;Mie Ichikawa;Helen C. Su;Jason D. Hughes;Huie Jing;Xiaomin Yu;Shrimati Datta;Huseyin Mehmet;Daniel S. Reich;Thomas Dimaggio;Steven M. Holland;Yu Zhang,2014-01-01,116,Journal of Allergy and Clinical Immunology,,10.1016/j.jaci.2014.02.013,24589341,84899618667,"('2-s2.0-84899618667', 'Reich')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84899618667,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84899618667&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84899618667&origin=inward +Gadolinium-based MRI characterization of leptomeningeal inflammation in multiple sclerosis,Cortese,Luisa Vuolo;Joan Ohayon;Govind Nair;Pascal Sati;Martina Absinta;María I. Reyes-Mantilla;Dragan Maric;Daniel S. Reich;Carlos A. Pardo;Anuradha Rao;Kaylan Fenton;Irene C.M. Cortese;John A. Butman;Peter A. Calabresi,2015-01-01,114,Neurology,18-28,10.1212/WNL.0000000000001587,25888557,84937010544,"('2-s2.0-84937010544', 'Cortese')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84937010544,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84937010544&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84937010544&origin=inward +Seven-tesla phase imaging of acute multiple sclerosis lesions: A new window into the inflammatory process,Cortese,Pascal Sati;Martina Absinta;Daniel S. Reich;Massimo Filippi;Irene C.M. Cortese;Pietro Maggi;María I. Gaitán,2013-11-01,79,Annals of Neurology,669-678,10.1002/ana.23959,,84890796734,"('2-s2.0-84890796734', 'Cortese')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84890796734,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84890796734&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84890796734&origin=inward +In vivo quantification of T 2* anisotropy in white matter fibers in marmoset monkeys,Jacobson,Pascal Sati;Daniel S. Reich;Steven Jacobson;Peter van Gelderen;Afonso C. Silva;Jeff H. Duyn;Jillian E. Wohler;Maria I. Gaitan,2012-01-16,47,NeuroImage,979-985,10.1016/j.neuroimage.2011.08.064,21906687,83055181237,"('2-s2.0-83055181237', 'Jacobson')",Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/83055181237,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=83055181237&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=83055181237&origin=inward +Statistical normalization techniques for magnetic resonance imaging,Reich,Elizabeth M. Sweeney;Daniel S. Reich;Farrah J. Mateen;Russell T. Shinohara;Dzung L. Pham;Navid Shiee;Samson Jarso;Jeff Goldsmith;Ciprian M. Crainiceanu;Peter A. Calabresi,2014-01-01,110,NeuroImage: Clinical,9-19,10.1016/j.nicl.2014.08.008,25379412,84906852811,"('2-s2.0-84906852811', 'Reich')",Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/84906852811,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84906852811&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84906852811&origin=inward +The central vein sign and its clinical evaluation for the diagnosis of multiple sclerosis: A consensus statement from the North American Imaging in Multiple Sclerosis Cooperative,McFarland,Amal P.R. Samaraweera;Russell T. Shinohara;William D. Rooney;R. Todd Constable;Charles R.G. Guttmann;Raymond A. Sobel;Eric C. Klawiter;Constantina A. Treaba;Nancy L. Sicotte;Alexander Rauscher;Luca Massacesi;Nikos Evangelou;Pascal Sati;Daniel Ontaneda;Flavia Nelson;Jens Wuerfel;Henry McFarland;Caterina Mainero;Robert Zivadinov;Daniel S. Reich;Jiwon Oh;Roland G. Henry;Daniel Pelletier;Andrew J. Solomon,2016-12-01,99,Nature Reviews Neurology,714-722,10.1038/nrneurol.2016.166,27834394,84994718072,"('2-s2.0-84994718072', 'McFarland')",Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/84994718072,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84994718072&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84994718072&origin=inward +Automatic magnetic resonance spinal cord segmentation with topology constraints for variable fields of view,Reich,Govind Nair;Jerry L. Prince;Daniel S. Reich;Dzung L. Pham;Jiwon Oh;Min Chen;Aaron Carass,2013-12-01,48,NeuroImage,1051-1062,10.1016/j.neuroimage.2013.07.060,23927903,84886437216,"('2-s2.0-84886437216', 'Reich')",Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/84886437216,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84886437216&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84886437216&origin=inward +"OASIS is Automated Statistical Inference for Segmentation, with applications to multiple sclerosis lesion segmentation in MRI",Reich,Elizabeth M. Sweeney;Avni A. Chudgar;Daniel S. Reich;Farrah J. Mateen;Russell T. Shinohara;Dzung L. Pham;Navid Shiee;Jennifer L. Cuzzocreo;Ciprian M. Crainiceanu;Peter A. Calabresi,2013-04-11,50,NeuroImage: Clinical,402-413,10.1016/j.nicl.2013.03.002,,84875897566,"('2-s2.0-84875897566', 'Reich')",Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/84875897566,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84875897566&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84875897566&origin=inward +"Cerebrospinal Fluid IL-12p40, CXCL13 and IL-8 as a Combinatorial Biomarker of Active Intrathecal Inflammation",Bielekova,Mika Komori;Bibiana Bielekova;Daniel S. Reich;Tianxia Wu;Quangang Xu,2012-11-30,42,PLoS ONE,,10.1371/journal.pone.0048370,23226202,84870722172,"('2-s2.0-84870722172', 'Bielekova')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84870722172,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84870722172&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84870722172&origin=inward +Initial investigation of the blood-brain barrier in MS lesions at 7 tesla,Reich,Souheil J. Inati;Pascal Sati;María I. Gaitán;Daniel S. Reich,2013-01-01,29,Multiple Sclerosis Journal,1068-1073,10.1177/1352458512471093,,84879774994,"('2-s2.0-84879774994', 'Reich')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84879774994,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84879774994&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84879774994&origin=inward +Automatic lesion incidence estimation and detection in multiple sclerosis using multisequence longitudinal MRI,Reich,R. T. Shinohara;E. M. Sweeney;C. M. Crainiceanu;D. S. Reich;C. D. Shea,2013-01-01,37,American Journal of Neuroradiology,68-73,10.3174/ajnr.A3172,22766673,84873668041,"('2-s2.0-84873668041', 'Reich')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84873668041,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84873668041&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84873668041&origin=inward +"Multiple sclerosis shrinks intralesional, and enlarges extralesional, brain parenchymal veins",Reich,Govind Nair;Pascal Sati;Daniel S. Reich;Manori P. De Alwis;María I. Gaitán,2013-01-08,27,Neurology,145-151,10.1212/WNL.0b013e31827b916f,23255828,84873638442,"('2-s2.0-84873638442', 'Reich')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84873638442,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84873638442&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84873638442&origin=inward +Optimized T1-MPRAGE sequence for better visualization of spinal cord multiple sclerosis lesions at 3T,Reich,Govind Nair;D. S. Reich;M. Absinta,2013-11-01,31,American Journal of Neuroradiology,2215-2222,10.3174/ajnr.A3637,23764721,84888187456,"('2-s2.0-84888187456', 'Reich')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/84888187456,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84888187456&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84888187456&origin=inward +Subject-Specific Sparse Dictionary Learning for Atlas-Based Brain MRI Segmentation,Reich,Elizabeth Sweeney;Jerry L. Prince;Daniel S. Reich;Dzung L. Pham;Aaron Carass;Snehashis Roy;Qing He,2015-09-01,44,IEEE Journal of Biomedical and Health Informatics,1598-1609,10.1109/JBHI.2015.2439242,26340685,84940979990,"('2-s2.0-84940979990', 'Reich')",Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/84940979990,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84940979990&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84940979990&origin=inward +Persistent 7-tesla phase rim predicts poor outcome in new multiple sclerosis patient lesions,Jacobson,Joan Ohayon;Pascal Sati;Martina Absinta;Daniel S. Reich;Steven Jacobson;Emily C. Leibovitch;Alessandro Meani;Massimo Filippi;Tianxia Wu;Irene C.M. Cortese;Matthew Schindler,2016-07-01,49,Journal of Clinical Investigation,2597-2609,10.1172/JCI86198,27270171,84978431594,"('2-s2.0-84978431594', 'Jacobson')",Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/84978431594,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84978431594&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84978431594&origin=inward +The effect of daclizumab on brain atrophy in relapsing-remitting multiple sclerosis,McFarland,Joan Ohayon;Roger D. Stone;Blake C. Jones;John Ostuni;Bibiana Bielekova;Daniel S. Reich;Colin D. Shea;Navid Shiee;Henry McFarland;Isabela T. Borges,2013-04-01,21,Multiple Sclerosis and Related Disorders,133-140,10.1016/j.msard.2012.10.002,,84872800724,"('2-s2.0-84872800724', 'McFarland')",Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/84872800724,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84872800724&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84872800724&origin=inward +Quantification of multiple-sclerosis-related brain atrophy in two heterogeneous MRI datasets using mixed-effects modeling,Cortese,Govind Nair;Blake C. Jones;Daniel S. Reich;Colin D. Shea;Irene C.M. Cortese;Ciprian M. Crainiceanu,2013-09-09,25,NeuroImage: Clinical,171-179,10.1016/j.nicl.2013.08.001,,84883353846,"('2-s2.0-84883353846', 'Cortese')",Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/84883353846,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84883353846&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84883353846&origin=inward +Population-wide principal component-based quantification of blood-brain-barrier dynamics in multiple sclerosis,Reich,Daniel S. Reich;Russell T. Shinohara;María Inés Gaitán;Ciprian M. Crainiceanu;Brian S. Caffo,2011-08-15,24,NeuroImage,1430-1446,10.1016/j.neuroimage.2011.05.038,21635955,79960253679,"('2-s2.0-79960253679', 'Reich')",Article,,https://api.elsevier.com/content/abstract/scopus_id/79960253679,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79960253679&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79960253679&origin=inward +Oligoclonal bands in multiple sclerosis reactive against two herpesviruses and association with magnetic resonance imaging findings,Reich,J. O. Virtanen;J. Wohler;D. S. Reich;S. Jacobson;K. Fenton,2014-01-01,26,Multiple Sclerosis,27-34,10.1177/1352458513490545,23722324,84890842607,"('2-s2.0-84890842607', 'Reich')",Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/84890842607,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84890842607&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84890842607&origin=inward +"Postmortem magnetic resonance imaging to guide the pathologic cut: Individualized, 3-dimensionally printed cutting boxes for fixed brains",Reich,Govind Nair;Martina Absinta;Abhik Ray-Chaudhury;Daniel S. Reich;Maria I. Reyes-Mantilla;Massimo Filippi;Carlos A. Pardo,2014-01-01,25,Journal of Neuropathology and Experimental Neurology,780-788,10.1097/NEN.0000000000000096,25007244,84904747084,"('2-s2.0-84904747084', 'Reich')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84904747084,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84904747084&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84904747084&origin=inward +Direct MRI detection of impending plaque development in multiple sclerosis,Cortese,Govind Nair;Pascal Sati;Martina Absinta;Daniel S. Reich;Massimo Filippi;Irene C.M. Cortese,2015-10-01,17,Neurology: Neuroimmunology and NeuroInflammation,e145,10.1212/NXI.0000000000000145,,85012951357,"('2-s2.0-85012951357', 'Cortese')",Article,,https://api.elsevier.com/content/abstract/scopus_id/85012951357,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85012951357&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85012951357&origin=inward +In vivo imaging of spinal cord atrophy in neuroinflammatory diseases,Reich,Luisa Vuolo;Govind Nair;Daniel S. Reich;Steven Jacobson;Raya Massoud;Anshika Bakshi;Winston Liu,2014-01-01,20,Annals of Neurology,370-378,10.1002/ana.24213,25042583,84907878924,"('2-s2.0-84907878924', 'Reich')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/84907878924,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84907878924&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84907878924&origin=inward +Genes and Environment in Multiple Sclerosis project: A platform to investigate multiple sclerosis risk,Cortese,Charles C. White;Tanuja Chitnis;Phoebe A. Winn;Emily K. Owen;Daniel S. Reich;Philip L. De Jager;Sonya U. Steele;Howard L. Weiner;Zongqi Xia;Alina Von Korff;Cristin A. McCabe;Maria Cimpean;Lori B. Chibnik;Irene C.M. Cortese;Ashley Hoesing;Sarah R. Clarkson,2016-02-01,24,Annals of Neurology,178-189,10.1002/ana.24560,26583565,84958124512,"('2-s2.0-84958124512', 'Cortese')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/84958124512,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84958124512&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84958124512&origin=inward +Clinical 3-tesla FLAIR∗ MRI improves diagnostic accuracy in multiple sclerosis,Cortese,Pascal Sati;Elizabeth M. Sweeney;Martina Absinta;Daniel S. Reich;Colin D. Shea;Ilena C. George;Irene C.M. Cortese,2016-10-01,13,Multiple Sclerosis,1578-1586,10.1177/1352458515624975,26769065,84991392284,"('2-s2.0-84991392284', 'Cortese')",Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/84991392284,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84991392284&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84991392284&origin=inward +Leptomeningeal gadolinium enhancement across the spectrum of chronic neuroinflammatory diseases,Cortese,Luisa Vuolo;Joan Ohayon;Govind Nair;Roberta Scotti;Martina Absinta;Daniel S. Reich;Vittorio Martinelli;Steven Jacobson;Alessandro Meani;Massimo Filippi;Bryan R. Smith;Irene C.M. Cortese;Manori P. De Alwis;Andrea Falini;Avindra Nath,2017-04-11,30,Neurology,1439-1444,10.1212/WNL.0000000000003820,28283598,85018636444,"('2-s2.0-85018636444', 'Cortese')",Article,,https://api.elsevier.com/content/abstract/scopus_id/85018636444,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85018636444&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85018636444&origin=inward +Predicting breakdown of the blood-brain barrier in multiple sclerosis without contrast agents,Reich,J. Goldsmith;Russell T. Shinohara;F. J. Mateen;D. S. Reich;C. Crainiceanu,2012-09-01,16,American Journal of Neuroradiology,1586-1590,10.3174/ajnr.A2997,22442041,84866412406,"('2-s2.0-84866412406', 'Reich')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84866412406,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84866412406&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84866412406&origin=inward +A comparison of supervised machine learning algorithms and feature vectors for MS lesion segmentation using multimodal structural MRI,Reich,Elizabeth M. Sweeney;Daniel S. Reich;Joshua T. Vogelstein;Russell T. Shinohara;Jennifer L. Cuzzocreo;Ciprian M. Crainiceanu;Peter A. Calabresi,2014-04-29,19,PLoS ONE,,10.1371/journal.pone.0095753,24781953,84899723552,"('2-s2.0-84899723552', 'Reich')",Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/84899723552,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84899723552&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84899723552&origin=inward +Assessment of early evidence of multiple sclerosis in a prospective study of asymptomatic high-risk family members,Cortese,Joan Ohayon;Charles C. White;Govind Nair;Philip L. De Jager;Daniel S. Reich;Matthew K. Schindler;Sonya U. Steele;Zongqi Xia;Blake E. Dewey;Lauren R. Price;Anshika Bakshi;Lori B. Chibnik;Irene C.M. Cortese;Sarah R. Clarkson,2017-03-01,15,JAMA Neurology,293-300,10.1001/jamaneurol.2016.5056,28114441,85017649229,"('2-s2.0-85017649229', 'Cortese')",Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85017649229,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85017649229&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85017649229&origin=inward +Health effects of lesion localization in multiple sclerosis: Spatial registration and confounding adjustment,Reich,Elizabeth M. Sweeney;Daniel S. Reich;Russell T. Shinohara;Ani Eloyan;Jennifer L. Cuzzocreo;Martin A. Lindquist;Mary Beth Nebel;Ciprian M. Crainiceanu;Haochang Shou;Peter A. Calabresi,2014-09-18,9,PLoS ONE,,10.1371/journal.pone.0107263,25233361,84907212644,"('2-s2.0-84907212644', 'Reich')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84907212644,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84907212644&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84907212644&origin=inward +A 7T spine array based on electric dipole transmitters,Reich,Govind Nair;Peter Van Gelderen;Daniel S. Reich;Natalia Gudino;Hellmut Merkle;Jeff H. Duyn;Joe Murphy-Boesch;Jacco A. De Zwart;Qi Duan,2015-10-01,16,Magnetic Resonance in Medicine,1189-1197,10.1002/mrm.25817,26190585,84941944279,"('2-s2.0-84941944279', 'Reich')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/84941944279,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84941944279&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84941944279&origin=inward +Sub-millimeter imaging of brain-free water for rapid volume assessment in atrophic brains,Cortese,Govind Nair;Daniel S. Reich;Katherine C. Gao;Alan Koretsky;Irene C.M. Cortese,2014-10-15,10,NeuroImage,370-378,10.1016/j.neuroimage.2014.06.014,24945671,84904065883,"('2-s2.0-84904065883', 'Cortese')",Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/84904065883,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84904065883&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84904065883&origin=inward +Saccadic palsy following cardiac surgery: Possible role of perineuronal nets,Reich,Govind Nair;R. John Leigh;Daniel S. Reich;Anja K.E. Horn;Wolfgang Härtig;Sigrun Roeber;Scott D.Z. Eggers,2015-07-02,7,PLoS ONE,,10.1371/journal.pone.0132075,26135580,84940062307,"('2-s2.0-84940062307', 'Reich')",Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/84940062307,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84940062307&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84940062307&origin=inward +Relating multi-sequence longitudinal intensity profiles and clinical covariates in incident multiple sclerosis lesions,Reich,John Muschelli;Elizabeth M. Sweeney;Daniel S. Reich;Russell T. Shinohara;Matthew K. Schindler;Blake E. Dewey;Ani Eloyan;Ciprian M. Crainiceanu,2016-01-01,9,NeuroImage: Clinical,1-17,10.1016/j.nicl.2015.10.013,26693397,84947284118,"('2-s2.0-84947284118', 'Reich')",Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/84947284118,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84947284118&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84947284118&origin=inward +Statistical estimation of T1 relaxation times using conventional magnetic resonance imaging,Reich,Govind Nair;Pascal Sati;Elizabeth M. Sweeney;Amanda F. Mejia;Daniel S. Reich;Russell T. Shinohara;Colin Shea;Blake Dewey,2016-06-01,8,NeuroImage,176-188,10.1016/j.neuroimage.2015.12.037,26732403,84962611714,"('2-s2.0-84962611714', 'Reich')",Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/84962611714,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84962611714&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84962611714&origin=inward +Saccadic palsy following cardiac surgery: A review and new hypothesis,Reich,Govind Nair;R. John Leigh;Daniel S. Reich;Anja K.E. Horn;Wolfgang Härtig;Sigrun Roeber;Scott D.Z. Eggers,2015-04-01,4,Annals of the New York Academy of Sciences,113-119,10.1111/nyas.12666,25721480,84928211283,"('2-s2.0-84928211283', 'Reich')",Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/84928211283,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84928211283&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84928211283&origin=inward +FLAIR* to visualize veins in white matter lesions: A new tool for the diagnosis of multiple sclerosis?,Reich,B. P. Turner;K. Schmierer;R. J.P. Smith;P. Sati;I. C. George;D. S. Reich;M. E. Miquel;T. Campion;J. Evanson;D. R. Altmann;G. C. Brito,2017-10-01,24,European Radiology,4257-4263,10.1007/s00330-017-4822-z,28409356,85017455621,"('2-s2.0-85017455621', 'Reich')",Article,HEFCE,https://api.elsevier.com/content/abstract/scopus_id/85017455621,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85017455621&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85017455621&origin=inward +Utilizing 3D printing technology to merge MRI with histology: A protocol for brain sectioning,Jacobson,Seung Kwon Ha;Govind Nair;Pascal Sati;Martina Absinta;Wen Yang Chiang;Daniel S. Reich;Nicholas J. Luciano;Steven Jacobson;Emily C. Leibovitch;Afonso C. Silva;Joseph R. Guy,2016-12-06,13,Journal of Visualized Experiments,,10.3791/54780,28060281,85008601449,"('2-s2.0-85008601449', 'Jacobson')",Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85008601449,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85008601449&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85008601449&origin=inward +Slowly eroding lesions in multiple sclerosis,Cortese,Joan Ohayon;Govind Nair;Pascal Sati;Martina Absinta;Kelly Yang;Daniel S. Reich;Arun Venkataraman;Colin Shea;Varun Sethi;Blake E. Dewey;Tianxia Wu;Irene C.M. Cortese,2017-03-01,9,Multiple Sclerosis,464-472,10.1177/1352458516655403,27339071,85014851733,"('2-s2.0-85014851733', 'Cortese')",Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85014851733,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85014851733&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85014851733&origin=inward +Gradient nonlinearity effects on upper cervical spinal cord area measurement from 3D T 1 -weighted brain MRI acquisitions,Reich,Antje Bischof;Ian Tagge;Eduardo Caverzasi;Nico Papinutto;Russell T. Shinohara;R. Todd Constable;Daniel Schwartz;Dzung L. Pham;Nancy L. Sicotte;Shahamat Tauhid;William A. Stern;Subhash Tummala;Snehashis Roy;Gina Kirkish;Govind Nair;William Rooney;Esha Datta;Daniel S. Reich;Rohit Bakshi;Jiwon Oh;Daniel Pelletier;Roland G. Henry;Peter A. Calabresi,2018-03-01,11,Magnetic Resonance in Medicine,1595-1601,10.1002/mrm.26776,28617996,85020726579,"('2-s2.0-85020726579', 'Reich')",Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85020726579,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85020726579&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85020726579&origin=inward +A lag functional linear model for prediction of magnetization transfer ratio in multiple sclerosis lesions,Reich,Elizabeth M. Sweeney;Amanda F. Mejia;Daniel S. Reich;Russell T. Shinohara;Blake E. Dewey;Ana Maria Staicu;Edgar J. Lobaton;Gina Maria Pomann,2016-12-01,6,Annals of Applied Statistics,2325-2348,10.1214/16-AOAS981,,85009231253,"('2-s2.0-85009231253', 'Reich')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85009231253,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85009231253&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85009231253&origin=inward +"Optimal detection of infratentorial lesions with a combined dual-echo MRI sequence: ""pT2""",Reich,Carlos Romero;Pascal Sati;Daniel S. Reich;Paulina Yañes;Jorge Correale;María I. Gaitán,2016-09-01,4,Multiple Sclerosis,1367-1370,10.1177/1352458515615226,26552729,84986550233,"('2-s2.0-84986550233', 'Reich')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84986550233,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84986550233&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84986550233&origin=inward +PREVAIL: Predicting Recovery through Estimation and Visualization of Active and Incident Lesions,Reich,Elizabeth M. Sweeney;Daniel S. Reich;Russell T. Shinohara;Matthew K. Schindler;Jordan D. Dworkin;Salim Chahin,2016-01-01,2,NeuroImage: Clinical,293-299,10.1016/j.nicl.2016.07.015,27551666,84982914633,"('2-s2.0-84982914633', 'Reich')",Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/84982914633,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84982914633&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84982914633&origin=inward +MRI in Diagnosis and Disease Monitoring,Reich,María I. Gaitán;Daniel S. Reich,2014-08-25,0,Multiple Sclerosis and CNS Inflammatory Disorders,29-44,10.1002/9781118298633.ch4,,84926187349,"('2-s2.0-84926187349', 'Reich')",Chapter,,https://api.elsevier.com/content/abstract/scopus_id/84926187349,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84926187349&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84926187349&origin=inward +Gadolinium deposition: practical guidelines in the face of uncertainty,Reich,Kevin H. Terashima;Daniel S. Reich,2017-07-01,3,The Lancet Neurology,495-497,10.1016/S1474-4422(17)30174-6,28653641,85020702984,"('2-s2.0-85020702984', 'Reich')",Note,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85020702984,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85020702984&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85020702984&origin=inward +Insights from Ultrahigh Field Imaging in Multiple Sclerosis,Reich,Matthew K. Schindler;Pascal Sati;Daniel S. Reich,2017-05-01,1,Neuroimaging Clinics of North America,357-366,10.1016/j.nic.2016.12.006,28391792,85010411149,"('2-s2.0-85010411149', 'Reich')",Review,NIH,https://api.elsevier.com/content/abstract/scopus_id/85010411149,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85010411149&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85010411149&origin=inward +Visualization of cortical MS lesions with MRI need not be further improved - Commentary,Reich,Daniel S. Reich,2017-01-01,0,Multiple Sclerosis,19-20,10.1177/1352458516666188,,85011385295,"('2-s2.0-85011385295', 'Reich')",Note,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85011385295,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85011385295&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85011385295&origin=inward +Development of cortical surface area and gyrification in attention-deficit/hyperactivity disorder,Shaw,Alan Evans;Bethany Watson;Meaghan Malek;Philip Shaw;Wendy Sharp;Deanna Greenstein,2012-08-01,188,Biological Psychiatry,191-197,10.1016/j.biopsych.2012.01.031,22418014,84863723922,"('2-s2.0-84863723922', 'Shaw')",Article,NHGRI,https://api.elsevier.com/content/abstract/scopus_id/84863723922,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84863723922&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84863723922&origin=inward +Trajectories of cerebral cortical development in childhood and adolescence and adult attention-deficit/hyperactivity disorder,Shaw,Pietro De Rossi;Bethany Watson;Meaghan Malek;Philip Shaw;Wendy Sharp;Deanna Greenstein,2013-10-15,144,Biological Psychiatry,599-606,10.1016/j.biopsych.2013.04.007,23726514,84884671868,"('2-s2.0-84884671868', 'Shaw')",Article,NHGRI,https://api.elsevier.com/content/abstract/scopus_id/84884671868,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84884671868&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84884671868&origin=inward +Performing label-fusion-based segmentation using multiple automatically generated templates,Shaw,M. Mallar Chakravarty;Victoria Gu;D. Louis Collins;Matthijs C. van Eede;Patrick Steadman;Armin Raznahan;Philip Shaw;Jason P. Lerch;Rebecca D. Calcott,2013-10-01,161,Human Brain Mapping,2635-2654,10.1002/hbm.22092,22611030,84883746714,"('2-s2.0-84883746714', 'Shaw')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84883746714,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84883746714&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84883746714&origin=inward +New insights into attention-deficit/hyperactivity disorder using structural neuroimaging,Shaw,Cara Rabin;Philip Shaw,2009-10-13,64,Current Psychiatry Reports,393-398,10.1007/s11920-009-0059-0,19785981,70349754493,"('2-s2.0-70349754493', 'Shaw')",Review,,https://api.elsevier.com/content/abstract/scopus_id/70349754493,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=70349754493&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=70349754493&origin=inward +The shape of things to come in attention defcit hyperactivity disorder,Shaw,Philip Shaw,2010-04-01,5,American Journal of Psychiatry,363-365,10.1176/appi.ajp.2010.10010037,20360322,77950623786,"('2-s2.0-77950623786', 'Shaw')",Editorial,,https://api.elsevier.com/content/abstract/scopus_id/77950623786,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77950623786&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77950623786&origin=inward +Effect of acute psychological stress on prefrontal GABA concentration determined by proton magnetic resonance spectroscopy,Grillon,Christian Grillon;Jun Shen;Wayne C. Drevets;Jan Willem Van Der Veen;Gregor Hasler,2010-10-01,66,American Journal of Psychiatry,1226-1231,10.1176/appi.ajp.2010.09070994,20634372,77957943862,"('2-s2.0-77957943862', 'Grillon')",Article,,https://api.elsevier.com/content/abstract/scopus_id/77957943862,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77957943862&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77957943862&origin=inward +Combination of multichannel single-voxel MRS signals using generalized least squares,Grillon,Li An;Shizhe Li;Jun Shen;Jan Willem Van Der Veen;David M. Thomasson,2013-06-01,21,Journal of Magnetic Resonance Imaging,1445-1450,10.1002/jmri.23941,23172656,84878237363,"('2-s2.0-84878237363', 'Grillon')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84878237363,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84878237363&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84878237363&origin=inward +In vivo detection of intermediate metabolic products of [1- 13C]ethanol in the brain using 13C MRS,Grillon,Jun Shen;Yun Xiang,2011-11-01,12,NMR in Biomedicine,1054-1062,10.1002/nbm.1653,21312308,80054065714,"('2-s2.0-80054065714', 'Grillon')",Article,,https://api.elsevier.com/content/abstract/scopus_id/80054065714,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=80054065714&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=80054065714&origin=inward +Correction of frequency and phase variations induced by eddy currents in localized spectroscopy with multiple echo times,Grillon,Stefano Marenco;Jun Shen;Yan Zhang,2007-07-01,10,Magnetic Resonance in Medicine,174-178,10.1002/mrm.21265,17659625,34547806269,"('2-s2.0-34547806269', 'Grillon')",Article,,https://api.elsevier.com/content/abstract/scopus_id/34547806269,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34547806269&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34547806269&origin=inward +N-acetyl-aspartyl-glutamate detection in the human brain at 7 tesla by echo time optimization and improved wiener filtering,Reich,Daniel S. Reich;Li An;Shizhe Li;Jun Shen;Emily T. Wood,2014-01-01,11,Magnetic Resonance in Medicine,903-912,10.1002/mrm.25007,24243344,84921433425,"('2-s2.0-84921433425', 'Reich')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84921433425,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84921433425&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84921433425&origin=inward +In vivo detection of 13C isotopomer turnover in the human brain by sequential infusion of 13C labeled substrates,Reich,Christopher Johnson;Yan Zhang;Robert B. Innis;Shizhe Li;Jun Shen;Maria Ferraris Araneta;Yun Xiang,2012-05-01,7,Journal of Magnetic Resonance,16-21,10.1016/j.jmr.2012.03.012,22578550,84861059654,"('2-s2.0-84861059654', 'Reich')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/84861059654,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84861059654&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84861059654&origin=inward +Spectral editing for in vivo 13C magnetic resonance spectroscopy,Reich,Jun Shen;Yun Xiang,2012-01-01,2,Journal of Magnetic Resonance,252-257,10.1016/j.jmr.2011.11.012,22172286,84855660430,"('2-s2.0-84855660430', 'Reich')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/84855660430,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84855660430&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84855660430&origin=inward +A magnetization transfer imaging study of corpus callosum myelination in young children with autism,Thurm,Susan E. Swedo;Marta Gozzi;Audrey E. Thurm;Rhoshel K. Lenroot;David A. Luckenbaugh;John L. Ostuni;Dylan M. Nielson;Jay N. Giedd,2012-08-01,30,Biological Psychiatry,215-220,10.1016/j.biopsych.2012.01.026,22386453,84863723236,"('2-s2.0-84863723236', 'Thurm')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/84863723236,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84863723236&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84863723236&origin=inward +Whole-brain 3D perfusion MRI at 3.0 T using CASL with a separate labeling coil,Talagala,Frank Q. Ye;Patrick J. Ledden;S. Lalith Talagala;Scott Chesnick,2004-07-01,87,Magnetic Resonance in Medicine,131-140,10.1002/mrm.20124,15236376,4644225113,"('2-s2.0-4644225113', 'Talagala')",Article,,https://api.elsevier.com/content/abstract/scopus_id/4644225113,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=4644225113&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=4644225113&origin=inward +Mapping resting-state functional connectivity using perfusion MRI,Koretsky,Kai Hsiang Chuang;S. Lalith Talagala;Alan P. Koretsky;Vasiliki N. Ikonomidou;Peter van Gelderen;Hellmut Merkle;Jerzy Bodurka;Jeff H. Duyn,2008-05-01,89,NeuroImage,1595-1605,10.1016/j.neuroimage.2008.01.006,18314354,41749085489,"('2-s2.0-41749085489', 'Koretsky')",Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/41749085489,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=41749085489&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=41749085489&origin=inward +CASL fMRI of subcortico-cortical perfusion changes during memory-guided finger sequences,Hallett,Gaëtan Garraux;S. Lalith Talagala;Mark Hallett,2005-01-01,35,NeuroImage,122-132,10.1016/j.neuroimage.2004.11.004,15734349,14244265651,"('2-s2.0-14244265651', 'Hallett')",Article,NATO,https://api.elsevier.com/content/abstract/scopus_id/14244265651,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=14244265651&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=14244265651&origin=inward +Robust fat suppression at 3T in high-resolution diffusion-weighted single-shot echo-planar imaging of human brain,Pierpaoli,Wen Ming Luh;S. Lalith Talagala;Joelle E. Sarlls;Carlo Pierpaoli,2011-12-01,13,Magnetic Resonance in Medicine,1658-1665,10.1002/mrm.22940,21604298,81255214937,"('2-s2.0-81255214937', 'Pierpaoli')",Article,,https://api.elsevier.com/content/abstract/scopus_id/81255214937,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=81255214937&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=81255214937&origin=inward +Language dominance in partial epilepsy patients identified with an fMRI reading task,Theodore,L. Balsamo;W. D. Gaillard;C. Frattali;B. Sachs;S. Weinstein;L. G. Vezina;J. Conry;B. Xu;P. H. Papero;P. L. Pearl;S. Sato;B. Jabbari;C. B. Grandin;W. H. Theodore;S. H. Braniecki,2002-07-23,186,Neurology,256-265,10.1212/WNL.59.2.256,12136067,0037162379,"('2-s2.0-0037162379', 'Theodore')",Article,,https://api.elsevier.com/content/abstract/scopus_id/0037162379,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0037162379&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0037162379&origin=inward +Conjoint and extended neural networks for the computation of speech codes: The neural basis of selective impairment in reading words and pseudowords,Theodore,William D. Gaillard;William Theodore;Francisco Vega-Bermudez;Kenji Ishii;Jordan Grafman;Benjamin Xu;Pietro Pietrini;Patricia Reeves-Tyer;Paul DiCamillo,2001-01-01,171,Cerebral Cortex,267-277,10.1093/cercor/11.3.267,11230098,0035090949,"('2-s2.0-0035090949', 'Theodore')",Article,,https://api.elsevier.com/content/abstract/scopus_id/0035090949,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0035090949&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0035090949&origin=inward +fMRI language task panel improves determination of language dominance,Theodore,L. Balsamo;W. D. Gaillard;C. Frattali;B. Sachs;S. Weinstein;L. G. Vezina;J. Conry;B. Xu;P. H. Papero;S. Sato;C. McKinney;P. L. Pearl;W. H. Theodore,2004-10-26,180,Neurology,1403-1408,10.1212/01.WNL.0000141852.65175.A7,15505156,7044239163,"('2-s2.0-7044239163', 'Theodore')",Article,,https://api.elsevier.com/content/abstract/scopus_id/7044239163,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=7044239163&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=7044239163&origin=inward +5-HT1A Receptor Binding in Temporal Lobe Epilepsy Patients With and Without Major Depression,Theodore,Giampiero Giovacchini;Robert Bonwetsch;Wayne C. Drevets;David A. Luckenbaugh;Maria T. Toczek;William H. Theodore;Gregor Hasler;Anto Bagic,2007-12-01,108,Biological Psychiatry,1258-1264,10.1016/j.biopsych.2007.02.015,17588547,35848942392,"('2-s2.0-35848942392', 'Theodore')",Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/35848942392,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=35848942392&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=35848942392&origin=inward +Atypical language in lesional and nonlesional complex partial epilepsy,Theodore,E. N. Moore;G. Gioia;J. A. Conry;C. J. Vaidya;C. Fratalli;W. D. Gaillard;E. K. Ritzl;G. Risse;N. B. Ratner;L. G. Vezina;E. Wiggs;M. M. Berl;F. F. Ritter;S. Sato;L. R. Rosenberger;P. L. Pearl;W. H. Theodore;S. L. Weinstein,2007-01-01,109,Neurology,1761-1771,10.1212/01.wnl.0000289650.48830.1a,,35848971195,"('2-s2.0-35848971195', 'Theodore')",Article,,https://api.elsevier.com/content/abstract/scopus_id/35848971195,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=35848971195&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=35848971195&origin=inward +Reduced hippocampal 5HT1A PET receptor binding and depression in temporal lobe epilepsy,Theodore,Giampiero Giovacchini;Pat Reeves-Tyer;Gregor Hasler;Peter Herscovitch;Kathleen Kelley;William H. Theodore;Wayne Drevets,2007-08-01,81,Epilepsia,1526-1530,10.1111/j.1528-1167.2007.01089.x,17442003,34547828108,"('2-s2.0-34547828108', 'Theodore')",Article,,https://api.elsevier.com/content/abstract/scopus_id/34547828108,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34547828108&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34547828108&origin=inward +Seizure focus affects regional language networks assessed by fMRI,Theodore,E. N. Moore;J. A. Conry;C. B. Grandin;L. M. Balsamo;W. D. Gaillard;C. Frattali;M. M. Berl;B. C. Sachs;B. Xu;S. Sato;F. J. Ritter;P. L. Pearl;W. H. Theodore;S. L. Weinstein,2005-01-01,78,Neurology,1604-1611,10.1212/01.wnl.0000184502.06647.28,16301489,28044462638,"('2-s2.0-28044462638', 'Theodore')",Article,,https://api.elsevier.com/content/abstract/scopus_id/28044462638,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=28044462638&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=28044462638&origin=inward +Limitations to plasticity of language network reorganization in localization related epilepsy,Theodore,E. N. Moore;J. A. Conry;J. Mayo;W. D. Gaillard;L. Rosenberger;E. K. Ritzl;J. Mbwana;S. Shamim;S. Weinstein;L. G. Vezina;M. M. Berl;S. Sato;P. L. Pearl;W. H. Theodore,2009-02-01,67,Brain,347-356,10.1093/brain/awn329,19059978,60149102744,"('2-s2.0-60149102744', 'Theodore')",Article,,https://api.elsevier.com/content/abstract/scopus_id/60149102744,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=60149102744&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=60149102744&origin=inward +Succinic semialdehyde dehydrogenase deficiency: Lessons from mice and men,Theodore,M. A. Cortez;Y. Wu;K. M. Gibson;O. Carter Snead;K. Forester;C. Jakobs;I. Knerr;P. L. Pearl;W. H. Theodore;J. M. Pettiford,2009-01-28,62,Journal of Inherited Metabolic Disease,343-352,10.1007/s10545-009-1034-y,19172412,67349195796,"('2-s2.0-67349195796', 'Theodore')",Conference Paper,ORD,https://api.elsevier.com/content/abstract/scopus_id/67349195796,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=67349195796&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=67349195796&origin=inward +18F-FCWAY and 18F-FDG PET in MRI-negative temporal lobe epilepsy,Theodore,Giampiero Giovacchini;Susumu Sato;Robert Bonwetsch;Peter Herscovitch;Sadat Shamim;Young Min Lim;William H. Theodore;Anto Bagic;Patricia Reeves-Tyer;Clarissa J. Liew;Irene Dustin,2009-02-01,55,Epilepsia,234-239,10.1111/j.1528-1167.2008.01789.x,18801033,58849120485,"('2-s2.0-58849120485', 'Theodore')",Article,,https://api.elsevier.com/content/abstract/scopus_id/58849120485,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=58849120485&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=58849120485&origin=inward +Usefulness of pulsed arterial spin labeling MR imaging in mesial temporal lobe epilepsy,Theodore,William D. Gaillard;Sadat Shamim;Wen Ming Luh;Yong Won Cho;Young Min Lim;William H. Theodore;Jeffrey Solomon;Eva K. Ritzl;Rasmus Birn,2008-12-01,59,Epilepsy Research,183-189,10.1016/j.eplepsyres.2008.08.001,19041041,56449126967,"('2-s2.0-56449126967', 'Theodore')",Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/56449126967,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=56449126967&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=56449126967&origin=inward +Increased in vivo expression of an inflammatory marker in temporal lobe epilepsy,Theodore,Shmuel Appel;Omar Khan;Robert B. Innis;William C. Kreisl;Jussi Hirvonen;Victor W. Pike;Cheryl Morse;William H. Theodore;Masahiro Fujita;Irene Dustin;Yi Zhang,2012-02-01,62,Journal of Nuclear Medicine,234-240,10.2967/jnumed.111.091694,22238156,84863039946,"('2-s2.0-84863039946', 'Theodore')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84863039946,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84863039946&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84863039946&origin=inward +"Temporal lobe epilepsy, depression, and hippocampal volume",Theodore,Clarissa Liew;Susumu Sato;Sadat Shamim;William H. Theodore;Gregor Hasler,2009-05-01,52,Epilepsia,1067-1071,10.1111/j.1528-1167.2008.01883.x,19054394,65549087116,"('2-s2.0-65549087116', 'Theodore')",Article,,https://api.elsevier.com/content/abstract/scopus_id/65549087116,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=65549087116&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=65549087116&origin=inward +Commission on diagnostic strategies recommendations for functional neuroimaging of persons with epilepsy,Theodore,C. Chiron;W. Theodore;T. Henry;R. Kuzniecky;I. Savic;R. Ali;A. Palmini;J. S. Duncan;J. Barkovich;S. Berkovic,2000-01-01,43,Epilepsia,1350-1356,10.1111/j.1528-1157.2000.tb04617.x,11051134,0033779174,"('2-s2.0-0033779174', 'Theodore')",Review,,https://api.elsevier.com/content/abstract/scopus_id/0033779174,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0033779174&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0033779174&origin=inward +Decreased GABA-A binding on FMZ-PET in succinic semialdehyde dehydrogenase deficiency,Theodore,J. Schreiber;C. Liew;W. Theodore;S. Shamim;K. M. Gibson;I. Dustin;Z. Quezado;P. Herscovitch;K. Forester;R. Carson;S. Trzcinski;J. Butman;J. Taylor;P. Reeves-Tyer;C. Jakobs;P. L. Pearl,2009-08-11,51,Neurology,423-429,10.1212/WNL.0b013e3181b163a5,19667317,69449107926,"('2-s2.0-69449107926', 'Theodore')",Article,,https://api.elsevier.com/content/abstract/scopus_id/69449107926,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=69449107926&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=69449107926&origin=inward +Interhemispheric and intrahemispheric language reorganization in complex partial epilepsy,Theodore,E. N. Moore;J. A. Conry;W. D. Gaillard;E. K. Ritzl;S. Shamim;L. G. Vezina;M. M. Berl;P. L. Pearl;S. Sato;L. R. Rosenberger;J. Zeck;W. H. Theodore;S. L. Weinstein,2009-05-26,45,Neurology,1830-1836,10.1212/WNL.0b013e3181a7114b,19470965,67649223928,"('2-s2.0-67649223928', 'Theodore')",Article,,https://api.elsevier.com/content/abstract/scopus_id/67649223928,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=67649223928&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=67649223928&origin=inward +"The relationship between glucose metabolism, resting-state fMRI BOLD signal, and GABA A -binding potential: A preliminary study in healthy subjects and those with temporal lobe epilepsy",Nugent,Alana D'Alfonso;Carlos A. Zarate;Ashley Martinez;Allison C. Nugent;William H. Theodore,2015-03-31,55,Journal of Cerebral Blood Flow and Metabolism,583-591,10.1038/jcbfm.2014.228,25564232,84926517255,"('2-s2.0-84926517255', 'Nugent')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84926517255,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84926517255&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84926517255&origin=inward +Bilateral hippocampal atrophy in temporal lobe epilepsy: Effect of depressive symptoms and febrile seizures,Theodore,Andrey Finegersh;Christina Avedissian;Sadat Shamim;Paul M. Thompson;William H. Theodore;Irene Dustin,2011-04-01,32,Epilepsia,689-697,10.1111/j.1528-1167.2010.02928.x,21269286,79953678361,"('2-s2.0-79953678361', 'Theodore')",Article,,https://api.elsevier.com/content/abstract/scopus_id/79953678361,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79953678361&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79953678361&origin=inward +Prognosis of children with partial epilepsy: MRI and serial 18FDG-PET,Theodore,W. D. Gaillard;S. Weinstein;L. G. Vezina;J. Conry;P. Reeves-Tyer;P. L. Pearl;W. H. Theodore;S. Fazilat,2007-02-01,24,Neurology,655-659,10.1212/01.wnl.0000255942.25101.8d,17325271,33947516296,"('2-s2.0-33947516296', 'Theodore')",Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/33947516296,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33947516296&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33947516296&origin=inward +Neuroimaging reveals automatic speech coding during perception of written word meaning,Theodore,Marianna Spanaki;Lyn Balsamo;William Davis Gaillard;Kenji Ishii;Jordan Grafman;Benjamin Xu;Milan Makale;William H. Theodore,2002-01-01,21,NeuroImage,859-870,10.1016/S1053-8119(02)91215-2,12377160,0036427338,"('2-s2.0-0036427338', 'Theodore')",Article,,https://api.elsevier.com/content/abstract/scopus_id/0036427338,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0036427338&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0036427338&origin=inward +Altered language processing in autosomal dominant partial epilepsy with auditory features,Theodore,K. Kamberakis;C. Liew;W. D. Gaillard;L. Rosenberger;E. K. Ritzl;S. Shamim;E. H. Baker;A. M. Wohlschlager;M. M. Berl;R. Ottman;A. Bagic;S. Sato;P. Reeves-Tyer;J. A. Butman;E. Wiggs;W. H. Theodore,2008-12-09,16,Neurology,1973-1980,10.1212/01.wnl.0000336923.29538.5b,19064878,58149387348,"('2-s2.0-58149387348', 'Theodore')",Article,,https://api.elsevier.com/content/abstract/scopus_id/58149387348,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=58149387348&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=58149387348&origin=inward +The effect of seizure focus on regional language processing areas,Theodore,Rebecca E. Fasano;Sususmu Sato;William D. Gaillard;Elizabeth S. Duke;Mekdem Tesfaye;Joan A. Conry;Phillip L. Pearl;William H. Theodore;Madison M. Berl;Jennifer E. Walker;Eva K. Ritzl,2012-01-01,13,Epilepsia,1044-1050,10.1111/j.1528-1167.2012.03490.x,,85027957420,"('2-s2.0-85027957420', 'Theodore')",Article,,https://api.elsevier.com/content/abstract/scopus_id/85027957420,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85027957420&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85027957420&origin=inward +FMRI language dominance and FDG-PET hypometabolism,Theodore,E. Ritzl;C. Liew;E. S. Duke;W. D. Gaillard;A. Martinez;I. Dustin;M. M. Berl;S. Miranda;S. Sato;W. H. Theodore;A. Finegersh,2011-04-12,15,Neurology,1322-1329,10.1212/WNL.0b013e31821527b5,,79954600729,"('2-s2.0-79954600729', 'Theodore')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/79954600729,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79954600729&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79954600729&origin=inward +Automated versus manual hippocampal segmentation in preoperative and postoperative patients with epilepsy,Theodore,Lucy Jones;Sierra C. Germeyan;William H. Theodore;David Kalikhman,2014-01-01,13,Epilepsia,1374-1379,10.1111/epi.12694,24965103,84908040960,"('2-s2.0-84908040960', 'Theodore')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84908040960,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84908040960&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84908040960&origin=inward +Age-dependent mesial temporal lobe lateralization in language fMRI,Inati,Xiaozhen You;Omar Khan;William D. Gaillard;Sara Inati;Leigh N. Sepeta;Meera Mehta;Benjamin Xu;Marko Wilke;Alison Austermuehle;William H. Theodore;Madison M. Berl;Irene Dustin,2016-01-01,21,Epilepsia,122-130,10.1111/epi.13258,26696589,84954075813,"('2-s2.0-84954075813', 'Inati')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/84954075813,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84954075813&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84954075813&origin=inward +Mapping language in epilepsy with functional imaging,Theodore,William H. Theodore;William D. Gaillard,2000-01-01,9,Neuroscientist,390-400,10.1177/107385840000600513,,0033816033,"('2-s2.0-0033816033', 'Theodore')",Review,,https://api.elsevier.com/content/abstract/scopus_id/0033816033,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0033816033&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0033816033&origin=inward +Multifocal dysembryoplastic neuroepithelial tumours associated with refractory epilepsy,Inati,Svetlana D. Pack;Sara K. Inati;Nicholas J. Patronas;Martha M. Quezado;Kareem A. Zaghloul;Ayaz M. Khawaja;Leo Ballester-Fuentes;William H. Theodore;Andrew I. Yang;Ziedulla Abdullaev,2014-01-01,9,Epileptic Disorders,328-332,10.1684/epd.2014.0680,25204011,84907526144,"('2-s2.0-84907526144', 'Inati')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84907526144,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84907526144&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84907526144&origin=inward +Cerebellar atrophy in human and murine succinic semialdehyde dehydrogenase deficiency,Theodore,K. Michael Gibson;Andrey Finegersh;Phillip L. Pearl;Maria T. Acosta;Jeeva Munasinghe;William H. Theodore;Maneesh Gupta,2010-12-01,6,Journal of Child Neurology,1457-1461,10.1177/0883073810368137,20445195,78650213727,"('2-s2.0-78650213727', 'Theodore')",Article,,https://api.elsevier.com/content/abstract/scopus_id/78650213727,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=78650213727&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=78650213727&origin=inward +Verbal working memory of Korean-English bilinguals: An fMRI study,Theodore,K. K. Kim;S. K. Lee;W. D. Gaillard;E. Byun;B. Xu;W. H. Theodore,2011-01-01,5,Journal of Neurolinguistics,1-13,10.1016/j.jneuroling.2010.07.001,,77958504761,"('2-s2.0-77958504761', 'Theodore')",Article,MEST,https://api.elsevier.com/content/abstract/scopus_id/77958504761,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77958504761&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77958504761&origin=inward +Neuroinflammation imaging markers for epileptogenesis,Theodore,Heidrun Potschka;Jens P. Bankstahl;Teresa Ravizza;William H. Theodore;Tallie Z. Baram;Stefanie Dedeurwaerdere;Eric Årstad;Alon Friedman;Matthias J. Koepp,2017-07-01,22,Epilepsia,11-19,10.1111/epi.13778,28675560,85021726448,"('2-s2.0-85021726448', 'Theodore')",Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85021726448,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85021726448&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85021726448&origin=inward +Neuroimaging abnormalities and seizure recurrence in a prospective cohort study of Zambians with human immunodeficiency virus and first seizure,Theodore,Izukanji Sikazwe;Michael J. Potchen;Omar K. Siddiqi;Gretchen L. Birbeck;Igor J. Koralnik;Lisa Kalungwana;Melissa A. Elafros;Christopher M. Bositis;William H. Theodore,2014-01-01,4,Neurology International,56-60,10.4081/ni.2014.5547,,84908216072,"('2-s2.0-84908216072', 'Theodore')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84908216072,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84908216072&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84908216072&origin=inward +Arterial spin labeling demonstrates that focal amygdalar glutamatergic agonist infusion leads to rapid diffuse cerebral activation,Koretsky,J. P. Munasinghe;A. Koretsky;M. T. Acosta;A. C. Silva;M. Banks;M. Banerjee;A. Heffer;W. H. Theodore,2010-03-01,3,Acta Neurologica Scandinavica,209-216,10.1111/j.1600-0404.2009.01188.x,19951270,76249121506,"('2-s2.0-76249121506', 'Koretsky')",Article,,https://api.elsevier.com/content/abstract/scopus_id/76249121506,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=76249121506&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=76249121506&origin=inward +Language functional MRI and direct cortical stimulation in epilepsy preoperative planning,Inati,Richard Reynolds;William D. Gaillard;John Cocjin;Sara Inati;Alison Austermuehle;William H. Theodore;Kareem A. Zaghloul;Leigh Sepeta;Shubhi Agrawal,2017-04-01,13,Annals of Neurology,526-537,10.1002/ana.24899,28220524,85016188248,"('2-s2.0-85016188248', 'Inati')",Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85016188248,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85016188248&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85016188248&origin=inward +Neural processing of emotional faces requires attention,Ungerleider,L. G. Ungerleider;E. Gutierrez;M. McKenna;L. Pessoa,2002-08-20,863,Proceedings of the National Academy of Sciences of the United States of America,11458-11463,10.1073/pnas.172403899,12177449,0037143758,"('2-s2.0-0037143758', 'Ungerleider')",Article,,https://api.elsevier.com/content/abstract/scopus_id/0037143758,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0037143758&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0037143758&origin=inward +The neural systems that mediate human perceptual decision making,Ungerleider,Hauke R. Heekeren;Sean Marrett;Leslie G. Ungerleider,2008-06-09,515,Nature Reviews Neuroscience,467-479,10.1038/nrn2374,18464792,44049097259,"('2-s2.0-44049097259', 'Ungerleider')",Review,NIMH,https://api.elsevier.com/content/abstract/scopus_id/44049097259,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=44049097259&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=44049097259&origin=inward +A general mechanism for perceptual decision-making in the human brain,Bandettini,P. A. Bandettini;L. G. Ungerleider;H. R. Heekeren;S. Marrett,2004-10-14,453,Nature,859-862,10.1038/nature02966,15483614,7244261657,"('2-s2.0-7244261657', 'Bandettini')",Article,NSF,https://api.elsevier.com/content/abstract/scopus_id/7244261657,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=7244261657&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=7244261657&origin=inward +Imaging brain plasticity during motor skill learning,Ungerleider,Leslie G. Ungerleider;Julien Doyon;Avi Karni,2002-01-01,392,Neurobiology of Learning and Memory,553-564,10.1006/nlme.2002.4091,12559834,0036881384,"('2-s2.0-0036881384', 'Ungerleider')",Review,CIHR,https://api.elsevier.com/content/abstract/scopus_id/0036881384,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0036881384&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0036881384&origin=inward +Attentional control of the processing of neutral and emotional stimuli,Ungerleider,Sabine Kastner;Leslie G. Ungerleider;Luiz Pessoa,2002-12-01,374,Cognitive Brain Research,31-45,10.1016/S0926-6410(02)00214-8,12433381,0036889993,"('2-s2.0-0036889993', 'Ungerleider')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/0036889993,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0036889993&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0036889993&origin=inward +Neuroimaging studies of attention: From modulation of sensory processing to top-down control,Ungerleider,Sabine Kastner;Leslie G. Ungerleider;Luiz Pessoa,2003-05-15,315,Journal of Neuroscience,3990-3998,10.1523/jneurosci.23-10-03990.2003,12764083,0038381394,"('2-s2.0-0038381394', 'Ungerleider')",Short Survey,NIMH,https://api.elsevier.com/content/abstract/scopus_id/0038381394,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0038381394&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0038381394&origin=inward +Experience-dependent changes in cerebellar contributions to motor sequence learning,Ungerleider,Michelle M. Adams;Allen W. Song;François Lalonde;Julien Doyon;Leslie G. Ungerleider;Avi Karni,2002-01-22,323,Proceedings of the National Academy of Sciences of the United States of America,1017-1022,10.1073/pnas.022615199,11805340,0037154261,"('2-s2.0-0037154261', 'Ungerleider')",Article,,https://api.elsevier.com/content/abstract/scopus_id/0037154261,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0037154261&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0037154261&origin=inward +Neural correlates of visual working memory: fMRI amplitude predicts task performance.,Bandettini,Eva Gutierrez;Peter Bandettini;Leslie Ungerleider;Luiz Pessoa,2002-01-01,322,Neuron,975-987,10.1016/S0896-6273(02)00817-6,12372290,0037194739,"('2-s2.0-0037194739', 'Bandettini')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/0037194739,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0037194739&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0037194739&origin=inward +Modulation of sensory suppression: Implications for receptive field sizes in the human visual cortex,Ungerleider,Sabine Kastner;Peter De Weerd;Leslie G. Ungerleider;M. Idette Elizondo;Mark A. Pinsk;Robert Desimone,2001-01-01,226,Journal of Neurophysiology,1398-1411,10.1152/jn.2001.86.3.1398,11535686,0034844134,"('2-s2.0-0034844134', 'Ungerleider')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/0034844134,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0034844134&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0034844134&origin=inward +Visual imagery of famous faces: Effects of memory and attention revealed by fMRI,Ungerleider,Alumit Ishai;Leslie G. Ungerleider;James V. Haxby,2002-01-01,232,NeuroImage,1729-1741,10.1006/nimg.2002.1330,12498747,0036935352,"('2-s2.0-0036935352', 'Ungerleider')",Article,,https://api.elsevier.com/content/abstract/scopus_id/0036935352,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0036935352&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0036935352&origin=inward +Involvement of human left dorsolateral prefrontal cortex in perceptual decision making is independent of response modality,Bandettini,S. Marrett;D. A. Ruff;H. R. Heekeren;P. A. Bandettini;L. G. Ungerleider,2006-06-27,232,Proceedings of the National Academy of Sciences of the United States of America,10023-10028,10.1073/pnas.0603949103,16785427,33745616509,"('2-s2.0-33745616509', 'Bandettini')",Article,,https://api.elsevier.com/content/abstract/scopus_id/33745616509,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33745616509&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33745616509&origin=inward +Repetition suppression of faces is modulated by emotion,Ungerleider,Alumit Ishai;Philip C. Bikle;Leslie G. Ungerleider;Luiz Pessoa,2004-06-29,210,Proceedings of the National Academy of Sciences of the United States of America,9827-9832,10.1073/pnas.0403559101,15210952,3042838553,"('2-s2.0-3042838553', 'Ungerleider')",Article,,https://api.elsevier.com/content/abstract/scopus_id/3042838553,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=3042838553&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=3042838553&origin=inward +Target visibility and visual awareness modulate amygdala responses to fearful faces,Ungerleider,David Sturman;Leslie G. Ungerleider;Shruti Japee;Luiz Pessoa,2006-03-01,195,Cerebral Cortex,366-375,10.1093/cercor/bhi115,15930371,32144441306,"('2-s2.0-32144441306', 'Ungerleider')",Article,,https://api.elsevier.com/content/abstract/scopus_id/32144441306,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=32144441306&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=32144441306&origin=inward +Complementary neural mechanisms for tracking items in human working memory,Martin,Yang Jiang;James V. Haxby;Leslie G. Ungerleider;Raja Parasuraman;Alex Martin,2000-01-28,147,Science,643-646,10.1126/science.287.5453.643,10649996,0034723225,"('2-s2.0-0034723225', 'Martin')",Article,,https://api.elsevier.com/content/abstract/scopus_id/0034723225,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0034723225&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0034723225&origin=inward +Neuroimaging studies of attention and the processing of emotion-laden stimuli,Ungerleider,Leslie G. Ungerleider;Luiz Pessoa,2004-01-01,154,Progress in Brain Research,171-182,10.1016/S0079-6123(03)14412-3,14650848,0344440994,"('2-s2.0-0344440994', 'Ungerleider')",Conference Paper,NIMH,https://api.elsevier.com/content/abstract/scopus_id/0344440994,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0344440994&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0344440994&origin=inward +Texture segregation in the human visual cortex: A functional MRI study,Ungerleider,Sabine Kastner;Leslie G. Ungerleider;Peter De Weerd,2000-01-01,127,Journal of Neurophysiology,2453-2457,10.1152/jn.2000.83.4.2453,10758146,0034039917,"('2-s2.0-0034039917', 'Ungerleider')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/0034039917,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0034039917&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0034039917&origin=inward +The prefrontal cortex and the executive control of attention,Ungerleider,Robert Desimone;Leslie G. Ungerleider;Andrew F. Rossi;Luiz Pessoa,2009-01-01,162,Experimental Brain Research,489-497,10.1007/s00221-008-1642-z,19030851,57749201809,"('2-s2.0-57749201809', 'Ungerleider')",Conference Paper,,https://api.elsevier.com/content/abstract/scopus_id/57749201809,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=57749201809&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=57749201809&origin=inward +Object representations in the temporal cortex of monkeys and humans as revealed by functional magnetic resonance imaging,Ungerleider,Fadila Hadj-Bouziane;Andrew H. Bell;Roger B.H. Tootell;Leslie G. Ungerleider;Jennifer B. Frihauf,2009-02-01,126,Journal of Neurophysiology,688-700,10.1152/jn.90657.2008,19052111,61349115538,"('2-s2.0-61349115538', 'Ungerleider')",Article,,https://api.elsevier.com/content/abstract/scopus_id/61349115538,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=61349115538&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=61349115538&origin=inward +Scene-selective cortical regions in human and nonhuman primates,Ungerleider,Ning Liu;Xiaomin Yue;Shahin Nasr;Leslie G. Ungerleider;Kathryn J. Devaney;Roger B.H. Tootell;Reza Rajimehr,2011-09-28,135,Journal of Neuroscience,13771-13785,10.1523/JNEUROSCI.2792-11.2011,21957240,80053275316,"('2-s2.0-80053275316', 'Ungerleider')",Article,,https://api.elsevier.com/content/abstract/scopus_id/80053275316,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=80053275316&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=80053275316&origin=inward +Activations in visual and attention-related areas predict and correlate with the degree of perceptual learning,Ungerleider,Shruti Japee;Ikuko Mukai;David Kim;Leslie G. Ungerleider;Masaki Fukunaga;Sean Marrett,2007-10-17,108,Journal of Neuroscience,11401-11411,10.1523/JNEUROSCI.3002-07.2007,17942734,35448931909,"('2-s2.0-35448931909', 'Ungerleider')",Article,,https://api.elsevier.com/content/abstract/scopus_id/35448931909,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=35448931909&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=35448931909&origin=inward +Neural Correlates of Change Detection and Change Blindness in a Working Memory Task,Ungerleider,Leslie G. Ungerleider;Luiz Pessoa,2004-05-01,101,Cerebral Cortex,511-520,10.1093/cercor/bhh013,15054067,2342470740,"('2-s2.0-2342470740', 'Ungerleider')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/2342470740,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=2342470740&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=2342470740&origin=inward +Bihemispheric leftward bias in a visuospatial attention-related network,Ungerleider,Avi Mendelsohn;Natan Gadoth;Talma Hendler;Galia Avidan;Tali Siman-Tov;Ilana Podlipsky;Tom Schonberg;Leslie G. Ungerleider;Luiz Pessoa,2007-10-17,94,Journal of Neuroscience,11271-11278,10.1523/JNEUROSCI.0599-07.2007,17942721,35448987622,"('2-s2.0-35448987622', 'Ungerleider')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/35448987622,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=35448987622&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=35448987622&origin=inward +Tactile form and location processing in the human brain,Ungerleider,Robert W. Van Boven;Philip C. Bikle;Leslie G. Ungerleider;John E. Ingeholm;Michael S. Beauchamp,2005-08-30,86,Proceedings of the National Academy of Sciences of the United States of America,12601-12605,10.1073/pnas.0505907102,16116098,24644494694,"('2-s2.0-24644494694', 'Ungerleider')",Article,,https://api.elsevier.com/content/abstract/scopus_id/24644494694,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=24644494694&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=24644494694&origin=inward +Relationship between functional magnetic resonance imaging-identified regions and neuronal category selectivity,Ungerleider,Nicholas J. Malecek;Fadila Hadj-Bouziane;Andrew H. Bell;Elyse L. Morin;Leslie G. Ungerleider;Roger B.H. Tootell,2011-08-24,63,Journal of Neuroscience,12229-12240,10.1523/JNEUROSCI.5865-10.2011,21865466,80052174207,"('2-s2.0-80052174207', 'Ungerleider')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/80052174207,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=80052174207&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=80052174207&origin=inward +Perception of emotional expressions is independent of face selectivity in monkey inferior temporal cortex,Ungerleider,Fadila Hadj-Bouziane;Andrew H. Bell;Leslie G. Ungerleider;Tamara A. Knusten;Roger B.H. Tootell,2008-04-08,70,Proceedings of the National Academy of Sciences of the United States of America,5591-5596,10.1073/pnas.0800489105,18375769,44449092454,"('2-s2.0-44449092454', 'Ungerleider')",Article,,https://api.elsevier.com/content/abstract/scopus_id/44449092454,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=44449092454&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=44449092454&origin=inward +A role of right middle frontal gyrus in reorienting of attention: A case study,Ungerleider,Shruti Japee;Ikuko Mukai;Leslie G. Ungerleider;Kelsey Holiday;Maureen D. Satyshur,2015-03-03,128,Frontiers in Systems Neuroscience,,10.3389/fnsys.2015.00023,,84925193761,"('2-s2.0-84925193761', 'Ungerleider')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84925193761,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84925193761&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84925193761&origin=inward +Amygdala lesions disrupt modulation of functional MRI activity evoked by facial expression in the monkey inferior temporal cortex,Murray,Ning Liu;Katalin M. Gothard;Fadila Hadj-Bouziane;Andrew H. Bell;Leslie G. Ungerleider;Wen Ming Luh;Elisabeth A. Murray;Roger B.H. Tootell,2012-12-26,58,Proceedings of the National Academy of Sciences of the United States of America,,10.1073/pnas.1218406109,23184972,84871836712,"('2-s2.0-84871836712', 'Murray')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84871836712,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84871836712&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84871836712&origin=inward +Temporal dynamics of face repetition suppression,Ungerleider,Alumit Ishai;Philip C. Bikle;Leslie G. Ungerleider,2006-10-16,35,Brain Research Bulletin,289-295,10.1016/j.brainresbull.2006.06.002,17027764,33749239262,"('2-s2.0-33749239262', 'Ungerleider')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/33749239262,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33749239262&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33749239262&origin=inward +Dynamic and static facial expressions decoded from motion-sensitive areas in the macaque monkey,Ungerleider,Ning Liu;Fadila Hadj-Bouziane;Bruno B. Averbeck;Leslie G. Ungerleider;Nicholas Furl,2012-11-07,34,Journal of Neuroscience,15952-15962,10.1523/JNEUROSCI.1992-12.2012,23136433,84868577560,"('2-s2.0-84868577560', 'Ungerleider')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84868577560,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84868577560&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84868577560&origin=inward +Attentional control during the transient updating of cue information,Ungerleider,Shruti Japee;Leslie G. Ungerleider;Andrew Rossi;Robert Desimone;Luiz Pessoa,2009-01-19,26,Brain Research,149-158,10.1016/j.brainres.2008.10.010,18992228,57349138397,"('2-s2.0-57349138397', 'Ungerleider')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/57349138397,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=57349138397&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=57349138397&origin=inward +fMRI mapping of a morphed continuum of 3D shapes within inferior temporal cortex,Ungerleider,Gheorghe Postelnicu;Leslie G. Ungerleider;Kathryn J. Devaney;Jeremy C. Young;Roger B.H. Tootell;Reza Rajimehr,2008-03-04,22,Proceedings of the National Academy of Sciences of the United States of America,3605-3609,10.1073/pnas.0712274105,18287004,42149093152,"('2-s2.0-42149093152', 'Ungerleider')",Article,,https://api.elsevier.com/content/abstract/scopus_id/42149093152,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=42149093152&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=42149093152&origin=inward +Development of a MR-Visible Compound for Tracing Neuroanatomical Connections In Vivo,Koretsky,Ning Liu;Carolyn W.H. Wu;Sarah Cheal;Alan P. Koretsky;Leslie G. Ungerleider;Der Yow Chen;Haitao Wu;Gary L. Griffiths;Roger B.H. Tootell;Olga Vasalatiy,2011-04-28,16,Neuron,229-243,10.1016/j.neuron.2011.03.010,21521610,79955108718,"('2-s2.0-79955108718', 'Koretsky')",Article,ANR,https://api.elsevier.com/content/abstract/scopus_id/79955108718,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79955108718&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79955108718&origin=inward +Exogenous and endogenous attention during perceptual learning differentially affect post-training target thresholds,Ungerleider,Kandy Bahadur;Leslie G. Ungerleider;Ikuko Mukai;Kartik Kesavabhotla,2011-10-20,18,Journal of Vision,1-15,10.1167/11.1.1,21282340,79955975986,"('2-s2.0-79955975986', 'Ungerleider')",Article,,https://api.elsevier.com/content/abstract/scopus_id/79955975986,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79955975986&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79955975986&origin=inward +Intrinsic structure of visual exemplar and category representations in macaque brain,Ungerleider,Ning Liu;Fadila Hadj-Bouziane;Nikolaus Kriegeskorte;Marieke Mur;Wen Ming Luh;Leslie G. Ungerleider;Roger B.H. Tootell,2013-07-26,14,Journal of Neuroscience,11346-11360,10.1523/JNEUROSCI.4180-12.2013,23843508,84880407828,"('2-s2.0-84880407828', 'Ungerleider')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84880407828,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84880407828&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84880407828&origin=inward +Intersubject variability in fearful face processing: The linkbetween behavior and neural activation,Ungerleider,Tracy J. Doty;Martin Ingvar;Shruti Japee;Leslie G. Ungerleider,2014-01-01,11,"Cognitive, Affective and Behavioral Neuroscience",1438-1453,10.3758/s13415-014-0290-y,24841078,84939896444,"('2-s2.0-84939896444', 'Ungerleider')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/84939896444,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84939896444&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84939896444&origin=inward +Effects of prior knowledge on decisions made under perceptual vs. Categorical uncertainty,Ungerleider,Leslie G. Ungerleider;Sarah F. Hillenbrand;Kathleen A. Hansen,2012-12-17,9,Frontiers in Neuroscience,,10.3389/fnins.2012.00163,,84870940979,"('2-s2.0-84870940979', 'Ungerleider')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84870940979,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84870940979&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84870940979&origin=inward +Spatial mechanisms within the dorsal visual pathway contribute to the configural processing of faces,Ungerleider,Stephen J. Gotts;Christine V. Nikas;Zaid N. Safiullah;Leslie G. Ungerleider;Valentinos Zachariou,2017-08-01,15,Cerebral Cortex,4124-4138,10.1093/cercor/bhw224,27522076,85026505564,"('2-s2.0-85026505564', 'Ungerleider')",Article,,https://api.elsevier.com/content/abstract/scopus_id/85026505564,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85026505564&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85026505564&origin=inward +Persistency of priors-induced bias in decision behavior and the fMRI signal,Ungerleider,Leslie G. Ungerleider;Sarah F. Hillenbrand;Kathleen A. Hansen,2011-12-01,5,Frontiers in Neuroscience,,10.3389/fnins.2011.00029,,84857072483,"('2-s2.0-84857072483', 'Ungerleider')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84857072483,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84857072483&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84857072483&origin=inward +Human brain activity predicts individual differences in prior knowledge use during decisions,Ungerleider,Leslie G. Ungerleider;Sarah F. Hillenbrand;Kathleen A. Hansen,2012-06-01,4,Journal of Cognitive Neuroscience,1462-1475,10.1162/jocn_a_00224,22401286,84860353892,"('2-s2.0-84860353892', 'Ungerleider')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84860353892,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84860353892&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84860353892&origin=inward +The superior temporal sulcus is causally connected to the amygdala: A combined TBS-fMRI study,Ungerleider,Lionel Rauth;Leslie G. Ungerleider;David Pitcher;Shruti Japee,2017-02-01,19,Journal of Neuroscience,1156-1161,10.1523/JNEUROSCI.0114-16.2016,28011742,85011397550,"('2-s2.0-85011397550', 'Ungerleider')",Article,,https://api.elsevier.com/content/abstract/scopus_id/85011397550,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85011397550&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85011397550&origin=inward +Facial Expressions Evoke Differential Neural Coupling in Macaques,Ungerleider,Ning Liu;Fadila Hadj-Bouziane;Rosalyn Moran;Leslie G. Ungerleider;Alumit Ishai,2017-02-01,5,"Cerebral cortex (New York, N.Y. : 1991)",1524-1531,10.1093/cercor/bhv345,26759479,85043295407,"('2-s2.0-85043295407', 'Ungerleider')",Article,,https://api.elsevier.com/content/abstract/scopus_id/85043295407,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85043295407&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85043295407&origin=inward +The role of inferior frontal junction in controlling the spatially global effect of feature-based attention in human visual areas,Ungerleider,Nicole Mlynaryk;Sara Ahmed;Shruti Japee;Leslie G. Ungerleider;Xilin Zhang,2018-06-01,7,PLoS Biology,,10.1371/journal.pbio.2005399,29939981,85049380773,"('2-s2.0-85049380773', 'Ungerleider')",Article,,https://api.elsevier.com/content/abstract/scopus_id/85049380773,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85049380773&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85049380773&origin=inward +Shifts in connectivity during procedural learning after motor cortex stimulation: A combined transcranial magnetic stimulation/functional magnetic resonance imaging study,Wassermann,Kristine M. Knutson;Aysha Keisler;Leonora Wilkinson;Stephen J. Gotts;Sunbin Song;Devin Bageac;Ziad S. Saad;Adam Steel;Eric M. Wassermann,2016-01-01,21,Cortex,134-148,10.1016/j.cortex.2015.10.004,26673946,84949226853,"('2-s2.0-84949226853', 'Wassermann')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/84949226853,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84949226853&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84949226853&origin=inward +The BDNF val66met polymorphism affects activity-dependent secretion of BDNF and human memory and hippocampal function,Wassermann,Bert Gold;Joseph H. Callicott;Daniel R. Weinberger;Bai Lu;Alessandro Bertolino;Michael F. Egan;Eugene Zaitsev;David Goldman;Masami Kojima;Bhaskar S. Kolachana;Terry E. Goldberg;Michael Dean,2003-01-24,2711,Cell,257-269,10.1016/S0092-8674(03)00035-7,12553913,0037462449,"('2-s2.0-0037462449', 'Wassermann')",Article,NICHD,https://api.elsevier.com/content/abstract/scopus_id/0037462449,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0037462449&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0037462449&origin=inward +Effect of COMT Val108/158 Met genotype on frontal lobe function and risk for schizophrenia,Wassermann,Joseph H. Callicott;Richard E. Straub;Michael F. Egan;David Goldman;Chiara M. Mazzanti;Bhaskar S. Kolachana;Terry E. Goldberg;Daniel R. Weinberger,2001-06-05,2013,Proceedings of the National Academy of Sciences of the United States of America,6917-6922,10.1073/pnas.111134598,11381111,0035810850,"('2-s2.0-0035810850', 'Wassermann')",Article,,https://api.elsevier.com/content/abstract/scopus_id/0035810850,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0035810850&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0035810850&origin=inward +5-HTTLPR polymorphism impacts human cingulate-amygdala interactions: A genetic susceptibility mechanism for depression,Wassermann,Ahmad R. Hariri;Karen E. Munoz;Venkata S. Mattay;Michael F. Egan;Lukas Pezawas;Beth A. Verchinski;Andreas Meyer-Lindenberg;Bhaskar S. Kolachana;Emily M. Drabant;Daniel R. Weinberger,2005-06-01,1502,Nature Neuroscience,828-834,10.1038/nn1463,15880108,22844433107,"('2-s2.0-22844433107', 'Wassermann')",Article,,https://api.elsevier.com/content/abstract/scopus_id/22844433107,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=22844433107&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=22844433107&origin=inward +Brain-derived neurotrophic factor val66met polymorphism affects human memory-related hippocampal activity and predicts memory performance,Wassermann,Joseph H. Callicott;Ahmad R. Hariri;Michael F. Egan;Terry E. Goldberg;Bhaskar S. Kolachana;Venkata S. Mattay;Daniel R. Weinberger,2003-07-30,799,Journal of Neuroscience,6690-6694,10.1523/jneurosci.23-17-06690.2003,12890761,0043135252,"('2-s2.0-0043135252', 'Wassermann')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/0043135252,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0043135252&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0043135252&origin=inward +A susceptibility gene for affective disorders and the response of the human amygdala,Wassermann,Ahmad R. Hariri;Karen E. Munoz;Michael F. Egan;Bhaskar S. Kolachana;Emily M. Drabant;Venkata S. Mattay;Daniel R. Weinberger,2005-02-01,661,Archives of General Psychiatry,146-152,10.1001/archpsyc.62.2.146,15699291,13244259560,"('2-s2.0-13244259560', 'Wassermann')",Article,,https://api.elsevier.com/content/abstract/scopus_id/13244259560,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=13244259560&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=13244259560&origin=inward +The brain-derived neurotrophic factor val66met polymorphism and variation in human cortical morphology,Wassermann,Joseph H. Callicott;Richard E. Straub;Michael F. Egan;Lukas Pezawas;Beth A. Verchinski;Andreas Meyer-Lindenberg;Bhaskar S. Kolachana;Venkata S. Mattay;Daniel R. Weinberger,2004-11-10,684,Journal of Neuroscience,10099-10102,10.1523/JNEUROSCI.2680-04.2004,15537879,8544249878,"('2-s2.0-8544249878', 'Wassermann')",Article,,https://api.elsevier.com/content/abstract/scopus_id/8544249878,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=8544249878&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=8544249878&origin=inward +Physiological dysfunction of the dorsolateral prefrontal cortex in schizophrenia revisited,Duyn,Richard Coppola;Joseph H. Callicott;Frederick J.P. Langheim;Alessandro Bertolino;Terry E. Goldberg;Jeffrey Duyn;Venkata S. Mattay;Daniel R. Weinberger,2000-01-01,641,Cerebral Cortex,1078-1092,10.1093/cercor/10.11.1078,11053229,0033764334,"('2-s2.0-0033764334', 'Duyn')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/0033764334,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0033764334&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0033764334&origin=inward +Neural mechanisms of genetic risk for impulsivity and violence in humans,Duyn,Robyn Honea;Joseph H. Callicott;Ahmad R. Hariri;Giuseppe Blasi;Beth Verchinski;Bhaskar Kolachana;Ashley Wabnitz;Joshua W. Buckholtz;Lukas Pezawas;Andreas Meyer-Lindenberg;Michael Egan;Venkata Mattay;Daniel R. Weinberger,2006-04-18,601,Proceedings of the National Academy of Sciences of the United States of America,6269-6274,10.1073/pnas.0511311103,16569698,33646583871,"('2-s2.0-33646583871', 'Duyn')",Article,,https://api.elsevier.com/content/abstract/scopus_id/33646583871,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33646583871&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33646583871&origin=inward +Neocortical modulation of the amygdala response to fearful stimuli,Duyn,Francesco Fera;Ahmad R. Hariri;Alessandro Tessitore;Venkata S. Mattay;Daniel R. Weinberger,2003-03-15,587,Biological Psychiatry,494-501,10.1016/S0006-3223(02)01786-9,12644354,0037443961,"('2-s2.0-0037443961', 'Duyn')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/0037443961,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0037443961&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0037443961&origin=inward +Complexity of prefrontal cortical dysfunction in schizophrenia: More than up or down,Duyn,Joseph H. Callicott;Stefano Marenco;Michael F. Egan;Beth A. Verchinski;Venkata S. Mattay;Daniel R. Weinberger,2003-12-01,575,American Journal of Psychiatry,2209-2215,10.1176/appi.ajp.160.12.2209,14638592,3142702943,"('2-s2.0-3142702943', 'Duyn')",Article,,https://api.elsevier.com/content/abstract/scopus_id/3142702943,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=3142702943&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=3142702943&origin=inward +The amygdala response to emotional stimuli: A comparison of faces and scenes,Duyn,Francesco Fera;Ahmad R. Hariri;Alessandro Tessitore;Venkata S. Mattay;Daniel R. Weinberger,2002-01-01,564,NeuroImage,317-323,10.1006/nimg.2002.1179,12482086,0036741356,"('2-s2.0-0036741356', 'Duyn')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/0036741356,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0036741356&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0036741356&origin=inward +Variation in DISC1 affects hippocampal structure and function and increases risk for schizophrenia,Duyn,Rishi Balkissoon;Joseph H. Callicott;Richard E. Straub;Ahmad R. Hariri;Terry E. Goldberg;Michael F. Egan;Bhaskar Kolachana;Lukas Pezawas;Beth A. Verchinski;Andreas Meyer-Lindenberg;Venkata S. Mattay;Daniel R. Weinberger,2005-06-14,427,Proceedings of the National Academy of Sciences of the United States of America,8627-8632,10.1073/pnas.0500515102,15939883,20844463251,"('2-s2.0-20844463251', 'Duyn')",Article,,https://api.elsevier.com/content/abstract/scopus_id/20844463251,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=20844463251&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=20844463251&origin=inward +Abnormal fMRI response of the dorsolateral prefrontal cortex in cognitively intact siblings of patients with schizophrenia,Duyn,Ashley D. Bone;Joseph H. Callicott;Beth Verchinksi;Alessandro Bertolino;Michael F. Egan;Venkata S. Mattay;Daniel R. Weinberger,2003-04-01,372,American Journal of Psychiatry,709-719,10.1176/appi.ajp.160.4.709,12668360,0038474159,"('2-s2.0-0038474159', 'Duyn')",Article,,https://api.elsevier.com/content/abstract/scopus_id/0038474159,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0038474159&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0038474159&origin=inward +Neurophysiological correlates of age-related changes in human motor function,Duyn,V. S. Mattay;A. R. Hariri;J. H. Callicott;S. Das;A. Tessitore;D. R. Weinberger;F. Fera,2002-02-26,364,Neurology,630-635,10.1212/WNL.58.4.630,11865144,0037176813,"('2-s2.0-0037176813', 'Duyn')",Article,,https://api.elsevier.com/content/abstract/scopus_id/0037176813,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0037176813&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0037176813&origin=inward +Dopaminergic modulation of cortical function in patients with Parkinson's disease,Duyn,Joseph H. Callicott;Venkata S. Mattay;Thomas M. Hyde;Alessandro Bertolino;Alessandro Tessitore;Thomas N. Chase;Terry E. Goldberg;Daniel R. Weinberger,2002-02-11,321,Annals of Neurology,156-164,10.1002/ana.10078,11835371,0036154591,"('2-s2.0-0036154591', 'Duyn')",Article,,https://api.elsevier.com/content/abstract/scopus_id/0036154591,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0036154591&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0036154591&origin=inward +"Variation in GRM3 affects cognition, prefrontal glutamate, and risk for schizophrenia",Duyn,Radha Krishna Vakkalanka;Rishi Balkissoon;Joseph H. Callicott;Richard E. Straub;Ahmad R. Hariri;Richard A. Gibbs;Joel E. Kleinman;Daniel R. Weinberger;Venkata S. Mattay;Thomas M. Hyde;Alessandro Bertolino;Michael F. Egan;Cynthia Shannon-Weickert;Imtiaz Yakub;Jeremy Crook;Terry E. Goldberg;Mayada Akil,2004-08-24,321,Proceedings of the National Academy of Sciences of the United States of America,12604-12609,10.1073/pnas.0405077101,15310849,4344624909,"('2-s2.0-4344624909', 'Duyn')",Article,,https://api.elsevier.com/content/abstract/scopus_id/4344624909,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=4344624909&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=4344624909&origin=inward +Catechol O-methyltransferase val158met genotype and neural mechanisms related to affective arousal and regulation,Duyn,Ahmad R. Hariri;Karen E. Munoz;Michael F. Egan;Andreas Meyer-Lindenberg;Bhaskar S. Kolachana;Emily M. Drabant;Venkata S. Mattay;Daniel R. Weinberger,2006-12-01,277,Archives of General Psychiatry,1396-1406,10.1001/archpsyc.63.12.1396,17146014,33845330255,"('2-s2.0-33845330255', 'Duyn')",Article,,https://api.elsevier.com/content/abstract/scopus_id/33845330255,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33845330255&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33845330255&origin=inward +Effect of catechol-O-methyltransferase val158met genotype on attentional control,Duyn,Joseph H. Callicott;Brita Elvevåg;Giuseppe Blasi;Alessandro Bertolino;Saumitra Das;Michael F. Egan;Terry E. Goldberg;Bhaskar S. Kolachana;Venkata S. Mattay;Daniel R. Weinberger,2005-05-18,253,Journal of Neuroscience,5038-5045,10.1523/JNEUROSCI.0476-05.2005,15901785,21044450490,"('2-s2.0-21044450490', 'Duyn')",Article,,https://api.elsevier.com/content/abstract/scopus_id/21044450490,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=21044450490&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=21044450490&origin=inward +Impact of complex genetic variation in COMT on human brain function,Duyn,V. S. Mattay;J. Buckholtz;J. H. Callicott;B. Kolachana;T. Nichols;D. R. Weinberger;A. Meyer-Lindenberg;J. Ding;M. Egan,2006-09-01,255,Molecular Psychiatry,867-877,10.1038/sj.mp.4001860,16786032,33748055408,"('2-s2.0-33748055408', 'Duyn')",Article,NIAAA,https://api.elsevier.com/content/abstract/scopus_id/33748055408,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33748055408&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33748055408&origin=inward +H215O PET validation of steady-state arterial spin tagging cerebral blood flow measurements in humans,Berman,Anne M. Smith;Frank Q. Ye;John D. Van Horn;Timothy Ellmore;Yihong Yang;Joseph A. Frank;Alan C. McLaughlin;Jeff Duyn;Karen Faith Berman;Daniel R. Weinberger;Giuseppe Esposito,2000-09-25,248,Magnetic Resonance in Medicine,450-456,10.1002/1522-2594(200009)44:3<450::AID-MRM16>3.0.CO;2-0,10975898,0033624185,"('2-s2.0-0033624185', 'Berman')",Article,,https://api.elsevier.com/content/abstract/scopus_id/0033624185,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0033624185&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0033624185&origin=inward +Effects of dextroamphetamine on cognitive performance and cortical activation,Berman,Richard Coppola;Joseph H. Callicott;Karen F. Berman;Alessandro Bertolino;Joseph A. Frank;Terry E. Goldberg;Ian Heaton;Venkata S. Mattay;Daniel R. Weinberger,2000-01-01,227,NeuroImage,268-275,10.1006/nimg.2000.0610,10944409,0033834953,"('2-s2.0-0033834953', 'Berman')",Article,,https://api.elsevier.com/content/abstract/scopus_id/0033834953,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0033834953&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0033834953&origin=inward +Dopamine modulates the response of the human amygdala: A study in Parkinson's disease,Berman,Francesco Fera;Ahmad R. Hariri;Thomas M. Hyde;Venkata S. Mattay;Alessandro Tessitore;Thomas N. Chase;William G. Smith;Daniel R. Weinberger,2002-10-15,230,Journal of Neuroscience,9099-9103,10.1523/jneurosci.22-20-09099.2002,12388617,0037109773,"('2-s2.0-0037109773', 'Berman')",Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/0037109773,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0037109773&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0037109773&origin=inward +Noise reduction in 3D perfusion imaging by attenuating the static signal in arterial spin tagging (ASSIST),Berman,Frank Q. Ye;Alan C. McLaughlin;Joseph A. Frank;Daniel R. Weinberger,2000-07-18,233,Magnetic Resonance in Medicine,92-100,10.1002/1522-2594(200007)44:1<92::AID-MRM14>3.0.CO;2-M,10893526,0033936617,"('2-s2.0-0033936617', 'Berman')",Article,,https://api.elsevier.com/content/abstract/scopus_id/0033936617,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0033936617&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0033936617&origin=inward +Neurophysiological correlates of age-related changes in working memory capacity,Berman,Francesco Fera;Karen F. Berman;Ahmad R. Hariri;Joseph H. Callicott;Saumitra Das;Alessandro Tessitore;Terry E. Goldberg;Andreas Meyer-Lindenberg;Venkata S. Mattay;Daniel R. Weinberger,2006-01-09,232,Neuroscience Letters,32-37,10.1016/j.neulet.2005.09.025,16213083,28744450740,"('2-s2.0-28744450740', 'Berman')",Article,,https://api.elsevier.com/content/abstract/scopus_id/28744450740,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=28744450740&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=28744450740&origin=inward +Allelic variation in GAD1 (GAD67) is associated with schizophrenia and influences cortical function and gene expression,Berman,M. F. Egan;B. K. Lipska;R. E. Straub;J. H. Callicott;J. E. Kleinman;D. R. Weinberger;B. S. Kolachana;R. K. Vakkalanka;T. E. Goldberg;M. B. Mayhew,2007-09-01,215,Molecular Psychiatry,854-869,10.1038/sj.mp.4001988,17767149,34548303921,"('2-s2.0-34548303921', 'Berman')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/34548303921,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34548303921&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34548303921&origin=inward +Evidence of biologic epistasis between BDNF and SLC6A4 and implications for depression,Berman,M. F. Egan;V. S. Mattay;A. L. Goldman;A. R. Hariri;B. A. Verchinski;G. Chen;D. R. Weinberger;B. S. Kolachana;A. Meyer-Lindenberg;L. Pezawas,2008-07-01,186,Molecular Psychiatry,709-716,10.1038/mp.2008.32,18347599,45549100295,"('2-s2.0-45549100295', 'Berman')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/45549100295,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=45549100295&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=45549100295&origin=inward +"A primate-specific, brain isoform of KCNH2 affects cortical physiology, cognition, neuronal repolarization and risk of schizophrenia",Berman,Armen Soghoyan;Fabio Sambataro;Ina Giegling;Andreas Meyer-Lindenberg;Daniel R. Weinberger;Bai Lu;Feng Yang;Jay Chang;Jingshan Chen;Michael F. Egan;Terry E. Goldberg;Dan Rujescu;Alessandro Bertolino;Grazia Caforio;Stephen J. Huffaker;Kristin K. Nicodemus;Jian Song;Joel E. Kleinman;Joseph H. Callicott;Thomas M. Hyde;Yuanyuan Ji;Karine Mayilyan;Barbara K. Lipska;Morgan J. Proust;Venkata Mattay,2009-05-01,186,Nature Medicine,509-518,10.1038/nm.1962,19412172,66749174141,"('2-s2.0-66749174141', 'Berman')",Article,,https://api.elsevier.com/content/abstract/scopus_id/66749174141,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=66749174141&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=66749174141&origin=inward +Dysfunctional prefrontal regional specialization and compensation in schizophrenia,Berman,Joseph H. Callicott;Hao Yang Tan;Michael F. Egan;Steven Sust;Joshua W. Buckholtz;Andreas Meyer-Lindenberg;Venkata S. Mattay;Daniel R. Weinberger,2006-01-01,176,American Journal of Psychiatry,1969-1977,10.1176/ajp.2006.163.11.1969,17074949,33751330467,"('2-s2.0-33751330467', 'Berman')",Article,,https://api.elsevier.com/content/abstract/scopus_id/33751330467,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33751330467&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33751330467&origin=inward +Tolcapone improves cognition and cortical information processing in normal human subjects,Berman,Roberta Rasetti;Joseph H. Callicott;Guilna Alce;Natkai Akbar;José A. Apud;Jingshan Chen;Jennifer E. Iudicello;Michael F. Egan;Terry E. Goldberg;Bhaskar S. Kolachana;Venkata Mattay;Daniel R. Weinberger,2007-05-24,168,Neuropsychopharmacology,1011-1020,10.1038/sj.npp.1301227,17063156,34247387212,"('2-s2.0-34247387212', 'Berman')",Article,,https://api.elsevier.com/content/abstract/scopus_id/34247387212,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34247387212&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34247387212&origin=inward +Epistasis between catechol-O-methyltransferase and type II metabotropic glutamate receptor 3 genes on working memory brain function,Berman,Joseph H. Callicott;Hao Yang Tan;Michael F. Egan;John D. Meyers;Steven Sust;Joshua W. Buckholtz;Andreas Meyer-Lindenberg;Qiang Chen;Venkata S. Mattay;Daniel R. Weinberger,2007-07-24,157,Proceedings of the National Academy of Sciences of the United States of America,12536-12541,10.1073/pnas.0610125104,17636131,34547637452,"('2-s2.0-34547637452', 'Berman')",Article,,https://api.elsevier.com/content/abstract/scopus_id/34547637452,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34547637452&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34547637452&origin=inward +How can drug discovery for psychiatric disorders be improved?,Berman,Anthony Grace;Michael Spedding;Daniel Weinberger;Husseini Manji;Per Svenningsson;Jean Antoine Girault;Helen Mayberg;Yves Agid;Jeremy J. Lambert;György Buzsáki;Alain Prochiantz;Gal Richter-Levin;Richard Frackowiak;Maurizio Popoli;David M. Diamond;Peter Somogyi;Jay Giedd,2007-03-01,168,Nature Reviews Drug Discovery,189-201,10.1038/nrd2217,17330070,33847374225,"('2-s2.0-33847374225', 'Berman')",Review,NIMH,https://api.elsevier.com/content/abstract/scopus_id/33847374225,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33847374225&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33847374225&origin=inward +Is Gray Matter Volume an Intermediate Phenotype for Schizophrenia? A Voxel-Based Morphometry Study of Patients with Schizophrenia and Their Healthy Siblings,Berman,Robyn A. Honea;Katherine B. Hobbs;Joseph H. Callicott;Beth Verchinski;Michael F. Egan;Richard E. Passingham;Lukas Pezawas;Andreas Meyer-Lindenberg;Venkata S. Mattay;Daniel R. Weinberger,2008-03-01,157,Biological Psychiatry,465-474,10.1016/j.biopsych.2007.05.027,17689500,38949193560,"('2-s2.0-38949193560', 'Berman')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/38949193560,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=38949193560&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=38949193560&origin=inward +Genetic variation in AKT1 is linked to dopamine-associated prefrontal cortical structure and function in humans,Berman,Richard E. Straub;Joseph H. Callicott;Bhaskar S. Kolachana;Andreas Meyer-Lindenberg;Yoshitasu Sei;Zhen Li;Hao Yang Tan;Jennifer K. Brooke;Robyn Honea;Kristin K. Nicodemus;Qiang Chen;Venkata S. Mattay;Daniel R. Weinberger,2008-06-02,148,Journal of Clinical Investigation,2200-2208,10.1172/JCI34725,18497887,45749149476,"('2-s2.0-45749149476', 'Berman')",Article,,https://api.elsevier.com/content/abstract/scopus_id/45749149476,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=45749149476&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=45749149476&origin=inward +Statistical shape analysis of neuroanatomical structures based on medial models,Berman,J. Lieberman;G. Gerig;D. Weinberger;D. Jones;Martin Styner,2003-01-01,145,Medical Image Analysis,207-220,10.1016/S1361-8415(02)00110-X,12946464,0041324902,"('2-s2.0-0041324902', 'Berman')",Article,NCI,https://api.elsevier.com/content/abstract/scopus_id/0041324902,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0041324902&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0041324902&origin=inward +"Normal age-related brain morphometric changes: Nonuniformity across cortical thickness, surface area and gray matter volume?",Berman,Herve Lemaitre;Fabio Sambataro;Venkata S. Mattay;Beth A. Verchinski;Andreas Meyer-Lindenberg;Aaron L. Goldman;Daniel R. Weinberger,2012-01-01,213,Neurobiology of Aging,617.e1-617.e9,10.1016/j.neurobiolaging.2010.07.013,20739099,84855821018,"('2-s2.0-84855821018', 'Berman')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/84855821018,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84855821018&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84855821018&origin=inward +Dextroamphetamine modulates the response of the human amygdala,Berman,Francesco Fera;Ahmad R. Hariri;Alessandro Tessitore;William G. Smith;Venkata S. Mattay;Daniel R. Weinberger,2002-12-01,140,Neuropsychopharmacology,1036-1040,10.1016/S0893-133X(02)00373-1,12464460,0036899894,"('2-s2.0-0036899894', 'Berman')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/0036899894,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0036899894&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0036899894&origin=inward +Specific relationship between prefrontal neuronal N-acetylaspartate and activation of the working memory cortical network in schizophrenia,Berman,Joseph H. Callicott;Daniel R. Weinberger;John D. Van Horn;Alessandro Bertolino;Joseph A. Frank;Karen Faith Berman;Venkata S. Mattay;Giuseppe Esposito,2000-01-01,136,American Journal of Psychiatry,26-33,10.1176/ajp.157.1.26,10618009,0033961240,"('2-s2.0-0033961240', 'Berman')",Article,,https://api.elsevier.com/content/abstract/scopus_id/0033961240,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0033961240&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0033961240&origin=inward +Neuronal pathology in the hippocampal area of patients with bipolar disorder: A study with proton magnetic resonance spectroscopic imaging,Berman,Rebecca Rakow;Joseph H. Callicott;Robert Post;Alessandro Bertolino;Mark Frye;Jennifer Shelton-Repella;Venkata S. Mattay;Daniel R. Weinberger,2003-05-15,142,Biological Psychiatry,906-913,10.1016/S0006-3223(02)01911-X,12742678,0038735643,"('2-s2.0-0038735643', 'Berman')",Article,,https://api.elsevier.com/content/abstract/scopus_id/0038735643,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0038735643&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0038735643&origin=inward +The effect of treatment with antipsychotic drugs on brain N-acetylaspartate measures in patients with schizophrenia,Berman,V. S. Mattay;M. F. Egan;J. H. Callicott;D. R. Weinberger;R. Rakow;A. Bertolino;K. M. Weidenhammer,2001-01-01,137,Biological Psychiatry,39-46,10.1016/S0006-3223(00)00997-5,11163778,0035062495,"('2-s2.0-0035062495', 'Berman')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/0035062495,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0035062495&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0035062495&origin=inward +The relationship between dorsolateral prefrontal neuronal N-acetylaspartate and evoked release of striatal dopamine in schizophrenia,Berman,Joseph H. Callicott;Alan Breier;Alessandro Bertolino;Maxim Shapiro;David Pickar;Joseph A. Frank;Caleb Adler;Venkata S. Mattay;Daniel R. Weinberger,2000-02-01,133,Neuropsychopharmacology,125-132,10.1016/S0893-133X(99)00096-2,10649825,0034142382,"('2-s2.0-0034142382', 'Berman')",Article,,https://api.elsevier.com/content/abstract/scopus_id/0034142382,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0034142382&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0034142382&origin=inward +Amphetamine modulates human incentive processing,Hommer,Daniel Hommer;James M. Bjork;Grace W. Fong;Brian Knutson;Venkata S. Mattay;Daniel R. Weinberger,2004-07-22,133,Neuron,261-269,10.1016/j.neuron.2004.06.030,15260961,3242705255,"('2-s2.0-3242705255', 'Hommer')",Article,NARSAD,https://api.elsevier.com/content/abstract/scopus_id/3242705255,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=3242705255&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=3242705255&origin=inward +Genetic variants in AVPR1A linked to autism predict amygdala activation and personality traits in healthy humans,Hommer,A. Olsh;V. Mattay;M. Dean;B. Kolachana;K. K. Nicodemus;D. R. Weinberger;A. Meyer-Lindenberg;B. Gold,2009-01-01,139,Molecular Psychiatry,968-975,10.1038/mp.2008.54,18490926,70349919812,"('2-s2.0-70349919812', 'Hommer')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/70349919812,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=70349919812&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=70349919812&origin=inward +Altered cortical network dynamics: A potential intermediate phenotype for schizophrenia and association with ZNF804A,Hommer,Roberta Rasetti;Joseph H. Callicott;Fabio Sambataro;Qiang Chen;Venkata S. Mattay;Daniel R. Weinberger,2011-12-01,130,Archives of General Psychiatry,1207-1217,10.1001/archgenpsychiatry.2011.103,21810628,83055160768,"('2-s2.0-83055160768', 'Hommer')",Article,,https://api.elsevier.com/content/abstract/scopus_id/83055160768,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=83055160768&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=83055160768&origin=inward +Morphometric analysis of lateral ventricles in schizophrenia and healthy controls regarding genetic and disease-specific factors,Hommer,Robert K. McClure;Jeffrey A. Lieberman;Guido Gerig;Douglas W. Jones;Martin Styner;Daniel R. Weinberger,2005-03-29,122,Proceedings of the National Academy of Sciences of the United States of America,4872-4877,10.1073/pnas.0501117102,15772166,16344391965,"('2-s2.0-16344391965', 'Hommer')",Article,,https://api.elsevier.com/content/abstract/scopus_id/16344391965,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=16344391965&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=16344391965&origin=inward +Brain regions underlying response inhibition and interference monitoring and suppression,Hommer,Joseph H. Callicott;Thomas Weickert;Giuseppe Blasi;Venkata S. Mattay;Saumitra Das;Alessandro Bertolino;Philip Kohn;Brad Zoltick;Terry E. Goldberg;Daniel R. Weinberger,2006-03-01,142,European Journal of Neuroscience,1658-1664,10.1111/j.1460-9568.2006.04680.x,16553630,33645098660,"('2-s2.0-33645098660', 'Hommer')",Article,,https://api.elsevier.com/content/abstract/scopus_id/33645098660,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33645098660&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33645098660&origin=inward +Catechol-O-methyltransferase Val158Met modulation of prefrontal-parietal- striatal brain systems during arithmetic and temporal transformations in working memory,Hommer,Joseph H. Callicott;Hao Yang Tan;Terry E. Goldberg;Andreas Meyer-Lindenberg;Qiang Chen;Venkata S. Mattay;Daniel R. Weinberger,2007-12-05,116,Journal of Neuroscience,13393-13401,10.1523/JNEUROSCI.4041-07.2007,18057197,37149054393,"('2-s2.0-37149054393', 'Hommer')",Article,,https://api.elsevier.com/content/abstract/scopus_id/37149054393,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=37149054393&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=37149054393&origin=inward +The G72/G30 gene complex and cognitive abnormalities in schizophrenia,Hommer,Richard Coppola;Richard E. Straub;Joseph H. Callicott;Llewellyn Bigelow;Michael F. Egan;Terry E. Goldberg;Ahmad Hariri;Venkata S. Mattay;Daniel R. Weinberger,2006-09-12,112,Neuropsychopharmacology,2022-2032,10.1038/sj.npp.1301049,16554747,33745949219,"('2-s2.0-33745949219', 'Hommer')",Article,,https://api.elsevier.com/content/abstract/scopus_id/33745949219,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33745949219&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33745949219&origin=inward +Serotonin Transporter Genotype (5-HTTLPR): Effects of Neutral and Undefined Conditions on Amygdala Activation,Hommer,Michael N. Smolka;Dieter F. Braus;Jana Wrase;Ahmad R. Hariri;Karl Mann;Anne Beck;Gunter Schumann;Andreas Heinz;Christian Büchel;Herta Flor;Daniel R. Weinberger,2007-04-15,108,Biological Psychiatry,1011-1014,10.1016/j.biopsych.2006.08.019,17157270,33947583434,"('2-s2.0-33947583434', 'Hommer')",Article,DFG,https://api.elsevier.com/content/abstract/scopus_id/33947583434,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33947583434&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33947583434&origin=inward +Functional and effective frontotemporal connectivity and genetic risk for schizophrenia,Hommer,Richard Coppola;Michael F. Egan;Terry E. Goldberg;Georg Winterer;Daniel R. Weinberger,2003-12-01,105,Biological Psychiatry,1181-1192,10.1016/S0006-3223(03)00532-8,14643085,0345724778,"('2-s2.0-0345724778', 'Hommer')",Article,,https://api.elsevier.com/content/abstract/scopus_id/0345724778,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0345724778&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0345724778&origin=inward +Catechol O-methyltransferase (COMT) mRNA expression in the dorsolateral prefrontal cortex of patients with schizophrenia,Hommer,Mitsuyuki Matsumoto;Senda Beltaifa;Joel E. Kleinman;Thomas M. Hyde;Mary M. Herman;Jingshan Chen;Cynthia Shannon Weickert;Bhaskar Kolachana;Daniel R. Weinberger,2003-08-01,116,Neuropsychopharmacology,1521-1530,10.1038/sj.npp.1300218,12799619,0041884746,"('2-s2.0-0041884746', 'Hommer')",Article,,https://api.elsevier.com/content/abstract/scopus_id/0041884746,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0041884746&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0041884746&origin=inward +Selective relationship between prefrontal N-acetylaspartate measures and negative symptoms in schizophrenia,Hommer,M. F. Egan;V. S. Mattay;F. J.P. Langheim;J. H. Callicott;D. R. Weinberger;A. Bertolino,2000-01-01,99,American Journal of Psychiatry,1646-1651,10.1176/appi.ajp.157.10.1646,11007719,0033802818,"('2-s2.0-0033802818', 'Hommer')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/0033802818,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0033802818&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0033802818&origin=inward +Impact of interacting functional variants in COMT on regional gray matter volume in human brain,Hommer,Lukas Pezawas;Joseph H. Callicott;Robyn Honea;Beth A. Verchinski;Andreas Meyer-Lindenberg;Bhaskar S. Kolachana;Venkata S. Mattay;Daniel R. Weinberger,2009-03-01,104,NeuroImage,44-51,10.1016/j.neuroimage.2008.10.064,19071221,60349116939,"('2-s2.0-60349116939', 'Hommer')",Article,,https://api.elsevier.com/content/abstract/scopus_id/60349116939,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=60349116939&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=60349116939&origin=inward +Functional changes in the activity of brain regions underlying emotion processing in the elderly,Hommer,Francesco Fera;Ahmad R. Hariri;Venkata S. Mattay;Saumitra Das;Alessandro Tessitore;William G. Smith;Daniel R. Weinberger,2005-05-30,103,Psychiatry Research - Neuroimaging,9-18,10.1016/j.pscychresns.2005.02.009,15936178,20444381284,"('2-s2.0-20444381284', 'Hommer')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/20444381284,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=20444381284&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=20444381284&origin=inward +Evidence that altered amygdala activity in schizophrenia is related to clinical state and not genetic risk,Hommer,Roberta Rasetti;Joseph H. Callicott;Ahmad R. Hariri;Lisa M. Wiedholz;Andreas Meyer-Lindenberg;Bhaskar S. Kolachana;Venkata S. Mattay;Daniel R. Weinberger,2009-02-01,93,American Journal of Psychiatry,216-225,10.1176/appi.ajp.2008.08020261,19074979,60349127721,"('2-s2.0-60349127721', 'Hommer')",Article,,https://api.elsevier.com/content/abstract/scopus_id/60349127721,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=60349127721&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=60349127721&origin=inward +Allelic variation in RGS4 impacts functional and structural connectivity in the human brain,Hommer,Robyn A. Honea;Richard E. Straub;Joseph H. Callicott;Radhakrishna Vakkalanka;Michael F. Egan;Steven Sust;Beth A. Verchinski;Bhaskar Kolachana;Joshua W. Buckholtz;Lukas Pezawas;Andreas Meyer-Lindenberg;Venkata S. Mattay;Daniel R. Weinberger,2007-02-14,85,Journal of Neuroscience,1584-1593,10.1523/JNEUROSCI.5112-06.2007,17301167,33847152217,"('2-s2.0-33847152217', 'Hommer')",Article,,https://api.elsevier.com/content/abstract/scopus_id/33847152217,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33847152217&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33847152217&origin=inward +COMT genotype predicts BOLD signal and noise characteristics in prefrontal circuits,Hommer,Francesco Musso;Peter Stoeter;Juergen Gallinat;Andreas Konrad;Berna Seker;Goran Vucurevic;Georg Winterer;Norbert Dahmen;Daniel R. Weinberger,2006-10-01,86,NeuroImage,1722-1732,10.1016/j.neuroimage.2006.05.058,16884927,33748294193,"('2-s2.0-33748294193', 'Hommer')",Article,,https://api.elsevier.com/content/abstract/scopus_id/33748294193,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33748294193&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33748294193&origin=inward +Neural mechanisms underlying probabilistic category learning in normal aging,Hommer,Thomas W. Weickert;Francesco Fera;Daniel R. Weinberger;Sumitra Das;Sam Lee;Catherine E. Myers;Venkata S. Mattay;Alessandro Tessitore;Mark A. Gluck;Brad Zoltick;Ahmad Hariri;Terry E. Goldberg;Martijn Meeter,2005-12-07,82,Journal of Neuroscience,11340-11348,10.1523/JNEUROSCI.2736-05.2005,16339029,30544440487,"('2-s2.0-30544440487', 'Hommer')",Article,,https://api.elsevier.com/content/abstract/scopus_id/30544440487,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=30544440487&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=30544440487&origin=inward +Dysbindin-1 modulates prefrontal cortical activity and schizophrenia-like behaviors via dopamine/D2 pathways,Hommer,F. Papaleo;J. Chen;D. R. Weinberger;F. Yang;J. N. Crawley;S. Garcia;B. Lu,2012-01-01,93,Molecular Psychiatry,85-98,10.1038/mp.2010.106,20956979,84855340012,"('2-s2.0-84855340012', 'Hommer')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/84855340012,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84855340012&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84855340012&origin=inward +Functional polymorphisms in PRODH are associated with risk and protection for schizophrenia and fronto-striatal structure and function,Hommer,Richard E. Straub;Joseph H. Callicott;Radhakrishna Vakkalanka;Andreas Meyer-Lindenberg;Venkata A. Mattay;Lucas Kempf;Michael F. Egan;Bhaskar Kolachana;Beth A. Verchinski;Kristin K. Nicodemus;Daniel R. Weinberger,2008-11-01,80,PLoS Genetics,,10.1371/journal.pgen.1000252,18989458,57149120578,"('2-s2.0-57149120578', 'Hommer')",Article,,https://api.elsevier.com/content/abstract/scopus_id/57149120578,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=57149120578&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=57149120578&origin=inward +Association of the Ser704Cys DISC1 polymorphism with human hippocampal formation gray matter and function during memory encoding,Hommer,Raffaella Romano;Joseph H. Callicott;Teresa Popolizio;Giuseppe Blasi;Miriam Rizzo;Fabio Sambataro;Antonio Rampino;Annabella Di Giorgio;Francesco Gambi;Marcello Nardini;Grazia Caforio;Alessandro Bertolino;Apostolos Papazacharias;Valeria Latorre;Bhaskar Kolachana;Daniel R. Weinberger,2008-11-01,78,European Journal of Neuroscience,2129-2136,10.1111/j.1460-9568.2008.06482.x,19046394,55949127945,"('2-s2.0-55949127945', 'Hommer')",Article,,https://api.elsevier.com/content/abstract/scopus_id/55949127945,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=55949127945&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=55949127945&origin=inward +Investigation of anatomical thalamo-cortical connectivity and fMRI activation in schizophrenia,Hommer,Dwight Dickinson;Joseph H. Callicott;Andreas Meyer-Lindenberg;Stefano Marenco;Antonina A. Savostyanova;Fabio Sambataro;José A. Apud;Hao Yang Tan;Jason L. Stein;Beth A. Verchinski;Alan S. Barnett;Aaron L. Goldman;Daniel R. Weinberger,2012-01-01,92,Neuropsychopharmacology,499-507,10.1038/npp.2011.215,21956440,84856066559,"('2-s2.0-84856066559', 'Hommer')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84856066559,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84856066559&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84856066559&origin=inward +Cortical systems associated with covert music rehearsal,Duyn,Joseph H. Callicott;Venkata S. Mattay;Frederick J.P. Langheim;Daniel R. Weinberger;Jeff H. Duyn,2002-01-01,70,NeuroImage,901-908,10.1006/nimg.2002.1144,12202078,0036679036,"('2-s2.0-0036679036', 'Duyn')",Article,,https://api.elsevier.com/content/abstract/scopus_id/0036679036,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0036679036&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0036679036&origin=inward +Regional change in brain morphometry in schizophrenia associated with antipsychotic treatment,Duyn,Richard Coppola;Robert K. McClure;Allan Barnett;Roukan Jazayerli;Ingrid Phillips;Daniel R. Weinberger,2006-12-01,64,Psychiatry Research - Neuroimaging,121-132,10.1016/j.pscychresns.2006.04.008,17097276,33750967649,"('2-s2.0-33750967649', 'Duyn')",Article,NARSAD,https://api.elsevier.com/content/abstract/scopus_id/33750967649,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33750967649&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33750967649&origin=inward +"Evidence of statistical epistasis between DISC1, CIT and NDEL1 impacting risk for schizophrenia: Biological validation with functional neuroimaging",Duyn,Joseph H. Callicott;Augustin Luna;Radhakrishna Vakkalanka;Daniel R. Weinberger;Dan Rujescu;Pierandrea Muglia;Ina Giegling;Barbara K. Lipska;Kristin K. Nicodemus;Yin Yao Shugart;David St Clair;Rachel G. Higier;Devon C. Nixon,2010-01-01,69,Human Genetics,441-452,10.1007/s00439-009-0782-y,20084519,77952095729,"('2-s2.0-77952095729', 'Duyn')",Article,,https://api.elsevier.com/content/abstract/scopus_id/77952095729,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77952095729&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77952095729&origin=inward +Size of the human corpus callosum is genetically determined: An MRI study in mono and dizygotic twins,Duyn,Anton Scamvougeras;Sandra F. Witelson;Douglas Jones;Daniel R. Weinberger;Debra L. Kigar,2003-02-27,53,Neuroscience Letters,91-94,10.1016/S0304-3940(02)01333-2,12566160,0037468303,"('2-s2.0-0037468303', 'Duyn')",Review,NIH,https://api.elsevier.com/content/abstract/scopus_id/0037468303,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0037468303&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0037468303&origin=inward +Age-related alterations in simple declarative memory and the effect of negative stimulus valence,Duyn,Joseph H. Callicott;Fabio Sambataro;Venkata S. Mattay;Saumitra Das;Vishnu P. Murty;Hao Yang Tan;Andreas Meyer-Lindenberg;Terry E. Goldberg;Daniel R. Weinberger,2009-10-01,58,Journal of Cognitive Neuroscience,1920-1933,10.1162/jocn.2009.21130,18823239,70349248588,"('2-s2.0-70349248588', 'Duyn')",Article,,https://api.elsevier.com/content/abstract/scopus_id/70349248588,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=70349248588&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=70349248588&origin=inward +Neural correlates of probabilistic category learning in patients with schizophrenia,Duyn,Thomas W. Weickert;Joseph H. Callicott;Daniel R. Weinberger;Catherine Myers;Sumitra Das;Venkata S. Mattay;Michael F. Egan;Mark A. Gluck;Jose A. Apud;Qiang Chen;Brad J. Zoltick;Terry E. Goldberg;Martijn Meeter,2009-01-28,58,Journal of Neuroscience,1244-1254,10.1523/JNEUROSCI.4341-08.2009,19176832,59649119220,"('2-s2.0-59649119220', 'Duyn')",Article,,https://api.elsevier.com/content/abstract/scopus_id/59649119220,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=59649119220&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=59649119220&origin=inward +Regional distribution of measurement error in diffusion tensor imaging,Pierpaoli,Robyn A. Honea;Robert Rawlings;Stefano Marenco;Gustavo K. Rohde;Carlo Pierpaoli;Alan S. Barnett;Daniel R. Weinberger,2006-06-30,56,Psychiatry Research - Neuroimaging,69-78,10.1016/j.pscychresns.2006.01.008,16797169,33746190656,"('2-s2.0-33746190656', 'Pierpaoli')",Article,,https://api.elsevier.com/content/abstract/scopus_id/33746190656,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33746190656&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33746190656&origin=inward +Complex relationship between BOLD signal and synchronization/ desynchronization of human brain MEG oscillations,Pierpaoli,Richard Coppola;Francesco Musso;Frederick W. Carver;Georg Winterer;Venkata Mattay;Daniel R. Weinberger,2007-09-01,51,Human Brain Mapping,805-816,10.1002/hbm.20322,17133396,35148872558,"('2-s2.0-35148872558', 'Pierpaoli')",Article,,https://api.elsevier.com/content/abstract/scopus_id/35148872558,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=35148872558&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=35148872558&origin=inward +Modulatory effects of modafinil on neural circuits regulating emotion and cognition,Pierpaoli,Roberta Rasetti;Joseph H. Callicott;Giuseppe Blasi;Fabio Sambataro;José A. Apud;Beth Stankevich;Isabel C. Arrillaga-Romany;Kelsey Skjei;Terry E. Goldberg;Venkata S. Mattay;Daniel R. Weinberger,2010-09-01,57,Neuropsychopharmacology,2101-2109,10.1038/npp.2010.83,20555311,77955715528,"('2-s2.0-77955715528', 'Pierpaoli')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/77955715528,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77955715528&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77955715528&origin=inward +Instability of prefrontal signal processing in schizophrenia,Pierpaoli,Richard Coppola;Francesco Musso;Joseph H. Callicott;Christian Beckmann;Michael F. Egan;Douglas W. Jones;Georg Winterer;Venkata Mattay;Daniel R. Weinberger,2006-01-01,52,American Journal of Psychiatry,1960-1968,10.1176/ajp.2006.163.11.1960,17074948,33751331472,"('2-s2.0-33751331472', 'Pierpaoli')",Article,,https://api.elsevier.com/content/abstract/scopus_id/33751331472,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33751331472&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33751331472&origin=inward +Molecular Brain Imaging and the Neurobiology and Genetics of Schizophrenia,Pierpaoli,G. Juckel;J. Gallinat;B. Romero;D. R. Weinberger;A. Heinz,2003-11-01,49,Pharmacopsychiatry,,,14677072,0347003606,"('2-s2.0-0347003606', 'Pierpaoli')",Conference Paper,,https://api.elsevier.com/content/abstract/scopus_id/0347003606,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0347003606&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0347003606&origin=inward +Genetic modulation of GABA levels in the anterior cingulate cortex by GAD1 and COMT,Pierpaoli,Joseph H. Callicott;Richard E. Straub;Stefano Marenco;Antonina A. Savostyanova;Jun Shen;Jan Willem Van Der Veen;Matthew Geramita;Bhaskar Kolachana;Eugenia Radulescu;Fengyu Zhang;Alan S. Barnett;Alexa Stern;Daniel R. Weinberger,2010-07-01,53,Neuropsychopharmacology,1708-1717,10.1038/npp.2010.35,20357758,77953594619,"('2-s2.0-77953594619', 'Pierpaoli')",Article,,https://api.elsevier.com/content/abstract/scopus_id/77953594619,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77953594619&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77953594619&origin=inward +Subjective socioeconomic status predicts human ventral striatal responses to social status information,Pierpaoli,Joseph W. Barter;M. Ryan Haynes;Caroline F. Zink;Martina Ly;Daniel R. Weinberger,2011-05-10,52,Current Biology,794-797,10.1016/j.cub.2011.03.050,21530264,79955664935,"('2-s2.0-79955664935', 'Pierpaoli')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/79955664935,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79955664935&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79955664935&origin=inward +Reproducibility of prefrontal γ-aminobutyric acid measurements with J-edited spectroscopy,nan,Stefano Marenco;Antonina A. Savostyanova;Jun Shen;Jan Willem van der Veen;Matthew Geramita;Alan S. Barnett;Daniel R. Weinberger,2011-11-01,59,NMR in Biomedicine,1089-1098,10.1002/nbm.1662,21290458,80051560326,"('2-s2.0-80051560326', nan)",Article,,https://api.elsevier.com/content/abstract/scopus_id/80051560326,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=80051560326&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=80051560326&origin=inward +Dissociating the effects of Sternberg working memory demands in prefrontal cortex,nan,Joseph H. Callicott;Brita Elvevåg;Giuseppe Blasi;Venkata S. Mattay;Mario Altamura;Alessandro Bertolino;Terry E. Goldberg;Daniel R. Weinberger,2007-02-28,50,Psychiatry Research - Neuroimaging,103-114,10.1016/j.pscychresns.2006.08.002,17292590,33847181739,"('2-s2.0-33847181739', nan)",Article,,https://api.elsevier.com/content/abstract/scopus_id/33847181739,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33847181739&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33847181739&origin=inward +Preferential Amygdala Reactivity to the Negative Assessment of Neutral Faces,nan,Ahmad R. Hariri;Guilna Alce;Giuseppe Blasi;Fabio Sambataro;Paolo Taurisano;Venkata S. Mattay;Saumitra Das;Alessandro Bertolino;Daniel R. Weinberger,2009-11-01,47,Biological Psychiatry,847-853,10.1016/j.biopsych.2009.06.017,19709644,70349754175,"('2-s2.0-70349754175', nan)",Article,,https://api.elsevier.com/content/abstract/scopus_id/70349754175,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=70349754175&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=70349754175&origin=inward +"The evolutionarily conserved G protein-coupled receptor SREB2/GPR85 influences brain size, behavior, and vulnerability to schizophrenia",nan,Shinji Takahashi;Hiroyuki Ishii;Shun Ichiro Matsumoto;Masayasu Yoshino;Nobuya Matsuoka;Kazuhiro Terai;Kiyoshi Furuichi;Robyn Honea;Andreas Meyer-Lindenberg;Hitoshi Matsushime;Daniel R. Weinberger;Jun Takasaki;Radha Krishna Vakkalanka;Miwako Shobo;Masazumi Kamohara;Hiroyuki Yokota;Masao Katoh;Lucas Kempf;Takeshi Sasayama;Shuji Morita;Michael F. Egan;Masato Kobori;Junko Yarimizu;Ayako Matsuo;Kristin K. Nicodemus;Mitsuyuki Matsumoto;Akira Miyake;Richard E. Straub;Joseph H. Callicott;Akihiko Fujikawa;Shintaro Nishimura;Stefano Marenco;Hideki Hiyama;Takatoshi Soga;Masashi Hiramoto;Masatoshi Yuri;Sosuke Miyoshi,2008-04-22,44,Proceedings of the National Academy of Sciences of the United States of America,6133-6138,10.1073/pnas.0710717105,18413613,43149103173,"('2-s2.0-43149103173', nan)",Article,,https://api.elsevier.com/content/abstract/scopus_id/43149103173,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=43149103173&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=43149103173&origin=inward +Effective connectivity of AKT1-mediated dopaminergic working memory networks and pharmacogenetics of anti-dopaminergic treatment,nan,Joseph H. Callicott;Hao Yang Tan;Jose A. Apud;Bhaskar Kolachana;Anthony G. Chen;Qiang Chen;Venkata S. Mattay;Daniel R. Weinberger,2012-01-01,44,Brain,1436-1445,10.1093/brain/aws068,22525159,84860641076,"('2-s2.0-84860641076', nan)",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/84860641076,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84860641076&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84860641076&origin=inward +Selective updating of working memory content modulates meso-cortico-striatal activity,nan,Bradley Zoltick;Fabio Sambataro;Venkata S. Mattay;Mario Altamura;Jennifer Iudicello;Vishnu P. Murty;Eugenia Radulescu;Terry E. Goldberg;Daniel R. Weinberger,2011-08-01,53,NeuroImage,1264-1272,10.1016/j.neuroimage.2011.05.006,21596142,79959697514,"('2-s2.0-79959697514', nan)",Article,,https://api.elsevier.com/content/abstract/scopus_id/79959697514,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79959697514&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79959697514&origin=inward +Catechol-O-Methyltransferase Valine158Methionine Polymorphism Modulates Brain Networks Underlying Working Memory Across Adulthood,nan,Jeff D. Reed;Joseph H. Callicott;Fabio Sambataro;Venkata S. Mattay;Saumitra Das;Vishnu P. Murty;Hao Yang Tan;Daniel R. Weinberger,2009-09-15,41,Biological Psychiatry,540-548,10.1016/j.biopsych.2009.04.014,19539269,68949175708,"('2-s2.0-68949175708', nan)",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/68949175708,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=68949175708&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=68949175708&origin=inward +Effects of the BDNF val 66 met polymorphism on white matter microstructure in healthy adults,nan,Heike Tost;Joey W. Trampush;Herve Lemaitre;Stefano Marenco;Tajvar Alam;Matthew Geramita;Christine Rebsch;Bhaskar Kolachana;Beth A. Verchinski;Dwight Dickinson;Alan S. Barnett;Daniel R. Weinberger,2013-02-01,41,Neuropsychopharmacology,525-532,10.1038/npp.2012.214,23132269,84872488798,"('2-s2.0-84872488798', nan)",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/84872488798,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84872488798&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84872488798&origin=inward +"Handedness, heritability, neurocognition and brain asymmetry in schizophrenia",nan,Marc S. Lener;Joseph P. Callicott;Brita Elvevåg;Thomas M. Hyde;Amy Deep-Soboslay;José A. Apud;Beth A. Verchinski;Daniel R. Weinberger,2010-01-01,38,Brain,3113-3122,10.1093/brain/awq160,20639549,77957667026,"('2-s2.0-77957667026', nan)",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/77957667026,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77957667026&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77957667026&origin=inward +fMRI evidence for functional epistasis between COMT and RGS4 [2],nan,V. S. Mattay;R. E. Straub;J. H. Callicott;D. R. Weinberger;H. Y. Tan;A. Meyer-Lindenberg;S. Sust;J. W. Buckholtz,2007-10-01,35,Molecular Psychiatry,893-895,10.1038/sj.mp.4002008,17895922,34748912359,"('2-s2.0-34748912359', nan)",Letter,,https://api.elsevier.com/content/abstract/scopus_id/34748912359,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=34748912359&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=34748912359&origin=inward +Impact of the Brain-Derived Neurotrophic Factor Val66Met Polymorphism on Levels of Hippocampal N-Acetyl-Aspartate Assessed by Magnetic Resonance Spectroscopic Imaging at 3 Tesla,nan,Aaron Goldman;Joseph H. Callicott;Stefano Marenco;Antonina A. Savostyanova;Venkata S. Mattay;Alexa J. Stern;Alan S. Barnett;Jan Willem C. van der Veen;Daniel R. Weinberger,2008-11-15,30,Biological Psychiatry,856-862,10.1016/j.biopsych.2008.07.009,18707679,54349085028,"('2-s2.0-54349085028', nan)",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/54349085028,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=54349085028&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=54349085028&origin=inward +Absence of regional brain volume change in schizophrenia associated with short-term atypical antipsychotic treatment,nan,Khary Carew;Robert K. McClure;Stacy Greeter;Grant Steen;Daniel R. Weinberger;Emily Maushauer,2008-01-01,30,Schizophrenia Research,29-39,10.1016/j.schres.2007.05.012,17976957,36849031770,"('2-s2.0-36849031770', nan)",Article,,https://api.elsevier.com/content/abstract/scopus_id/36849031770,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=36849031770&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=36849031770&origin=inward +Interactive effects of DAOA (G72) and catechol-O-methyltransferase on neurophysiology in prefrontal cortex,nan,Morgan J. Prust;Joseph H. Callicott;Daniel R. Weinberger;Fabio Sambataro;Hao Yang Tan;Venkata S. Mattay;Devon C. Nixon,2011-05-15,28,Biological Psychiatry,1006-1008,10.1016/j.biopsych.2010.10.031,21215384,79955424773,"('2-s2.0-79955424773', nan)",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/79955424773,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=79955424773&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=79955424773&origin=inward +Epistatic interactions of AKT1 on human medial temporal lobe biology and pharmacogenetic implications,nan,V. S. Mattay;J. H. Callicott;B. Kolachana;H. Y. Tan;F. Zhang;A. G. Chen;Q. Chen;D. R. Weinberger;J. Apud;B. Verchinski;L. B. Browne,2012-10-01,30,Molecular Psychiatry,1007-1016,10.1038/mp.2011.91,21788944,84866736870,"('2-s2.0-84866736870', nan)",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/84866736870,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84866736870&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84866736870&origin=inward +Differentiating allocation of resources and conflict detection within attentional control processing,nan,Roberta Rasetti;Brita Elvevåg;Giuseppe Blasi;Guilna Alce;Venkata S. Mattay;Alessandro Bertolino;Jessica Cohen;Brad Zoltick;Terry E. Goldberg;Daniel R. Weinberger,2007-01-01,29,European Journal of Neuroscience,594-602,10.1111/j.1460-9568.2007.05283.x,17284202,33847067567,"('2-s2.0-33847067567', nan)",Article,,https://api.elsevier.com/content/abstract/scopus_id/33847067567,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=33847067567&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=33847067567&origin=inward +Effects of indomethacin on cerebral blood flow at rest and during hypercapnia: An arterial spin tagging study in humans,nan,Bobbi K. Lewis;Frank Q. Ye;Joseph A. Frank;Keith S. St. Lawrence;Daniel R. Weinberger;Alan C. McLaughlin,2002-06-19,25,Journal of Magnetic Resonance Imaging,628-635,10.1002/jmri.10111,12112512,0036273090,"('2-s2.0-0036273090', nan)",Article,,https://api.elsevier.com/content/abstract/scopus_id/0036273090,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=0036273090&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=0036273090&origin=inward +Altered cerebral response during cognitive control: A potential indicator of genetic liability for schizophrenia,nan,Roberta Rasetti;Martin Safrin;Joseph H. Callicott;Giuseppe Blasi;Kristina Thurin;Fabio Sambataro;Venkata S. Mattay;Daniel R. Weinberger,2013-04-01,31,Neuropsychopharmacology,846-853,10.1038/npp.2012.250,23299932,84875227712,"('2-s2.0-84875227712', nan)",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/84875227712,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84875227712&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84875227712&origin=inward +Genetic association of ErbB4 and human cortical GABA levels in vivo,nan,Amanda J. Law;Stefano Marenco;Jun Shen;Jan Willem van der Veen;Matthew Geramita;Bhaskar Kolachana;Alan S. Barnett;Daniel R. Weinberger,2011-08-10,26,Journal of Neuroscience,11628-11632,10.1523/JNEUROSCI.1529-11.2011,21832192,80051567966,"('2-s2.0-80051567966', nan)",Article,,https://api.elsevier.com/content/abstract/scopus_id/80051567966,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=80051567966&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=80051567966&origin=inward +Nonlinear response of the anterior cingulate and prefrontal cortex in Schizophrenia as a function of variable attentional control,nan,Raffaella Romano;Teresa Popolizio;Giuseppe Blasi;Fabio Sambataro;Paolo Taurisano;Annabella Di Giorgio;Alessandro Bertolino;Marcello Nardini;Grazia Caforio;Leonardo Fazio;Apostolos Papazacharias;Valeria Latorre;Luciana Lobianco;Venkata S. Mattay;Daniel R. Weinberger,2010-04-01,24,Cerebral Cortex,837-845,10.1093/cercor/bhp146,19633177,77949398277,"('2-s2.0-77949398277', nan)",Article,,https://api.elsevier.com/content/abstract/scopus_id/77949398277,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77949398277&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77949398277&origin=inward +Enuresis as a premorbid developmental marker of schizophrenia,nan,Robyn A. Honea;Llewellyn B. Bigelow;Joseph H. Callicott;Andreas Meyer-Lindenberg;Thomas M. Hyde;Amy Deep-Soboslay;Michael F. Egan;Esther M. Emsellem;Bianca Iglesias;James M. Gold;Daniel R. Weinberger,2008-01-01,21,Brain,2489-2498,10.1093/brain/awn167,18669483,50849117836,"('2-s2.0-50849117836', nan)",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/50849117836,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=50849117836&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=50849117836&origin=inward +Normal aging modulates prefrontoparietal networks underlying multiple memory processes,nan,Martin Safrin;Joseph H. Callicott;Herve S. Lemaitre;Fabio Sambataro;Venkata S. Mattay;Sonya U. Steele;Saumitra B. Das;Daniel R. Weinberger,2012-12-01,18,European Journal of Neuroscience,3559-3567,10.1111/j.1460-9568.2012.08254.x,22909094,84870527066,"('2-s2.0-84870527066', nan)",Article,,https://api.elsevier.com/content/abstract/scopus_id/84870527066,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84870527066&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84870527066&origin=inward +Neurophysiological correlates of age-related changes in working memory updating,nan,Fabio Sambataro;Venkata S. Mattay;Saumitra Das;Vishnu P. Murty;Matthew R. Emery;Yunxia Tong;Jamie E. Podell;Terry E. Goldberg;Daniel R. Weinberger,2012-09-01,27,NeuroImage,2151-2160,10.1016/j.neuroimage.2012.05.066,22659476,84863767817,"('2-s2.0-84863767817', nan)",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/84863767817,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84863767817&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84863767817&origin=inward +Genetic variation in FGF20 modulates hippocampal biology,nan,Joel E. Kleinman;Richard E. Straub;Joseph H. Callicott;Ronald McKay;Herve Lemaitre;Fabio Sambataro;Beth Verchinski;Thomas M. Hyde;Raja Kittappa;Barbara K. Lipska;Venkata S. Mattay;Daniel R. Weinberger,2010-04-28,17,Journal of Neuroscience,5992-5997,10.1523/JNEUROSCI.5773-09.2010,20427658,77951663255,"('2-s2.0-77951663255', nan)",Article,,https://api.elsevier.com/content/abstract/scopus_id/77951663255,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77951663255&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77951663255&origin=inward +"No Effect of a Common Allelic Variant in the Reelin Gene on Intermediate Phenotype Measures of Brain Structure, Brain Function, and Gene Expression",nan,Heike Tost;Joel E. Kleinman;Joseph H. Callicott;Radhakrishna Vakkalanka;Herve Lemaitre;Stefano Marenco;Barbara K. Lipska;Venkata S. Mattay;Daniel R. Weinberger,2010-07-01,17,Biological Psychiatry,105-107,10.1016/j.biopsych.2010.02.023,20434133,77953683797,"('2-s2.0-77953683797', nan)",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/77953683797,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77953683797&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77953683797&origin=inward +Effects of ZNF804A on neurophysiologic measures of cognitive control,nan,V. S. Mattay;R. Rasetti;J. H. Callicott;D. R. Weinberger;Q. Chen;M. Safrin;F. Sambataro;K. Thurin,2013-08-01,13,Molecular Psychiatry,852-854,10.1038/mp.2012.134,23032874,84881180241,"('2-s2.0-84881180241', nan)",Letter,NIMH,https://api.elsevier.com/content/abstract/scopus_id/84881180241,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84881180241&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84881180241&origin=inward +In vivo NMR measures of NAA and the neurobiology of schizophrenia,nan,Stefano Marenco;Alessandro Bertolino;Daniel R. Weinberger,2006-01-01,10,Advances in Experimental Medicine and Biology,227-240,10.1007/0-387-30172-0_16,16802716,84934443886,"('2-s2.0-84934443886', nan)",Conference Paper,,https://api.elsevier.com/content/abstract/scopus_id/84934443886,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84934443886&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84934443886&origin=inward +Effect of schizophrenia risk-associated alleles in SREB2 (GPR85) on functional MRI phenotypes in healthy volunteers,nan,Mitsuyuki Matsumoto;Joseph H. Callicott;Richard E. Straub;Stefano Marenco;Fabio Sambataro;Eugenia Radulescu;Venkata S. Mattay;Daniel R. Weinberger,2013-01-01,9,Neuropsychopharmacology,341-349,10.1038/npp.2012.184,22968816,84871442058,"('2-s2.0-84871442058', nan)",Article,,https://api.elsevier.com/content/abstract/scopus_id/84871442058,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84871442058&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84871442058&origin=inward +Erratum: BNDF modulates normal human hippocampal ageing (Molecular Psychiatry (2009) 15 (116-118) (10.1038/mp.2009.64),nan,V. S. Mattay;H. S. Lemaitre;V. P. Murty;J. H. Callicott;S. Das;J. D. Reed;D. R. Weinberger;T. E. Goldberg;F. Sambataro,2010-04-01,0,Molecular Psychiatry,443,10.1038/mp.2010.16,,77950011532,"('2-s2.0-77950011532', nan)",Erratum,,https://api.elsevier.com/content/abstract/scopus_id/77950011532,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=77950011532&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=77950011532&origin=inward +Common genetic variants influence human subcortical brain structures,Nugent,D. Reese McKay;Christopher R.K. Ching;Andrew J. Schork;Aaron L. Goldman;Johanna Hass;Yuri Milaneschi;Girma Woldehawariat;Nicola J. Armstrong;Aiden Corvin;Natalie A. Royle;Alexander Teumer;Micael Andersson;Daniah Trabzuni;Jason L. Stein;Roberto Toro;Martina Papmeyer;David Ames;Tulio Guadalupe;Saud Alhusaini;Sylvane Desrivières;Qiang Chen;Joanne E. Curran;Bernd Kraemer;Shannon L. Risacher;David Hoehn;Derrek P. Hibar;Emma J. Rose;Manuel Mattheisen;Mar Matarin;Anouk Den Braber;Emma Sprooten;Marco P. Boks;Christine MacAre;Martine Hoogman;Adaikalavan Ramasamy;Marina M.H. Hakobjan;Sudheer Giddaluru;Philipp G. Sämann;Gabriel Cuellar-Partida;Christiane Wolf;Marjolein M.J. Van Donkelaar;Unn K. Haukvik;Michelle Luciano;Benjamin S. Aribisala;Allison C. Nugent;Oliver Grimm;Lachlan T. Strike;Benno Pütz;Li Shen;Sven Cichon;Marc M. Bohlken;Saskia S.L. Van Der Marel;Stefan Ehrlich;Lianne Schmaal;Lorna M. Lopez;Lars T. Westlye;Cecilie B. Hartberg;Anderson M. Winkler;Dalia Kasperaviciute;Kimm J.E. Van Hulzen;David C.M. Liewald;Marcel P. Zwiers;Alejandro Arias-Vasquez;Karen A. Mather;Janita Bralten;Loes M. Olde Loohuis;Melanie A. Carless;Manon Bernard;Kwangsik Nho;Tianye Jia;Angelien J.G.A.M. Heister;Sampath Arepalli;Jean Shin;Margaret Needham;Kristel R. Van Eijk;Katharina Wittfeld;Lucija Abramovic;M. Mallar Chakravarty;Kazima B. Bulayeva;Miguel E. Renteria;Neda Jahanshad;Sungeun Kim;Christopher D. Whelan;Andrew A. Brown;Avram J. Holmes;Alireza Salami;Phil H. Lee;Remco R.R. Makkinje;Michael Czisch;Roberto Roiz-Santiañez;Marieke Klein;Henry Brodaty;Amelia A. Assareh;Esther Walton;Mark E. Bastin;Lavinia Athanasiu;Laura Almasy;Marlies A.M. Naber;Raymond K. Walters;Deborah Janowitz,2015-04-09,400,Nature,224-229,10.1038/nature14101,25607358,84926395609,"('2-s2.0-84926395609', 'Nugent')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/84926395609,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84926395609&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84926395609&origin=inward +Anti-anhedonic effect of ketamine and its neural correlates in treatment-resistant bipolar depression,Nugent,R. Ameli;D. A. Luckenbaugh;J. P. Roiser;A. C. Nugent;N. Lally;C. A. Zarate,2014-01-01,109,Translational psychiatry,e469,10.1038/tp.2014.105,25313512,85006269731,"('2-s2.0-85006269731', 'Nugent')",Article,PHS,https://api.elsevier.com/content/abstract/scopus_id/85006269731,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85006269731&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85006269731&origin=inward +"Automated subcortical segmentation using FIRST: Test-retest reliability, interscanner reliability, and comparison to manual segmentation",Nugent,Carlos A. Zarate;Suzanne E. Wood;Wendy Bogers;Wayne C. Drevets;David A. Luckenbaugh;Allison C. Nugent,2013-09-01,75,Human Brain Mapping,2313-2329,10.1002/hbm.22068,22815187,84880559618,"('2-s2.0-84880559618', 'Nugent')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/84880559618,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84880559618&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84880559618&origin=inward +Common and distinct patterns of grey-matter volume alteration in major depression and bipolar disorder: Evidence from voxel-based meta-analysis,Nugent,Y. Cheng;N. Cardoner;D. J. Veltman;A. C. Nugent;D. Mataix-Cols;O. Gruber;A. H. Young;C. H. Fu;I. H. Gotlib;G. Salvadore;F. Amico;P. C.M.P. Koolschijn;A. M. McIntosh;J. T. O’Brien;M. J. Kempton;M. J. Kim;S. Selvaraj;S. Pezzoli;D. P. Dickstein;O. Abe;T. F.D. Farrow;C. de Azevedo Marques Périco;A. J. Thomas;G. Wagner;J. Radua;P. S. Sachdev;M. J. van Tol;E. Via;M. L. Phillips;D. Arnone;D. E. Job;T. M. Adams;T. Wise;N. van der Wee;G. S. Malhi;B. J. Ham;A. J. Cleare;A. C. Stanfield;J. H. Cole;T. Frodl,2017-10-01,152,Molecular Psychiatry,1455-1463,10.1038/mp.2016.72,27217146,84969804388,"('2-s2.0-84969804388', 'Nugent')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/84969804388,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84969804388&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84969804388&origin=inward +An investigation of amino-acid neurotransmitters as potential predictors of clinical improvement to ketamine in depression,Zarate,Carlos A. Zarate;Rodrigo MacHado-Vieira;Yan Zhang;Stefano Marenco;Giacomo Salvadore;Jun Shen;Wayne C. Drevets;Jan Willem Van Der Veen;Lobna A. Ibrahim;Jacqueline Baumann;David A. Luckenbaugh,2012-09-01,59,International Journal of Neuropsychopharmacology,1063-1072,10.1017/S1461145711001593,22040773,84864536412,"('2-s2.0-84864536412', 'Zarate')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84864536412,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84864536412&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84864536412&origin=inward +Neural correlates of rapid antidepressant response to ketamine in bipolar disorder,Nugent,Paul J. Carlson;Nancy Brutsche;Carlos A. Zarate;Peter Herscovitch;Wayne C. Drevets;David A. Luckenbaugh;Allison C. Nugent;Nancy Diazgranados;Lobna Ibrahim,2014-03-01,46,Bipolar Disorders,119-128,10.1111/bdi.12118,24103187,84896728934,"('2-s2.0-84896728934', 'Nugent')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/84896728934,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84896728934&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84896728934&origin=inward +Association between subcortical volumes and verbal memory in unmedicated depressed patients and healthy controls,Zarate,Maura L. Furey;Wayne C. Drevets;Arlener D. Turner;Allison C. Nugent;Carlos Zarate,2012-07-01,25,Neuropsychologia,2348-2355,10.1016/j.neuropsychologia.2012.06.003,22714007,84863866874,"('2-s2.0-84863866874', 'Zarate')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/84863866874,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84863866874&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84863866874&origin=inward +Group differences in MEG-ICA derived resting state networks: Application to major depressive disorder,Nugent,Richard Coppola;Carlos A. Zarate;Maura L. Furey;Stephen E. Robinson;Allison C. Nugent,2015-09-01,38,NeuroImage,1-12,10.1016/j.neuroimage.2015.05.051,26032890,84931268350,"('2-s2.0-84931268350', 'Nugent')",Article,NARSAD,https://api.elsevier.com/content/abstract/scopus_id/84931268350,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84931268350&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84931268350&origin=inward +Neural correlates of suicidal ideation and its reduction in depression,Nugent,Carlos A. Zarate;Maura L. Furey;David A. Luckenbaugh;Allison C. Nugent;Elizabeth D. Ballard;Níall Lally,2015-01-01,34,International Journal of Neuropsychopharmacology,,10.1093/ijnp/pyu069,25550331,84928492400,"('2-s2.0-84928492400', 'Nugent')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/84928492400,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84928492400&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84928492400&origin=inward +Reduced thalamic volumes in major depressive disorder,Nugent,Carlos Alberto Zarate;Rebecca Marie Davis;Allison Carol Nugent;Wayne Curtis Drevets,2013-09-30,29,Psychiatry Research - Neuroimaging,179-185,10.1016/j.pscychresns.2013.05.004,,84880739252,"('2-s2.0-84880739252', 'Nugent')",Article,NARSAD,https://api.elsevier.com/content/abstract/scopus_id/84880739252,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84880739252&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84880739252&origin=inward +Shank3 as a potential biomarker of antidepressant response to ketamine and its neural correlates in bipolar depression,Nugent,Carlos A. Zarate;Rodrigo Machado-Vieira;Nada Lukkahati;David A. Luckenbaugh;Robin Ortiz;Allison C. Nugent;Mark J. Niciu;Leorey N. Saligan,2015-02-01,19,Journal of Affective Disorders,307-311,10.1016/j.jad.2014.09.015,25451430,84908425862,"('2-s2.0-84908425862', 'Nugent')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/84908425862,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84908425862&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84908425862&origin=inward +"Reliability of 7T 1H-MRS measured human prefrontal cortex glutamate, glutamine, and glutathione signals using an adapted echo time optimized PRESS sequence: A between- and within-sessions investigation",Nugent,Erica M. Richards;Carlos A. Zarate;Jonathan P. Roiser;Li An;Dipavo Banerjee;Jun Shen;David A. Luckenbaugh;Allison C. Nugent;Níall Lally;Mark J. Niciu,2016-01-01,16,Journal of Magnetic Resonance Imaging,88-98,10.1002/jmri.24970,26059603,84955757442,"('2-s2.0-84955757442', 'Nugent')",Article,NARSAD,https://api.elsevier.com/content/abstract/scopus_id/84955757442,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84955757442&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84955757442&origin=inward +Preliminary differences in resting state MEG functional connectivity pre- and post-ketamine in major depressive disorder,Nugent,Richard Coppola;Carlos A. Zarate;Stephen E. Robinson;Allison C. Nugent,2016-08-30,20,Psychiatry Research - Neuroimaging,56-66,10.1016/j.pscychresns.2016.06.006,27362845,84976347116,"('2-s2.0-84976347116', 'Nugent')",Article,NARSAD,https://api.elsevier.com/content/abstract/scopus_id/84976347116,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84976347116&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84976347116&origin=inward +Amygdala response to explicit sad face stimuli at baseline predicts antidepressant treatment response to scopolamine in major depressive disorder,Nugent,Carlos A. Zarate;Ashish Khanna;Maura L. Furey;Wayne C. Drevets;Allison C. Nugent;Joanna Szczepanik,2016-08-30,11,Psychiatry Research - Neuroimaging,67-73,10.1016/j.pscychresns.2016.06.005,27366831,84977098340,"('2-s2.0-84977098340', 'Nugent')",Article,NARSAD,https://api.elsevier.com/content/abstract/scopus_id/84977098340,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84977098340&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84977098340&origin=inward +Pretreatment differences in BOLD response to emotional faces correlate with Antidepress ant response to scopolamine,Nugent,Carlos A. Zarate;Ashish Khanna;Maura L. Furey;Wayne C. Drevets;Allison Nugent;Joanna Szczepanik,2015-06-01,11,International Journal of Neuropsychopharmacology,1-10,10.1093/ijnp/pyv028,25820840,84931270575,"('2-s2.0-84931270575', 'Nugent')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84931270575,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84931270575&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84931270575&origin=inward +Changes in functional organization and white matter integrity in the connectome in Parkinson's disease,nan,Peter M. Lauro;Silvina G. Horovitz;Codrin Lungu;Sule Tinaz;Pritha Ghosh,2017-01-01,15,NeuroImage: Clinical,395-404,10.1016/j.nicl.2016.12.019,28116232,85009097803,"('2-s2.0-85009097803', nan)",Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85009097803,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85009097803&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85009097803&origin=inward +Impaired self-agency in functional movement disorders,Hallett,Carine W. Maurer;Silvina G. Horovitz;Rezvan Ameli;Steven A. Epstein;Mark Hallett;Kathrin LaFaver,2016-08-09,51,Neurology,564-570,10.1212/WNL.0000000000002940,27385746,84981249367,"('2-s2.0-84981249367', 'Hallett')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84981249367,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84981249367&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84981249367&origin=inward +Disrupted expected value signaling in youth with disruptive behavior disorders to environmental reinforcers,Pine,Stephen Sinclair;R. James Blair;Julia C. Schechter;Stuart F. White;Katherine A. Fowler;Catherine M. Majestic;Daniel S. Pine,2014-01-01,28,Journal of the American Academy of Child and Adolescent Psychiatry,579-588.e9,10.1016/j.jaac.2013.12.023,24745957,84898813425,"('2-s2.0-84898813425', 'Pine')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/84898813425,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84898813425&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84898813425&origin=inward +Neural correlates of suicidal ideation and its reduction in depression,Nugent,Carlos A. Zarate;Maura L. Furey;David A. Luckenbaugh;Allison C. Nugent;Elizabeth D. Ballard;Níall Lally,2015-01-01,34,International Journal of Neuropsychopharmacology,,10.1093/ijnp/pyu069,25550331,84928492400,"('2-s2.0-84928492400', 'Nugent')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/84928492400,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84928492400&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84928492400&origin=inward +An fMRI study of emotional face encoding in youth at risk for bipolar disorder,Pine,A. K. Olsavsky;B. L. Bones;R. R. Kayser;M. A. Brotman;W. L. Tseng;S. J. Fromm;D. S. Pine;E. Leibenluft,2015-01-01,21,European Psychiatry,94-98,10.1016/j.eurpsy.2014.05.004,25172156,84920938450,"('2-s2.0-84920938450', 'Pine')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/84920938450,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84920938450&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84920938450&origin=inward +Cortical thickness change in autism during early childhood,Thurm,Cristan Farmer;Armin Raznahan;Jay Giedd;Audrey Thurm;Elizabeth Smith;Susan Swedo;Deanna Greenstein,2016-07-01,20,Human Brain Mapping,2616-2629,10.1002/hbm.23195,27061356,84974667659,"('2-s2.0-84974667659', 'Thurm')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/84974667659,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84974667659&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84974667659&origin=inward +Pretreatment differences in BOLD response to emotional faces correlate with Antidepress ant response to scopolamine,Nugent,Carlos A. Zarate;Ashish Khanna;Maura L. Furey;Wayne C. Drevets;Allison Nugent;Joanna Szczepanik,2015-06-01,11,International Journal of Neuropsychopharmacology,1-10,10.1093/ijnp/pyv028,25820840,84931270575,"('2-s2.0-84931270575', 'Nugent')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84931270575,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84931270575&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84931270575&origin=inward +The diffusion tensor imaging (DTI) component of the NIH MRI study of normal brain development (PedsDTI),Pierpaoli,Robert C. McKinstry;Dah Jyuu Wang;Michael J. Rivkin;Lindsay Walker;M. Okan Irfanoglu;Lin Ching Chang;Judith Rumsey;James McCracken;Carlo Pierpaoli;Amritha Nayak;Kelly N. Botteron,2016-01-01,23,NeuroImage,1125-1130,10.1016/j.neuroimage.2015.05.083,26048622,84949323637,"('2-s2.0-84949323637', 'Pierpaoli')",Article,NICHD,https://api.elsevier.com/content/abstract/scopus_id/84949323637,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84949323637&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84949323637&origin=inward +Heterogeneity of Multiple Sclerosis White Matter Lesions Detected With T2*-Weighted Imaging at 7.0 Tesla,Duyn,Francesca Bagnato;Joan M. Ohayon;Bing Yao;Vasiliki N. Ikonomidou;Fredric K. Cantor;Jeff Duyn,2015-01-01,10,Journal of Neuroimaging,799-806,10.1111/jon.12193,25657078,84939254120,"('2-s2.0-84939254120', 'Duyn')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84939254120,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84939254120&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84939254120&origin=inward +A torque balance measurement of anisotropy of the magnetic susceptibility in white matter,Duyn,Jeff H. Duyn;Hendrik Mandelkow;Peter Van Gelderen;Jacco A. De Zwart,2015-01-01,15,Magnetic Resonance in Medicine,1388-1396,10.1002/mrm.25524,25399830,84945441349,"('2-s2.0-84945441349', 'Duyn')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84945441349,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84945441349&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84945441349&origin=inward +Neural activation during anticipated peer evaluation and laboratory meal intake in overweight girls with and without loss of control eating,Pine,Eric E. Nelson;Lauren B. Shomaker;Jack A. Yanovski;Andrew P. Demidowich;Louise Hannallah;Sheila M. Brady;Sara E. Field;Anna Vannucci;Scott G. Engel;Johanna M. Jarcho;Daniel S. Pine;Amber B. Courville;Marian Tanofsky-Kraff;Adrienne L. Romer,2015-03-01,18,NeuroImage,343-353,10.1016/j.neuroimage.2014.12.054,25550068,84922258357,"('2-s2.0-84922258357', 'Pine')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/84922258357,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84922258357&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84922258357&origin=inward +Role of contingency in striatal response to incentive in adolescents with anxiety,Pine,Eric E. Nelson;Amanda E. Guyer;Daniel S. Pine;Brenda E. Benson;Monique Ernst,2014-01-01,13,"Cognitive, Affective and Behavioral Neuroscience",155-168,10.3758/s13415-014-0307-6,25183555,84922983681,"('2-s2.0-84922983681', 'Pine')",Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/84922983681,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84922983681&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84922983681&origin=inward +Hippocampal volume change relates to clinical outcome in childhood-onset schizophrenia,Rapoport,J. L. Rapoport;P. Gochman;L. A. Friedman;N. Gogtay;A. A. Anvari;D. Greenstein,2015-01-01,5,Psychological Medicine,2667-2674,10.1017/S0033291715000677,25936396,84938738172,"('2-s2.0-84938738172', 'Rapoport')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84938738172,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84938738172&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84938738172&origin=inward +Intersubject variability in fearful face processing: The linkbetween behavior and neural activation,Ungerleider,Tracy J. Doty;Martin Ingvar;Shruti Japee;Leslie G. Ungerleider,2014-01-01,11,"Cognitive, Affective and Behavioral Neuroscience",1438-1453,10.3758/s13415-014-0290-y,24841078,84939896444,"('2-s2.0-84939896444', 'Ungerleider')",Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/84939896444,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84939896444&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84939896444&origin=inward +"Reliability of 7T 1H-MRS measured human prefrontal cortex glutamate, glutamine, and glutathione signals using an adapted echo time optimized PRESS sequence: A between- and within-sessions investigation",Nugent,Erica M. Richards;Carlos A. Zarate;Jonathan P. Roiser;Li An;Dipavo Banerjee;Jun Shen;David A. Luckenbaugh;Allison C. Nugent;Níall Lally;Mark J. Niciu,2016-01-01,16,Journal of Magnetic Resonance Imaging,88-98,10.1002/jmri.24970,26059603,84955757442,"('2-s2.0-84955757442', 'Nugent')",Article,NARSAD,https://api.elsevier.com/content/abstract/scopus_id/84955757442,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84955757442&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84955757442&origin=inward +Subtle in-scanner motion biases automated measurement of brain anatomy from in vivo MRI,Raznahan,Aaron Alexander-Bloch;Michael Stockman;Francois Lalonde;Armin Raznahan;Liv Clasen;Jay Giedd;Lisa Ronan,2016-07-01,58,Human Brain Mapping,2385-2397,10.1002/hbm.23180,27004471,84974711219,"('2-s2.0-84974711219', 'Raznahan')",Article,,https://api.elsevier.com/content/abstract/scopus_id/84974711219,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=84974711219&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=84974711219&origin=inward diff --git a/data/interim/2020_new_papers.csv b/data/interim/2020_new_papers.csv new file mode 100644 index 0000000..d27303f --- /dev/null +++ b/data/interim/2020_new_papers.csv @@ -0,0 +1,619 @@ +Title,Searched PI,Authors (scrambled),Date,Cited-By Count,Source Title,Page Range,DOI,PubMed ID,Scopus ID,EID,Type,Funding Agency,Abstract Link,Scopus Link,Cited-By Link +Multiple Brain Networks Mediating Stimulus-Pain Relationships in Humans,Atlas,Martin A. Lindquist;Lauren Y. Atlas;Stephan Geuter;Leonie Koban;Liane Schmidt;Tor D. Wager;Anjali Krishnan;Mathieu Roy;Elizabeth A. Reynolds Losin,2020-06-01,0,"Cerebral cortex (New York, N.Y. : 1991)",4204-4219,10.1093/cercor/bhaa048,32219311.0,85085904590,2-s2.0-85085904590,Article,,https://api.elsevier.com/content/abstract/scopus_id/85085904590,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85085904590&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85085904590&origin=inward +Pain-Evoked Reorganization in Functional Brain Networks,Atlas,Bin Hu;Marieke Jepma;Pavel Goldstein;Lauren Y. Atlas;Weihao Zheng;Zhijun Yao;Liane Schmidt;Choong Wan Woo;Tor D. Wager;Anjali Krishnan;Mathieu Roy,2020-05-14,0,Cerebral Cortex,2804-2822,10.1093/cercor/bhz276,31813959.0,85084961318,2-s2.0-85084961318,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85084961318,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85084961318&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85084961318&origin=inward +Flawed methodology undermines conclusions about opioid-induced pleasure: implications for psychopharmacology,Atlas,Lauren Y. Atlas;Siri Leknes,2020-03-01,1,British Journal of Anaesthesia,e29-e33,10.1016/j.bja.2019.10.006,31753290.0,85079089444,2-s2.0-85079089444,Letter,ERC,https://api.elsevier.com/content/abstract/scopus_id/85079089444,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85079089444&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85079089444&origin=inward +The Confidence Database,Atlas,Marcin Koculak;Jiwon Yeon;Marios G. Philiastides;Julian Matthews;Troy C. Dildine;Justin Kantner;Liang Luo;Futing Zou;Xinming Xu;Gerit Pfuhl;Marine Hainguerlot;Vincent de Gardelle;Kobe Desender;Michael Pereira;Manuel Rausch;Başak Akdoğan;William T. Adler;Shuo Wang;Zuzanna Skóra;Peter D. Kvam;Marta Siedlecka;Audrey Mazancieux;Karen Davranche;Jérôme Sackur;Xiao Hu;Indrit Bègue;Matt Jaquiery;Denis O’Hora;Qun Ye;Gabriel Reyes;Medha Shekhar;Kit S. Double;Alan L.F. Lee;Ariel Zylberberg;Chien Ming Lo;Nadia Haddara;Lauren Y. Atlas;Fernanda Prieto;Antonio Martin;Torin K. Clark;Rachel N. Denison;Tricia X.F. Seow;Brian Maniscalco;Ji Won Bang;Andrey Chetverikov;David Soto;Iñaki Iturrate;Gabriel Weindel;Mahiko Konishi;Christina Koß;Thibault Gajdos;Maxine T. Sherman;Maël Lebreton;Sai Sun;Karolina M. Lempert;Elisa Filevich;Daniel M. Merfeld;Christoph T. Weidemann;Marion Rouault;Fuat Balcı;Kaitlyn Fallow;Damian P. Birney;Polina Arbuzova;Nathan Faivre;Dobromir Rahnev;Tzu Yu Hsu;Eleanor R. Palser;Joshua Calder-Travis;Borysław Paulewicz;Sabina Gherman;Sébastien Massoni;Jeroen J.A. van Boxtel;Samuel Recht;Saeedeh Sadeghi;Michał Wierzchoń;Chen Song;Timothy F. Brady;Sze Chai Kwok;Regan M. Gallagher;Caroline Peters;David Aguilar-Lleyda;Yalçın A. Duyan;Jason Samaha,2020-03-01,1,Nature Human Behaviour,317-325,10.1038/s41562-019-0813-1,32015487.0,85079153540,2-s2.0-85079153540,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85079153540,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85079153540&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85079153540&origin=inward +"Distinguishing pain from nociception, salience, and arousal: How autonomic nervous system activity can improve neuroimaging tests of specificity",Atlas,Lauren Y. Atlas;In Seon Lee;Elizabeth A. Necka,2020-01-01,1,NeuroImage,,10.1016/j.neuroimage.2019.116254,31604122.0,85073474430,2-s2.0-85073474430,Article,NCCIH,https://api.elsevier.com/content/abstract/scopus_id/85073474430,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85073474430&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85073474430&origin=inward +The need for diversity in research on facial expressions of pain,Atlas,Lauren Y. Atlas;Troy C. Dildine,2019-08-01,1,Pain,1901-1902,10.1097/j.pain.0000000000001593,31335658.0,85070462787,2-s2.0-85070462787,Letter,,https://api.elsevier.com/content/abstract/scopus_id/85070462787,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85070462787&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85070462787&origin=inward +Reply to Zaman et al.,Atlas,Lauren Y. Atlas;Dominik Mischkowski,2019-06-01,0,Pain,1485-1486,10.1097/j.pain.0000000000001572,31107419.0,85066951542,2-s2.0-85066951542,Letter,NIH,https://api.elsevier.com/content/abstract/scopus_id/85066951542,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85066951542&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85066951542&origin=inward +Pain or nociception? Subjective experience mediates the effects of acute noxious heat on autonomic responses - Corrected and republished,Atlas,Dominik Mischkowski;Troy C. Dildine;Lauren Y. Atlas;Esther E. Palacios-Barrios;Lauren Banker,2019-06-01,3,Pain,1469-1481,10.1097/j.pain.0000000000001573,31107415.0,85066955792,2-s2.0-85066955792,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85066955792,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85066955792&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85066955792&origin=inward +"How instructions shape aversive learning: higher order knowledge, reversal learning, and the role of the amygdala",Atlas,Lauren Y. Atlas,2019-04-01,5,Current Opinion in Behavioral Sciences,121-129,10.1016/j.cobeha.2018.12.008,,85060104256,2-s2.0-85060104256,Review,NCCIH,https://api.elsevier.com/content/abstract/scopus_id/85060104256,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85060104256&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85060104256&origin=inward +Is placebo analgesia for heat pain a sensory effect? An exploratory study on minimizing the influence of response bias,Atlas,Claire M. Laubacher;Lauren Y. Atlas;Emily A. Richards;Matthew Grossman;Laura K. Case;M. Catherine Bushnell;Scott Parker,2019-01-01,0,Neurobiology of Pain,,10.1016/j.ynpai.2018.09.001,,85064096377,2-s2.0-85064096377,Article,NCCIH,https://api.elsevier.com/content/abstract/scopus_id/85064096377,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85064096377&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85064096377&origin=inward +Large expert-curated database for benchmarking document similarity detection in biomedical literature search,Atlas,Elvis Martis;Hyemin Han;Olivier Pourret;Thilo Muth;Yael Gelfer;Cong Cong Yin;Brian P. Dalrymple;Kok H. Tan;Henrik Nilsson;Konstantinos Voskarides;Vincent D. Costa;Alan W.C. Liew;Simon S. Smith;David Lalaouna;Junpeng Zhang;Francesco Marinello;Oliver Bosch;William Bradshaw;Gabriel M.F. Almeida;Long Yang;Brooke A. Ammerman;Chongxing Zhang;Antoine Danchin;Pawel Miotla;Barthelemy Diouf;Adrian Meule;Natalia Echeverría;Ken Honjo;Grace Ng;Mohamed A. El-Esawi;Paul Perco;Zhongheng Zhang;Hannes Klump;Zarrin Basharat;Felix J. Hüttner;Brett Nixon;Luca G. Campana;Said E.D.R. Amer;Tuomas Eerola;Arun R. Chandrasekaran;Páraic O. Cuív;Aik Choon Tan;Dominik G. Grimm;Lukasz Kurgan;Neil Tuttle;Nicholas A. Kurniawan;Thomas Liehr;Robert Siebers;Hari P. Devkota;Ruud P.M. Dings;Sebastiaan Werten;Marco Cascella;Peter Brenneisen;David J. Harvey;Pragashnie Govender;Felix Ehret;James A.L. Brown;Christopher McCrum;Evangelos Evangelou;Nitin Kumar;Karen A. Boehme;Sandeep C. Sabnis;Olivier Terrier;Andy W.K. Yeung;Wenfeng Xia;Darius Widera;Raman Dhariwal;Oliver Blanck;Taeok Bae;Xiaolei Zhang;Zhanwu Dai;Koichi Ogami;Marcus D. Hartmann;Martin S. Staege;Mark J. van Raaij;Daniel Prieto;Farid Rahimi;Zuzanna Bukowy-Bieryllo;Marco Tofani;Ene Choo Tan;Oliver J. Gurney-Champion;Santhilal Subhash;Swapna V. Daulatabad;Michael S. Engel;Radu Tamaian;Joonas H. Kauppila;Carlos O. Sorzano;Paul A. Cobine;Mark Bleackley;Yaoqi Zhou;Walter Fierz;Giuseppe Riva;Hannes Sallmon;Fabian Filipp;Douglas P. Gladue;Carl S. Goodyear;Peter Brown;Johan Bengtsson-Palme;Tomislav Cernava;Willy A. Flegel,2019-01-01,0,Database,1-67,10.1093/database/baz085,,85082592913,2-s2.0-85082592913,Article,,https://api.elsevier.com/content/abstract/scopus_id/85082592913,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85082592913&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85082592913&origin=inward +Intention to learn modulates the impact of reward and punishment on sequence learning,Baker,Chris I. Baker;Adam Steel;Charlotte J. Stagg,2020-12-01,0,Scientific Reports,,10.1038/s41598-020-65853-w,32483289.0,85085854297,2-s2.0-85085854297,Article,WT,https://api.elsevier.com/content/abstract/scopus_id/85085854297,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85085854297&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85085854297&origin=inward +The Human Posterior Superior Temporal Sulcus Samples Visual Space Differently From Other Face-Selective Regions,Baker,Amy Pilkington;David Pitcher;Leslie G. Ungerleider;Lionel Rauth;Chris Baker;Dwight J. Kravitz,2020-03-21,3,"Cerebral cortex (New York, N.Y. : 1991)",778-785,10.1093/cercor/bhz125,31264693.0,85074469445,2-s2.0-85074469445,Article,,https://api.elsevier.com/content/abstract/scopus_id/85074469445,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85074469445&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85074469445&origin=inward +Boundaries Extend and Contract in Scene Memory Depending on Image Properties,Baker,Wilma A. Bainbridge;Chris I. Baker,2020-02-03,1,Current Biology,537-543.e3,10.1016/j.cub.2019.12.004,31983637.0,85078482896,2-s2.0-85078482896,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85078482896,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85078482896&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85078482896&origin=inward +"Recent advances in understanding object recognition in the human brain: Deep neural networks, temporal dynamics, and context",Baker,Chris Baker;Susan G. Wardle,2020-01-01,0,F1000Research,,10.12688/f1000research.22296.1,32566136.0,85086870175,2-s2.0-85086870175,Review,,https://api.elsevier.com/content/abstract/scopus_id/85086870175,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85086870175&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85086870175&origin=inward +Memorability of words in arbitrary verbal associations modulates memory retrieval in the anterior temporal lobe,Baker,Weizhen Xie;Kareem A. Zaghloul;Wilma A. Bainbridge;Chris I. Baker;Sara K. Inati,2020-01-01,0,Nature Human Behaviour,,10.1038/s41562-020-0901-2,,85087025590,2-s2.0-85087025590,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85087025590,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85087025590&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85087025590&origin=inward +Drawings of real-world scenes during free recall reveal detailed object and spatial information in memory,Baker,Wilma A. Bainbridge;Chris I. Baker;Elizabeth H. Hall,2019-12-01,8,Nature Communications,,10.1038/s41467-018-07830-6,30602785.0,85059503402,2-s2.0-85059503402,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85059503402,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85059503402&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85059503402&origin=inward +Memorability of photographs in subjective cognitive decline and mild cognitive impairment: Implications for cognitive assessment,Baker,Laura Dobisch;Arturo Cardenas-Blanco;Frederic Brosseron;Klaus Fliessbach;Janna Rudolph;Hartmut Schütze;Christoph Laske;Michael Heneka;Anja Schneider;Annika Spottke;David Berron;Coraline Metzger;Katharina Buerger;Frank Jessen;Michael Wagner;Josef Priller;Eike Jakob Spruth;Claudia Bartels;Ingo Kilimann;Chris I. Baker;Martina Buchmann;Daniel Janowitz;Steffen Wolfsgruber;Daniel Bittner;Emrah Düzel;Slawek Altenstein;Siyao Li;Wilma A. Bainbridge;Dominik Diesing;Wenzel Glanz;Barbara Kofler;Jens Wiltfang;Stefan Teipel;Oliver Peters,2019-12-01,2,"Alzheimer's and Dementia: Diagnosis, Assessment and Disease Monitoring",610-618,10.1016/j.dadm.2019.07.005,,85071610785,2-s2.0-85071610785,Article,DZNE,https://api.elsevier.com/content/abstract/scopus_id/85071610785,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85071610785&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85071610785&origin=inward +Scene Perception in the Human Brain,Baker,Chris I. Baker;Russell A. Epstein,2019-09-15,7,Annual Review of Vision Science,373-397,10.1146/annurev-vision-091718-014809,31226012.0,85072266392,2-s2.0-85072266392,Review,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85072266392,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85072266392&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85072266392&origin=inward +Differential Representations of Perceived and Retrieved Visual Information in Hippocampus and Cortex,Baker,Chris I. Baker;Sue Hyun Lee;Dwight J. Kravitz,2019-09-13,2,Cerebral Cortex,4452-4461,10.1093/cercor/bhy325,30590463.0,85072026868,2-s2.0-85072026868,Article,NARSAD,https://api.elsevier.com/content/abstract/scopus_id/85072026868,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85072026868&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85072026868&origin=inward +Distinct subdivisions of human medial parietal cortex support recollection of people and places,Baker,Adrian W. Gilmore;Chris I. Baker;Alexis Kidder;Edward H. Silson;Adam Steel,2019-07-01,4,eLife,,10.7554/eLife.47391,31305238.0,85070789103,2-s2.0-85070789103,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85070789103,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85070789103&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85070789103&origin=inward +Revealing interpretable object representations from human behavior,Baker,Chris I. Baker;Martin N. Hebart;Charles Y. Zheng;Francisco Pereira,2019-01-01,2,"7th International Conference on Learning Representations, ICLR 2019",,,,85083951659,2-s2.0-85083951659,Conference Paper,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85083951659,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85083951659&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85083951659&origin=inward +"THINGS: A database of 1,854 object concepts and more than 26,000 naturalistic object images",Baker,Chris I. Baker;Anna Corriveau;Adam H. Dickter;Caitlin Van Wicklin;Wan Y. Kwok;Alexis Kidder;Martin N. Hebart,2019-01-01,1,PLoS ONE,,10.1371/journal.pone.0223792,31613926.0,85073476140,2-s2.0-85073476140,Article,,https://api.elsevier.com/content/abstract/scopus_id/85073476140,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85073476140&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85073476140&origin=inward +"Untangling the relatedness among correlations, part III: Inter-subject correlation analysis through Bayesian multilevel modeling for naturalistic scanning",Bandettini,Peter A. Bandettini;Xianggui Qu;Peter J. Molfese;Paul A. Taylor;Robert W. Cox;Emily S. Finn;Gang Chen,2020-08-01,2,NeuroImage,,10.1016/j.neuroimage.2019.116474,31884057.0,85077746474,2-s2.0-85077746474,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85077746474,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85077746474&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85077746474&origin=inward +Idiosynchrony: From shared responses to individual differences during naturalistic neuroimaging,Bandettini,Peter A. Bandettini;Peter J. Molfese;Dylan Nielson;Emily S. Finn;Arman Y. Khojandi;Daniel A. Handwerker;Enrico Glerean,2020-07-15,1,NeuroImage,,10.1016/j.neuroimage.2020.116828,32276065.0,85083213520,2-s2.0-85083213520,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85083213520,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85083213520&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85083213520&origin=inward +Fast detection and reduction of local transient artifacts in resting-state fMRI,Bandettini,Peter A. Bandettini;Hang Joon Jo;Richard C. Reynolds;Robert W. Cox;Irena Balzekas;Stephen J. Gotts;Alex Martin;Daniel A. Handwerker,2020-05-01,0,Computers in Biology and Medicine,,10.1016/j.compbiomed.2020.103742,32421647.0,85083039076,2-s2.0-85083039076,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85083039076,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85083039076&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85083039076&origin=inward +Sub-millimeter fMRI reveals multiple topographical digit representations that form action maps in human motor cortex,Bandettini,Sriranga Kashyap;Laurentius Huber;Dimo Ivanov;Peter A. Bandettini;Emily S. Finn;Natalia Petridou;Daniel R. Glen;Sean Marrett;Daniel A. Handwerker;Marlene Bönstrup;Benedikt A. Poser;Jozien Goense,2020-03-01,2,NeuroImage,,10.1016/j.neuroimage.2019.116463,31862526.0,85076716317,2-s2.0-85076716317,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85076716317,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85076716317&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85076716317&origin=inward +Integrated VASO and perfusion contrast: A new tool for laminar functional MRI,Bandettini,Peter A. Bandettini;Larentius Huber;Linqing Li;Yuhui Chai;Benedikt A. Poser,2020-02-15,1,NeuroImage,,10.1016/j.neuroimage.2019.116358,31740341.0,85075905478,2-s2.0-85075905478,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85075905478,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85075905478&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85075905478&origin=inward +Layer-dependent functional connectivity methods,Bandettini,Kamil Uludag;Laurentius Huber;Tony Stöcker;Seong Gi Kim;Peter A. Bandettini;Emily S. Finn;Yuhui Chai;Rüdiger Stirnberg;Rainer Goebel;Sean Marrett;So Hyun Han;Benedikt A. Poser,2020-01-01,0,Progress in Neurobiology,,10.1016/j.pneurobio.2020.101835,32512115.0,85086426599,2-s2.0-85086426599,Review,IBS,https://api.elsevier.com/content/abstract/scopus_id/85086426599,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85086426599&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85086426599&origin=inward +A deconvolution algorithm for multi-echo functional MRI: Multi-echo Sparse Paradigm Free Mapping,Bandettini,Peter A. Bandettini;Puja Panwar;Javier Gonzalez-Castillo;Stefano Moia;César Caballero-Gaudes,2019-11-15,1,NeuroImage,,10.1016/j.neuroimage.2019.116081,31419613.0,85070906384,2-s2.0-85070906384,Article,MSCA,https://api.elsevier.com/content/abstract/scopus_id/85070906384,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85070906384&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85070906384&origin=inward +Imaging the spontaneous flow of thought: Distinct periods of cognition contribute to dynamic functional connectivity during rest,Bandettini,Peter A. Bandettini;Javier Gonzalez-Castillo;César Caballero-Gaudes;Daniel A. Handwerker;Natasha Topolski;Francisco Pereira,2019-11-15,1,NeuroImage,,10.1016/j.neuroimage.2019.116129,31461679.0,85071438369,2-s2.0-85071438369,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85071438369,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85071438369&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85071438369&origin=inward +Layer-dependent activity in human prefrontal cortex during working memory,Bandettini,Laurentius Huber;Peter A. Bandettini;Peter J. Molfese;Emily S. Finn;David C. Jangraw,2019-10-01,5,Nature Neuroscience,1687-1695,10.1038/s41593-019-0487-z,31551596.0,85072613366,2-s2.0-85072613366,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85072613366,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85072613366&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85072613366&origin=inward +Composite Hydrogel Model of Cartilage Predicts Its Load-Bearing Ability,Basser,Ferenc Horkay;Peter J. Basser,2020-12-01,0,Scientific Reports,,10.1038/s41598-020-64917-1,32415132.0,85084787739,2-s2.0-85084787739,Article,NSF,https://api.elsevier.com/content/abstract/scopus_id/85084787739,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85084787739&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85084787739&origin=inward +Retaining information from multidimensional correlation MRI using a spectral regions of interest generator,Basser,Daniel P. Perl;Dan Benjamini;Michal E. Komlosh;Kristofor Pas;Peter J. Basser,2020-12-01,1,Scientific Reports,,10.1038/s41598-020-60092-5,32094400.0,85079806695,2-s2.0-85079806695,Article,NICHD,https://api.elsevier.com/content/abstract/scopus_id/85079806695,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85079806695&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85079806695&origin=inward +Feasibility of filter-exchange imaging (FEXI) in measuring different exchange processes in human brain,Basser,Chaoliang Sun;Ruiliang Bai;Peter Basser;Hui Liang;Zhaoqing Li;Yi Cheng Hsu,2020-10-01,1,NeuroImage,,10.1016/j.neuroimage.2020.117039,32534125.0,85086676983,2-s2.0-85086676983,Article,NICHD,https://api.elsevier.com/content/abstract/scopus_id/85086676983,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85086676983&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85086676983&origin=inward +Real-time measurement of diffusion exchange rate in biological tissue,Basser,Melanie Falgairolle;Dan Benjamini;Rea Ravin;Nathan H. Williamson;Peter J. Basser;Michael J. O'Donovan;Teddy X. Cai,2020-08-01,0,Journal of Magnetic Resonance,,10.1016/j.jmr.2020.106782,,85087884082,2-s2.0-85087884082,Article,NIGMS,https://api.elsevier.com/content/abstract/scopus_id/85087884082,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85087884082&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85087884082&origin=inward +Measuring conduction velocity distributions in peripheral nerves using neurophysiological techniques,Basser,Sinisa Pajevic;Felipe Vial;Giorgio Leodori;Alexandru V. Avram;Mark Hallett;Peter J. Basser;Zhen Ni,2020-07-01,0,Clinical Neurophysiology,1581-1588,10.1016/j.clinph.2020.04.008,32417700.0,85084586854,2-s2.0-85084586854,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85084586854,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85084586854&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85084586854&origin=inward +Multidimensional correlation MRI,Basser,Dan Benjamini;Peter J. Basser,2020-01-01,0,NMR in Biomedicine,,10.1002/nbm.4226,31909516.0,85078238001,2-s2.0-85078238001,Article,,https://api.elsevier.com/content/abstract/scopus_id/85078238001,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85078238001&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85078238001&origin=inward +Magnetic resonance measurements of cellular and sub-cellular membrane structures in live and fixed neural tissue,Basser,Melanie Falgairolle;Dave Ide;Dan Benjamini;Ruiliang Bai;Michael J. O’donovan;Hellmut Merkle;Rea Ravin;Nathan H. Williamson;Dvir Blivis;Peter J. Basser;Nima S. Ghorashi;Teddy X. Cai,2019-12-01,4,eLife,,10.7554/eLife.51101,31829935.0,85077588305,2-s2.0-85077588305,Article,ZJU,https://api.elsevier.com/content/abstract/scopus_id/85077588305,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85077588305&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85077588305&origin=inward +Erratum: Regulation of myelin structure and conduction velocity by perinodal astrocytes (Proceedings of the National Academy of Sciences of the United States of America (2018) 115 (11832–11837) DOI: 10.1073/pnas.1811013115),Basser,Dong Ho Woo;Sinisa Pajevic;Jeffrey C. Smith;R. Douglas Fields;Olena Bukalo;William C. Huffman;Vanja Lazarevic;Dipankar J. Dutta;Philip R. Lee;Peter J. Basser;Hiroaki Wake;Shahriar SheikhBahaei,2019-06-18,0,Proceedings of the National Academy of Sciences of the United States of America,12574,10.1073/pnas.1908361116,31182569.0,85067842616,2-s2.0-85067842616,Erratum,,https://api.elsevier.com/content/abstract/scopus_id/85067842616,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85067842616&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85067842616&origin=inward +Water mobility spectral imaging of the spinal cord: Parametrization of model-free Laplace MRI,Basser,Dan Benjamini;Peter J. Basser,2019-02-01,4,Magnetic Resonance Imaging,187-193,10.1016/j.mri.2018.12.001,30584915.0,85059102417,2-s2.0-85059102417,Article,NICHD,https://api.elsevier.com/content/abstract/scopus_id/85059102417,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85059102417&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85059102417&origin=inward +Brain active transmembrane water cycling measured by MR is associated with neuronal activity,Basser,Charles S. Springer;Dietmar Plenz;Ruiliang Bai;Peter J. Basser,2019-02-01,9,Magnetic Resonance in Medicine,1280-1295,10.1002/mrm.27473,30194797.0,85052920558,2-s2.0-85052920558,Article,ZJU,https://api.elsevier.com/content/abstract/scopus_id/85052920558,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85052920558&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85052920558&origin=inward +A novel MRI phantom to study interstitial fluid transport in the glymphatic system,Basser,F. Horkay;N. W. Williamson;P. J. Basser;E. B. Hutchinson;M. E. Komlosh;D. Benjamini,2019-02-01,3,Magnetic Resonance Imaging,181-186,10.1016/j.mri.2018.10.007,30343124.0,85055481361,2-s2.0-85055481361,Article,NICHD,https://api.elsevier.com/content/abstract/scopus_id/85055481361,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85055481361&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85055481361&origin=inward +Effects of mono- and divalent cations on the structure and thermodynamic properties of polyelectrolyte gels,Basser,Ferenc Horkay;Matan Mussel;Peter J. Basser,2019-01-01,3,Soft Matter,4153-4161,10.1039/c9sm00464e,31062008.0,85066250667,2-s2.0-85066250667,Article,NICHD,https://api.elsevier.com/content/abstract/scopus_id/85066250667,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85066250667&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85066250667&origin=inward +Generalized mean apparent propagator MRI to measure and image advective and dispersive flows in medicine and biology,Basser,Michal E. Komlosh;Nathan H. Williamson;Dan Benjamini;Peter J. Basser,2019-01-01,3,IEEE Transactions on Medical Imaging,11-20,10.1109/TMI.2018.2852259,30010549.0,85049995497,2-s2.0-85049995497,Article,,https://api.elsevier.com/content/abstract/scopus_id/85049995497,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85049995497&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85049995497&origin=inward +Dissecting transcriptomic signatures of neuronal differentiation and maturation using iPSCs,Berman,Daniel J. Hoeppner;Keri Martinowich;Leonardo Collado-Torres;Emily E. Burke;Kamel Shibbani;Ba Doi N. Phan;Nicola Micali;Richard E. Straub;Joo Heon Shin;Alan J. Cross;Andrew E. Jaffe;Anandita Rajpurohit;Joel E. Kleinman;Nicholas J. Brandon;Roland W. Bürli;Karen F. Berman;Joshua G. Chenoweth;Marcelo Diaz Bustamante;Gregory R. Hamersky;Amritha Jaishankar;Thomas M. Hyde;James C. Barrow;William S. Ulrich;Alana Sellers;Cristian Valencia;Carlo Colantuoni;Daniel J. Hiler;Suel Kee Kim;Ronald D.G. McKay;Yanhong Wang;Amanda J. Price;Brady J. Maher;Huei Ying Chen;Jose A. Apud;Daniel R. Weinberger;Stephen A. Semick;Stephanie C. Page,2020-12-01,2,Nature Communications,,10.1038/s41467-019-14266-z,31974374.0,85078161735,2-s2.0-85078161735,Article,,https://api.elsevier.com/content/abstract/scopus_id/85078161735,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85078161735&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85078161735&origin=inward +Subcortical Signatures of Hemizygosity and Psychosis in 22q11.2 Deletion Syndrome: Finding Common Ground in Rare Genetic Variation,Berman,Karen F. Berman;Michael D. Gregory;Daniel P. Eisenberg,2020-07-01,0,The American journal of psychiatry,564-566,10.1176/appi.ajp.2020.20050598,32605438.0,85087420322,2-s2.0-85087420322,Editorial,,https://api.elsevier.com/content/abstract/scopus_id/85087420322,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85087420322&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85087420322&origin=inward +Distinct Polygenic Score Profiles in Schizophrenia Subgroups with Different Trajectories of Cognitive Development,Berman,Sofia R. Zaidman;Karen F. Berman;Dwight Dickinson;Daniel P. Eisenberg;Michael D. Gregory;Evan J. Giangrande,2020-04-01,3,American Journal of Psychiatry,298-307,10.1176/appi.ajp.2019.19050527,31838871.0,85083160174,2-s2.0-85083160174,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85083160174,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85083160174&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85083160174&origin=inward +Longitudinal Positron Emission Tomography of Dopamine Synthesis in Subjects with GBA1 Mutations,Berman,Catherine Groden;Ellen Sidransky;Jenny Kim;Shannon E. Grogans;Daniel P. Eisenberg;Joseph C. Masdeu;Michael D. Gregory;Angela M. Ianni;Grisel Lopez;Karen F. Berman,2020-04-01,0,Annals of Neurology,652-657,10.1002/ana.25692,32030791.0,85082093516,2-s2.0-85082093516,Article,NHGRI,https://api.elsevier.com/content/abstract/scopus_id/85082093516,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85082093516&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85082093516&origin=inward +Epigenetic intersection of BDNF Val66Met genotype with premenstrual dysphoric disorder transcriptome in a cross-species model of estradiol add-back,Berman,Francis S. Lee;Neelima Dubey;Howard Li;Jordan Marrocco;Gordon H. Petty;Peter J. Schmidt;Bruce S. McEwen;David Goldman;Jessica Hoffman;Nathan R. Einhorn;Karen F. Berman,2020-03-01,4,Molecular Psychiatry,572-583,10.1038/s41380-018-0274-3,30356121.0,85055471339,2-s2.0-85055471339,Article,HDRF,https://api.elsevier.com/content/abstract/scopus_id/85055471339,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85055471339&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85055471339&origin=inward +KCNH2-3.1 mediates aberrant complement activation and impaired hippocampal-medial prefrontal circuitry associated with working memory deficits,Berman,Jingxian Wu;Joo Heon Shin;Joseph H. Callicott;Nina Rajpurohit;Yankai Jia;Wei Xia;Xinjian Li;Vijay Sadashivaiah;Fengyu Zhang;Qiang Chen;Ming Ren;Karen F. Berman;Kuan Hong Wang;Zhonghua Hu;Jian Zhu;Andrew Jaffe;Venkata S. Mattay;Daniel Paredes;Qingjun Tian;Daniel R. Weinberger;Sunny Lang Qin;Yingbo Li;Shujuan Zhu;Feng Yang,2020-01-01,0,Molecular Psychiatry,206-229,10.1038/s41380-019-0530-1,31570775.0,85073989509,2-s2.0-85073989509,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85073989509,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85073989509&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85073989509&origin=inward +Sequence Variation Associated with SLC12A5 Gene Expression Is Linked to Brain Structure and Function in Healthy Adults,Berman,J. Shane Kippenhan;Daniel Y. Rubinstein;Michael D. Gregory;Richard Coppola;Joseph H. Callicott;Venkata S. Mattay;Karen F. Berman,2019-12-17,1,Cerebral Cortex,4654-4661,10.1093/cercor/bhy344,30668668.0,85067258780,2-s2.0-85067258780,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85067258780,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85067258780&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85067258780&origin=inward +Williams syndrome hemideletion and LIMK1 variation both affect dorsal stream functional connectivity,Berman,Philip D. Kohn;J. Shane Kippenhan;Maxwell L. Elliott;Jasmin B. Czarapata;Carolyn B. Mervis;Daniel P. Eisenberg;Michael D. Gregory;Ranjani Prabhakaran;Tiffany Nash;Katherine Roe;Karen F. Berman,2019-12-01,0,Brain,3963-3974,10.1093/brain/awz323,31687737.0,85076124431,2-s2.0-85076124431,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85076124431,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85076124431&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85076124431&origin=inward +Evaluation of incidental pelvic fluid in relation to physiological changes in healthy pubescent children using pelvic magnetic resonance imaging,Berman,S. Mojdeh Mirmomen;Pedro E. Martinez;Jack A. Yanovski;Peter J. Schmidt;Ashkan A. Malayeri;Mohammadhadi Bagheri;Ahmad Shafiei;Faraz Farhadi;Ashkan Tadayoni;Karen F. Berman,2019-05-01,0,Pediatric Radiology,784-790,10.1007/s00247-019-04355-y,30859244.0,85065841558,2-s2.0-85065841558,Article,,https://api.elsevier.com/content/abstract/scopus_id/85065841558,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85065841558&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85065841558&origin=inward +Connections With Connections: Dopaminergic Correlates of Neural Network Properties,Berman,Karen F. Berman;Daniel P. Eisenberg,2019-03-01,0,Biological Psychiatry,366-367,10.1016/j.biopsych.2019.01.001,30732679.0,85060538494,2-s2.0-85060538494,Note,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85060538494,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85060538494&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85060538494&origin=inward +Polygenic risk score increases schizophrenia liability through cognition-relevant pathways,Berman,Stacey Cherny;Timothea Toulopoulou;Xiaowei Zhang;Dwight Dickinson;Pak Sham;Richard E. Straub;Daniel R. Weinberger;Karen F. Berman,2019-02-01,12,Brain,471-485,10.1093/brain/awy279,30535067.0,85060790821,2-s2.0-85060790821,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85060790821,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85060790821&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85060790821&origin=inward +Dysregulated protocadherin-pathway activity as an intrinsic defect in induced pluripotent stem cell–derived cortical interneurons from subjects with schizophrenia,Berman,Haneul Noh;Bruce M. Cohen;Teagan Parsons;James M. Park;Peiyan Ni;Kelvin Zheng;Richard E. Straub;Sarah E. Cote;Christine Nguyen;Leonard M. Eisenberg;Takeshi Yagi;Teruyoshi Hirayama;Thomas A. Lanz;Dost Ongur;Elizabeth Noyes;Patric K. Stanton;Karen F. Berman;Changhong Yin;Hae Young Kim;Kevin C. Eggan;Roy H. Perlis;Donna L. McPhie;Weihua Huang;Alexander A. Moghadam;Sangmi Chung;Emi Fukuda;Sulagna Ghosh;Jun Hyeong Cho;Woong Bin Kim;Judith L. Rapoport;Joyce Zhao;Zhicheng Shao;Joshua J. Park;Joseph T. Coyle;Jose Apud;Daniel R. Weinberger;Hualin Simon Xi,2019-02-01,17,Nature Neuroscience,229-242,10.1038/s41593-018-0313-z,30664768.0,85060492176,2-s2.0-85060492176,Article,,https://api.elsevier.com/content/abstract/scopus_id/85060492176,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85060492176&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85060492176&origin=inward +"Ovarian hormones, genes, and the brain: the case of estradiol and the brain-derived neurotrophic factor (BDNF) gene",Berman,Shau Ming Wei;Karen F. Berman,2019-01-01,0,Neuropsychopharmacology,223-224,10.1038/s41386-018-0223-5,30287883.0,85056636437,2-s2.0-85056636437,Note,MJFF,https://api.elsevier.com/content/abstract/scopus_id/85056636437,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85056636437&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85056636437&origin=inward +"Bridging imaging, genetics, and diagnosis in a coupled low-dimensional framework",Berman,William Ulrich;Qiang Chen;Archana Venkataraman;Sayan Ghosal;Venkata S. Mattay;Aaron L. Goldman;Daniel R. Weinberger;Karen F. Berman,2019-01-01,0,Lecture Notes in Computer Science (including subseries Lecture Notes in Artificial Intelligence and Lecture Notes in Bioinformatics),647-655,10.1007/978-3-030-32251-9_71,,85075680805,2-s2.0-85075680805,Conference Paper,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85075680805,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85075680805&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85075680805&origin=inward +Association of a Schizophrenia-Risk Nonsynonymous Variant with Putamen Volume in Adolescents: A Voxelwise and Genome-Wide Association Study,Berman,Robin M. Murray;Qiang Luo;Gabriel H. Robert;Fei Li;Wenjia Wang;Herta Flor;Tomáš Paus;Christine Macare;Frauke Nees;Joseph H. Callicott;Michael N. Smolka;Jean François Dartigues;Vincent Frouin;Erin Burke Quinlan;Qiang Chen;Christophe Tzourio;Arun L.W. Bokde;Gunter Schumann;Fabrice Crivello;Luise Poustka;Jing Cui;Eric Artiges;Henrik Walter;Ferath Kherif;Karen F. Berman;Bernd Ittermann;Dimitri Papadopoulos Orfanos;Tianye Jia;Penny Gowland;Robert Whelan;Venkata S. Mattay;Lena Palaniyappan;Jean Luc Martinot;Tobias Banaschewski;Christian Büchel;Hugh Garavan;Juliane H. Fröhner;Mickaël Guedj;Zdenka Pausova;Jianfeng Feng;Marie Laure Paillère-Martinot;Sylvane Desrivières;Andreas Heinz;Daniel R. Weinberger,2019-01-01,7,JAMA Psychiatry,,10.1001/jamapsychiatry.2018.4126,30649180.0,85060250936,2-s2.0-85060250936,,,https://api.elsevier.com/content/abstract/scopus_id/85060250936,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85060250936&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85060250936&origin=inward +Genetic model of MS severity predicts future accumulation of disability,Bielekova,Makoto Tanigawa;Dena Hernandez;Christopher Barbour;Bibiana Bielekova;Katherine Sun;Ann Marie Weideman;Kayla C. Jackson;Peter Kosa,2020-01-01,0,Annals of Human Genetics,1-10,10.1111/ahg.12342,31396954.0,85070717159,2-s2.0-85070717159,Article,HHS,https://api.elsevier.com/content/abstract/scopus_id/85070717159,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85070717159&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85070717159&origin=inward +Quantifications of CSF Apoptotic Bodies Do Not Provide Clinical Value in Multiple Sclerosis,Bielekova,John Park;Bibiana Bielekova;Peter R. Williamson;Ruturaj Masvekar;Jordan Mizrahi,2019-11-26,0,Frontiers in Neurology,,10.3389/fneur.2019.01241,,85076683499,2-s2.0-85076683499,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85076683499,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85076683499&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85076683499&origin=inward +"Intrathecal, Not Systemic Inflammation Is Correlated With Multiple Sclerosis Severity, Especially in Progressive Multiple Sclerosis",Bielekova,Kayla Jackson;Christopher R. Barbour;Bibiana Bielekova;Joshua L. Milstein;Peter Kosa,2019-11-22,0,Frontiers in Neurology,,10.3389/fneur.2019.01232,,85076673218,2-s2.0-85076673218,Article,NIAID,https://api.elsevier.com/content/abstract/scopus_id/85076673218,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85076673218&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85076673218&origin=inward +CSF inflammatory biomarkers responsive to treatment in progressive multiple sclerosis capture residual inflammation associated with axonal damage,Bielekova,Rikke Ratzer;Lars Börnsen;Mika Komori;Finn Sellebjerg;Marina Rode von Essen;Jeppe Romme Christensen;Bibi Bielekova,2019-06-01,5,Multiple Sclerosis Journal,937-946,10.1177/1352458518774880,29775134.0,85047437818,2-s2.0-85047437818,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85047437818,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85047437818&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85047437818&origin=inward +Daclizumab therapy for multiple sclerosis,Bielekova,Bibiana Bielekova,2019-05-01,3,Cold Spring Harbor Perspectives in Medicine,,10.1101/cshperspect.a034470,29661806.0,85065520676,2-s2.0-85065520676,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85065520676,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85065520676&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85065520676&origin=inward +Body Mass Index in Multiple Sclerosis modulates ceramide-induced DNA methylation and disease course,Bielekova,Kamilah Castro;Maria Petracca;Emily Y. Chen;Dirk Trauner;Bibiana Bielekova;Michael A. Kiebish;Ilana Katz Sand;Achilles Ntranos;Mario Amatruda;Corey T. Watson;Matilde Inglese;Peter Kosa;Johannes Morstein;Patrizia Casaccia,2019-05-01,6,EBioMedicine,392-410,10.1016/j.ebiom.2019.03.087,30981648.0,85064274027,2-s2.0-85064274027,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85064274027,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85064274027&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85064274027&origin=inward +Pediatric CNS-isolated hemophagocytic lymphohistiocytosis,Bielekova,William A. Gahl;Alyssa L. Kennedy;Mark P. Gorman;Michelle A. Lee;Christine N. Duncan;Bibiana Bielekova;Leslie A. Benson;Lauren A. Henderson;Hojun Li;Sanda Alexandrescu;Ariane Soldatos;Isaac H. Solomon;Kimberly J. Davies;Amy P. Hsu;Robert P. Sundel;Jennifer Murphy;Steven M. Holland;Michael J. Rivkin;Barbara A. Degar;Leslie E. Lehmann,2019-05-01,5,Neurology: Neuroimmunology and NeuroInflammation,,10.1212/NXI.0000000000000560,,85065021977,2-s2.0-85065021977,Article,NHGRI,https://api.elsevier.com/content/abstract/scopus_id/85065021977,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85065021977&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85065021977&origin=inward +Central nervous system–restricted familial hemophagocytic lymphohistiocytosis responds to hematopoietic cell transplantation,Bielekova,Christine N. Duncan;Ariane Soldatos;Alyssa L. Kennedy;Jennifer Murphy;Bibiana Bielekova;Barbara A. Degar;Isaac H. Solomon;Leslie A. Benson;Mark P. Gorman;Lauren A. Henderson;Hojun Li;Kimberly J. Davies;Michelle A. Lee;Leslie E. Lehmann;Sanda Alexandrescu,2019-02-26,3,Blood Advances,503-507,10.1182/bloodadvances.2018027417,30760465.0,85061587048,2-s2.0-85061587048,Article,ASH,https://api.elsevier.com/content/abstract/scopus_id/85061587048,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85061587048&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85061587048&origin=inward +Cerebrospinal fluid biomarkers link toxic astrogliosis and microglial activation to multiple sclerosis severity,Bielekova,Christopher Barbour;Tianxia Wu;Bibiana Bielekova;Valentina Fossati;Ruturaj Masvekar;Peter Kosa,2019-02-01,2,Multiple Sclerosis and Related Disorders,34-43,10.1016/j.msard.2018.11.032,30553167.0,85058143144,2-s2.0-85058143144,Article,NIAID,https://api.elsevier.com/content/abstract/scopus_id/85058143144,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85058143144&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85058143144&origin=inward +"Alcohol Use Disorder, But Not Cannabis Use Disorder, Symptomatology in Adolescents Is Associated With Reduced Differential Responsiveness to Reward Versus Punishment Feedback During Instrumental Learning",Blair,Ru Zhang;Jennie Lukoff;Karina S. Blair;R. James R. Blair;Johannah Bashford-Largo;Kathleen I. Crum;Stuart F. White;Soonjo Hwang;Joseph Aloi;Francesca M. Filbey;Matthew Dobbertin;Erin Carollo,2020-06-01,0,Biological Psychiatry: Cognitive Neuroscience and Neuroimaging,610-618,10.1016/j.bpsc.2020.02.003,32299790.0,85083112575,2-s2.0-85083112575,Article,AACAP,https://api.elsevier.com/content/abstract/scopus_id/85083112575,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85083112575&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85083112575&origin=inward +"Investigating Sex Differences in Emotion Recognition, Learning, and Regulation Among Youths With Conduct Disorder",Blair,Areti Smaragdi;Leonidas Papadakos;Roberta Dochnal;Christina Stadler;Amaia Hervas;Zacharias Kalogerakis;Fernando Aguirregomoscorta-Menéndez;Roberta Clanton;Beate Herpertz-Dahlmann;Rosalind Baker;Mara Pirlympou;Sarah Baumann;Ruth Pauli;Katharina Ackermann;Linda Kersten;Stephane A. De Brito;Anka Bernhard;Helena Oldenhof;Lisette van den Boogaard;Martin Prätzlich;Graeme Fairchild;Karen Gonzalez-Madruga;Aranzazu Fernández-Rivas;Gregor Kohls;Réka Siklósi;Dimitris Dikeos;Arne Popma;Eva Sesma-Pardo;Christine M. Freitag;Malou Gundlach;Kerstin Konrad;Lucres Jansen;James R. Blair;Harriet Cornwell;Aitana Bigorra;Wolfgang Scharke;Anne Martinelli;Jack C. Rogers;Iñaki Kerexeta-Lizeaga,2020-02-01,3,Journal of the American Academy of Child and Adolescent Psychiatry,263-273,10.1016/j.jaac.2019.04.003,31026574.0,85071985460,2-s2.0-85071985460,Article,CD,https://api.elsevier.com/content/abstract/scopus_id/85071985460,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85071985460&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85071985460&origin=inward +Modeling the Comorbidity of Cannabis Abuse and Conduct Disorder/Conduct Problems from a Cognitive Neuroscience Perspective,Blair,R. James Blair,2020-01-02,1,Journal of Dual Diagnosis,3-21,10.1080/15504263.2019.1668099,31608811.0,85076497530,2-s2.0-85076497530,Review,,https://api.elsevier.com/content/abstract/scopus_id/85076497530,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85076497530&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85076497530&origin=inward +"Recent neuro-imaging findings with respect to conduct disorder, callous-unemotional traits and psychopathy",Blair,Ru Zhang;Robert James R. Blair,2020-01-01,0,Current Opinion in Psychiatry,45-50,10.1097/YCO.0000000000000559,31725420.0,85076126170,2-s2.0-85076126170,Review,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85076126170,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85076126170&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85076126170&origin=inward +Alcohol use disorder and cannabis use disorder symptomatology in adolescents is associated with dysfunction in neural processing of future events,Blair,Abraham D. Killanin;R. James Blair;Karina S. Blair;Harma Meffert;Alita Mobley;Stuart F. White;Kathleen I. Crum;Soonjo Hwang;Laura C. Thornton;Joseph Aloi;Francesca M. Filbey;Patrick M. Tyler;Kayla Pope,2020-01-01,0,Addiction Biology,,10.1111/adb.12885,,85080930791,2-s2.0-85080930791,Article,,https://api.elsevier.com/content/abstract/scopus_id/85080930791,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85080930791&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85080930791&origin=inward +Alcohol use disorder and cannabis use disorder symptomatology in adolescents are differentially related to dysfunction in brain regions supporting face processing,Blair,Emily K. Leiker;Karina S. Blair;Francesca Filbey;Harma Meffert;Brittany K. Taylor;Heba Abdel-Rahim;Patrick M. Tyler;R. James R. Blair;Stuart F. White;Joseph Aloi;Laura C. Thornton;Niraj Shah;Matthew Dobbertin;Kayla Pope,2019-10-30,1,Psychiatry Research - Neuroimaging,62-71,10.1016/j.pscychresns.2019.09.004,31541926.0,85072302321,2-s2.0-85072302321,Article,,https://api.elsevier.com/content/abstract/scopus_id/85072302321,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85072302321&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85072302321&origin=inward +Psychometrics of a Brief Trauma Symptom Screen for Youth in Residential Care,Blair,W. Alex Mason;R. James Blair;Mary B. Chmelka;Irina Patwardan;Heba Abdel-Rahim;Kimberly Johnson;Patrick M. Tyler;Niraj Shah;Matthew Dobbertin;Kayla Pope,2019-10-01,2,Journal of Traumatic Stress,753-763,10.1002/jts.22442,31441982.0,85070061983,2-s2.0-85070061983,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85070061983,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85070061983&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85070061983&origin=inward +Threat Responsiveness as a Function of Cannabis and Alcohol Use Disorder Severity,Blair,Robert James R. Blair;Emily K. Leiker;Jennie Lukoff;Matt Dobbertin;Francesca Filbey;Karina S. Blair;Stuart F. White;Laura C. Thornton;Kimberly Johnson;Patrick M. Tyler,2019-08-01,5,Journal of Child and Adolescent Psychopharmacology,526-534,10.1089/cap.2019.0004,31170004.0,85071782104,2-s2.0-85071782104,Article,,https://api.elsevier.com/content/abstract/scopus_id/85071782104,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85071782104&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85071782104&origin=inward +Cognitive and neural facets of dissociation in a traumatized population,Blair,Robert J. Blair;Sindhuja Surapaneni;Bekh Bradley;Tricia Z. King;Negar Fani;Tanja Jovanovic;Kerry J. Ressler;Abigail Powers;Sanne Van Rooij;Raven A. Hardy;Greg J. Siegle,2019-08-01,0,Emotion,863-875,10.1037/emo0000466,30124316.0,85051988122,2-s2.0-85051988122,Article,BWF,https://api.elsevier.com/content/abstract/scopus_id/85051988122,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85051988122&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85051988122&origin=inward +"Attentional control abnormalities in posttraumatic stress disorder: Functional, behavioral, and structural correlates",Blair,James R. Blair;Sindhuja Surapaneni;Bekh Bradley;Tricia Z. King;Negar Fani;Tanja Jovanovic;Stuart F. White;Tim D. Ely;Kerry J. Ressler;Cherita Clendinen;Abigail Powers;Raven A. Hardy,2019-06-15,5,Journal of Affective Disorders,343-351,10.1016/j.jad.2019.04.098,31078834.0,85065843515,2-s2.0-85065843515,Article,EMCF,https://api.elsevier.com/content/abstract/scopus_id/85065843515,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85065843515&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85065843515&origin=inward +"Genetic underpinnings of callous-unemotional traits and emotion recognition in children, adolescents, and emerging adults",Blair,Ellen Leibenluft;R. James Blair;Daniel S. Pine;John M. Hettema;Roxann Roberson-Nay;Lance M. Rappaport;Melissa A. Brotman;Ashlee A. Moore,2019-06-01,5,Journal of Child Psychology and Psychiatry and Allied Disciplines,638-645,10.1111/jcpp.13018,30779145.0,85061913341,2-s2.0-85061913341,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85061913341,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85061913341&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85061913341&origin=inward +Fronto-parietal mirror neuron system modeling: Visuospatial transformations support imitation learning independently of imitator perspective,Blair,James A. Reggia;Hyuk Oh;Rodolphe J. Gentili;Allen R. Braun,2019-06-01,2,Human Movement Science,121-141,10.1016/j.humov.2018.05.013,30219273.0,85053116646,2-s2.0-85053116646,Article,UMD,https://api.elsevier.com/content/abstract/scopus_id/85053116646,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85053116646&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85053116646&origin=inward +Association of Different Types of Childhood Maltreatment With Emotional Responding and Response Control Among Youths,Blair,Kathleen Crum;Emily K. Leiker;Jennie Lukoff;R. James Blair;Karina S. Blair;Harma Meffert;Brittany K. Taylor;Patrick M. Tyler;Heba Abdel-Rahim;Stuart F. White;Seth Pollak;Joseph Aloi;Kimberly Johnson;Laura C. Thornton;Niraj Shah;Matthew Dobbertin;Kayla Pope,2019-05-03,2,JAMA network open,e194604,10.1001/jamanetworkopen.2019.4604,31125109.0,85066866364,2-s2.0-85066866364,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85066866364,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85066866364&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85066866364&origin=inward +What role can cognitive neuroscience play in violence prevention?,Blair,R. J.R. Blair,2019-05-01,1,Aggression and Violent Behavior,158-164,10.1016/j.avb.2019.02.008,,85061362475,2-s2.0-85061362475,Review,,https://api.elsevier.com/content/abstract/scopus_id/85061362475,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85061362475&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85061362475&origin=inward +The genetic underpinnings of callous-unemotional traits: A systematic research review,Blair,R. James Blair;Roxann Roberson-Nay;Ashlee A. Moore;John M. Hettema,2019-05-01,5,Neuroscience and Biobehavioral Reviews,85-97,10.1016/j.neubiorev.2019.02.018,30817934.0,85062210960,2-s2.0-85062210960,Review,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85062210960,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85062210960&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85062210960&origin=inward +Changing Views on the Salience Network in Response to Data on Exposure to Assault,Blair,Robert James R. Blair,2019-04-01,0,Biological Psychiatry: Cognitive Neuroscience and Neuroimaging,331-332,10.1016/j.bpsc.2019.02.002,30961833.0,85063534958,2-s2.0-85063534958,Note,,https://api.elsevier.com/content/abstract/scopus_id/85063534958,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85063534958&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85063534958&origin=inward +"Intensity, not emotion: The role of poverty in emotion labeling ability in middle childhood",Blair,Pilyoung Kim;Julia Dmitrieva;Robert James Blair;Andrew Erhart,2019-04-01,2,Journal of Experimental Child Psychology,131-140,10.1016/j.jecp.2018.12.009,30655098.0,85059800101,2-s2.0-85059800101,Article,NICHD,https://api.elsevier.com/content/abstract/scopus_id/85059800101,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85059800101&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85059800101&origin=inward +Differential dysfunctions related to alcohol and cannabis use disorder symptoms in reward and error-processing neuro-circuitries in adolescents,Blair,Kathryn O. Adams;Abraham D. Killanin;Karina S. Blair;Francesca Filbey;Harma Meffert;R. James R. Blair;Stuart F. White;Laura C. Thornton;Soonjo Hwang;Kathleen I. Crum;Joseph Aloi;Patrick M. Tyler;Kayla Pope,2019-04-01,5,Developmental Cognitive Neuroscience,,10.1016/j.dcn.2019.100618,30710868.0,85060739115,2-s2.0-85060739115,Article,UNMC,https://api.elsevier.com/content/abstract/scopus_id/85060739115,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85060739115&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85060739115&origin=inward +Overt social interaction and resting state in young adult males with autism: Core and contextual neural features,Blair,John E. Ingeholm;Lauren Kenworthy;Yisheng Xu;Siyuan Liu;Stephen J. Gotts;Gregory L. Wallace;Alex Martin;Cameron D. Riddell;Allen R. Braun;Kyle Jasmin,2019-03-01,4,Brain,808-822,10.1093/brain/awz003,30698656.0,85062493242,2-s2.0-85062493242,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85062493242,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85062493242&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85062493242&origin=inward +Sleep extension reduces pain sensitivity,Blair,Allen Braun;Phillip J. Quartana;Angela M. Yarnell;Janna Mantua;Allison J. Brager;Lonique Moore;Guido Simonelli;Maria St Pierre;Thomas J. Balkin;Mary Gad;Vincent F. Capaldi,2019-02-01,5,Sleep Medicine,172-176,10.1016/j.sleep.2018.10.023,30580190.0,85058655719,2-s2.0-85058655719,Article,MRMC,https://api.elsevier.com/content/abstract/scopus_id/85058655719,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85058655719&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85058655719&origin=inward +Applying a Cognitive Neuroscience Perspective to Disruptive Behavior Disorders: Implications for Schools,Blair,Stuart F. White;Patrick M. Tyler;Ronald W. Thompson;R. J.R. Blair,2019-01-02,3,Developmental Neuropsychology,17-42,10.1080/87565641.2017.1334782,29432037.0,85041909528,2-s2.0-85041909528,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85041909528,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85041909528&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85041909528&origin=inward +Dysfunctional neurocognition in individuals with clinically significant psychopathic traits,Blair,Robert James R. Blair,2019-01-01,1,Dialogues in Clinical Neuroscience,291-299,10.31887/DCNS.2019.21.3/rblair,31749653.0,85075523607,2-s2.0-85075523607,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85075523607,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85075523607&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85075523607&origin=inward +Threat-of-shock decreases emotional interference on affective stroop performance in healthy controls and anxiety patients,Blair,James R. Blair;Tiffany R. Lago;Amanda Thongdarong;Karina S. Blair;Christian Grillon;Monique Ernst;Gabriella Alvarez,2019-01-01,0,European Journal of Neuroscience,,10.1111/ejn.14624,31738835.0,85076359264,2-s2.0-85076359264,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85076359264,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85076359264&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85076359264&origin=inward +Segregating sustained attention from response inhibition in ADHD: An fMRI study,Blair,Mary L. Botkin;Ian Parsley;Harma Meffert;Patrick M. Tyler;Soonjo Hwang;Anna K. Erway;R. J.R. Blair;Kayla Pope,2019-01-01,1,NeuroImage: Clinical,,10.1016/j.nicl.2019.101677,30682530.0,85060270974,2-s2.0-85060270974,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85060270974,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85060270974&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85060270974&origin=inward +The role of the inferior parietal lobule in writer's cramp,Bushnell,Silvina G. Horovitz;Megan Bradson;Traian Popa;Felipe Vial-Undurraga;Tianxia Wu;Giorgio Leodori;Mark Hallett;Jacob Parker;M. C. Bushnell;Eleni Frangos;Shabbir Hussain I. Merchant,2020-06-01,0,Brain : a journal of neurology,1766-1779,10.1093/brain/awaa138,32428227.0,85086683004,2-s2.0-85086683004,Article,,https://api.elsevier.com/content/abstract/scopus_id/85086683004,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85086683004&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85086683004&origin=inward +Attitudes and Perceptions Toward Authorized Deception: A Pilot Comparison of Healthy Controls and Fibromyalgia Patients,Bushnell,Brian T. Walitt;Brenda L. Justement;Marta Ceko;Patrick Korb;Luana Colloca;Emily A. Richards;Eleni Frangos;Susan J. Goo;M. Catherine Bushnell,2020-04-01,0,"Pain medicine (Malden, Mass.)",794-802,10.1093/pm/pnz081,31009537.0,85083003316,2-s2.0-85083003316,Article,,https://api.elsevier.com/content/abstract/scopus_id/85083003316,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85083003316&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85083003316&origin=inward +Prevalence and Profile of High-Impact Chronic Pain in the United States,Bushnell,Linda Porter;Mark H. Pitcher;Michael Von Korff;M. Catherine Bushnell,2019-02-01,33,Journal of Pain,146-160,10.1016/j.jpain.2018.07.006,30096445.0,85052998300,2-s2.0-85052998300,Article,,https://api.elsevier.com/content/abstract/scopus_id/85052998300,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85052998300&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85052998300&origin=inward +Persistent inflammatory pain alters sexually-motivated behavior in male rats,Bushnell,Michael Lehmann;Farid Tarum;Mark Henry Pitcher;M. Catherine Bushnell,2019-01-01,1,Behavioural Brain Research,380-389,10.1016/j.bbr.2018.09.001,30205121.0,85053775612,2-s2.0-85053775612,Article,NCCIH,https://api.elsevier.com/content/abstract/scopus_id/85053775612,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85053775612&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85053775612&origin=inward +Utilization of the DSM-5 Self-Rated Level 1 Cross-Cutting Symptom Measure-Adult to Screen Healthy Volunteers for Research Studies,Chung,Margaret Rose Mahoney;Joyce Y. Chung;Kalene Dehaut;Susanna Sung;Stephen Sinclair;Cristan Farmer,2020-04-01,0,Psychiatry Research,,10.1016/j.psychres.2020.112822,32086029.0,85079516238,2-s2.0-85079516238,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85079516238,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85079516238&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85079516238&origin=inward +The feasibility and value of parent input when evaluating the mental health of young adults with and without cancer,Chung,Joyce Y. Chung;Lori S. Wiener;Elizabeth L. Clayton;Hiroe Hu;Maryland Pao,2020-01-01,0,Psycho-Oncology,,10.1002/pon.5348,32022347.0,85080068174,2-s2.0-85080068174,Article,,https://api.elsevier.com/content/abstract/scopus_id/85080068174,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85080068174&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85080068174&origin=inward +Phase-dependent transcranial magnetic stimulation of the lesioned hemisphere is accurate after stroke,Cohen,Sara J. Hussain;Leonardo G. Cohen;Ethan R. Buch;Christoph Zrenner;Margaret K. Hayward;Farah Fourcand;Ulf Ziemann;William Hayward,2020-09-01,0,Brain Stimulation,1354-1357,10.1016/j.brs.2020.07.005,32687898.0,85088372149,2-s2.0-85088372149,Letter,BMS,https://api.elsevier.com/content/abstract/scopus_id/85088372149,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85088372149&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85088372149&origin=inward +Transcranial direct current stimulation facilitates response inhibition through dynamic modulation of the fronto-basal ganglia network,Cohen,Rita Volochayev;Leonardo G. Cohen;Wen Tung Wang;John A. Butman;Marco Sandrini;Oluwole Awosika;Benjamin Xu,2020-01-01,4,Brain Stimulation,96-104,10.1016/j.brs.2019.08.004,31422052.0,85070537877,2-s2.0-85070537877,Article,CNRM,https://api.elsevier.com/content/abstract/scopus_id/85070537877,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85070537877&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85070537877&origin=inward +Beta rhythm events predict corticospinal motor output,Cohen,Sara J. Hussain;Marlene Bönstrup;Leonardo G. Cohen,2019-12-01,0,Scientific Reports,,10.1038/s41598-019-54706-w,31797890.0,85076058922,2-s2.0-85076058922,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85076058922,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85076058922&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85076058922&origin=inward +To jump or not to jump - The Bereitschaftspotential required to jump into 192-meter abyss,Cohen,L. G. Cohen;M. Nann;S. R. Soekadar;L. Deecke,2019-12-01,3,Scientific Reports,,10.1038/s41598-018-38447-w,30783174.0,85061779705,2-s2.0-85061779705,Article,NARSAD,https://api.elsevier.com/content/abstract/scopus_id/85061779705,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85061779705&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85061779705&origin=inward +Low-Frequency Brain Oscillations Track Motor Recovery in Human Stroke,Cohen,Lutz Krawinkel;Leonardo G. Cohen;Christian Gerloff;Bastian Cheng;Jan Feldheim;Marlene Bönstrup;Götz Thomalla;Robert Schulz,2019-12-01,1,Annals of Neurology,853-865,10.1002/ana.25615,31604371.0,85074583387,2-s2.0-85074583387,Article,GIF,https://api.elsevier.com/content/abstract/scopus_id/85074583387,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85074583387&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85074583387&origin=inward +Differential brain mechanisms of selection and maintenance of information during working memory,Cohen,Leonardo G. Cohen;Ethan R. Buch;Etienne Sallard;Nathan Fishman;Ryan Thompson;Jean Rémi King;Romain Quentin,2019-05-08,6,Journal of Neuroscience,3728-3740,10.1523/JNEUROSCI.2764-18.2019,30833510.0,85064906426,2-s2.0-85064906426,Article,Bettencourt-Schueller Foundation,https://api.elsevier.com/content/abstract/scopus_id/85064906426,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85064906426&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85064906426&origin=inward +Reversing working memory decline in the elderly,Cohen,Leonardo G. Cohen;Romain Quentin,2019-05-01,0,Nature Neuroscience,686-688,10.1038/s41593-019-0386-3,30962629.0,85064892708,2-s2.0-85064892708,Article,,https://api.elsevier.com/content/abstract/scopus_id/85064892708,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85064892708&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85064892708&origin=inward +Transcutaneous spinal direct current stimulation improves locomotor learning in healthy humans,Cohen,Rita Volochayev;Leonardo G. Cohen;Ryan M. Thompson;Tianxia Wu;Mary Kay Floeter;Mark Hallett;Nathan Fishman;Oluwole O. Awosika;Marco Sandrini,2019-05-01,3,Brain Stimulation,628-634,10.1016/j.brs.2019.01.017,30733143.0,85060924277,2-s2.0-85060924277,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85060924277,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85060924277&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85060924277&origin=inward +A Rapid Form of Offline Consolidation in Skill Learning,Cohen,Leonardo G. Cohen;Iñaki Iturrate;Ryan Thompson;Gabriel Cruciani;Marlene Bönstrup;Nitzan Censor,2019-04-22,10,Current Biology,1346-1351.e4,10.1016/j.cub.2019.02.049,30930043.0,85064387976,2-s2.0-85064387976,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85064387976,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85064387976&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85064387976&origin=inward +Plasticity and recovery of function,Cohen,Leonardo G. Cohen;Romain Quentin;Oluwole Awosika,2019-01-01,0,Handbook of Clinical Neurology,473-483,10.1016/B978-0-12-804281-6.00025-2,31590747.0,85072793082,2-s2.0-85072793082,Chapter,,https://api.elsevier.com/content/abstract/scopus_id/85072793082,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85072793082&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85072793082&origin=inward +Sensorimotor oscillatory phase-power interaction gates resting human corticospinal output,Cohen,Sara J. Hussain;Leonardo G. Cohen;Ethan Buch;Christoph Zrenner;Ryan Thompson;Ulf Ziemann;Gabriel Cruciani;Marlene Bönstrup;Leonardo Claudino;Gina Norato,2019-01-01,2,Cerebral Cortex,3766-3777,10.1093/cercor/bhy255,30496352.0,85066067275,2-s2.0-85066067275,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85066067275,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85066067275&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85066067275&origin=inward +Brain-Machine Interface in Chronic Stroke: Randomized Trial Long-Term Follow-up,Cohen,Fabricio L. Brasil;Leonardo G. Cohen;Ander Ramos-Murguialday;Woosang Cho;Eliana Garcia-Cossio;Marco R. Curado;Giulia Liberati;Andrea Caria;Özge Yilmaz;Doris Broetz;Niels Birbaumer,2019-01-01,12,Neurorehabilitation and Neural Repair,,10.1177/1545968319827573,30722727.0,85061497143,2-s2.0-85061497143,Article,,https://api.elsevier.com/content/abstract/scopus_id/85061497143,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85061497143&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85061497143&origin=inward +Susceptibility of consolidated procedural memory to interference is independent of its active task-based retrieval,Cohen,Leonardo G. Cohen;Bradley R. King;Arnaud Boutin;Basile Pinsard;Julien Doyon;Avi Karni;Geneviève Albouy;Ella Gabitov;Julie Carrier;Stuart M. Fogel;Nitzan Censor,2019-01-01,1,PLoS ONE,,10.1371/journal.pone.0210876,30653576.0,85060135661,2-s2.0-85060135661,Article,PBC,https://api.elsevier.com/content/abstract/scopus_id/85060135661,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85060135661&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85060135661&origin=inward +Checkpoint inhibitors for the treatment of JC virus-related progressive multifocal leukoencephalopathy,Cortese,Erin S. Beck;Irene Cortese,2020-02-01,0,Current Opinion in Virology,19-27,10.1016/j.coviro.2020.02.005,32279025.0,85082864720,2-s2.0-85082864720,Review,NIH,https://api.elsevier.com/content/abstract/scopus_id/85082864720,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85082864720&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85082864720&origin=inward +Association of Chronic Active Multiple Sclerosis Lesions with Disability in Vivo,Cortese,Federica Masuzzo;Hadar Kolb;Daniel S. Reich;Tianxia Wu;Pascal Sati;Govind Nair;Joan Ohayon;Varun Sethi;Irene C.M. Cortese;Martina Absinta,2019-12-01,12,JAMA Neurology,1474-1483,10.1001/jamaneurol.2019.2399,31403674.0,85070723559,2-s2.0-85070723559,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85070723559,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85070723559&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85070723559&origin=inward +Manganese-enhanced MRI of the brain in healthy volunteers,Cortese,S. U. Steele;T. Wu;D. S. Reich;B. Dewey;J. T. Dwyer;A. P. Koretsky;D. J. Suto;B. A. Berkowitz;I. C.M. Cortese;G. Nair;D. M. Sudarshana,2019-08-01,2,American Journal of Neuroradiology,1309-1316,10.3174/ajnr.A6152,31371354.0,85071351382,2-s2.0-85071351382,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85071351382,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85071351382&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85071351382&origin=inward +Trial of intrathecal rituximab in progressive multiple sclerosis patients with evidence of leptomeningeal contrast enhancement,Cortese,Cassie Wicken;Daniel S. Reich;Pavan Bhargava;Ellen M. Mowry;Peter A. Calabresi;Roy E. Strowd;Matthew D. Smith;Irene Cortese,2019-05-01,6,Multiple Sclerosis and Related Disorders,136-140,10.1016/j.msard.2019.02.013,30771580.0,85061370727,2-s2.0-85061370727,Article,AAN,https://api.elsevier.com/content/abstract/scopus_id/85061370727,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85061370727&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85061370727&origin=inward +Pembrolizumab treatment for progressive multifocal leukoencephalopathy,Cortese,Caroline Ryschkewitsch;Bryan Smith;Eugene O. Major;Yoshimi Enose-Akahata;Daniel S. Reich;Avindra Nath;Pawel Muranski;Joan Ohayon;Erin Beck;Steve Jacobson;Seung Kwon Ha;Maria Chiara Monaco;Matthew K. Schindler;Lauren B. Reoma;Irene Cortese,2019-04-25,53,New England Journal of Medicine,1597-1605,10.1056/NEJMoa1815039,30969503.0,85064880387,2-s2.0-85064880387,Article,,https://api.elsevier.com/content/abstract/scopus_id/85064880387,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85064880387&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85064880387&origin=inward +"Robust, atlas-free, automatic segmentation of brain MRI in health and disease",Cortese, Steven Jacobson;Bryan Smith;Daniel S. Reich;Kartiga Selvaganesan;Ziad S. Saad;Avindra Nath;Govind Nair;Joan E. Ohayon;Sara Inati;Paba M. DeAlwis;Irene C.M. Cortese;Emily Whitehead;Matthew K. Schindler;Souheil Inati,2019-02-01,1,Heliyon,,10.1016/j.heliyon.2019.e01226,,85061659282,2-s2.0-85061659282,Article,OAR,https://api.elsevier.com/content/abstract/scopus_id/85061659282,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85061659282&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85061659282&origin=inward +Clinical trial of a humanized anti-IL-2/IL-15 receptor β chain in HAM/TSP,Cortese,Ashley Vellucci;Yoshimi Enose-Akahata;Steven Jacobson;Unsong Oh;Joan Ohayon;Bridgette Jeanne Billioux;Nyater Ngouth;Bonita R. Bryant;Irene Cortese;Raya Massoud;Thomas A. Waldmann,2019-01-01,2,Annals of Clinical and Translational Neurology,1383-1394,10.1002/acn3.50820,31402625.0,85070478095,2-s2.0-85070478095,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85070478095,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85070478095&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85070478095&origin=inward +B0-field dependence of MRI T1 relaxation in human brain,Duyn,Yicun Wang;Jeff H. Duyn;Jacco A. de Zwart;Peter van Gelderen,2020-06-01,0,NeuroImage,,10.1016/j.neuroimage.2020.116700,32145438.0,85081659893,2-s2.0-85081659893,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85081659893,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85081659893&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85081659893&origin=inward +Physiological changes in sleep that affect fMRI inference,Duyn,Jeff H. Duyn;Pinar S. Ozbay;Catie Chang;Dante Picchioni,2020-06-01,0,Current Opinion in Behavioral Sciences,42-50,10.1016/j.cobeha.2019.12.007,,85076708543,2-s2.0-85076708543,Review,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85076708543,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85076708543&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85076708543&origin=inward +Background suppressed magnetization transfer MRI,Duyn,Jeff H. Duyn;Peter van Gelderen,2020-03-01,0,Magnetic Resonance in Medicine,883-891,10.1002/mrm.27978,31502706.0,85072082041,2-s2.0-85072082041,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85072082041,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85072082041&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85072082041&origin=inward +Reducing motion sensitivity in 3D high-resolution T2*-weighted MRI by navigator-based motion and nonlinear magnetic field correction,Duyn,Peter van Gelderen;Jeff H. Duyn;Jacco A. de Zwart;Jiaen Liu,2020-02-01,0,NeuroImage,,10.1016/j.neuroimage.2019.116332,31689535.0,85075334408,2-s2.0-85075334408,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85075334408,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85075334408&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85075334408&origin=inward +Eight-channel parallel transmit-receive system for 7 T MRI with optically controlled and monitored on-coil current-mode RF amplifiers,Duyn,Jeff H. Duyn;Jacco A. de Zwart;Natalia Gudino,2020-01-01,0,Magnetic Resonance in Medicine,,10.1002/mrm.28392,,85087829004,2-s2.0-85087829004,Article,,https://api.elsevier.com/content/abstract/scopus_id/85087829004,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85087829004&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85087829004&origin=inward +Sympathetic activity contributes to the fMRI signal,Duyn,Miranda Grace Chappel-Farley;Peter van Gelderen;Hendrik Mandelkow;Pinar Senay Özbay;Catie Chang;Jacco Adrianus de Zwart;Jeff Duyn;Dante Picchioni,2019-12-01,5,Communications Biology,,10.1038/s42003-019-0659-0,31754651.0,85075132629,2-s2.0-85075132629,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85075132629,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85075132629&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85075132629&origin=inward +All-night functional magnetic resonance imaging sleep studies,Duyn,Jeff H. Duyn;Thomas M. Moehlman;Peter van Gelderen;Hendrik Mandelkow;Nicholas L. Johnson;Rebecca E. Bieber;Catie Chang;Kelly A. King;Miranda G. Chappel-Farley;Pinar S. Özbay;Jacco A. de Zwart;Dante Picchioni;Xiao Liu;Carmen C. Brewer;Katharine A. Fernandez;Irene B. McClain;Christopher K. Zalewski,2019-03-15,3,Journal of Neuroscience Methods,83-98,10.1016/j.jneumeth.2018.09.019,30243817.0,85053790585,2-s2.0-85053790585,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85053790585,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85053790585&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85053790585&origin=inward +What's New at Muscle & Nerve?,Floeter,Zachary Simmons,2020-08-01,0,Muscle and Nerve,152-153,10.1002/mus.27007,32557730.0,85087346416,2-s2.0-85087346416,Editorial,,https://api.elsevier.com/content/abstract/scopus_id/85087346416,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85087346416&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85087346416&origin=inward +Amyotrophic lateral sclerosis care and research in the United States during the COVID-19 pandemic: Challenges and opportunities,Floeter,Nathan Carberry;Brixhilda Dedi;Richard S. Bedlack;Michael D. Weiss;Zachary Simmons;Robert H. Baloh;Jeremy M. Shefner;Merit E. Cudkowicz;Jinsy A. Andrews;James D. Berry;Jeffrey D. Rothstein;Jonathan Glass;Nicholas J. Maragakis;Timothy M. Miller;Sabrina Paganoni,2020-08-01,0,Muscle and Nerve,182-186,10.1002/mus.26989,32445195.0,85085970450,2-s2.0-85085970450,Article,,https://api.elsevier.com/content/abstract/scopus_id/85085970450,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85085970450&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85085970450&origin=inward +Terminology in Neuromuscular Electrodiagnostic Medicine and Ultrasound: Time for an Update,Floeter,Ulf Ziemann;Zachary Simmons,2020-07-01,0,Muscle and Nerve,1,10.1002/mus.26870,32337740.0,85085564248,2-s2.0-85085564248,Editorial,,https://api.elsevier.com/content/abstract/scopus_id/85085564248,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85085564248&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85085564248&origin=inward +Terminology in neuromuscular electrodiagnostic medicine and ultrasound: Time for an update,Floeter,Ulf Ziemann;Zachary Simmons,2020-07-01,0,Clinical Neurophysiology,1655,10.1016/j.clinph.2020.03.015,32337740.0,85085306499,2-s2.0-85085306499,Editorial,,https://api.elsevier.com/content/abstract/scopus_id/85085306499,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85085306499&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85085306499&origin=inward +The role of technology in the lives of neuromuscular patients,Floeter,Zachary Simmons,2020-06-01,0,Muscle and Nerve,681,10.1002/mus.26867,32413246.0,85084734027,2-s2.0-85084734027,Review,,https://api.elsevier.com/content/abstract/scopus_id/85084734027,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85084734027&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85084734027&origin=inward +Telemedicine for the Care of Neuromuscular Disorders,Floeter,James Grogan;Zachary Simmons,2020-06-01,0,Current Treatment Options in Neurology,,10.1007/s11940-020-00625-5,,85084478505,2-s2.0-85084478505,Review,,https://api.elsevier.com/content/abstract/scopus_id/85084478505,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85084478505&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85084478505&origin=inward +The Use of Telehealth to Enhance Care in ALS and other Neuromuscular Disorders,Floeter,Anne Haulman;Andrew Geronimo;Amit Chahwala;Zachary Simmons,2020-06-01,1,Muscle and Nerve,682-691,10.1002/mus.26838,32297678.0,85083459301,2-s2.0-85083459301,Review,NIH,https://api.elsevier.com/content/abstract/scopus_id/85083459301,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85083459301&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85083459301&origin=inward +In defense of the AAN position on lawful physician-hastened death,Floeter,Julie A. Kurek;Michael A. Williams;Robert M. Pascuzzi;Richard J. Bonnie;Zachary Simmons;Lynne Taylor;Leon G. Epstein;Matthew Rizzo;Justin A. Sattin;James A. Russell;William D. Graf;Robin Conwit;Matthew Kirschen;Daniel G. Larriviere,2020-04-14,0,Neurology,641-643,10.1212/WNL.0000000000009237,32179699.0,85085040486,2-s2.0-85085040486,Editorial,,https://api.elsevier.com/content/abstract/scopus_id/85085040486,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85085040486&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85085040486&origin=inward +Primary lateral sclerosis: Consensus diagnostic criteria,Floeter,Hiroshi Mitsumoto;Philippe Corcia;Matthew C. Kiernan;Vincenzo Silani;Zachary Simmons;Martin R. Turner;Matthew B. Harms;Leonard H. Van Den Berg;John K. Fink;John Ravits;Richard J. Barohn;Jeffrey Statland,2020-04-01,4,"Journal of Neurology, Neurosurgery and Psychiatry",373-377,10.1136/jnnp-2019-322541,32029539.0,85079217298,2-s2.0-85079217298,Article,MNDA,https://api.elsevier.com/content/abstract/scopus_id/85079217298,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85079217298&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85079217298&origin=inward +Primary lateral sclerosis (PLS) functional rating scale: PLS-specific clinimetric scale,Floeter,Eric Sorenson;Zachary Simmons;Codruta Chiuzan;Sharon Nations;J. Americo M. Fernandes Filho;Madison Gilmore;Hiroshi Mitsumoto;Yuan Zhang;Lorne Zinman;Brittany McHale;Nicholas Maragakis;Nanette Joyce;Stephen Scelsa;Sabrina Paganoni;Bjorn Oskarsson;Erik P. Pioro;Lauren Elman;Jonathan Hupf;Christina Nicole Fournier;Yasushi Y. Kisanuki;Mary Kay Floeter;Ghazala Hayat;Daragh Heitzman;Omar Jawdat;Terry Heiman-Patterson;David Walk,2020-02-01,3,Muscle and Nerve,163-172,10.1002/mus.26765,31758557.0,85077028533,2-s2.0-85077028533,Article,CYTK,https://api.elsevier.com/content/abstract/scopus_id/85077028533,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85077028533&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85077028533&origin=inward +Motor function decline correlates with behavioral impairment in C9orf72 mutation carriers,Floeter,Shreya Gandhy;Mary Kay Floeter;Jennifer Farren,2020-01-21,0,Neurology,134-136,10.1212/WNL.0000000000008810,31848258.0,85078383601,2-s2.0-85078383601,Article,,https://api.elsevier.com/content/abstract/scopus_id/85078383601,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85078383601&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85078383601&origin=inward +Selection design phase II trial of high dosages of tamoxifen and creatine in amyotrophic lateral sclerosis,Floeter,Laura Simionescu;Elizabeth Simpson;Zachary Simmons;Katy Mahoney;Katherine E. Jackson;Johnny S. Salameh;Eric A. Macklin;Suma Babu;Mazen M. Dimachkie;Hong Yu;Jason Walker;Benjamin Rix Brooks;Nazem Atassi;Alan Pestronk;David Schoenfeld;Paul E. Barkhaus;Merit E. Cudkowicz;Swati Aggarwal;Michael D. Weiss;William S. David;Jeremy Shefner,2020-01-02,2,Amyotrophic Lateral Sclerosis and Frontotemporal Degeneration,15-23,10.1080/21678421.2019.1672750,31608711.0,85074356829,2-s2.0-85074356829,Article,,https://api.elsevier.com/content/abstract/scopus_id/85074356829,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85074356829&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85074356829&origin=inward +Electrical impedance myography (EIM) in a natural history study of C9ORF72 mutation carriers,Floeter,Mary Kay Floeter;Michelle B. Offit;Tanya J. Lehky;Tianxia Wu,2020-01-01,0,Amyotrophic Lateral Sclerosis and Frontotemporal Degeneration,,10.1080/21678421.2020.1752247,,85083719754,2-s2.0-85083719754,Article,ATSDR,https://api.elsevier.com/content/abstract/scopus_id/85083719754,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85083719754&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85083719754&origin=inward +Optimizing Telemedicine to Facilitate ALS Clinical Trials,Floeter,Sabrina Paganon;James D. Berr;Raghav Govindarajan;Zachary Simmons;Michael T. Pulley,2020-01-01,0,Muscle and Nerve,,10.1002/mus.26921,32415876.0,85085750634,2-s2.0-85085750634,Note,,https://api.elsevier.com/content/abstract/scopus_id/85085750634,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85085750634&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85085750634&origin=inward +Understanding the needs of people with ALS: a national survey of patients and caregivers,Floeter,Chad Heatwole;Zachary Simmons;Miriam Galvin;Calaneet Balas;Richard Bedlack;Neil Thakur;James D. Berry;Orla Hardiman;John Ravits;James Chan;Lucie Bruijn;Jill Yersak;John F.P. Bridges;Kate T. Brizzi,2020-01-01,0,Amyotrophic Lateral Sclerosis and Frontotemporal Degeneration,,10.1080/21678421.2020.1760889,32396393.0,85085060901,2-s2.0-85085060901,Article,CYTK,https://api.elsevier.com/content/abstract/scopus_id/85085060901,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85085060901&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85085060901&origin=inward +Clinical features of LRP4/agrin-antibody–positive myasthenia gravis: A multicenter study,Floeter,Brandy M. Quarles;Ikjae Lee;Zachary Simmons;Jin Xiu Pan;George Small;Eroboghene Ubogu;Richard Barohn;Mazen M. Dimachkie;James Caress;Richard J. Nowak;Michael H. Rivner;Robert P. Lisak;Andrea Corse;Carlayne Jackson;Lin Mei;Stephen Scelsa;J. Americo Fernandes;Clifton Gooch;James F. Howard;Tuan Vu;Hongyan Xu;R. Bhavaraju Sanka;Zheng Yu;Andrea Swenson;Mamatha Pasnoor;Vanessa Baute;Jerry Belsh,2020-01-01,0,Muscle and Nerve,,10.1002/mus.26985,32483837.0,85086224074,2-s2.0-85086224074,Article,,https://api.elsevier.com/content/abstract/scopus_id/85086224074,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85086224074&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85086224074&origin=inward +Thank you to our reviewers,Floeter,Zachary Simmons,2019-12-01,0,Muscle & nerve,816-818,10.1002/mus.26285,31729058.0,85075086064,2-s2.0-85075086064,Article,,https://api.elsevier.com/content/abstract/scopus_id/85075086064,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85075086064&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85075086064&origin=inward +"Postmortem Cortex Samples Identify Distinct Molecular Subtypes of ALS: Retrotransposon Activation, Oxidative Stress, and Activated Glia",Floeter,Edward B. Lee;Towfique Raj;James R. Broach;Zachary Simmons;Isabel Hubbard;Samantha Fennessey;Nikolaos A. Patsopoulos;Daniel J. MacGowan;Suma Babu;Robert Bowser;Regina Shaw;Jennifer Phillips-Cremins;Oliver H. Tam;Vivianna M. Van Deerlin;Eran Hornstein;Colin Smith;Justin Kwan;Frank Baas;Mary Poss;James D. Berry;Nazem Atassi;Leonidas Stefanis;Eleonora Aronica;Duyang Kim;Oleg Butovsky;Molly Gale Hammell;Dale J. Lange;Sabrina Paganoni;Darius J. Adams;Matt Harms;Robert Baloh;Suvankar Pal;Andrea Malaspina;Efthimios Dardiotis;Avindra Nath;Molly G. Hammell;Noah Zaitlen;John Crary;Marc Gotkine;Timothy M. Miller;Siddharthan Chandran;Ernest Fraenkel;Nadia Propp;Lyle W. Ostrow;Hemali Phatnani;Dhruv Sareen;Leslie M. Thompson;Pietro Fratta;Terry Heiman-Patterson;Brent T. Harris;Steve Finkbeiner;Ophir Shalem;Neil A. Shneider;Gregory A. Cox;Delphine Fagegaltier;Josh Dubnau;John Ravits;Ximena Arcila-Londono;Bin Zhang;Nikolay V. Rozhkov,2019-10-29,9,Cell Reports,1164-1177.e5,10.1016/j.celrep.2019.09.066,31665631.0,85074157599,2-s2.0-85074157599,Article,CZI,https://api.elsevier.com/content/abstract/scopus_id/85074157599,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85074157599&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85074157599&origin=inward +Changing with the times,Floeter,Zachary Simmons,2019-10-01,0,Muscle and Nerve,343-344,10.1002/mus.26682,31444976.0,85072357295,2-s2.0-85072357295,Editorial,,https://api.elsevier.com/content/abstract/scopus_id/85072357295,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85072357295&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85072357295&origin=inward +ULTRASOUND IN THE DIAGNOSIS AND MONITORING OF AMYOTROPHIC LATERAL SCLEROSIS: A REVIEW,Floeter,Lisa D. Hobson-Webb;Zachary Simmons,2019-08-01,3,Muscle and Nerve,114-123,10.1002/mus.26487,30989697.0,85065048170,2-s2.0-85065048170,Review,CSF,https://api.elsevier.com/content/abstract/scopus_id/85065048170,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85065048170&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85065048170&origin=inward +Evaluation of remote pulmonary function testing in motor neuron disease,Floeter,Andrew Geronimo;Zachary Simmons,2019-07-03,5,Amyotrophic Lateral Sclerosis and Frontotemporal Degeneration,348-355,10.1080/21678421.2019.1587633,30957547.0,85063942998,2-s2.0-85063942998,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85063942998,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85063942998&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85063942998&origin=inward +Shared polygenic risk and causal inferences in amyotrophic lateral sclerosis,Floeter,Alastair J. Noyce;Federico Casale;Aude Nicolas;Maurizio Grassano;Roy H. Campbell;Maura Pugliatti;Mario Sabatelli;Stefania Cammarosano;Antonio Petrucci;Nicola Fini;Ilaria Bartolomei;Emanuela Costantino;Gianluigi Mancardi;Maria Giovanna Marrosu;William Camu;Vincenzo La Bella;Carlo Ferrarese;Silvana Penco;Lucio Tremolizzo;Daniele Cusi;Tiziana Colletti;Marialuisa Santarelli;Margherita Capasso;Robert Bowser;Paolo Volanti;Stefania Tranquilli;Adriano Chiò;Christopher B. Brady;Angelo Pirisi;Yevgeniya Abramzon;Ruth Chia;Jinhui Ding;Giuseppe Marrali;Gabriele Mora;Cristina Moglia;Nilo Riva;Antonio Fasano;Paola Carrera;Giovanni Piccirillo;Claudia Caponnetto;Robert H. Baloh;Marcella Zollino;Gianluca Floris;Letizia Mazzini;Carla Pani;John Cooper-Knock;Jessica Mandrioli;Fabrizio Pisano;Umberto Manera;Stefania Battistini;Kalliopi Marinou;Giancarlo Logroscino;Giuseppe Borghero;Alessandro Arosio;Sandra D'Alfonso;Sampath Arepalli;Vivian E. Drory;Lucia Corrado;Fabio Giannini;Paola Origone;Cinzia Femiano;Travis L. Dunckley;Alexis Brice;Gioacchino Tedeschi;Christian Lunetta;Francesca Trojsi;Maria Rosaria Monsurro;Lorena Mosca;Marco Barberis;Rossella Spataro;Raffaella Tanel;Giuseppe Fuda;Fabrizio Salvi;Gibran Hemani;Michele Benigni;Carsten Drepper;Serena Lattante;Giuseppe Marangi;Antonio Canosa;Antonio Ilardi;Maria Rita Murru;Paola Mandich;Sonia Messina;Antonino Cannas;Amelia Conte;Riccardo Sideri;Isabella Simone;Francesco O. Logullo;Maura Brunetti;Sara Bandres-Ciga;Francesca L. Conforti;Patrizia Occhineri;Claudia Ricci;Maurizio Melis;Sebastiano Cavallaro;Gabriella Restagno;Daniela Loi;Carla Caredda;James Broach;Andrea Calvo,2019-04-01,18,Annals of Neurology,470-481,10.1002/ana.25431,30723964.0,85062936004,2-s2.0-85062936004,Article,UNITO,https://api.elsevier.com/content/abstract/scopus_id/85062936004,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85062936004&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85062936004&origin=inward +Guidelines for authors: A view from the editor's desk,Floeter,Zachary Simmons,2019-02-01,0,Muscle and Nerve,147-148,10.1002/mus.26399,30549059.0,85059588922,2-s2.0-85059588922,Editorial,,https://api.elsevier.com/content/abstract/scopus_id/85059588922,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85059588922&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85059588922&origin=inward +"In memorium: WALTER STOLOV, MD",Floeter,Lawrence R. Robinson;Zachary Simmons,2019-01-01,0,Muscle & nerve,1-2,10.1002/mus.26368,30556151.0,85059261621,2-s2.0-85059261621,Article,,https://api.elsevier.com/content/abstract/scopus_id/85059261621,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85059261621&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85059261621&origin=inward +Telemedicine to innovate amyotrophic lateral sclerosis multidisciplinary care: The time has come,Floeter,Sabrina Paganoni;Zachary Simmons,2019-01-01,6,Muscle and Nerve,3-5,10.1002/mus.26311,30066337.0,85058785442,2-s2.0-85058785442,Editorial,,https://api.elsevier.com/content/abstract/scopus_id/85058785442,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85058785442&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85058785442&origin=inward +Vowel-specific intelligibility and acoustic patterns in individuals with dysarthria secondary to amyotrophic lateral sclerosis,Floeter,Emily Dickey;Jimin Lee;Zachary Simmons,2019-01-01,1,"Journal of Speech, Language, and Hearing Research",34-59,10.1044/2018_JSLHR-S-17-0357,30950759.0,85064173794,2-s2.0-85064173794,Article,PSU,https://api.elsevier.com/content/abstract/scopus_id/85064173794,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85064173794&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85064173794&origin=inward +The translational neural circuitry of anxiety,Grillon,Oliver J. Robinson;Alexandra C. Pike;Christian Grillon;Brian Cornwell,2019-12-01,5,"Journal of Neurology, Neurosurgery and Psychiatry",1353-1360,10.1136/jnnp-2019-321400,31256001.0,85068350181,2-s2.0-85068350181,Review,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85068350181,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85068350181&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85068350181&origin=inward +Fear-potentiated startle response as an endophenotype: Evaluating metrics and methods for genetic applications,Grillon,Scott Vrana;Dever M. Carney;Ellen Leibenluft;Jeanne E. Savage;Oumaima Kaabi;John M. Hettema;Daniel S. Pine;Roxann Roberson-Nay;Christian Grillon;Laura Machlin;Elizabeth Moroney;Chelsea K. Sawyers;Melissa A. Brotman;Brad Verhulst;Jessica L. Bourdon;Ashlee A. Moore,2019-05-01,1,Psychophysiology,,10.1111/psyp.13325,30613993.0,85059578284,2-s2.0-85059578284,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85059578284,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85059578284&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85059578284&origin=inward +Effects of TPH2 gene variation and childhood trauma on the clinical and circuit-level phenotype of functional movement disorders,Hallett,Carine W. Maurer;Mark Hallett;Colin Hodgkinson;Silvina Horovitz;David Goldman;Primavera A. Spagnolo;Gina Norato,2020-08-01,0,"Journal of Neurology, Neurosurgery and Psychiatry",814-821,10.1136/jnnp-2019-322636,32576619.0,85088496283,2-s2.0-85088496283,Article,,https://api.elsevier.com/content/abstract/scopus_id/85088496283,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85088496283&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85088496283&origin=inward +Low-frequency transcranial magnetic stimulation of the left dorsal premotor cortex in patients with cervical dystonia,Hallett,Hae Won Shin;Mark Hallett,2020-07-01,0,Parkinsonism and Related Disorders,13-15,10.1016/j.parkreldis.2020.05.027,32535288.0,85086097109,2-s2.0-85086097109,Letter,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85086097109,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85086097109&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85086097109&origin=inward +Myoclonus: An Electrophysiological Diagnosis,Hallett,Felipe Vial-Undurraga;Giorgio Leodori;Mark Hallett;Jay A. van Gerpen;Shabbir Hussain I. Merchant,2020-07-01,0,Movement Disorders Clinical Practice,489-499,10.1002/mdc3.12986,,85087186310,2-s2.0-85087186310,Review,,https://api.elsevier.com/content/abstract/scopus_id/85087186310,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85087186310&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85087186310&origin=inward +Human brain connectivity: Clinical applications for clinical neurophysiology,Hallett,Rick C. Helmich;Lukas J. Volz;Gustavo Deco;Fabrizio Vecchio;Christian Gerloff;Tao Wu;Christian Grefkes;Morten L. Kringelbach;Ondřej Strýček;Paolo M. Rossini;Mark Hallett;Ivan Rektor;Riccardo Di Iorio;Willem de Haan;Reinhard Dengler;Cecile Gallea;Francesca Miraglia,2020-07-01,0,Clinical Neurophysiology,1621-1651,10.1016/j.clinph.2020.03.031,32417703.0,85084423140,2-s2.0-85084423140,Review,DFG,https://api.elsevier.com/content/abstract/scopus_id/85084423140,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85084423140&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85084423140&origin=inward +Functional gait disorders: A sign-based approach,Hallett,Stephen G. Reich;Mark Hallett;Jorik Nonnekes;Bastiaan R. Bloem;Evžen Růžička;Tereza Serranová,2020-06-16,0,Neurology,1093-1099,10.1212/WNL.0000000000009649,32482839.0,85086525286,2-s2.0-85086525286,Review,,https://api.elsevier.com/content/abstract/scopus_id/85086525286,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85086525286&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85086525286&origin=inward +Re-emergent Tremor in Parkinson's Disease: The Role of the Motor Cortex,Hallett,Daniele Belvisi;Matteo Costanzo;Felipe Vial;Giorgio Leodori;Maria I. De Bartolo;Mark Hallett;Antonella Conte;Alfredo Berardelli;Andrea Fabbrini,2020-06-01,0,Movement Disorders,1002-1011,10.1002/mds.28022,32175656.0,85081717317,2-s2.0-85081717317,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85081717317,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85081717317&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85081717317&origin=inward +Opinions and clinical practices related to diagnosing and managing functional (psychogenic) movement disorders: changes in the last decade,Hallett,M. Hallett;A. E. Lang;S. Lidstone;F. Morgante;K. LaFaver;A. J. Espay;M. Edwards;J. Stone;C. W. Maurer;A. K. Dwivedi,2020-06-01,0,European Journal of Neurology,975-984,10.1111/ene.14200,32153070.0,85082761012,2-s2.0-85082761012,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85082761012,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85082761012&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85082761012&origin=inward +Task-specific interhemispheric hypoconnectivity in writer's cramp – An EEG study,Hallett,Silvina G. Horovitz;Ajay S. Pillai;Mark Hallett;Nivethida Thirugnanasambandam;Jessica Shields;Tyler Zimmerman,2020-05-01,0,Clinical Neurophysiology,985-993,10.1016/j.clinph.2020.01.011,32193164.0,85081647501,2-s2.0-85081647501,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85081647501,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85081647501&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85081647501&origin=inward +Defining research priorities in dystonia,Hallett,Philip A. Starr;Laurie Ozelius;Sarah E. Pirio Richardson;Jennifer C. Moore;Roy Sillitoe;Joel S. Perlmutter;Nutan Sharma;Laura Scheinfeldt;Christine Swanson-Fisher;Anna Taylor;Kristina Simonyan;David Standaert;Beth Anne Sieber;Brian D. Berman;Nicole Calakos;Mark Hallett;Rachel Saunders-Pullman;Codrin Lungu;Jerrold Vitek,2020-03-24,0,Neurology,526-537,10.1212/WNL.0000000000009140,32098856.0,85082342443,2-s2.0-85082342443,Review,,https://api.elsevier.com/content/abstract/scopus_id/85082342443,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85082342443&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85082342443&origin=inward +Characteristics of oscillatory pallidal neurons in patients with Parkinson's disease,Hallett,Yongsheng Hu;Yuqing Zhang;Mark Hallett;Ping Zhuang;Jianyu Li;Detao Meng;Yongjie Li,2020-03-15,0,Journal of the Neurological Sciences,,10.1016/j.jns.2019.116661,31918151.0,85077327067,2-s2.0-85077327067,Article,MOE,https://api.elsevier.com/content/abstract/scopus_id/85077327067,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85077327067&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85077327067&origin=inward +Evolving concepts on bradykinesia,Hallett,Giulia Paparella;Matteo Bologna;Alfonso Fasano;Mark Hallett;Alfredo Berardelli,2020-03-01,4,Brain,727-750,10.1093/brain/awz344,31834375.0,85079381636,2-s2.0-85079381636,Review,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85079381636,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85079381636&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85079381636&origin=inward +Parietal conditioning enhances motor surround inhibition,Hallett,Traian Popa;Giorgio Leodori;Alexandra Mandel;Sarung Kashyap;Panagiotis Kassavetis;Mark Hallett;Gregg Khodorov;Alexander Shaft;Nivethida Thirugnanasambandam;Jaron Kee,2020-03-01,0,Brain Stimulation,447-449,10.1016/j.brs.2019.12.011,31879086.0,85076850852,2-s2.0-85076850852,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85076850852,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85076850852&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85076850852&origin=inward +"Correction to: Are there any differential responses to concussive injury in civilian versus athletic populations: a neuroimaging study (Brain Imaging and Behavior, (2020), 14, 1, (110-117), 10.1007/s11682-018-9982-1)",Hallett,Brian Johnson;Andrew R. Mayer;Mark Hallett;Semyon Slobounov;Andrew Dodd,2020-02-01,0,Brain Imaging and Behavior,118,10.1007/s11682-018-0015-x,30456625.0,85056896958,2-s2.0-85056896958,Erratum,,https://api.elsevier.com/content/abstract/scopus_id/85056896958,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85056896958&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85056896958&origin=inward +Are there any differential responses to concussive injury in civilian versus athletic populations: a neuroimaging study,Hallett,Brian Johnson;Andrew R. Mayer;Mark Hallett;Semyon Slobounov;Andrew Dodd,2020-02-01,0,Brain Imaging and Behavior,110-117,10.1007/s11682-018-9982-1,30361946.0,85055946140,2-s2.0-85055946140,Article,,https://api.elsevier.com/content/abstract/scopus_id/85055946140,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85055946140&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85055946140&origin=inward +Gender as a Risk Factor for Functional Movement Disorders: The Role of Sexual Abuse,Hallett,Stefan H. Sillau;Sanaz Attaripour Isfahani;Mark Hallett;Kathrin LaFaver;Isaiah Kletenik;Brian D. Berman,2020-02-01,2,Movement Disorders Clinical Practice,177-181,10.1002/mdc3.12863,,85076377440,2-s2.0-85076377440,Article,"CNS, UC",https://api.elsevier.com/content/abstract/scopus_id/85076377440,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85076377440&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85076377440&origin=inward +Transcranial Pulse Stimulation with Ultrasound in Alzheimer's Disease—A New Navigated Focal Brain Therapy,Hallett,Raphael Reinecke;Cédric Goldenstedt;Alexandra Weber;Henning Lohse-Busch;Marleen Schönfeld;Johann Lehrner;Eva Matt;Tabea Philippi Novak;Ulrike Reime;Ernst Marlinghaus;Mark Hallett;Tuna Aslan;Roland Beisteiner;Christina Fan;Heike Baldysiak;Ahmad Amini,2020-02-01,2,Advanced Science,,10.1002/advs.201902583,,85076905050,2-s2.0-85076905050,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85076905050,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85076905050&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85076905050&origin=inward +"BacAv, a new free online platform for clinical back-averaging",Hallett,Felipe Vial;Mark Hallett;Patrick McGurrin;Sanaz Attaripour,2020-01-01,0,Clinical Neurophysiology Practice,38-42,10.1016/j.cnp.2019.12.001,,85079671191,2-s2.0-85079671191,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85079671191,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85079671191&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85079671191&origin=inward +"Tremoroton, a new free online platform for tremor analysis",Hallett,Felipe Vial;Mark Hallett;Patrick McGurrin;Debra Ehrlich;Thomas Osterholt;Dietrich Haubenberger,2020-01-01,0,Clinical Neurophysiology Practice,30-34,10.1016/j.cnp.2019.11.004,,85077703314,2-s2.0-85077703314,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85077703314,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85077703314&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85077703314&origin=inward +Freezing of gait: Understanding the complexity of an enigmatic phenomenon,Hallett,Daniel Weiss;Anna Schoellmann;Alice Nieuwboer;Stewart A. Factor;Mark Hallett;Nicolaas I. Bohnen;Michael D. Fox;Simon J.G. Lewis,2020-01-01,6,Brain,14-30,10.1093/brain/awz314,31647540.0,85076719762,2-s2.0-85076719762,Review,MDS,https://api.elsevier.com/content/abstract/scopus_id/85076719762,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85076719762&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85076719762&origin=inward +Outcome measures for functional neurological disorder: A review of the theoretical complexities,Hallett,David L. Perez;Susannah Pick;Clare Nicholson;Mark Hallett;Glenn Nielsen;Timothy R. Nicholson;Laura H. Goldstein;Jon Stone;Bridget Mildon;Alan Carson;Mark J. Edwards,2020-01-01,4,Journal of Neuropsychiatry and Clinical Neurosciences,33-42,10.1176/appi.neuropsych.19060128,31865871.0,85078548167,2-s2.0-85078548167,Article,NIHR,https://api.elsevier.com/content/abstract/scopus_id/85078548167,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85078548167&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85078548167&origin=inward +International Federation of Clinical Neurophysiology (IFCN) – EEG research workgroup: Recommendations on frequency and topographic analysis of resting state EEG rhythms. Part 1: Applications in clinical research studies,Hallett,Robert T. Knight;Wilhelmus H.I.M. Drinkenburg;Robert Oostenveld;Katarzyna J. Blinowska;Wolfgang Klimesch;Roberto Pascual-Marqui;Claudio Babiloni;Mark Hallett;Pedro Valdes-Sosa;Andrzej Cichocki;Paul Nunez;Erol Başar;Robert J. Barry;Fernando Lopes da Silva;Jaeseung Jeong,2020-01-01,5,Clinical Neurophysiology,285-307,10.1016/j.clinph.2019.06.234,31501011.0,85071871317,2-s2.0-85071871317,Review,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85071871317,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85071871317&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85071871317&origin=inward +Outcome measurement in functional neurological disorder: A systematic review and recommendations,Hallett,Alberto J. Espay;Ali A. Asadi-Pooya;Beátrice Garcin;Michele Tinazzi;Laura H. Goldstein;David G. Anderson;Jon Stone;Lorna Myers;Trudie Chalder;Tereza Serranova;Carine W. Maurer;Francesca Morgante;Marina A.J. Tijssen;Alan J. Carson;Joseph Jankovic;Kasia Kozlowska;Anthony S. David;Karen S. Rommelfanger;Kathrin Lafaver;Bridget Mildon;W. Curt Lafrance;Glenn T. Stebbins;Richard A. Kanaan;Richard J. Brown;Selma Aybek;Bastiaan R. Bloem;Mark J. Edwards;Petra Schwingenshuh;Paul Shotbolt;David L. Perez;Gaston Baslet;Susannah Pick;Eileen M. Joyce;Clare Nicholson;Mark Hallett;Maria Damianova;Alex Lehn;Glenn Nielsen;Abigail Bradley-Westguard;Steven A. Epstein;Anthony E. Lang;Markus Reuber;Timothy R. Nicholson;Roxanne C. Keynejad;Stoyan Popkirov;Sarah Lidstone,2020-01-01,2,"Journal of Neurology, Neurosurgery and Psychiatry",,10.1136/jnnp-2019-322180,32111637.0,85081699833,2-s2.0-85081699833,Review,,https://api.elsevier.com/content/abstract/scopus_id/85081699833,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85081699833&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85081699833&origin=inward +Focal Leg Dystonia Associated with Cerebellar Infarction and Application of Low-Frequency Cerebellar Transcranial Magnetic Stimulation: Evidence of Topographically Specific Cerebellar Contribution to Dystonia Development,Hallett,Hae Won Shin;Mark Hallett;Young Chul Youn,2019-12-01,0,Cerebellum,1147-1150,10.1007/s12311-019-01054-0,31256315.0,85068328307,2-s2.0-85068328307,Article,,https://api.elsevier.com/content/abstract/scopus_id/85068328307,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85068328307&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85068328307&origin=inward +Lack of Target Engagement Following Low-Frequency Deep Transcranial Magnetic Stimulation of the Anterior Insula,Hallett,Markus Heilig;Melanie Schwandt;Mark Hallett;Prachaya Srivanitchapoom;Han Wang;Primavera A. Spagnolo,2019-12-01,2,Neuromodulation,877-883,10.1111/ner.12875,30370983.0,85055718863,2-s2.0-85055718863,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85055718863,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85055718863&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85055718863&origin=inward +Consensus Paper: Experimental Neurostimulation of the Cerebellum,Hallett,Kenneth B. Baker;Michelle Y. Cheng;Abbas Z. Kouzani;Lauren N. Miterko;Dagmar Timmann;Alana B. McCambridge;Mario Manto;Traian Popa;Mahlon R. DeLong;Michael A. Nitsche;Masaki Tanaka;Eric H. Wang;Andre Machado;Tao Xie;Detlef H. Heck;Elan D. Louis;Thomas Wichmann;Lynley V. Bradnam;Gary K. Steinberg;Freek E. Hoebeek;Mark Hallett;Jaclyn Beckinghausen;Simona V. Gornati;Roy V. Sillitoe;Sheng Han Kuo;Jessica Cooperrider;Nordeyn Oulad Ben Taib,2019-12-01,15,Cerebellum,1064-1097,10.1007/s12311-019-01041-5,31165428.0,85067246896,2-s2.0-85067246896,Article,FNRS,https://api.elsevier.com/content/abstract/scopus_id/85067246896,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85067246896&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85067246896&origin=inward +Brainstem Functions and Reflexes,Hallett,Josep Valls-Solé;Mark Hallett,2019-11-01,0,Journal of Clinical Neurophysiology,395,10.1097/WNP.0000000000000584,31688321.0,85074548595,2-s2.0-85074548595,Editorial,,https://api.elsevier.com/content/abstract/scopus_id/85074548595,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85074548595&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85074548595&origin=inward +How Do I Assess Tremor Using Novel Technology?,Hallett,Katherine Longardner;Mark Hallett;Felipe Vial Undurraga;Fatta B. Nahab;Dietrich Haubenberger,2019-11-01,1,Movement Disorders Clinical Practice,733-734,10.1002/mdc3.12818,,85074669748,2-s2.0-85074669748,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85074669748,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85074669748&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85074669748&origin=inward +Evidence From Parkinson's Disease That the Superior Colliculus Couples Action and Perception,Hallett,Lance M. Optican;Elena Pretegiani;Mark Hallett;Nora Vanegas-Arroyave;Edmond J. FitzGibbon,2019-11-01,1,Movement Disorders,1680-1689,10.1002/mds.27861,31633242.0,85074371990,2-s2.0-85074371990,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85074371990,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85074371990&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85074371990&origin=inward +Botulinum toxin and occupational therapy for Writer's cramp,Hallett,Katharine Alter;Barbara Karp;Tianxia Wu;Ejaz A. Shamim;Monica Villegas;P. Mathew;Omar F. Ahmad;Mark Hallett;Jung E. Park;Camilo Toro;Jonathan Sackett;Pattamon Panyakaew;Codrin Lungu;Sungyoung Auh,2019-11-01,1,Toxicon,12-17,10.1016/j.toxicon.2019.07.010,31351085.0,85070711291,2-s2.0-85070711291,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85070711291,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85070711291&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85070711291&origin=inward +Effect of light on blinking in patients with idiopathic isolated blepharospasm,Hallett,Yiwen Wu;Tianxia Wu;Nguyet Dang;Charulata Sankhla Savant;Mark Hallett;Pattamon Panyakaew;Hyun Joo Cho,2019-10-01,0,Parkinsonism and Related Disorders,66-71,10.1016/j.parkreldis.2019.09.010,31621610.0,85073122626,2-s2.0-85073122626,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85073122626,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85073122626&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85073122626&origin=inward +Methods for analysis of brain connectivity: An IFCN-sponsored review,Hallett,M. A. Nitsche;M. Hallett;R. Di Iorio;F. Vecchio;G. Bertini;Y. Ugawa;F. Pestilli;M. Rosanova;U. Ziemann;P. M. Rossini;R. J. Ilmoniemi;F. Ferreri;F. Miraglia;M. Bentivoglio;C. Tesoriero;C. Gerloff;Y. Shirota,2019-10-01,14,Clinical Neurophysiology,1833-1858,10.1016/j.clinph.2019.06.006,31401492.0,85070222418,2-s2.0-85070222418,Review,,https://api.elsevier.com/content/abstract/scopus_id/85070222418,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85070222418&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85070222418&origin=inward +Hiding in plain sight: Functional neurological disorders in the news,Hallett,Alberto J. Espay;Aileen McGonigal;Michele Tinazzi;Jon Stone;Maria Stamelou;Francesca Morgante;Marina A.J. Tijssen;Alan J. Carson;Christopher P. Derry;Alexander Lehn;Philip Smith;Bastiaan R. Bloem;Mark J. Edwards;Barbara A. Dworetzky;David L. Perez;Roderick Duncan;Mark Hallett;Markus Reuber;John Paul Leach;Timothy R. Nicholson;Mark P. Richardson;Anthony E. Lang;Hannah R. Cock;Stoyan Popkirov,2019-10-01,2,Journal of Neuropsychiatry and Clinical Neurosciences,361-367,10.1176/appi.neuropsych.19010025,31117907.0,85073183339,2-s2.0-85073183339,Article,NIHR,https://api.elsevier.com/content/abstract/scopus_id/85073183339,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85073183339&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85073183339&origin=inward +"Response to the letter to the editor, “cerebellar repetitive transcranial magnetic stimulation for patients with essential tremor”",Hallett,Hae Won Shin;Young H. Sohn;Mark Hallett,2019-09-01,0,Parkinsonism and Related Disorders,260,10.1016/j.parkreldis.2019.07.027,31353308.0,85072773159,2-s2.0-85072773159,Letter,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85072773159,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85072773159&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85072773159&origin=inward +Re-emergent tremor provocation,Hallett,Malco Rossi;Alberto D. Rivero;Mark Hallett;Miguel Wilken;Marcelo Merello,2019-09-01,1,Parkinsonism and Related Disorders,241-244,10.1016/j.parkreldis.2019.08.015,31471122.0,85071302286,2-s2.0-85071302286,Article,,https://api.elsevier.com/content/abstract/scopus_id/85071302286,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85071302286&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85071302286&origin=inward +Dancing Dorsal Quadrilaterals - Organic or Functional?,Hallett,Mark Hallett;Anjali Chouksey;Sanjay Pandey,2019-08-01,0,JAMA Neurology,985,10.1001/jamaneurol.2019.1717,31259998.0,85068241662,2-s2.0-85068241662,Letter,NIH,https://api.elsevier.com/content/abstract/scopus_id/85068241662,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85068241662&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85068241662&origin=inward +Functional movement disorders: Is the crisis resolved?,Hallett,Mark Hallett,2019-07-01,2,Movement Disorders,971-974,10.1002/mds.27713,31077443.0,85065718835,2-s2.0-85065718835,Note,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85065718835,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85065718835&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85065718835&origin=inward +Pathogenesis and pathophysiology of functional (psychogenic) movement disorders,Hallett,Joseph Jankovic;José Fidel Baizabal-Carvallo;Mark Hallett,2019-07-01,17,Neurobiology of Disease,32-44,10.1016/j.nbd.2019.02.013,30798005.0,85061903841,2-s2.0-85061903841,Review,,https://api.elsevier.com/content/abstract/scopus_id/85061903841,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85061903841&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85061903841&origin=inward +Blepharospasm: A genetic screening study in 132 patients,Hallett,Ava Mahloogi;Mark Hallett;Elisa Majounie;Elizabeth Peckham;Andrew Singleton;Monia Hammer;Alexandra Abravanel,2019-07-01,5,Parkinsonism and Related Disorders,315-318,10.1016/j.parkreldis.2019.04.003,30956059.0,85063762259,2-s2.0-85063762259,Article,NIA,https://api.elsevier.com/content/abstract/scopus_id/85063762259,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85063762259&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85063762259&origin=inward +MDS evidence-based review of treatments for essential tremor,Hallett,Eng King Tan;Tiago A. Mestre;Joaquim J. Ferreira;Julián Benito-León;Mark Hallett;Dietrich Haubenberger;Rodger Elble;Günther Deuschl;Giovanni Abbruzzese;Kelly E. Lyons,2019-07-01,6,Movement Disorders,950-958,10.1002/mds.27700,31046186.0,85065449992,2-s2.0-85065449992,Review,NIH,https://api.elsevier.com/content/abstract/scopus_id/85065449992,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85065449992&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85065449992&origin=inward +Compensation strategies for gait impairments in parkinson disease: A review,Hallett,Alice Nieuwboer;Alfonso Fasano;Mark Hallett;Jorik Nonnekes;Bastiaan R. Bloem;Evžen Růžička,2019-06-01,18,JAMA Neurology,718-725,10.1001/jamaneurol.2019.0033,30907948.0,85063279032,2-s2.0-85063279032,Review,MJFF,https://api.elsevier.com/content/abstract/scopus_id/85063279032,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85063279032&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85063279032&origin=inward +"Focus on the pedunculopontine nucleus. Consensus review from the May 2018 brainstem society meeting in Washington, DC, USA",Hallett,E. Garcia-Rill;J. Nonnekes;M. Hallett;J. Valls-Solé;C. B. Saper;M. Kofler;David B. Rye;A. Lozano,2019-06-01,8,Clinical Neurophysiology,925-940,10.1016/j.clinph.2019.03.008,30981899.0,85064274867,2-s2.0-85064274867,Review,NIGMS,https://api.elsevier.com/content/abstract/scopus_id/85064274867,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85064274867&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85064274867&origin=inward +Effects of deep brain stimulation on the primary motor cortex: Insights from transcranial magnetic stimulation studies,Hallett,Mark Hallett;Zhen Ni;Robert Chen;Kaviraja Udupa,2019-04-01,2,Clinical Neurophysiology,558-567,10.1016/j.clinph.2018.10.020,30527386.0,85057777761,2-s2.0-85057777761,Review,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85057777761,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85057777761&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85057777761&origin=inward +The role of sensory information in the pathophysiology of focal dystonias,Hallett,Giovanni Defazio;Mark Hallett;Antonella Conte;Giovanni Fabbrini;Alfredo Berardelli,2019-04-01,13,Nature Reviews Neurology,224-233,10.1038/s41582-019-0137-9,30700825.0,85060941990,2-s2.0-85060941990,Review,,https://api.elsevier.com/content/abstract/scopus_id/85060941990,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85060941990&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85060941990&origin=inward +Latency of re-emergent tremor in Parkinson's disease is influenced by levodopa,Hallett,Malco D. Rossi;Alberto D. Rivero;Mark Hallett;Miguel Wilken;Marcelo Merello,2019-04-01,3,Parkinsonism and Related Disorders,166-169,10.1016/j.parkreldis.2018.10.019,30348494.0,85055057019,2-s2.0-85055057019,Article,,https://api.elsevier.com/content/abstract/scopus_id/85055057019,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85055057019&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85055057019&origin=inward +A novel exaggerated “spino-bulbo-spinal like” reflex of lower brainstem origin,Hallett,Shabbir Hussain Merchant;Felipe Vial;Stanley Fahn;Giorgio Leodori;Mark Hallett;Seth L. Pullman,2019-04-01,1,Parkinsonism and Related Disorders,34-38,10.1016/j.parkreldis.2018.10.007,30316728.0,85054449540,2-s2.0-85054449540,Short Survey,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85054449540,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85054449540&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85054449540&origin=inward +Treatment of post-hypoxic myoclonus,Hallett,Mark Hallett,2019-01-01,0,Current Clinical Neurology,275-276,10.1007/978-3-319-97897-0_62,,85066895673,2-s2.0-85066895673,Chapter,,https://api.elsevier.com/content/abstract/scopus_id/85066895673,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85066895673&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85066895673&origin=inward +Dual-hemispheric transcranial direct current stimulation (tDCS) over primary motor cortex does not affect movement selection,Hallett,Nivethida Thirugnanasambandam;Felix G. Contreras-Castro;Mark Hallett,2019-01-01,0,PLoS ONE,,10.1371/journal.pone.0226103,31830094.0,85076424544,2-s2.0-85076424544,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85076424544,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85076424544&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85076424544&origin=inward +Differentiating tics from functional (psychogenic) movements with electrophysiological tools,Hallett,Felipe Vial;Mark Hallett;Sanaz Attaripour,2019-01-01,1,Clinical Neurophysiology Practice,143-147,10.1016/j.cnp.2019.04.005,,85069000022,2-s2.0-85069000022,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85069000022,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85069000022&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85069000022&origin=inward +Cerebellar repetitive transcranial magnetic stimulation for patients with essential tremor,Hallett,Hae Won Shin;Young H. Sohn;Mark Hallett,2019-01-01,5,Parkinsonism and Related Disorders,,10.1016/j.parkreldis.2019.03.019,30928207.0,85063354261,2-s2.0-85063354261,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85063354261,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85063354261&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85063354261&origin=inward +How to do an electrophysiological study of tremor,Hallett,Felipe Vial;Mark Hallett;Panagiotis Kassavetis;Shabbir Merchant;Dietrich Haubenberger,2019-01-01,5,Clinical Neurophysiology Practice,134-142,10.1016/j.cnp.2019.06.002,,85068921368,2-s2.0-85068921368,Review,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85068921368,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85068921368&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85068921368&origin=inward +Intracortical inhibition and surround inhibition in the motor cortex: A tms-EEG study,Hallett,Traian Popa;Giorgio Leodori;Hannah Conn;Mark Hallett;Nivethida Thirugnanasambandam;Alfredo Berardelli,2019-01-01,5,Frontiers in Neuroscience,,10.3389/fnins.2019.00612,,85068517171,2-s2.0-85068517171,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85068517171,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85068517171&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85068517171&origin=inward +Prevalence of restless legs syndrome in functional movement disorders: A case-control study from the Czech Republic,Hallett,David Kemlink;Karel Šonka;Mark Hallett;Matěj Slovák;Tereza Serranová;Evžen Ružicka,2019-01-01,2,BMJ Open,,10.1136/bmjopen-2018-024236,30670516.0,85060400100,2-s2.0-85060400100,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85060400100,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85060400100&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85060400100&origin=inward +Involvement of different neuronal components in the induction of cortical plasticity with associative stimulation,Hallett,Eduard Bercovici;Carolyn Gunraj;Mark Hallett;Robin F.H. Cash;Robert Chen;Zhen Ni,2019-01-01,3,Brain Stimulation,84-86,10.1016/j.brs.2018.08.019,30205951.0,85052986952,2-s2.0-85052986952,Article,CIHR,https://api.elsevier.com/content/abstract/scopus_id/85052986952,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85052986952&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85052986952&origin=inward +Modulation of resting connectivity between the mesial frontal cortex and basal ganglia,Hallett,Laurel S. Morris;Traian Popa;Karin Mente;Rachel Hunt;Mark Hallett;Valerie Voon;Silvina Horovitz;Kwangyeol Baek;Hitoshi Shitara;Zhi De Deng,2019-01-01,1,Frontiers in Neurology,,10.3389/fneur.2019.00587,,85069224665,2-s2.0-85069224665,Article,WT,https://api.elsevier.com/content/abstract/scopus_id/85069224665,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85069224665&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85069224665&origin=inward +Characterizing and predicting cortical evoked responses to direct electrical stimulation of the human brain,Inati,Sridevi Sarma;John H. Wittig;Cynthia R. Steinhardt;Kareem A. Zaghloul;Sara K. Inati;Pierre Sacré;Timothy C. Sheehan,2020-09-01,0,Brain Stimulation,1218-1225,10.1016/j.brs.2020.05.001,32526475.0,85086361010,2-s2.0-85086361010,Article,DARPA,https://api.elsevier.com/content/abstract/scopus_id/85086361010,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85086361010&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85086361010&origin=inward +Language lateralization from task-based and resting state functional MRI in patients with epilepsy,Inati,Xiaozhen You;Richard C. Reynolds;Javier Gonzalez-Castillo;William H. Theodore;Sara K. Inati;Rachel Rolinski;Gina Norato,2020-08-01,0,Human Brain Mapping,3133-3146,10.1002/hbm.25003,32329951.0,85083796368,2-s2.0-85083796368,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85083796368,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85083796368&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85083796368&origin=inward +Replay of cortical spiking sequences during human memory retrieval,Inati,Kareem A. Zaghloul;John H. Wittig;Sara K. Inati;Alex P. Vaz,2020-03-06,1,Science,1131-1134,10.1126/science.aaz3691,32139543.0,85081530905,2-s2.0-85081530905,Article,,https://api.elsevier.com/content/abstract/scopus_id/85081530905,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85081530905&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85081530905&origin=inward +Emerging roles of network analysis for epilepsy,Inati,Sridevi Sarma;Jennifer Stiso;William Stacey;Kareem Zaghloul;Beth A. Lopour;Jorge Gonzalez-Martinez;Sara Inati;Ankit N. Khambhati;Danielle S. Bassett;Kristin Gunnarsdottir;Richard Staba;Rachel J. Smith;Mark Kramer;Virginia B. Liu,2020-01-01,2,Epilepsy Research,,10.1016/j.eplepsyres.2019.106255,31855828.0,85076365131,2-s2.0-85076365131,Review,NSF,https://api.elsevier.com/content/abstract/scopus_id/85076365131,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85076365131&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85076365131&origin=inward +Changing temporal context in human temporal lobe promotes memory of distinct episodes,Inati,John H. Wittig;Kareem A. Zaghloul;Vishnu Sreekumar;Sara K. Inati;Mostafa M. El-Kalliny;Timothy C. Sheehan,2019-12-01,5,Nature Communications,,10.1038/s41467-018-08189-4,30643130.0,85060060314,2-s2.0-85060060314,Article,DARPA,https://api.elsevier.com/content/abstract/scopus_id/85060060314,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85060060314&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85060060314&origin=inward +Large-Scale Communication in the Human Brain Is Rhythmically Modulated through Alpha Coherence,Inati,Rafi Haque;Julio I. Chapeton;Kareem A. Zaghloul;John H. Wittig;Sara K. Inati,2019-09-09,5,Current Biology,2801-2811.e5,10.1016/j.cub.2019.07.014,31422882.0,85071699340,2-s2.0-85071699340,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85071699340,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85071699340&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85071699340&origin=inward +The seizure onset zone drives state-dependent epileptiform activity in susceptible brain regions,Inati,Julio I. Chapeton;Kareem A. Zaghloul;William H. Theodore;Joshua M. Diamond;Sara K. Inati,2019-09-01,0,Clinical Neurophysiology,1628-1641,10.1016/j.clinph.2019.05.032,31325676.0,85068973354,2-s2.0-85068973354,Article,DDCF,https://api.elsevier.com/content/abstract/scopus_id/85068973354,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85068973354&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85068973354&origin=inward +Investigation of Architectures for Models of Neural Responses to Electrical Brain Stimulation,Inati,Cynthia Steinhardt;Kareem A. Zaghloul;Sridevi V. Sarma;Sara K. Inati;Pierre Sacre,2019-07-01,1,"Proceedings of the Annual International Conference of the IEEE Engineering in Medicine and Biology Society, EMBS",6892-6895,10.1109/EMBC.2019.8857455,31947424.0,85077898652,2-s2.0-85077898652,Conference Paper,NSF,https://api.elsevier.com/content/abstract/scopus_id/85077898652,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85077898652&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85077898652&origin=inward +Virtual Cortical Stimulation Mapping of Epilepsy Networks to Localize the Epileptogenic Zone,Inati,Kareem Zaghloul;Emily Johnson;Sridevi V. Sarma;Sara Inati;Zachary Fitzgerald;Adam Li;Nathan Crone;Jorge Martinez-Gonzalez;Juan Bulacio;Jennifer Hopp,2019-07-01,0,"Proceedings of the Annual International Conference of the IEEE Engineering in Medicine and Biology Society, EMBS",2328-2331,10.1109/EMBC.2019.8856591,31946366.0,85077862771,2-s2.0-85077862771,Conference Paper,NIH,https://api.elsevier.com/content/abstract/scopus_id/85077862771,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85077862771&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85077862771&origin=inward +Neuroinflammation in neocortical epilepsy measured by PET imaging of translocator protein,Inati,Alison Austermuehle;Kareem Zaghloul;William H. Theodore;Sara K. Inati;Sami Zoghbi;Leah P. Dickstein;Jeih San Liow;Paolo Zanotti-Fregonara,2019-06-01,5,Epilepsia,1248-1254,10.1111/epi.15967,31144767.0,85066482214,2-s2.0-85066482214,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85066482214,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85066482214&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85066482214&origin=inward +Clinical advances in photosensitive epilepsy,Inati,Sara Inati;Varun Padmanaban;Kareem Zaghloul;Alexander Ksendzovsky,2019-01-15,2,Brain Research,18-25,10.1016/j.brainres.2018.07.025,30076791.0,85051361603,2-s2.0-85051361603,Review,,https://api.elsevier.com/content/abstract/scopus_id/85051361603,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85051361603&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85051361603&origin=inward +Coupled ripple oscillations between the medial temporal lobe and neocortex retrieve human memory,Inati,Kareem A. Zaghloul;Nicolas Brunel;Sara K. Inati;Alex P. Vaz,2019-01-01,24,Science,975-978,10.1126/science.aau8956,30819961.0,85062423715,2-s2.0-85062423715,Article,NIGMS,https://api.elsevier.com/content/abstract/scopus_id/85062423715,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85062423715&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85062423715&origin=inward +"Erratum to: Attention improves memory by suppressing spiking-neuron activity in the human anterior temporal lobe (Nature Neuroscience, (2018), 21, 6, (808-810), 10.1038/s41593-018-0148-7)",Inati,Kareem A. Zaghloul;John H. Wittig;John B. Cocjin;Sara K. Inati;Anthony I. Jang,2019-01-01,0,Nature Neuroscience,143,10.1038/s41593-018-0224-z,30127431.0,85058759646,2-s2.0-85058759646,Erratum,,https://api.elsevier.com/content/abstract/scopus_id/85058759646,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85058759646&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85058759646&origin=inward +Creation and validation of a bladder dysfunction symptom score for HTLV-1-associated myelopathy/tropical spastic paraparesis,Jacobson,Daisuke Hasegawa;Junji Yamauchi;Ariella Coler-Reilly;Fabiola Martin;Naoko Yagishita;Eisuke Inoue;Jorge Casseb;Ayako Takata;Steven Jacobson;Natsumi Araya;Graham P. Taylor;Yoshihisa Yamano;Abelardo Araujo;Shuntaro Tsutsumi;Misako Nagasaka;Eduardo Gotuzzo;Tomoo Sato;Natsuko Yamakawa;Takahiko Ueno;Marzia Puccioni-Sohler;Tomohiro Matsuo,2020-07-03,0,Orphanet Journal of Rare Diseases,,10.1186/s13023-020-01451-3,32620176.0,85087472700,2-s2.0-85087472700,Article,,https://api.elsevier.com/content/abstract/scopus_id/85087472700,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85087472700&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85087472700&origin=inward +Human Herpesvirus 6 Detection in Alzheimer's Disease Cases and Controls across Multiple Cohorts,Jacobson,Juan C. Troncoso;Olga Pletnikova;Philip L. De Jager;Steven Jacobson;Marilyn S. Albert;Sarah M. Connor;Sonja W. Scholz;Kory Johnson;Susan M. Resnick;David A. Bennett;Mary Alice Allnutt,2020-03-18,4,Neuron,1027-1035.e2,10.1016/j.neuron.2019.12.031,31983538.0,85081374658,2-s2.0-85081374658,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85081374658,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85081374658&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85081374658&origin=inward +The spectrum of spinal cord lesions in a primate model of multiple sclerosis,Jacobson,Daniel S. Reich;Jennifer A. Lefeuvre;Joseph R. Guy;Mathieu D. Santin;Pascal Sati;Afonso C. Silva;Steven Jacobson;Emily Leibovitch;Stéphane Lehéricy;Seung Kwon Ha;Nicholas J. Luciano,2020-03-01,1,Multiple Sclerosis Journal,284-293,10.1177/1352458518822408,30730246.0,85061608524,2-s2.0-85061608524,Article,,https://api.elsevier.com/content/abstract/scopus_id/85061608524,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85061608524&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85061608524&origin=inward +Human T-lymphotropic virus type 1 (HTLV-1) and cellular immune response in HTLV-1-associated myelopathy/tropical spastic paraparesis,Jacobson,Ryuji Kubota;Satoshi Nozuma;Steven Jacobson,2020-01-01,0,Journal of NeuroVirology,,10.1007/s13365-020-00881-w,,85088396233,2-s2.0-85088396233,Review,NIH,https://api.elsevier.com/content/abstract/scopus_id/85088396233,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85088396233&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85088396233&origin=inward +Comprehensive Analysis of TCR-β Repertoire in Patients with Neurological Immune-mediated Disorders,Jacobson,Kory R. Johnson;Alessandra de Paula Alves Sousa;Steven Jacobson;Jun Zhu;Joan Ohayon;Paolo A. Muraro,2019-12-01,7,Scientific Reports,,10.1038/s41598-018-36274-7,30674904.0,85060386177,2-s2.0-85060386177,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85060386177,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85060386177&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85060386177&origin=inward +Atomic structure of the human herpesvirus 6B capsid and capsid-associated tegument complexes,Jacobson,Wei Liu;Zihang Li;Z. Hong Zhou;Ye Mei;Ana L. Alvarez-Cabrera;Vinay Kumar;Yanxiang Cui;Steve Jacobson;Yibo Zhang;Guo Qiang Bi;Emily C. Leibovitch,2019-12-01,2,Nature Communications,,10.1038/s41467-019-13064-x,31767868.0,85075545295,2-s2.0-85075545295,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85075545295,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85075545295&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85075545295&origin=inward +Immunovirological markers in HTLV-1-associated myelopathy/tropical spastic paraparesis (HAM/TSP),Jacobson,Steven Jacobson;Yoshimi Enose-Akahata,2019-11-29,0,Retrovirology,,10.1186/s12977-019-0499-5,31783764.0,85075800835,2-s2.0-85075800835,Review,,https://api.elsevier.com/content/abstract/scopus_id/85075800835,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85075800835&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85075800835&origin=inward +An evaluation of HHV-6 as an etiologic agent in Hodgkin lymphoma and brain cancer using IARC criteria for oncogenicity,Jacobson,Michael J. Wells;Steven Jacobson;Paul H. Levine,2019-11-05,0,Infectious Agents and Cancer,,10.1186/s13027-019-0248-3,,85074731822,2-s2.0-85074731822,Review,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85074731822,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85074731822&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85074731822&origin=inward +Potential role of iron in repair of inflammatory demyelinating lesions,Jacobson,Daniel S. Reich;Cecil C. Yen;Pascal Sati;Afonso C. Silva;Nathanael J. Lee;Steven Jacobson;Govind Nair;Seung Kwon Ha;Tracey A. Rouault;Nicholas J. Luciano;Emily C. Leibovitch;Martina Absinta,2019-10-01,4,Journal of Clinical Investigation,4365-4376,10.1172/JCI126809,31498148.0,85072791172,2-s2.0-85072791172,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85072791172,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85072791172&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85072791172&origin=inward +Essential role of human T cell leukemia virus type 1 orf-I in lethal proliferation of CD4+ cells in humanized mice,Jacobson,Christopher C. Nixon;Laura Romero;Veronica Galli;Anne Van Den Broeke;Maria Omsland;Genoveffa Franchini;Robyn Washington-Parks;Cynthia Pise-Masison;Katherine McKinnon;Jerome A. Zack;Dai Fujikawa;Maria F. De Castro-Amarante;Natasa Strbo;Maria Artesi;Steve Jacobson;Breanna Caruso;Sophia Brown;Monica Vaccari;Baktiar Karim;Keith Durkin,2019-10-01,2,Journal of Virology,,10.1128/JVI.00565-19,31315992.0,85072153680,2-s2.0-85072153680,Article,OAR,https://api.elsevier.com/content/abstract/scopus_id/85072153680,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85072153680&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85072153680&origin=inward +Infection with HHV-6 and its role in epilepsy,Jacobson,Luca Bartolini;Steven Jacobson;William H. Theodore;William D. Gaillard,2019-07-01,1,Epilepsy Research,34-39,10.1016/j.eplepsyres.2019.03.016,30953871.0,85063693844,2-s2.0-85063693844,Review,EF,https://api.elsevier.com/content/abstract/scopus_id/85063693844,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85063693844&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85063693844&origin=inward +The “central vein sign” in inflammatory demyelination: The role of fibrillar collagen type I,Jacobson,Daniel S. Reich;Maria Chiara G. Monaco;Pascal Sati;Steven Jacobson;Nathanael J. Lee;Dragan Maric;Govind Nair;Seung Kwon Ha;Nicholas J. Luciano;Martina Absinta,2019-06-01,2,Annals of Neurology,934-942,10.1002/ana.25461,30847935.0,85063605374,2-s2.0-85063605374,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85063605374,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85063605374&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85063605374&origin=inward +Extracellular vesicles and ebola virus: A new mechanism of immune evasion,Jacobson,Michelle L. Pleet;Spencer W. Stonier;Steven Jacobson;Fatah Kashanchi;John M. Dye;M. Javad Aman;Catherine DeMarino,2019-05-01,5,Viruses,,10.3390/v11050410,31052499.0,85065661998,2-s2.0-85065661998,Review,NIH,https://api.elsevier.com/content/abstract/scopus_id/85065661998,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85065661998&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85065661998&origin=inward +Prevalence of salivary human herpesviruses in pediatric multiple sclerosis cases and controls,Jacobson,Emmanuelle Waubant;Jennifer Graves;Cheng Te Major Lin;Steven Jacobson;Bridgette J. Billioux;Emily C. Leibovitch,2019-04-01,4,Multiple Sclerosis Journal,644-652,10.1177/1352458518765654,,85044758815,2-s2.0-85044758815,Article,,https://api.elsevier.com/content/abstract/scopus_id/85044758815,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85044758815&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85044758815&origin=inward +Viral Triggers and Inflammatory Mechanisms in Pediatric Epilepsy,Jacobson,Jane E. Libbey;Steven Jacobson;Teresa Ravizza;Robert S. Fujinami;Luca Bartolini;William D. Gaillard,2019-03-01,8,Molecular Neurobiology,1897-1907,10.1007/s12035-018-1215-5,29978423.0,85049601515,2-s2.0-85049601515,Review,EF,https://api.elsevier.com/content/abstract/scopus_id/85049601515,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85049601515&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85049601515&origin=inward +Do herpesviruses play a role in Alzheimer's disease pathogenesis?,Jacobson,Steven Jacobson;Mary Alice Allnutt,2019-01-01,0,Drug Discovery Today: Disease Models,,10.1016/j.ddmod.2019.10.006,,85076832235,2-s2.0-85076832235,Review,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85076832235,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85076832235&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85076832235&origin=inward +Neuroimmunology of human T-lymphotropic virus type 1-associated myelopathy/tropical spastic paraparesis,Jacobson,Steven Jacobson;Satoshi Nozuma,2019-01-01,4,Frontiers in Microbiology,,10.3389/fmicb.2019.00885,,85068121438,2-s2.0-85068121438,Article,JSPS,https://api.elsevier.com/content/abstract/scopus_id/85068121438,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85068121438&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85068121438&origin=inward +HTLV-1 HBZ protein resides exclusively in the cytoplasm of infected cells in asymptomatic carriers and HAM/TSP patients,Jacobson,Greta Forlani;Marco Baratella;Alessandra Tedeschi;Steve Jacobson;Roberto S. Accolla;Claudine Pique,2019-01-01,7,Frontiers in Microbiology,,10.3389/fmicb.2019.00819,,85068151832,2-s2.0-85068151832,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85068151832,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85068151832&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85068151832&origin=inward +The unfolded protein response is activated in the olfactory system in Alzheimer's disease,Koretsky,Birger Victor Dieriks;Molly E.V. Swanson;Leonardo Belluscio;Alan Koretsky;Maurice A. Curtis;Praju Vikas Anekal;Clinton Turner;Helen C. Murray;Richard L.M. Faull,2020-07-14,0,Acta Neuropathologica Communications,,10.1186/s40478-020-00986-7,32665027.0,85088017287,2-s2.0-85088017287,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85088017287,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85088017287&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85088017287&origin=inward +High-resolution MEMRI characterizes laminar specific ascending and descending spinal cord pathways in rats,Koretsky,Galit Pelled;Alan Koretsky;Jiadi Xu;Stasia A. Anderson;Albert German Mendoza;Vijai Krishnan,2020-07-01,0,Journal of Neuroscience Methods,,10.1016/j.jneumeth.2020.108748,32335077.0,85084132952,2-s2.0-85084132952,Article,NHLBI,https://api.elsevier.com/content/abstract/scopus_id/85084132952,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85084132952&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85084132952&origin=inward +Interactions between stimuli-evoked cortical activity and spontaneous low frequency oscillations measured with neuronal calcium,Koretsky,Alan P. Koretsky;Yingtian Pan;Kicheon Park;Wei Chen;Congwu Du,2020-04-15,1,NeuroImage,,10.1016/j.neuroimage.2020.116554,31972283.0,85078666319,2-s2.0-85078666319,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85078666319,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85078666319&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85078666319&origin=inward +Multifield and inverse-contrast switching of magnetocaloric high contrast ratio MRI labels,Koretsky,Alan P. Koretsky;Stephen J. Dodd;Barbara Marcheschi;H. Douglas Morris;Mladen Barbic;Hatem ElBidweihy;Neil R. Dilley;Alan L. Huston,2020-01-01,0,Magnetic Resonance in Medicine,,10.1002/mrm.28400,,85087644446,2-s2.0-85087644446,Article,,https://api.elsevier.com/content/abstract/scopus_id/85087644446,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85087644446&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85087644446&origin=inward +Magnetocaloric materials as switchable high contrast ratio MRI labels,Koretsky,Alan P. Koretsky;Stephen J. Dodd;Barbara Marcheschi;H. Douglas Morris;Mladen Barbic;Tim D. Harris;Alan Huston;Neil Dilley,2019-04-01,1,Magnetic Resonance in Medicine,2238-2246,10.1002/mrm.27615,30474159.0,85057214635,2-s2.0-85057214635,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85057214635,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85057214635&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85057214635&origin=inward +Manganese enhanced MRI for use in studying neurodegenerative diseases,Koretsky,Alan P. Koretsky;Galit Saar,2019-01-07,5,Frontiers in Neural Circuits,,10.3389/fncir.2018.00114,30666190.0,85060244899,2-s2.0-85060244899,Review,NIH,https://api.elsevier.com/content/abstract/scopus_id/85060244899,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85060244899&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85060244899&origin=inward +Interhemispheric plasticity is mediated by maximal potentiation of callosal inputs,Koretsky,Alan P. Koretsky;Zhiwei Ma;John T.R. Isaac;Galit Saar;Steve Dodd;Emily Petrus,2019-01-01,1,Proceedings of the National Academy of Sciences of the United States of America,6391-6396,10.1073/pnas.1810132116,30846552.0,85063963911,2-s2.0-85063963911,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85063963911,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85063963911&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85063963911&origin=inward +Opportunities in interventional and diagnostic imaging by using high-performance low-field-strength MRI,Koretsky,Alan P. Koretsky;Burcu Basar;Hui Xue;Joel Moss;Adrienne E. Campbell-Washburn;Rainer Schneider;Ashkan A. Malayeri;Peter Kellman;Robert S. Balaban;Himanshu Bhat;Robert J. Lederman;Matthew C. Restivo;Elizabeth C. Jones;Michael S. Hansen;Waqas Majeed;David Grodzki;Ipshita Bhattacharya;W. Patricia Bandettini;Marcus Y. Chen;Toby Rogers;Daniel A. Herzka;Rajiv Ramasawmy;Delaney R. McGuirt;Christine Mancini,2019-01-01,15,Radiology,384-393,10.1148/radiol.2019190452,31573398.0,85073581726,2-s2.0-85073581726,Article,NHLBI,https://api.elsevier.com/content/abstract/scopus_id/85073581726,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85073581726&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85073581726&origin=inward +Routine use of FLAIR-negative MRI in the treatment of unknown onset stroke,Latour,Malik M. Adil;Amie W. Hsia;Richard Leigh;Lawrence L. Latour;John K. Lynch;Chandni P. Kalaria;Marie Luby;Zurab Nadareishvili,2020-09-01,0,Journal of Stroke and Cerebrovascular Diseases,,10.1016/j.jstrokecerebrovasdis.2020.105093,,85087369278,2-s2.0-85087369278,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85087369278,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85087369278&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85087369278&origin=inward +Inflammatory Cytokines Associate With Neuroimaging After Acute Mild Traumatic Brain Injury,Latour,Jordan Peyer;Candace Moore;Lawrence Latour;Christina Devoto;Jessica M. Gill;Tara Davis;L. Christine Turtzo;Vivian A. Guedes;Cassandra L. Pattinson;Katie A. Edwards,2020-05-19,0,Frontiers in Neurology,,10.3389/fneur.2020.00348,,85085891795,2-s2.0-85085891795,Article,NINR,https://api.elsevier.com/content/abstract/scopus_id/85085891795,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85085891795&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85085891795&origin=inward +Traumatic microbleeds persist for up to five years following traumatic brain injury despite resolution of other acute findings on MRI,Latour,Lawrence Latour;Leighton Chan;Andre J. Van Der Merwe;Theresa Rizk;Mark D. Whiting;L. Christine Turtzo;Martin Cota,2020-05-11,0,Brain Injury,773-781,10.1080/02699052.2020.1725835,32228304.0,85082663603,2-s2.0-85082663603,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85082663603,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85082663603&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85082663603&origin=inward +Subarachnoid Hemorrhage and Cerebral Perfusion Are Associated with Brain Volume Decrease in a Cohort of Predominantly Mild Traumatic Brain Injury Patients,Latour,Lisa A. Van Der Kleij;Lawrence L. Latour;Jeroen Hendrikse;Matthew C. Restivo;L. Christine Turtzo;Jill B. De Vis,2020-02-15,0,Journal of Neurotrauma,600-607,10.1089/neu.2019.6514,31642407.0,85079097417,2-s2.0-85079097417,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85079097417,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85079097417&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85079097417&origin=inward +-----Comparison of T1-Post and FLAIR-Post MRI for identification of traumatic meningeal enhancement in traumatic brain injury patients,Latour,Lawrence L. Latour;L. Christine Turtzo;Tara S. Davis;Ana S. Tinoco Martinez;Jill B. De Vis;Jennifer E. Nathan,2020-01-01,0,PloS one,e0234881,10.1371/journal.pone.0234881,32614835.0,85087529072,2-s2.0-85087529072,Article,,https://api.elsevier.com/content/abstract/scopus_id/85087529072,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85087529072&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85087529072&origin=inward +Nonhomogeneous gadolinium retention in the cerebral cortex after intravenous administration of gadolinium-based contrast agent in rats and humans,Latour,Katharine J. Babcock;Jorge A. Soto;Laney E. Evers;Lawrence L. Latour;Bertrand R. Huber;Ali Guermazi;Stephan W. Anderson;Juliet A. Moncaster;Hernan Jara;Olga Minaeva;Chad W. Farris;Patrick T. Kiernan;Xiuping Liu;Sarah E. Chancellor;Ning Hua;Nicola Lupoli;Lee E. Goldstein;Asim Z. Mian;Ann C. McKee;Allison D. Griffin;Erich S. Franz;Victor E. Alvarez;Audrey M. Hildebrandt,2020-01-01,2,Radiology,377-385,10.1148/radiol.2019190461,31769744.0,85078517782,2-s2.0-85078517782,Article,BU,https://api.elsevier.com/content/abstract/scopus_id/85078517782,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85078517782&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85078517782&origin=inward +Circle of Willis anomalies in Turner syndrome: Absent A1 segment of the anterior cerebral artery,Latour,Maria T. Acosta;Lawrence Latour;Yonit A. Addissie;Nicole Banks;David C. Page;Ashley Buscetta;Paul Kruszka;Camilo Toro;Maximilian Muenke;Gilbert Vezina;Marie Luby,2019-11-15,0,Birth Defects Research,1584-1588,10.1002/bdr2.1609,31626395.0,85074102584,2-s2.0-85074102584,Article,,https://api.elsevier.com/content/abstract/scopus_id/85074102584,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85074102584&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85074102584&origin=inward +Traumatic microbleeds suggest vascular injury and predict disability in traumatic brain injury,Latour,Partha P. Mitra;Daniel P. Perl;Anita D. Moses;Gunjan Y. Parikh;Regina C. Armstrong;Abhik Ray-Chaudhury;Nancy A. Edwards;Zachary Lodato;Govind Nair;Lawrence L. Latour;Alexander Tolpygo;Allison D. Griffin;L. Christine Turtzo;Bernard J. Dardzinski,2019-11-01,5,Brain,3550-3564,10.1093/brain/awz290,31608359.0,85074304123,2-s2.0-85074304123,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85074304123,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85074304123&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85074304123&origin=inward +MRI-based thrombolytic therapy in patients with acute ischemic stroke presenting with a low NIHSS,Latour,Amie W. Hsia;Richard Leigh;Lawrence L. Latour;John K. Lynch;Shahram Majidi;Richard T. Benson;Chandni P. Kalaria;Marie Luby;Zurab Nadareishvili,2019-10-15,1,Neurology,E1507-E1513,10.1212/WNL.0000000000008312,31519779.0,85073183374,2-s2.0-85073183374,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85073183374,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85073183374&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85073183374&origin=inward +"Response by Luby et al to letter regarding article, “Frequency of blood-brain barrier disruption postendovascular therapy and multiple thrombectomy passes in acute ischemic stroke patients”",Latour,Amie W. Hsia;Marie Luby;Lawrence L. Latour,2019-10-01,0,Stroke,E312,10.1161/STROKEAHA.119.027214,31510900.0,85072588812,2-s2.0-85072588812,Letter,NIH,https://api.elsevier.com/content/abstract/scopus_id/85072588812,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85072588812&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85072588812&origin=inward +Association of Head Injury with Brain Amyloid Deposition: The ARIC-PET Study,Latour,Lawrence Latour;Andrea L.C. Schneider;Christopher T. Whitlow;Yun Zhou;Menglu Liang;Dean F. Wong;Geoffrey Ling;L. Christine Turtzo;Thomas Mosley;Silvia Koton;Josef Coresh;Rebecca F. Gottesman;Elizabeth Selvin,2019-09-01,1,Journal of Neurotrauma,2549-2557,10.1089/neu.2018.6213,30963804.0,85071786983,2-s2.0-85071786983,Article,NIA,https://api.elsevier.com/content/abstract/scopus_id/85071786983,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85071786983&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85071786983&origin=inward +Frequency of Blood-Brain Barrier Disruption Post-Endovascular Therapy and Multiple Thrombectomy Passes in Acute Ischemic Stroke Patients,Latour,Kaylie Cullison;Amie W. Hsia;Lawrence L. Latour;Noorie Pednekar;Malik Muhammad Adil;Marie Luby;Zurab Nadareishvili,2019-08-01,4,Stroke,2241-2244,10.1161/STROKEAHA.119.025914,31238832.0,85070182782,2-s2.0-85070182782,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85070182782,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85070182782&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85070182782&origin=inward +Identifying perfusion deficits on CT perfusion images using temporal similarity perfusion (TSP) mapping,Latour,Jan Willem Dankbaar;Brigitta K. Velthuis;Reinoud P.H. Bokkers;Daniel Glen;Lawrence L. Latour;Wouter Kroon;Richard Reynolds;Jill B. De Vis;Marie Luby;Sunbin Song,2019-08-01,0,European Radiology,4198-4206,10.1007/s00330-018-5896-y,30617478.0,85059652000,2-s2.0-85059652000,Article,,https://api.elsevier.com/content/abstract/scopus_id/85059652000,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85059652000&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85059652000&origin=inward +Rapid Apparent Diffusion Coefficient Evolution after Early Revascularization: A Potential Marker of Secondary Injury?,Latour,Kaylie Cullison;Amie W. Hsia;Richard Leigh;Lawrence L. Latour;Rocco Armonda;Shannon Burton;John K. Lynch;Ai Hsi Liu;Richard T. Benson;Marie Luby;Zurab Nadareishvili,2019-08-01,2,Stroke,2086-2092,10.1161/STROKEAHA.119.025784,31238830.0,85070183994,2-s2.0-85070183994,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85070183994,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85070183994&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85070183994&origin=inward +Discordance between Documented Criteria and Documented Diagnosis of Traumatic Brain Injury in the Emergency Department,Latour,Katie C. Bittner;Anita D. Moses;Martin R. Cota;Ramon R. Diaz-Arrastia;Lawrence L. Latour;L. Christine Turtzo;Neekita R. Jikaria,2019-04-15,1,Journal of Neurotrauma,1335-1342,10.1089/neu.2018.5772,30351183.0,85064173102,2-s2.0-85064173102,Article,CNRM,https://api.elsevier.com/content/abstract/scopus_id/85064173102,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85064173102&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85064173102&origin=inward +Molecular signature of penumbra in acute ischemic stroke: a pilot transcriptomics study,Latour,Kory R. Johnson;Amie W. Hsia;Richard Leigh;Lawrence L. Latour;John K. Lynch;Alexis N. Simpkins;Richard T. Benson;John M. Hallenbeck;Zurab Nadareishvili;Marie Luby;Devon Kelley,2019-04-01,0,Annals of Clinical and Translational Neurology,817-820,10.1002/acn3.757,,85064479738,2-s2.0-85064479738,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85064479738,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85064479738&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85064479738&origin=inward +Neuroimaging evolution of ischemia in men and women: an observational study,Latour,Gretchel A. Gealogo;Lisa A. Davis;Alejandro Magadán;Adrienne N. Dula;José G. Merino;Amie W. Hsia;Lawrence L. Latour;Steven J. Warach;Ben T. King;Sunil A. Sheth;Marie Luby,2019-03-01,0,Annals of Clinical and Translational Neurology,575-585,10.1002/acn3.733,,85062873077,2-s2.0-85062873077,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85062873077,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85062873077&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85062873077&origin=inward +Neuroimaging of cerebral small vessel disease and age-related cognitive changes,Latour,Lawrence Latour;Michelle R. Caunca;Clinton B. Wright;Andres De Leon-Benedetti;Richard Leigh,2019-01-01,1,Frontiers in Aging Neuroscience,,10.3389/fnagi.2019.00145,,85069170934,2-s2.0-85069170934,Review,MBRF,https://api.elsevier.com/content/abstract/scopus_id/85069170934,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85069170934&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85069170934&origin=inward +A Population-Based Twin Study of Childhood Irritability and Internalizing Syndromes,Leibenluft,Dever M. Carney;Ellen Leibenluft;John M. Hettema;Daniel S. Pine;Roxann Roberson-Nay;Lance M. Rappaport;Melissa A. Brotman,2020-07-03,1,Journal of Clinical Child and Adolescent Psychology,524-534,10.1080/15374416.2018.1514612,30376640.0,85055732825,2-s2.0-85055732825,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85055732825,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85055732825&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85055732825&origin=inward +Genetic and environmental risk structure of internalizing psychopathology in youth,Leibenluft,Ellen Leibenluft;John M. Hettema;Daniel S. Pine;Chelsea Sawyers;Roxann Roberson-Nay;Melissa A. Brotman;Brad Verhulst;Jessica L. Bourdon,2020-06-01,0,Depression and Anxiety,540-548,10.1002/da.23024,32369878.0,85085096755,2-s2.0-85085096755,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85085096755,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85085096755&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85085096755&origin=inward +The Heterogeneity of Anxious Phenotypes: Neural Responses to Errors in Treatment-Seeking Anxious and Behaviorally Inhibited Youths,Leibenluft,Adina C. Heckelman;Lauren K. White;Ellen Leibenluft;Anastasia L. McGlade;Nathan A. Fox;Daniel S. Pine;Ashley R. Smith;George A. Buzzell;Simone P. Haller,2020-06-01,3,Journal of the American Academy of Child and Adolescent Psychiatry,759-769,10.1016/j.jaac.2019.05.014,31128266.0,85075353854,2-s2.0-85075353854,Article,BMGF,https://api.elsevier.com/content/abstract/scopus_id/85075353854,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85075353854&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85075353854&origin=inward +"Anticipatory Threat Responding: Associations With Anxiety, Development, and Brain Structure",Leibenluft,Ellen Leibenluft;Daniel S. Pine;Rany Abend;Jennifer C. Britton;Andrea L. Gold;Bruno B. Averbeck;Tomer Shechner;Anderson M. Winkler;Jessica F. Sachs;Kalina J. Michalska,2020-05-15,3,Biological Psychiatry,916-925,10.1016/j.biopsych.2019.11.006,31955915.0,85078037106,2-s2.0-85078037106,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85078037106,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85078037106&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85078037106&origin=inward +Age differences in the neural correlates of anxiety disorders: An fMRI study of response to learned threat,Leibenluft,Ellen Leibenluft;Daniel S. Pine;Rany Abend;Jennifer C. Britton;Andrea L. Gold;Brigid Behrens;Madeline Farber;Emily Ronkin;Gang Chen,2020-05-01,3,American Journal of Psychiatry,454-463,10.1176/appi.ajp.2019.19060650,32252541.0,85085749416,2-s2.0-85085749416,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85085749416,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85085749416&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85085749416&origin=inward +Self-Efficacy As a Target for Neuroscience Research on Moderators of Treatment Outcomes in Pediatric Anxiety,Leibenluft,Argyris Stringaris;Ellen Leibenluft;Chika Matsumoto;Elise Cardinale;Krystal M. Lewis;Daniel S. Pine;Andrea L. Gold;Emily L. Jones;Melissa A. Brotman,2020-05-01,0,Journal of Child and Adolescent Psychopharmacology,205-214,10.1089/cap.2019.0130,32167803.0,85084720715,2-s2.0-85084720715,Article,,https://api.elsevier.com/content/abstract/scopus_id/85084720715,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85084720715&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85084720715&origin=inward +Infant behavioral reactivity predicts change in amygdala volume 12 years later,Leibenluft,Ellen Leibenluft;Daniel S. Pine;Nathan A. Fox;Andrea L. Gold;Courtney A. Filippi;Jessica F. Sachs;Anderson Winkler;Dominique Phillips,2020-04-01,0,Developmental Cognitive Neuroscience,,10.1016/j.dcn.2020.100776,32452462.0,85081897842,2-s2.0-85081897842,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85081897842,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85081897842&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85081897842&origin=inward +Social anxiety and age are associated with neural response to social evaluation during adolescence,Leibenluft,J. M. Jarcho;E. Leibenluft;D. S. Pine;E. E. Nelson;B. I. Rappaport;Q. B. Do;A. R. Smith;K. Kircanski,2020-04-01,0,Developmental Cognitive Neuroscience,,10.1016/j.dcn.2020.100768,32077442.0,85079385240,2-s2.0-85079385240,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85079385240,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85079385240&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85079385240&origin=inward +Increasing Diversity in Science: It Begins With All of Us,Leibenluft,Ellen Leibenluft,2020-03-01,1,Biological Psychiatry,379-381,10.1016/j.biopsych.2019.12.009,32029071.0,85078075282,2-s2.0-85078075282,Editorial,,https://api.elsevier.com/content/abstract/scopus_id/85078075282,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85078075282&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85078075282&origin=inward +Chronic irritability in children is not pediatric bipolar disorder: Implications for treatment,Leibenluft,Ellen Leibenluft,2020-03-01,0,Bipolar Disorders,195-196,10.1111/bdi.12881,31820531.0,85076883884,2-s2.0-85076883884,Note,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85076883884,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85076883884&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85076883884&origin=inward +New Frontiers in Irritability Research - From Cradle to Grave and Bench to Bedside,Leibenluft,Neir Eshel;Ellen Leibenluft,2020-03-01,2,JAMA Psychiatry,227-228,10.1001/jamapsychiatry.2019.3686,31799997.0,85076152368,2-s2.0-85076152368,Note,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85076152368,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85076152368&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85076152368&origin=inward +Anxious-Irritable Children: A Distinct Subtype of Childhood Anxiety?,Leibenluft,Ellen Leibenluft;Daniel S. Pine;Yaara Shimshoni;Melissa A. Brotman;Eli R. Lebowitz;Wendy K. Silverman,2020-03-01,1,Behavior Therapy,211-222,10.1016/j.beth.2019.06.005,32138933.0,85069672844,2-s2.0-85069672844,Article,NCATS,https://api.elsevier.com/content/abstract/scopus_id/85069672844,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85069672844&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85069672844&origin=inward +White matter microstructure in youth with and at risk for bipolar disorder,Leibenluft,Caitlin Stavish;Ellen Leibenluft;Kenneth E. Towbin;Julia O. Linke;Nancy E. Adleman;Melissa A. Brotman;Joelle Sarlls,2020-03-01,2,Bipolar Disorders,163-173,10.1111/bdi.12885,31883419.0,85078667394,2-s2.0-85078667394,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85078667394,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85078667394&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85078667394&origin=inward +A Double-Blind Randomized Placebo-Controlled Trial of Citalopram Adjunctive to Stimulant Medication in Youth With Chronic Severe Irritability,Leibenluft,Ellen Leibenluft;Daniel S. Pine;Alexandra Roule;Chana Engel;Kenneth Towbin;Gerald P. Overman;Cheri McNeil;Ariela Kaiser;Catherine T. Haring;Catherine H. Yokum;Mollie Davis;Banafsheh Sharif-Askary;Pablo Vidal-Ribas;Caroline G. Wambach;Andrew Pickles;Argyris Stringaris;Aria D. Vitale;Wanda Wheeler;Katherine V. Miller;Beth Lee;Melissa A. Brotman,2020-03-01,6,Journal of the American Academy of Child and Adolescent Psychiatry,350-361,10.1016/j.jaac.2019.05.015,31128268.0,85072258051,2-s2.0-85072258051,Article,NIHR,https://api.elsevier.com/content/abstract/scopus_id/85072258051,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85072258051&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85072258051&origin=inward +Combining fMRI during resting state and an attention bias task in children,Leibenluft,Anita Harrewijn;Julia Linke;Ellen Leibenluft;Nathan A. Fox;Daniel S. Pine;Rany Abend;Anderson M. Winkler;Melissa A. Brotman,2020-01-15,0,NeuroImage,,10.1016/j.neuroimage.2019.116301,31639510.0,85073937831,2-s2.0-85073937831,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85073937831,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85073937831&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85073937831&origin=inward +Notice of Retraction and Replacement. Pornpattananangkul et al. Association between childhood anhedonia and alterations in large-scale resting-state networks and task-evoked activation. JAMA Psychiatry. 2019;76(6):624-633,Leibenluft,Narun Pornpattananangkul;Daniel S. Pine;Argyris Stringaris;Ellen Leibenluft,2020-01-01,0,JAMA Psychiatry,,10.1001/jamapsychiatry.2020.1367,,85086852400,2-s2.0-85086852400,Letter,,https://api.elsevier.com/content/abstract/scopus_id/85086852400,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85086852400&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85086852400&origin=inward +Association between irritability and suicidal ideation in three clinical trials of adults with major depressive disorder,Leibenluft,Argyris Stringaris;Abu Minhajuddin;Cherise Chin Fatt;Ellen Leibenluft;Manish K. Jha;Madhukar Trivedi;Katharina Kircanski,2020-01-01,0,Neuropsychopharmacology,,10.1038/s41386-020-0769-x,,85087856134,2-s2.0-85087856134,Article,,https://api.elsevier.com/content/abstract/scopus_id/85087856134,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85087856134&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85087856134&origin=inward +White Matter Microstructure in Pediatric Bipolar Disorder and Disruptive Mood Dysregulation Disorder,Leibenluft,Ellen Leibenluft;Daniel S. Pine;Kenneth E. Towbin;Heather R. Frank;Julia O. Linke;Nancy E. Adleman;Andrew Ross;Samantha Perlstein;Melissa A. Brotman;Joelle Sarlls,2020-01-01,1,Journal of the American Academy of Child and Adolescent Psychiatry,,10.1016/j.jaac.2019.05.035,31330239.0,85078661432,2-s2.0-85078661432,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85078661432,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85078661432&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85078661432&origin=inward +Interaction of irritability and anxiety on emotional responding and emotion regulation: A functional MRI study,Leibenluft,Ellen Leibenluft;Joseph M. Aloi;Karina S. Blair;Harma Meffert;Kathleen I. Crum;Stuart F. White;Soonjo Hwang;Patrick M. Tyler;R. J.R. Blair;Kayla Pope,2020-01-01,0,Psychological Medicine,,10.1017/S0033291720001397,,85087461885,2-s2.0-85087461885,Article,,https://api.elsevier.com/content/abstract/scopus_id/85087461885,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85087461885&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85087461885&origin=inward +The Clinician Affective Reactivity Index: Validity and Reliability of a Clinician-Rated Assessment of Irritability,Leibenluft,Argyris Stringaris;Courtney Agorsor;Sofia I. Cardenas;Ellen Leibenluft;Hong Bui;Daniel S. Pine;Kenneth E. Towbin;Michal Clayton;Melissa A. Brotman;Simone P. Haller;Katharina Kircanski,2020-01-01,0,Behavior Therapy,,10.1016/j.beth.2019.10.005,32138938.0,85077980964,2-s2.0-85077980964,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85077980964,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85077980964&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85077980964&origin=inward +Levels of early-childhood behavioral inhibition predict distinct neurodevelopmental pathways to pediatric anxiety,Leibenluft,Courtney Filippi;Lauren K. White;Ellen Leibenluft;Nathan A. Fox;Daniel S. Pine;Rany Abend;Caroline Swetlitz;Yair Bar-Haim;Tomer Shechner;Simone P. Haller;Gang Chen;Katharina Kircanski;Brenda E. Benson,2020-01-01,3,Psychological Medicine,96-106,10.1017/S0033291718003999,30616705.0,85059632816,2-s2.0-85059632816,Article,NAF,https://api.elsevier.com/content/abstract/scopus_id/85059632816,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85059632816&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85059632816&origin=inward +Mega-analysis methods in ENIGMA: The experience of the generalized anxiety disorder working group,Leibenluft,Frances Meeten;Andrea P. Jackowski;Janna M. Bas-Hoogendam;Hans J. Grabe;Cristina Ottaviani;Savannah Gosnell;K. Luan Phan;Hannah Zwiebel;Giovana B. Zunta-Soares;Katy E. Werwath;David Hofmann;Elise M. Cardinale;Nic J.A. Van der Wee;Heidi K. Schroeder;Karina S. Blair;Michal Assaf;Nicholas L. Balderston;Bianca A.V. Alberton;Ellen Leibenluft;Dan J. Stein;Benson Mwangi;Gabrielle F. Freitag;Courtney A. Filippi;Lilianne R. Mujica-Parodi;Carmen Andreescu;Eleonora Maggioni;Jennifer Harper;Ana Munjiza;Gisele G. Manfro;Daniel Porta-Casteràs;Camilla Cividini;Katie Burkhouse;Mohammed Milad;Michael T. Perino;Bart Larsen;Anderson M. Winkler;Moji Aghajani;Mira Z. Hammoud;Gretchen J. Diefenbach;Elena Makovac;Kevin Hilbert;Massimo Filippi;Ruben C. Gur;Pedro M. Pan;Ulrike Lueken;Helena van Nieuwenhuizen;Qiongru Yu;Neda Jahanshad;Jeffrey R. Strawn;Antonia N. Kaczkurkin;Michael Myers;Sandra Van der Auwera;Murray B. Stein;Randy Buckner;Dick J. Veltman;Rachel Berta;Jair C. Soares;James R. Blair;Giovanni A. Salum;Christian Grillon;Katja Beesdo-Baum;Nynke A. Groenewold;Martin P. Paulus;Anita Harrewijn;Federica Agosta;Jared A. Nielsen;Sophia I. Thomopoulos;Daniel S. Pine;Gregory A. Fonzo;Matteo Mancini;Narcis Cardoner;André Zugman;Thomas Straube;Mon Ju Wu;Paolo Brambilla;Hugo D. Critchley;Raquel E. Gur;Rebecca Price;Elisa Canu;Ramiro Salas;Katharina Wittfeld;Erica Tamburo;Jordan W. Smoller;Chad M. Sylvester;Paul M. Thompson;Milutin Kostić;Theodore D. Satterthwaite;Monique Ernst,2020-01-01,1,Human Brain Mapping,,10.1002/hbm.25096,,85083703055,2-s2.0-85083703055,Review,,https://api.elsevier.com/content/abstract/scopus_id/85083703055,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85083703055&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85083703055&origin=inward +Accelerated cortical thinning within structural brain networks is associated with irritability in youth,Leibenluft,Aristeidis Sotiras;Ellen Leibenluft;David R. Roalf;Adon F.G. Rosen;Christos Davatzikos;Kosha Ruparel;Philip A. Cook;Kristin Murtha;Azeez Adebimpe;Russell T. Shinohara;Daniel H. Wolf;Antonia N. Kaczkurkin;Diego Davila;Rastko Ciric;Sage Rush;Danielle S. Bassett;Josiane Bourque;Mark A. Elliott;Matthew Cieslak;Kayla Piiwia;Theodore D. Satterthwaite;Monica E. Calkins;Robert J. Jirsaraie,2019-12-01,2,Neuropsychopharmacology,2254-2262,10.1038/s41386-019-0508-3,31476764.0,85074964366,2-s2.0-85074964366,Article,WRF,https://api.elsevier.com/content/abstract/scopus_id/85074964366,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85074964366&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85074964366&origin=inward +Irritability in ADHD: association with later depression symptoms,Leibenluft,Argyris Stringaris;Olga Eyre;Ellen Leibenluft;Lucy Riglin;Anita Thapar;Stephan Collishaw,2019-10-01,4,European Child and Adolescent Psychiatry,1375-1384,10.1007/s00787-019-01303-x,30834985.0,85062648174,2-s2.0-85062648174,Article,WT,https://api.elsevier.com/content/abstract/scopus_id/85062648174,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85062648174&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85062648174&origin=inward +"Irritability, Externalizing, and Internalizing Psychopathology in Adolescence: Cross-Sectional and Longitudinal Associations and Moderation by Sex",Leibenluft,Ian H. Gotlib;Argyris Stringaris;Sophie N.F. Schouboe;Ellen Leibenluft;Kathryn L. Humphreys;Katharina Kircanski,2019-09-03,3,Journal of Clinical Child and Adolescent Psychology,781-789,10.1080/15374416.2018.1460847,29667523.0,85045637488,2-s2.0-85045637488,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85045637488,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85045637488&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85045637488&origin=inward +Cross-species convergence in pupillary response: understanding human anxiety via non-human primate amygdala lesion,Leibenluft,David Pagliaccio;Ellen Leibenluft;Daniel S. Pine;Vincent D. Costa;Bruno B. Averbeck;Olga Dal Monte,2019-08-07,1,Social cognitive and affective neuroscience,591-599,10.1093/scan/nsz041,31184751.0,85072057554,2-s2.0-85072057554,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85072057554,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85072057554&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85072057554&origin=inward +Inhibitory control and emotion dysregulation: A framework for research on anxiety,Leibenluft,Ellen Leibenluft;Daniel S. Pine;Anni R. Subar;Elise M. Cardinale;Melissa A. Brotman;Katharina Kircanski,2019-08-01,0,Development and Psychopathology,859-869,10.1017/S0954579419000300,30968800.0,85065229072,2-s2.0-85065229072,Article,,https://api.elsevier.com/content/abstract/scopus_id/85065229072,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85065229072&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85065229072&origin=inward +Parsing neurodevelopmental features of irritability and anxiety: Replication and validation of a latent variable approach,Leibenluft,Ellen Leibenluft;Julia Brooks;Daniel S. Pine;Kenneth E. Towbin;Elise M. Cardinale;Andrea L. Gold;Melissa A. Brotman;Katharina Kircanski,2019-08-01,2,Development and Psychopathology,917-929,10.1017/S095457941900035X,31064595.0,85065436647,2-s2.0-85065436647,Article,,https://api.elsevier.com/content/abstract/scopus_id/85065436647,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85065436647&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85065436647&origin=inward +Early childhood social reticence and neural response to peers in preadolescence predict social anxiety symptoms in midadolescence,Leibenluft,Tessa Clarkson;Adina C. Heckelman;Ellen Leibenluft;Eric E. Nelson;Nathan A. Fox;Daniel S. Pine;Stefanie L. Sequeira;Nicholas R. Eaton;Johanna M.. Jarcho,2019-08-01,3,Depression and Anxiety,676-689,10.1002/da.22910,31140687.0,85071057253,2-s2.0-85071057253,Article,NARSAD,https://api.elsevier.com/content/abstract/scopus_id/85071057253,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85071057253&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85071057253&origin=inward +Childhood neurodevelopmental difficulties and risk of adolescent depression: the role of irritability,Leibenluft,Argyris Stringaris;Rachael A. Hughes;Olga Eyre;Ellen Leibenluft;Anita Thapar;Stephan Collishaw;Evie Stergiakouli;Ajay K. Thapar;George Davey Smith,2019-08-01,2,Journal of Child Psychology and Psychiatry and Allied Disciplines,866-874,10.1111/jcpp.13053,30908655.0,85063358165,2-s2.0-85063358165,Article,CORE,https://api.elsevier.com/content/abstract/scopus_id/85063358165,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85063358165&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85063358165&origin=inward +Advancing clinical neuroscience through enhanced tools: Pediatric social anxiety as an example,Leibenluft,Anita Harrewijn;Lauren K. White;Ellen Leibenluft;Daniel S. Pine;Scott Engel;Anni R. Subar;Quyen B. Do;Ashley R. Smith;Elise M. Cardinale;Tyson Barker;Jennifer S. Silk;George A. Buzzell;Melissa A. Brotman;Ross D. Crosby;Simone P. Haller;Katharina Kircanski,2019-08-01,1,Depression and Anxiety,701-711,10.1002/da.22937,31373756.0,85071014152,2-s2.0-85071014152,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85071014152,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85071014152&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85071014152&origin=inward +Connecting Childhood Wariness to Adolescent Social Anxiety through the Brain and Peer Experiences,Leibenluft,Johanna M. Jarcho;Ellen Leibenluft;Eric E. Nelson;Nathan A. Fox;Daniel S. Pine;Ashley R. Smith;Megan Quarmley;Amanda E. Guyer;Hannah Y. Grossman,2019-07-15,2,Journal of Abnormal Child Psychology,1153-1164,10.1007/s10802-019-00543-4,31028560.0,85065125983,2-s2.0-85065125983,Article,NARSAD,https://api.elsevier.com/content/abstract/scopus_id/85065125983,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85065125983&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85065125983&origin=inward +Exposure therapy for pediatric irritability: Theory and potential mechanisms,Leibenluft,Ellen Leibenluft;Michelle G. Craske;Daniel S. Pine;Bruno B. Averbeck;Melissa A. Brotman;Katharina Kircanski,2019-07-01,2,Behaviour Research and Therapy,141-149,10.1016/j.brat.2019.04.007,31085355.0,85065414581,2-s2.0-85065414581,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85065414581,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85065414581&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85065414581&origin=inward +Modulation of anterior cingulate cortex reward and penalty signalling in medication-naive young-adult subjects with depressive symptoms following acute dose lurasidone,Leibenluft,Argyris Stringaris;Ellen Leibenluft;Daniel S. Pine;Hanna Keren;Mitul A. Mehta;Allan H. Young;Owen O'Daly;Georgia O'Callaghan;Nada Zahreddine;Fernando Zelaya;Selina A. Wolke,2019-06-01,2,Psychological Medicine,1365-1377,10.1017/S0033291718003306,30606271.0,85063983722,2-s2.0-85063983722,Article,,https://api.elsevier.com/content/abstract/scopus_id/85063983722,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85063983722&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85063983722&origin=inward +The genetic and environmental structure of fear and anxiety in juvenile twins,Leibenluft,Dever M. Carney;Ellen Leibenluft;John M. Hettema;Daniel S. Pine;Chelsea Sawyers;Roxann Roberson-Nay;Thomas Ollendick;Melissa A. Brotman,2019-04-01,3,"American Journal of Medical Genetics, Part B: Neuropsychiatric Genetics",204-212,10.1002/ajmg.b.32714,30708402.0,85060890929,2-s2.0-85060890929,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85060890929,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85060890929&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85060890929&origin=inward +Early-childhood social reticence predicts SCR-BOLD coupling during fear extinction recall in preadolescent youth,Leibenluft,K. A. Degnan;S. Sequeira;E. J. Ivie;T. Shechner;E. Leibenluft;N. A. Fox;D. S. Pine;B. Averbeck;K. J. Michalska;J. S. Feldman;A. Chronis-Tuscano,2019-04-01,9,Developmental Cognitive Neuroscience,,10.1016/j.dcn.2018.12.003,30921634.0,85059151003,2-s2.0-85059151003,Article,NICHD,https://api.elsevier.com/content/abstract/scopus_id/85059151003,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85059151003&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85059151003&origin=inward +Temporally sensitive neural measures of inhibition in preschool children across a spectrum of irritability,Leibenluft,Melissa A. Brotman;David Pagliaccio;Christen M. Deveney;Ellen Leibenluft;Daniel S. Pine;Lauren S. Wakschlag;James L. Burns;Elvira Zobel;Margaret J. Briggs-Gowan;Christopher R. Estabrook;Elizabeth S. Norton,2019-03-01,5,Developmental Psychobiology,216-227,10.1002/dev.21792,30328111.0,85055046339,2-s2.0-85055046339,Article,,https://api.elsevier.com/content/abstract/scopus_id/85055046339,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85055046339&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85055046339&origin=inward +Frontal alpha asymmetry moderates the relations between behavioral inhibition and social-effect ERN,Leibenluft,R. Debnath;A. Harrewijn;G. A. Buzzell;N. A. Fox;E. Leibenluft;D. S. Pine,2019-02-01,3,Biological Psychology,10-16,10.1016/j.biopsycho.2018.12.014,30599209.0,85059316520,2-s2.0-85059316520,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85059316520,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85059316520&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85059316520&origin=inward +The genetic and environmental relationship between childhood behavioral inhibition and preadolescent anxiety,Leibenluft,Dever M. Carney;Ellen Leibenluft;Jeanne E. Savage;John M. Hettema;Daniel S. Pine;Roxann Roberson-Nay;Melissa A. Brotman;Brad Verhulst;Jessica L. Bourdon,2019-02-01,2,Twin Research and Human Genetics,62-69,10.1017/thg.2018.73,30698127.0,85060852420,2-s2.0-85060852420,Article,,https://api.elsevier.com/content/abstract/scopus_id/85060852420,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85060852420&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85060852420&origin=inward +Relationship between sleep and mood in patients with rapid-cycling bipolar disorder,Leibenluft,Paul S. Albert;Thomas A. Wehr;Ellen Leibenluft;E. Rosenthal Norman,2019-01-01,0,Bipolar Disorder: The Science of Mental Health,185-193,10.4324/9781315054308-18,,85084598160,2-s2.0-85084598160,Chapter,,https://api.elsevier.com/content/abstract/scopus_id/85084598160,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85084598160&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85084598160&origin=inward +"Heritability, stability, and prevalence of tonic and phasic irritability as indicators of disruptive mood dysregulation disorder",Leibenluft,Ellen Leibenluft;Judy L. Silberg;John M. Hettema;Roxann Roberson-Nay;Timothy P. York;Dana M. Lapato;Melissa A. Brotman;Ashlee A. Moore;Steven H. Aggen,2019-01-01,1,Journal of Child Psychology and Psychiatry and Allied Disciplines,1032-1041,10.1111/jcpp.13062,30994196.0,85064594022,2-s2.0-85064594022,Article,NCATS,https://api.elsevier.com/content/abstract/scopus_id/85064594022,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85064594022&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85064594022&origin=inward +Identifying novel types of irritability using a developmental genetic approach,Leibenluft,Argyris Stringaris;Olga Eyre;Ellen Leibenluft;Lucy Riglin;Michael C. O’Donovan;Anita Thapar;Daniel S. Pine;Kate Tilling;Ajay K. Thapar;George Davey Smith,2019-01-01,4,American Journal of Psychiatry,635-642,10.1176/appi.ajp.2019.18101134,31256611.0,85070309459,2-s2.0-85070309459,Article,WT,https://api.elsevier.com/content/abstract/scopus_id/85070309459,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85070309459&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85070309459&origin=inward +"Effects of oral, smoked, and vaporized cannabis on endocrine pathways related to appetite and metabolism: a randomized, double-blind, placebo-controlled, human laboratory study",Leggio,Osama A. Abulseoud;Marilyn A. Huestis;Lorenzo Leggio;Matthew N. Newmeyer;Gray R. McDiarmid;Mehdi Farokhnia;Vikas Munjal,2020-12-01,2,Translational Psychiatry,,10.1038/s41398-020-0756-3,32075958.0,85079821422,2-s2.0-85079821422,Article,NIDA,https://api.elsevier.com/content/abstract/scopus_id/85079821422,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85079821422&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85079821422&origin=inward +Labeled oxytocin administered via the intranasal route reaches the brain in rhesus macaques,Leggio,K. A. Grant;T. A. Shnitko;A. J. Winchell;A. V. Kaucher;S. W. Blue;M. R. Lee;D. W. Erikson;L. Leggio,2020-12-01,3,Nature Communications,,10.1038/s41467-020-15942-1,32494001.0,85085969650,2-s2.0-85085969650,Article,OD,https://api.elsevier.com/content/abstract/scopus_id/85085969650,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85085969650&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85085969650&origin=inward +Leveraging genetic data to investigate molecular targets and drug repurposing candidates for treating alcohol use disorder and hepatotoxicity,Leggio,Mikela Murphy;Lorenzo Leggio;Joshua C. Gray,2020-09-01,0,Drug and Alcohol Dependence,,10.1016/j.drugalcdep.2020.108155,,85087516310,2-s2.0-85087516310,Article,NIDA,https://api.elsevier.com/content/abstract/scopus_id/85087516310,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85087516310&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85087516310&origin=inward +"Effects of exogenous ghrelin administration and ghrelin receptor blockade, in combination with alcohol, on peripheral inflammatory markers in heavy-drinking individuals: Results from two human laboratory studies",Leggio,Brittney D. Browning;Jeanelle Portelli;Jillian T. Battista;Kelly M. Abshire;Fatemeh Akhlaghi;Lorenzo Leggio;Gray R. McDiarmid;Mary R. Lee;Sara L. Deschaine;Mehdi Farokhnia;Vikas Munjal,2020-08-01,1,Brain Research,,10.1016/j.brainres.2020.146851,32339499.0,85084411414,2-s2.0-85084411414,Article,NIAAA,https://api.elsevier.com/content/abstract/scopus_id/85084411414,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85084411414&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85084411414&origin=inward +Endocrine effects of the novel ghrelin receptor inverse agonist PF-5190457: Results from a placebo-controlled human laboratory alcohol co-administration study in heavy drinkers,Leggio,Anitha Saravanakumar;Enoch Cobbina;Jillian T. Battista;Fatemeh Akhlaghi;Lorenzo Leggio;Mary R. Lee;Mehdi Farokhnia;Xiaobai Li;Lisa A. Farinelli,2020-06-15,1,Neuropharmacology,,10.1016/j.neuropharm.2019.107788,31557492.0,85075385185,2-s2.0-85075385185,Article,NIAAA,https://api.elsevier.com/content/abstract/scopus_id/85075385185,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85075385185&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85075385185&origin=inward +Parsing out the role of dopamine D4 receptor gene (DRD4) on alcohol-related phenotypes: A meta-analysis and systematic review,Leggio,Lorenzo Leggio;Allison M. Daurio;Sara L. Deschaine;Amirhossein Modabbernia,2020-05-01,3,Addiction Biology,,10.1111/adb.12770,31149768.0,85066498956,2-s2.0-85066498956,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85066498956,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85066498956&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85066498956&origin=inward +Peptide-Liganded G Protein-Coupled Receptors as Neurotherapeutics,Leggio,Ki Ann Goosens;Lorenzo Leggio;Limei Zhang;Kenneth A. Jacobson;Lee E. Eiden,2020-04-10,1,ACS Pharmacology and Translational Science,190-202,10.1021/acsptsci.0c00017,,85088846897,2-s2.0-85088846897,Article,,https://api.elsevier.com/content/abstract/scopus_id/85088846897,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85088846897&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85088846897&origin=inward +"A role for the CD38 rs3796863 polymorphism in alcohol and monetary reward: evidence from CD38 knockout mice and alcohol self-administration, [11C]-raclopride binding, and functional MRI in humans",Leggio,Melanie L. Schwandt;Reza Momenan;Jung H. Shin;Vijay A. Ramchandani;Jia Yan;Ryan Bogdan;Lorenzo Leggio;Erica N. Grodin;Sara Deschaine;Ahmad R. Hariri;Mary R. Lee;Veronica A. Alvarez;Allison M. Daurio;Bethany L. Stangl;Nadia S. Corral-Frias,2020-03-03,0,American Journal of Drug and Alcohol Abuse,167-179,10.1080/00952990.2019.1638928,31365285.0,85070241383,2-s2.0-85070241383,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85070241383,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85070241383&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85070241383&origin=inward +"From 'The Red Journal', for the retirement of editor-in-chief philippe de witte: A fond and grateful farewell",Leggio,Jonathan Chick;Lorenzo Leggio,2020-02-07,0,Alcohol and Alcoholism,1-2,10.1093/alcalc/agaa008,31994695.0,85079105014,2-s2.0-85079105014,Editorial,,https://api.elsevier.com/content/abstract/scopus_id/85079105014,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85079105014&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85079105014&origin=inward +The novel ghrelin receptor inverse agonist PF-5190457 administered with alcohol: preclinical safety experiments and a phase 1b human laboratory study,Leggio,Alexandra A. Dias;Sofia Bouhlal;Mary R. Lee;Markus Heilig;Enoch Cobbina;Mwlod Ghareeb;Lorenzo Leggio;Fatemeh Akhlaghi;Mehdi Farokhnia;April N. Le;Melanie L. Schwandt;Jenica D. Tapocik;Lisa A. Farinelli,2020-02-01,28,Molecular Psychiatry,461-475,10.1038/s41380-018-0064-y,29728704.0,85046419703,2-s2.0-85046419703,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85046419703,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85046419703&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85046419703&origin=inward +Understanding plasma treatment effect on human acyl-ghrelin concentrations,Leggio,L. Leggio;S. L. Deschaine,2020-01-01,0,European Review for Medical and Pharmacological Sciences,1585-1589,10.26355/eurrev_202002_20216,32096210.0,85081919763,2-s2.0-85081919763,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85081919763,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85081919763&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85081919763&origin=inward +Medication development for alcohol use disorder: a focus on clinical studies,Leggio,Megan L. Ryan;Raye Z. Litten;Joanne Fertig;Lorenzo Leggio;Daniel E. Falk,2020-01-01,4,Handbook of Experimental Pharmacology,443-462,10.1007/164_2019_295,31628604.0,85085232546,2-s2.0-85085232546,Chapter,NIDA,https://api.elsevier.com/content/abstract/scopus_id/85085232546,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85085232546&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85085232546&origin=inward +Five Priority Areas for Improving Medications Development for Alcohol Use Disorder and Promoting Their Routine Use in Clinical Practice,Leggio,Megan L. Ryan;Raye Z. Litten;Joanne Fertig;Lorenzo Leggio;Daniel E. Falk,2020-01-01,0,Alcoholism: Clinical and Experimental Research,23-35,10.1111/acer.14233,31803968.0,85076291159,2-s2.0-85076291159,Note,,https://api.elsevier.com/content/abstract/scopus_id/85076291159,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85076291159&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85076291159&origin=inward +"Brief Report: Relationship Between Cotinine Levels and Peripheral Endogenous Concentrations of Oxytocin, β-Endorphin, and Orexin in Individuals With Both Alcohol and Nicotine Use Disorders",Leggio,Carolina L. Haass-Koffler;William H. Zywiak;Jonathan Kurtis;Lorenzo Leggio;Robert M. Swift;Mary R. Lee;Zoe E. Brown;Roberta Perciballi,2020-01-01,0,American Journal on Addictions,,10.1111/ajad.13064,,85085711386,2-s2.0-85085711386,Article,NIDA,https://api.elsevier.com/content/abstract/scopus_id/85085711386,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85085711386&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85085711386&origin=inward +The future of translational research on alcohol use disorder,Leggio,Lara A. Ray;George F. Koob;Barbara J. Mason;Markus Heilig;Lorenzo Leggio;Howard Becker;Erica N. Grodin;Andrea C. King;Stephanie O'Malley;James MacKillop;James David Jentsch;Anita J. Bechtholt;Sarah W. Feldstein Ewing,2020-01-01,0,Addiction Biology,,10.1111/adb.12903,32286721.0,85083391641,2-s2.0-85083391641,Review,,https://api.elsevier.com/content/abstract/scopus_id/85083391641,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85083391641&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85083391641&origin=inward +Differential correlation of serum BDNF and microRNA content in rats with rapid or late onset of heavy alcohol use,Leggio,Dorit Ron;David Darevesky;Khanhky Phamluong;Jeffrey J. Moffat;Melanie Welman;Ellanor L. Whiteley;Anthony L. Berger;Sophie Laguesse;Lorenzo Leggio;Marie Lordkipanidzé;Samuel A. Sakhai;Yann Ehinger;Mehdi Farokhnia,2020-01-01,0,Addiction Biology,,10.1111/adb.12890,,85080949191,2-s2.0-85080949191,Article,,https://api.elsevier.com/content/abstract/scopus_id/85080949191,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85080949191&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85080949191&origin=inward +Ghrelin Receptor Influence on Cocaine Reward is Not Directly Dependent on Peripheral Acyl-Ghrelin,Leggio,Kim D. Janda;Leandro F. Vendruscolo;Ritika Gautam;Cody J. Wenthur;Lorenzo Leggio;Bin Zhou,2019-12-01,4,Scientific Reports,,10.1038/s41598-019-38549-z,30755699.0,85061478203,2-s2.0-85061478203,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85061478203,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85061478203&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85061478203&origin=inward +Development and validation of an assay for a novel ghrelin receptor inverse agonist PF-5190457 and its major hydroxy metabolite (PF-6870961) by LC-MS/MS in human plasma,Leggio,Rohitash Jamwal;Lorenzo Leggio;Sravani Adusumalli;Fatemeh Akhlaghi,2019-11-01,0,Journal of Chromatography B: Analytical Technologies in the Biomedical and Life Sciences,,10.1016/j.jchromb.2019.121820,31670107.0,85073834820,2-s2.0-85073834820,Article,NCATS,https://api.elsevier.com/content/abstract/scopus_id/85073834820,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85073834820&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85073834820&origin=inward +Peripheral proinflammatory markers are upregulated in abstinent alcohol-dependent patients but are not affected by cognitive bias modification: Preliminary findings,Leggio,Felix Bermpohl;Jeanelle Portelli;Lorenzo Leggio;Gray R. McDiarmid;Sara L. Deschaine;Corinde E. Wiers;Xiaobai Li,2019-11-01,1,Drug and Alcohol Dependence,,10.1016/j.drugalcdep.2019.107553,31541874.0,85072242565,2-s2.0-85072242565,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85072242565,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85072242565&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85072242565&origin=inward +"Intravenous administration of ghrelin increases serum cortisol and aldosterone concentrations in heavy-drinking alcohol-dependent individuals: Results from a double-blind, placebo-controlled human laboratory study",Leggio,Victoria M. Long;George A. Kenna;Carolina L. Haass-Koffler;Lorenzo Leggio;Robert M. Swift;Molly Magill;Mehdi Farokhnia,2019-11-01,2,Neuropharmacology,,10.1016/j.neuropharm.2019.107711,31310775.0,85070730233,2-s2.0-85070730233,Article,NIAAA,https://api.elsevier.com/content/abstract/scopus_id/85070730233,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85070730233&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85070730233&origin=inward +Sex differences in the response to opioids for pain relief: A systematic review and meta-analysis,Leggio,Flavia Franconi;Claudia Pisanu;Lorenzo Leggio;Giovanni Maria Pisanu;Sergio Mameli;Ilaria Campesi;Roberta Agabio;Gian Luigi Gessa,2019-10-01,3,Pharmacological Research,,10.1016/j.phrs.2019.104447,31499196.0,85072616546,2-s2.0-85072616546,Review,UNICA,https://api.elsevier.com/content/abstract/scopus_id/85072616546,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85072616546&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85072616546&origin=inward +Advances in the science and treatment of alcohol use disorder,Leggio,K. Witkiewitz;R. Z. Litten;L. Leggio,2019-09-25,12,Science Advances,,10.1126/sciadv.aax4043,31579824.0,85072649033,2-s2.0-85072649033,Article,NIAAA,https://api.elsevier.com/content/abstract/scopus_id/85072649033,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85072649033&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85072649033&origin=inward +HIV and alcohol use disorder: we cannot ignore the elephant in the room,Leggio,Roberta Agabio;Lorenzo Leggio,2019-08-01,0,The Lancet HIV,e485-e486,10.1016/S2352-3018(19)30074-8,31109914.0,85069879409,2-s2.0-85069879409,Note,UNICA,https://api.elsevier.com/content/abstract/scopus_id/85069879409,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85069879409&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85069879409&origin=inward +Prospects for pharmacotherapies to treat alcohol use disorder: An update on recent human studies,Leggio,Brittney D. Browning;Lorenzo Leggio;Mehdi Farokhnia,2019-07-01,3,Current Opinion in Psychiatry,255-265,10.1097/YCO.0000000000000519,31107292.0,85067089326,2-s2.0-85067089326,Review,NIH,https://api.elsevier.com/content/abstract/scopus_id/85067089326,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85067089326&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85067089326&origin=inward +Using Machine Learning to Classify Individuals With Alcohol Use Disorder Based on Treatment Seeking Status,Leggio,Vignesh Sankar;Jennifer J. Barb;Lorenzo Leggio;William G. Kennedy;Mary R. Lee;Philip G. McQueen;A. Hammer,2019-07-01,4,EClinicalMedicine,70-78,10.1016/j.eclinm.2019.05.008,,85068016515,2-s2.0-85068016515,Article,CIT,https://api.elsevier.com/content/abstract/scopus_id/85068016515,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85068016515&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85068016515&origin=inward +Ghrelin: From a gut hormone to a potential therapeutic target for alcohol use disorder,Leggio,Monica L. Faulkner;Lorenzo Leggio;Daria Piacentino;Mary R. Lee;Mehdi Farokhnia,2019-05-15,13,Physiology and Behavior,49-57,10.1016/j.physbeh.2019.02.008,30738971.0,85061440490,2-s2.0-85061440490,Review,NIH,https://api.elsevier.com/content/abstract/scopus_id/85061440490,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85061440490&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85061440490&origin=inward +Development and initial characterization of a novel ghrelin receptor CRISPR/Cas9 knockout wistar rat model,Leggio,C. T. Richie;M. Heilig;B. K. Harvey;B. J. Tunstall;E. L. Gardner;G. F. Koob;Y. J. Zhang;L. F. Vendruscolo;J. Pickel;L. J. Zallar;Z. B. You;L. Leggio,2019-02-01,8,International Journal of Obesity,344-354,10.1038/s41366-018-0013-5,29453460.0,85042100624,2-s2.0-85042100624,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85042100624,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85042100624&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85042100624&origin=inward +Reduced plasma ghrelin concentrations are associated with decreased brain reactivity to food cues after laparoscopic sleeve gastrectomy,Leggio,Yongzhan Nie;Yuanyuan Wang;Gene Jack Wang;Qingchuan Zhao;Qingchao Jin;Jizheng Zhao;Nora D. Volkow;Li Liu;Antao Chen;Kaichun Wu;Guangbin Cui;Corinde E. Wiers;Huaning Wang;Gang Ji;Guanya Li;Yu Han;Lorenzo Leggio;Karen M. von Deneen;Lei Liu;Wenchao Zhang;Yang Hu;Yi Zhang;Dardo Tomasi,2019-02-01,11,Psychoneuroendocrinology,229-236,10.1016/j.psyneuen.2018.10.022,30388597.0,85055643545,2-s2.0-85055643545,Article,NIAAA,https://api.elsevier.com/content/abstract/scopus_id/85055643545,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85055643545&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85055643545&origin=inward +Role of molybdenum-containing enzymes in the biotransformation of the novel ghrelin receptor inverse agonist PF-5190457: A reverse translational bed-to-bench approachs,Leggio,Tim F. Ryder;Lorenzo Leggio;Sravani Adusumalli;Fatemeh Akhlaghi;Rohitash Jamwal;R. Scott Obach,2019-01-01,2,Drug Metabolism and Disposition,874-882,10.1124/dmd.119.087015,31182423.0,85069949048,2-s2.0-85069949048,Article,NIDA,https://api.elsevier.com/content/abstract/scopus_id/85069949048,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85069949048&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85069949048&origin=inward +Effect of systemically administered oxytocin on dose response for methylphenidate self-administration and mesolimbic dopamine levels,Leggio,Gianluigi Tanda;Lorenzo Leggio;Claudio Zanettini;Mary R. Lee;Matthew C.H. Rohn;Mark A. Coggiano,2019-01-01,4,Annals of the New York Academy of Sciences,173-184,10.1111/nyas.14101,31074517.0,85065731547,2-s2.0-85065731547,Chapter,NIH,https://api.elsevier.com/content/abstract/scopus_id/85065731547,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85065731547&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85065731547&origin=inward +Ghrelin receptor deletion reduces binge-like alcohol drinking in rats,Leggio,George F. Koob;Leandro F. Vendruscolo;Silvia Beurmann;Brendan J. Tunstall;Lorenzo Leggio;Lia J. Zallar;Claire M. Fraser,2019-01-01,10,Journal of Neuroendocrinology,,10.1111/jne.12663,30456835.0,85060141743,2-s2.0-85060141743,Article,UMD,https://api.elsevier.com/content/abstract/scopus_id/85060141743,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85060141743&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85060141743&origin=inward +Oxytocin blocks enhanced motivation for alcohol in alcohol dependence and blocks alcohol effects on GABAergic transmission in the central amygdala,Leggio,Maurice Manning;George F. Koob;Leandro F. Vendruscolo;Sophia Khom;Mary R. Lee;Marisa Roberto;Brendan J. Tunstall;Lorenzo Leggio;Lia J. Zallar;Chelsea P. Ho;Christopher S. Oleata;Janaina C.M. Vendruscolo;Sam A. McConnell;Dean Kirson,2019-01-01,14,PLoS Biology,,10.1371/journal.pbio.2006421,30990816.0,85064980691,2-s2.0-85064980691,Article,,https://api.elsevier.com/content/abstract/scopus_id/85064980691,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85064980691&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85064980691&origin=inward +The use of baclofen as a treatment for alcohol use disorder: A clinical practice perspective,Leggio,Roberta Agabio;Esther M. Beraha;Paul S. Haber;Adam Pastor;Henri Jean Aubin;Giovanni Addolorato;Philippe Jaury;Mathis Heydtmann;Patrick De La Selle;James C. Garbutt;Fanny Pélissier;Lorenzo Leggio;Benjamin Rolland;Renaud De Beaurepaire;Nicolas Franchitto;Fabio Caputo;Jonathan D. Chick;Louise M. Paterson;Wim Van Den Brink;Anne R. Lingford-Hughes;Amanda Stafford;Julia M.A. Sinclair;Kirsten C. Morley;Lynn Owens;Andrew Thompson;Christian A. Müller,2019-01-01,5,Frontiers in Psychiatry,,10.3389/fpsyt.2018.00708,,85065486849,2-s2.0-85065486849,Review,ERAB,https://api.elsevier.com/content/abstract/scopus_id/85065486849,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85065486849&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85065486849&origin=inward +"Gabapentin Enacarbil Extended-Release for Alcohol Use Disorder: A Randomized, Double-Blind, Placebo-Controlled, Multisite Trial Assessing Efficacy and Safety",Leggio,Megan L. Ryan;Barbara J. Mason;Charles Scott;Gantt Galloway;Kyle Kampman;D. Jeffrey Newport;Lara Ray;Eric C. Strain;Joanne B. Fertig;Janet Ransom;Steven Caras;Mary F. Brunette;Alan I. Green;Lorenzo Leggio;Steven Shoptaw;Ihsan M. Salloum;John Mendelson;Richard N. Rosenthal;Kelly E. Dunn;Daniel E. Falk;Raye Z. Litten;Heather Burns;Erik W. Gunderson;Eric G. Devine;Nassima Ait-Daoud Tiouririne;E.  Sherwood Brown;Ricardo Cruz;Catherine Brooks,2019-01-01,19,Alcoholism: Clinical and Experimental Research,158-169,10.1111/acer.13917,30403402.0,85058096040,2-s2.0-85058096040,Article,NIAAA,https://api.elsevier.com/content/abstract/scopus_id/85058096040,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85058096040&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85058096040&origin=inward +Low-frequency parietal repetitive transcranial magnetic stimulation reduces fear and anxiety,Lisanby,Madeline Goodwin;Thomas Radman;Christian Grillon;Bruce Luber;Sarah H. Lisanby;Monique Ernst;Emily M. Beydler;Zhi De Deng;Nicholas L. Balderston,2020-12-01,0,Translational Psychiatry,,10.1038/s41398-020-0751-8,32066739.0,85079574936,2-s2.0-85079574936,Article,NARSAD,https://api.elsevier.com/content/abstract/scopus_id/85079574936,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85079574936&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85079574936&origin=inward +Electroconvulsive therapy (ECT) for moderate-severity major depression among the elderly: Data from the pride study,Lisanby,Mustafa M. Husain;Martina Mueller;Charles H. Kellner;Maria S. Speed;Shawn M. McClintock;Søren D. Østergaard;William V. McCall;Sarah H. Lisanby;Georgios Petrides,2020-09-01,0,Journal of Affective Disorders,1134-1141,10.1016/j.jad.2020.05.039,32663942.0,85086472236,2-s2.0-85086472236,Article,,https://api.elsevier.com/content/abstract/scopus_id/85086472236,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85086472236&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85086472236&origin=inward +Older adults benefit from more widespread brain network integration during working memory,Lisanby,L. Beynel;D. Lakhlani;C. A. Crowell;S. W. Davis;R. Cabeza;B. Luber;S. H. Lisanby;S. A. Hilbig;A. V. Peterchev;L. Deng;H. Palmer;L. G. Appelbaum;A. Brito,2020-09-01,0,NeuroImage,,10.1016/j.neuroimage.2020.116959,32442638.0,85085727044,2-s2.0-85085727044,Article,NIA,https://api.elsevier.com/content/abstract/scopus_id/85085727044,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85085727044&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85085727044&origin=inward +Not So Fast: Recent Successes and Failures in Treating Depression,Lisanby,Ioline D. Henter;Carlos A. Zarate;Sarah H. Lisanby;Bashkim Kadriu;Zhi De Deng;Christoph Kraus,2020-05-26,0,The Journal of clinical psychiatry,,10.4088/JCP.19ac13138,32459405.0,85085538648,2-s2.0-85085538648,Article,,https://api.elsevier.com/content/abstract/scopus_id/85085538648,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85085538648&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85085538648&origin=inward +Utilizing transcranial direct current stimulation to enhance laparoscopic technical skills training: A randomized controlled trial,Lisanby,Morgan L. Cox;Hannah Palmer;John Migaly;Lawrence G. Appelbaum;Sarah H. Lisanby;Amanda Watts;Lysianne Beynel;Zhi De Deng;Jonathan R. Young,2020-05-01,1,Brain Stimulation,863-872,10.1016/j.brs.2020.03.009,32289719.0,85082180983,2-s2.0-85082180983,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85082180983,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85082180983&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85082180983&origin=inward +Site-specific effects of online rtms during a working memory task in healthy older adults,Lisanby,Connor Hile;Alexandra Brito;Wesley Lim;Hannah Palmer;Courtney A. Crowell;Moritz Dannhauer;Susan A. Hilbig;Angel V. Peterchev;Bruce Luber;Roberto Cabeza;Lawrence G. Appelbaum;Sarah H. Lisanby;Simon W. Davis;Lysianne Beynel,2020-05-01,0,Brain Sciences,,10.3390/brainsci10050255,,85084128746,2-s2.0-85084128746,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85084128746,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85084128746&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85084128746&origin=inward +A randomized proof-of-mechanism trial applying the ‘fast-fail’ approach to evaluating κ-opioid antagonism as a treatment for anhedonia,Lisanby,James W. Murrough;Allen Song;Wayne Goodman;Andrew D. Krystal;Sanjay J. Mathew;Dan Iosifescu;Richard D. Weiner;Alexis E. Whitton;Richard S.E. Keefe;Gerard Sanacora;Diego A. Pizzagalli;Gretchen Hermes;Moria Smoski;William Z. Potter;Hongqiu Yang;Keming Gao;Joseph R. Calabrese;Sarah H. Lisanby;Steven T. Szabo;John Nurnberger,2020-05-01,5,Nature Medicine,760-768,10.1038/s41591-020-0806-7,32231295.0,85083050857,2-s2.0-85083050857,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85083050857,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85083050857&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85083050857&origin=inward +Efficacy and acceptability of transcranial direct current stimulation (tDCS) for major depressive disorder: An individual patient data meta-analysis,Lisanby,Emmanuel Haffen;Felipe Fregni;Angelo Alonzo;Zafiris Daskalakis;Frank Padberg;Isabela M. Benseñor;Bernardo Sampaio-Jr;Colleen Loo;Andre R. Brunoni;Sarah H. Lisanby;Donel Martin;Djamila Bennabi;Ulrich Palm;Lais B. Razza;Adriano H. Moffa;Daniel M. Blumberger,2020-04-20,4,Progress in Neuro-Psychopharmacology and Biological Psychiatry,,10.1016/j.pnpbp.2019.109836,31837388.0,85076550622,2-s2.0-85076550622,Review,CAMH Foundation,https://api.elsevier.com/content/abstract/scopus_id/85076550622,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85076550622&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85076550622&origin=inward +Theta Burst for Cognitive Remediation in Schizophrenia: A Case Series and Feasibility Study,Lisanby,Sara Emory;Nicholas A. Mischel;Richard S.E. Keefe;Bruce Luber;Sarah H. Lisanby;Steven T. Szabo;Gopalkumar Rakesh,2020-03-01,0,Journal of ECT,72-74,10.1097/YCT.0000000000000625,31652174.0,85080846336,2-s2.0-85080846336,Letter,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85080846336,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85080846336&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85080846336&origin=inward +Mechanistic link between right prefrontal cortical activity and anxious arousal revealed using transcranial magnetic stimulation in healthy subjects,Lisanby,Thomas Radman;Camille Roberts;Christian Grillon;Bruce Luber;Tiffany Lago;Sarah H. Lisanby;Monique Ernst;Emily M. Beydler;Zhi De Deng;Nicholas L. Balderston,2020-03-01,1,Neuropsychopharmacology,694-702,10.1038/s41386-019-0583-5,31791039.0,85075989222,2-s2.0-85075989222,Article,NARSAD,https://api.elsevier.com/content/abstract/scopus_id/85075989222,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85075989222&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85075989222&origin=inward +Neurocognitive effects of transcranial direct current stimulation (tDCS) in unipolar and bipolar depression: Findings from an international randomized controlled trial,Lisanby,Angelo Alonzo;John P. O'Reardon;Mustafa M. Husain;Scott T. Aaronson;Cynthia Shannon Weickert;William M. McDonald;Colleen K. Loo;Donel M. Martin;Sarah H. Lisanby;Shawn M. McClintock;Adith Mohan,2020-03-01,3,Depression and Anxiety,261-272,10.1002/da.22988,31944487.0,85077999712,2-s2.0-85077999712,Article,SMRI,https://api.elsevier.com/content/abstract/scopus_id/85077999712,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85077999712&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85077999712&origin=inward +Neurocognitive Effects of Combined Electroconvulsive Therapy (ECT) and Venlafaxine in Geriatric Depression: Phase 1 of the PRIDE Study,Lisanby,Kristen G. Tobias;Peter B. Rosenquist;Mimi C. Briggs;Zhi De Deng;Robert C. Young;Shirlene Sampson;Vassilios Latoussakis;Abeba A. Teklehaimanot;Samuel H. Bailine;Styliani Kaliora;Elisabeth Bernhardt;Rebecca G. Knapp;Joan Prudic;Georgios Petrides;Matthew V. Rudorfer;Richard D. Weiner;C. Munro Cullum;Martina Mueller;Mary Dooley;Charles H. Kellner;Shawn M. McClintock;William V. McCall;Robert M. Greenberg;Emma T. Geduldig;Mustafa M. Husain;George Alexopoulos;Sarah H. Lisanby;Lauren S. Liebman,2020-03-01,4,American Journal of Geriatric Psychiatry,304-316,10.1016/j.jagp.2019.10.003,31706638.0,85075526174,2-s2.0-85075526174,Article,SMRI,https://api.elsevier.com/content/abstract/scopus_id/85075526174,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85075526174&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85075526174&origin=inward +Don't Blame the Tools: Clinical Neuroscience and the Quest to Link Brain With Behavior,Lisanby,Sarah H. Lisanby,2020-02-15,0,Biological Psychiatry,312-313,10.1016/j.biopsych.2019.12.002,32040418.0,85077462421,2-s2.0-85077462421,Note,,https://api.elsevier.com/content/abstract/scopus_id/85077462421,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85077462421&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85077462421&origin=inward +Using Transcranial Magnetic Stimulation to Test a Network Model of Perceptual Decision Making in the Human Brain,Lisanby,Tristan Jones;Austin Harrison;Bruce Luber;Paul Sajda;David C. Jangraw;Sarah H. Lisanby;Lysianne Beynel;Greg Appelbaum;Susan Hilbig,2020-01-24,1,Frontiers in Human Neuroscience,,10.3389/fnhum.2020.00004,,85079130678,2-s2.0-85079130678,Article,DARPA,https://api.elsevier.com/content/abstract/scopus_id/85079130678,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85079130678&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85079130678&origin=inward +Device-based modulation of neurocircuits as a therapeutic for psychiatric disorders,Lisanby,William C. Altekruse;Jeena Thomas;Bruce Luber;Shannon L. Exley;Sarah H. Lisanby;Melbaliz Velez Afanador;Shriya Awasthi;Zhi De Deng;Nicholas L. Balderston;Michelle M. Noh,2020-01-06,0,Annual Review of Pharmacology and Toxicology,591-614,10.1146/annurev-pharmtox-010919-023253,31914895.0,85077700345,2-s2.0-85077700345,Review,BBRF,https://api.elsevier.com/content/abstract/scopus_id/85077700345,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85077700345&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85077700345&origin=inward +Neurocognitive Subgroups in Major Depressive Disorder,Lisanby,Angelo Alonzo;Colleen K. Loo;Donel M. Martin;David Wollny-Huttarsch;Sarah H. Lisanby;Shawn M. McClintock;Stevan Nikolin,2020-01-01,0,Neuropsychology,,10.1037/neu0000626,32324004.0,85084672068,2-s2.0-85084672068,Article,,https://api.elsevier.com/content/abstract/scopus_id/85084672068,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85084672068&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85084672068&origin=inward +Effects of online repetitive transcranial magnetic stimulation (rTMS) on cognitive processing: A meta-analysis and recommendations for future studies,Lisanby,Wesley Lim;Courtney A. Crowell;Susan A. Hilbig;Bruce Luber;Lawrence G. Appelbaum;Nicolas A. Chrapliwy;Roberto Cabeza;Sarah H. Lisanby;Simon W. Davis;Lysianne Beynel;Zhi De Deng;Duy Nguyen,2019-12-01,4,Neuroscience and Biobehavioral Reviews,47-58,10.1016/j.neubiorev.2019.08.018,31473301.0,85071609690,2-s2.0-85071609690,Review,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85071609690,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85071609690&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85071609690&origin=inward +"Ethical Challenges of Risk, Informed Consent, and Posttrial Responsibilities in Human Research with Neural Devices: A Review",Lisanby,Helen Mayberg;Paul Ford;Hannah Maslen;Eran Klein;Franklin G. Miller;Sameer A. Sheth;Saskia Hendriks;Christine Grady;Anna Wexler;Sara Goering;Henry T. Greely;Scott Y.H. Kim;Michael L. Kelly;Winston Chiong;Joseph J. Fins;Khara M. Ramos;Sarah H. Lisanby;Karen Rommelfanger;Katrina Hutchison,2019-12-01,3,JAMA Neurology,1506-1514,10.1001/jamaneurol.2019.3523,31621797.0,85073711837,2-s2.0-85073711837,Conference Paper,,https://api.elsevier.com/content/abstract/scopus_id/85073711837,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85073711837&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85073711837&origin=inward +Accuracy of robotic coil positioning during transcranial magnetic stimulation,Lisanby,I. Cassie Kozyrkov;Angel V. Peterchev;Bruce Luber;Sarah H. Lisanby;Warren M. Grill;David L.K. Murphy;Stefan M. Goetz,2019-09-17,0,Journal of Neural Engineering,,10.1088/1741-2552/ab2953,31189147.0,85072508751,2-s2.0-85072508751,Article,,https://api.elsevier.com/content/abstract/scopus_id/85072508751,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85072508751&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85072508751&origin=inward +Low- and High-Frequency Repetitive Transcranial Magnetic Stimulation Effects on Resting-State Functional Connectivity between the Postcentral Gyrus and the Insula,Lisanby,Merideth A. Addicott;Lawrence Gregory Appelbaum;Bruce Luber;Sarah H. Lisanby;Hannah Palmer;Duy Nguyen,2019-05-01,0,Brain Connectivity,322-328,10.1089/brain.2018.0652,30773890.0,85065641788,2-s2.0-85065641788,Article,OD,https://api.elsevier.com/content/abstract/scopus_id/85065641788,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85065641788&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85065641788&origin=inward +"Better, Faster, Safer: Exploring Biomarkers of Response to Transform Electroconvulsive Therapy",Lisanby,Sarah H. Lisanby;David P. McMullen,2019-03-15,1,Biological Psychiatry,439-440,10.1016/j.biopsych.2019.01.009,30777169.0,85061176768,2-s2.0-85061176768,Note,,https://api.elsevier.com/content/abstract/scopus_id/85061176768,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85061176768&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85061176768&origin=inward +The dynamic Duo: Combining noninvasive brain stimulation with cognitive interventions,Lisanby,Aakash V. Sathappan;Bruce M. Luber;Sarah H. Lisanby,2019-03-08,21,Progress in Neuro-Psychopharmacology and Biological Psychiatry,347-360,10.1016/j.pnpbp.2018.10.006,30312634.0,85055266828,2-s2.0-85055266828,Review,DDCF,https://api.elsevier.com/content/abstract/scopus_id/85055266828,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85055266828&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85055266828&origin=inward +"George Niederehe, Ph.D.: Tribute and Thanks",Lisanby,Joshua Gordon;Jovier D. Evans;Sarah Hollingsworth Lisanby,2019-03-01,0,American Journal of Geriatric Psychiatry,333-334,10.1016/j.jagp.2018.12.019,30737007.0,85061831290,2-s2.0-85061831290,Editorial,,https://api.elsevier.com/content/abstract/scopus_id/85061831290,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85061831290&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85061831290&origin=inward +Online repetitive transcranial magnetic stimulation during working memory in younger and older adults: A randomized within-subject comparison,Lisanby,C. A. Crowell;L. Beynel;S. W. Davis;R. Cabeza;B. Luber;S. H. Lisanby;S. A. Hilbig;W. Lim;H. Palmer;A. V. Peterchev;D. Nguyen;L. G. Appelbaum;A. Brito,2019-03-01,8,PLoS ONE,,10.1371/journal.pone.0213707,30901345.0,85063315028,2-s2.0-85063315028,Article,NIA,https://api.elsevier.com/content/abstract/scopus_id/85063315028,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85063315028&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85063315028&origin=inward +Distinct neural mechanisms of social orienting and mentalizing revealed by independent measures of neural and eye movement typicality,Martin,Michal Ramot;Alex Martin;Gabrielle Elise Reimann;Catherine Walsh,2020-12-01,1,Communications Biology,,10.1038/s42003-020-0771-1,31996763.0,85078689481,2-s2.0-85078689481,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85078689481,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85078689481&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85078689481&origin=inward +Changes in human brain dynamics during behavioral priming and repetition suppression,Martin,Max Collard;Yujing Wang;Mackenzie C. Cervenka;Stephen J. Gotts;Anna Korzeniewska;Alex Martin;Matthew S. Fifer;Heather L. Benz;Griffin Milsap;Nathan E. Crone,2020-06-01,0,Progress in Neurobiology,,10.1016/j.pneurobio.2020.101788,32198060.0,85083014728,2-s2.0-85083014728,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85083014728,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85083014728&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85083014728&origin=inward +Layer-Specific Contributions to Imagined and Executed Hand Movements in Human Primary Motor Cortex,Martin,Laurentius Huber;Andrew S. Persichetti;Alex Martin;Jason A. Avery;Elisha P. Merriam,2020-05-04,1,Current Biology,1721-1725.e3,10.1016/j.cub.2020.02.046,32220318.0,85083835392,2-s2.0-85083835392,Article,NWO,https://api.elsevier.com/content/abstract/scopus_id/85083835392,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85083835392&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85083835392&origin=inward +Taste quality representation in the human brain,Martin,John E. Ingeholm;Alexander G. Liu;Stephen J. Gotts;Alex Martin;Jason A. Avery;Cameron D. Riddell,2020-01-29,1,Journal of Neuroscience,1042-1052,10.1523/JNEUROSCI.1751-19.2019,31836661.0,85078693061,2-s2.0-85078693061,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85078693061,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85078693061&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85078693061&origin=inward +"Brain networks, dimensionality, and global signal averaging in resting-state fMRI: Hierarchical network structure results in low-dimensional spatiotemporal dynamics",Martin,Stephen J. Gotts;Adrian W. Gilmore;Alex Martin,2020-01-15,4,NeuroImage,,10.1016/j.neuroimage.2019.116289,31629827.0,85073823516,2-s2.0-85073823516,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85073823516,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85073823516&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85073823516&origin=inward +"Characteristics of respiratory measures in young adults scanned at rest, including systematic changes and “missed” deep breaths",Martin,Jonathan D. Power;Marc J. Dubin;Charles J. Lynch;Benjamin M. Silver;Rebecca M. Jones;Alex Martin,2020-01-01,2,NeuroImage,,10.1016/j.neuroimage.2019.116234,31589990.0,85073106322,2-s2.0-85073106322,Article,SF,https://api.elsevier.com/content/abstract/scopus_id/85073106322,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85073106322&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85073106322&origin=inward +Distinctions among real and apparent respiratory motions in human fMRI data,Martin,Jonathan D. Power;Marc J. Dubin;Charles J. Lynch;Benjamin M. Silver;Rebecca M. Jones;Alex Martin,2019-11-01,9,NeuroImage,,10.1016/j.neuroimage.2019.116041,31344484.0,85069742454,2-s2.0-85069742454,Article,SF,https://api.elsevier.com/content/abstract/scopus_id/85069742454,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85069742454&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85069742454&origin=inward +Reply to Spreng et al.: Multiecho fMRI denoising does not remove global motion-associated respiratory signals,Martin,Jonathan D. Power;Adrian W. Gilmore;Charles J. Lynch;Stephen J. Gotts;Alex Martin,2019-09-24,2,Proceedings of the National Academy of Sciences of the United States of America,19243-19244,10.1073/pnas.1909852116,31455743.0,85072637696,2-s2.0-85072637696,Letter,,https://api.elsevier.com/content/abstract/scopus_id/85072637696,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85072637696&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85072637696&origin=inward +"Multifaceted integration: Memory for faces is subserved by widespread connections between visual, memory, auditory, and social networks",Martin,Michal Ramot;Alex Martin;Catherine Walsh,2019-06-19,0,Journal of Neuroscience,4976-4985,10.1523/JNEUROSCI.0217-19.2019,31036762.0,85068489058,2-s2.0-85068489058,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85068489058,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85068489058&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85068489058&origin=inward +Altered resting-state dynamics in autism spectrum disorder: Causal to the social impairment?,Martin,Stephen J. Gotts;Michal Ramot;Alex Martin;Kyle Jasmin,2019-03-02,1,Progress in Neuro-Psychopharmacology and Biological Psychiatry,28-36,10.1016/j.pnpbp.2018.11.002,30414457.0,85056487646,2-s2.0-85056487646,Review,NIH,https://api.elsevier.com/content/abstract/scopus_id/85056487646,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85056487646&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85056487646&origin=inward +Sex differences in resting-state functional connectivity of the cerebellum in autism spectrum disorder,Martin,Lauren Kenworthy;Rachel E.W. Smith;Stephen J. Gotts;Gregory L. Wallace;Alex Martin;Jason A. Avery,2019-02-01,5,Frontiers in Human Neuroscience,,10.3389/fnhum.2019.00104,,85069470461,2-s2.0-85069470461,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85069470461,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85069470461&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85069470461&origin=inward +What do across-subject analyses really tell us about neural coding?,Merriam,Fernando M. Ramírez;Elisha P. Merriam;Cambria Revsine,2020-06-01,0,Neuropsychologia,,10.1016/j.neuropsychologia.2020.107489,32437761.0,85084795538,2-s2.0-85084795538,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85084795538,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85084795538&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85084795538&origin=inward +Frontal and Insular Input to the Dorsolateral Temporal Pole in Primates: Implications for Auditory Memory,Mishkin,Marta Córcoles-Parada;Mortimer Mishkin;Ricardo Insausti;Richard G.M. Morris;Mar Ubero-Martínez;Mónica Muñoz-López,2019-11-12,0,Frontiers in Neuroscience,,10.3389/fnins.2019.01099,,85075678346,2-s2.0-85075678346,Article,DART,https://api.elsevier.com/content/abstract/scopus_id/85075678346,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85075678346&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85075678346&origin=inward +Neocerebellar Crus I Abnormalities Associated with a Speech and Language Disorder Due to a Mutation in FOXP2,Mishkin,F. Vargha-Khadem;E. Belton-Pagnamenta;K. S. Saleem;K. E. Watkins;M. Mishkin;G. P.D. Argyropoulos;F. Liégeois,2019-06-15,3,Cerebellum,309-319,10.1007/s12311-018-0989-3,30460543.0,85057051779,2-s2.0-85057051779,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85057051779,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85057051779&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85057051779&origin=inward +"A comparison of auditory oddball responses in dorsolateral prefrontal cortex, basolateral amygdala, and auditory cortex of macaque",Mishkin,Bruno B. Averbeck;Corrie R. Camalier;Kaylee Scarim;Mortimer Mishkin,2019-01-01,5,Journal of Cognitive Neuroscience,1054-1064,10.1162/jocn_a_01387,30883292.0,85067269576,2-s2.0-85067269576,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85067269576,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85067269576&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85067269576&origin=inward +Addictions NeuroImaging Assessment (ANIA): Towards an integrative framework for alcohol use disorder,Momenan,Reza Momenan;George F. Koob;Laura Kwako;Valerie Voon;Alekhya Mandali;Laurel Morris;Erica Grodin;David Goldman;Nuria Doñamayor;Kathrin Weidacker,2020-06-01,1,Neuroscience and Biobehavioral Reviews,492-506,10.1016/j.neubiorev.2020.04.004,32298710.0,85083767911,2-s2.0-85083767911,Review,,https://api.elsevier.com/content/abstract/scopus_id/85083767911,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85083767911&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85083767911&origin=inward +Addiction neurocircuitry and negative affect: A role for neuroticism in understanding amygdala connectivity and alcohol use disorder,Momenan,Samantha J. Fede;Nancy Diazgranados;Sarah F. Dean;Reza Momenan,2020-03-23,0,Neuroscience Letters,,10.1016/j.neulet.2020.134773,32045624.0,85079228303,2-s2.0-85079228303,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85079228303,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85079228303&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85079228303&origin=inward +Alcohol effects on globus pallidus connectivity: Role of impulsivity and binge drinking,Momenan,Reza Momenan;Carlos R. Cortes;Vijay A. Ramchandani;Nancy Diazgranados;David T. George;Karina P. Abrahao;Erica N. Grodin;Samantha J. Fede;Melanie L. Schwandt;David M. Lovinger,2020-01-01,0,PLoS ONE,,10.1371/journal.pone.0224906,32214339.0,85082445536,2-s2.0-85082445536,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85082445536,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85082445536&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85082445536&origin=inward +How do substance use disorders compare to other psychiatric conditions on structural brain abnormalities? A cross-disorder meta-analytic comparison using the ENIGMA consortium findings,Momenan,Catherine Orr;Dan J. Stein;Neda Jahanshad;Zsuzsika Sjoerds;Reza Momenan;David C. Glahn;Xavier Navarri;Murat Yucel;Rajita Sinha;Reinout Wiers;Dick J. Veltman;Ozlem Korucuoglu;Ruth J. van Holst;Jacob Lavoie;Scott Mackey;Mohammad H. Afzali;Janna Cousijn;Paul M. Thompson;Rob Hester;Valentina Lorenzetti;Patricia J. Conrod,2020-01-01,0,Human Brain Mapping,,10.1002/hbm.25114,,85087724834,2-s2.0-85087724834,Article,,https://api.elsevier.com/content/abstract/scopus_id/85087724834,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85087724834&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85087724834&origin=inward +Epigenome-wide association study and multi-tissue replication of individuals with alcohol use disorder: evidence for abnormal glucocorticoid signaling pathway gene regulation,Momenan,Zachary A. Kaminsky;Jill L. Sorcher;Audrey Luo;Jisoo Lee;Reza Momenan;Kathryn L. Evans;Hui Sun;Emma O’Connell;Rosie M. Walker;Jeesun Jung;Katrin Charlet;Martha Longley;Colin A. Hodgkinson;Christine Muench;Mark J. Adams;Alicia K. Smith;Toni Kim Clarke;David Porteous;Falk W. Lohoff;Arunima Roy;Melanie Schwandt;Andrew M. McIntosh;David Goldman;Daniel B. Rosoff,2020-01-01,0,Molecular Psychiatry,,10.1038/s41380-020-0734-4,,85084426594,2-s2.0-85084426594,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85084426594,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85084426594&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85084426594&origin=inward +Fear conditioning and extinction in alcohol dependence: Evidence for abnormal amygdala reactivity,Momenan,Reza Momenan;Christine Muench;Carlos R. Cortes;Markus Heilig;Christian Grillon;Falk W. Lohoff;Nicholas L. Balderston;Katrin Charlet,2019-01-01,1,Addiction Biology,,10.1111/adb.12835,31702089.0,85074914205,2-s2.0-85074914205,Article,DFG,https://api.elsevier.com/content/abstract/scopus_id/85074914205,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85074914205&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85074914205&origin=inward +Subcortical surface morphometry in substance dependence: An ENIGMA addiction working group study,Momenan,Samantha Brooks;Catherine Orr;Lianne Schmaal;Godfrey Pearlson;Dan J. Stein;Murat Yücel;Patricia Conrod;Elisabeth C. Caparelli;Robert Hester;Shashwath A. Meda;Neda Jahanshad;Anna E. Goudriaan;Anne M. Kaag;Reza Momenan;Alain Dagher;Maartje Luijten;Anne Uhlmann;Ruth van Holst;Liesbeth Reneman;Rajita Sinha;Angelica Morales;Sara Blaine;Kent Hutchison;Elliot A. Stein;Deborah Tang;Dick J. Veltman;Scott Mackey;Yann Chye;Ozlem Korucuoglu;Martin P. Paulus;Boris A. Gutman;Janna Cousijn;Nadia Solowij;Paul M. Thompson;Hugh Garavan;Antonio Verdejo-Garcia;Albert Batalla;Rocio Martin-Santos;Christopher R.K. Ching;Chiang Shan R. Li;John J. Foxe;Valentina Lorenzetti;Edythe D. London;Reinout W. Wiers,2019-01-01,4,Addiction Biology,,10.1111/adb.12830,,85075237877,2-s2.0-85075237877,Article,SAMRC,https://api.elsevier.com/content/abstract/scopus_id/85075237877,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85075237877&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85075237877&origin=inward +The anterior cingulate cortex is necessary for forming prosocial preferences from vicarious reinforcement in monkeys,Murray,Chloe L. Karaskiewicz;Steve W.C. Chang;Benjamin M. Basile;Elisabeth A. Murray;Jamie L. Schafroth,2020-06-01,2,PLoS Biology,,10.1371/journal.pbio.3000677,32530910.0,85086523526,2-s2.0-85086523526,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85086523526,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85086523526&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85086523526&origin=inward +Lesion Studies in Contemporary Neuroscience,Murray,Michael Petrides;Avinash R. Vaidya;Maia S. Pujara;Lesley K. Fellows;Elisabeth A. Murray,2019-08-01,12,Trends in Cognitive Sciences,653-671,10.1016/j.tics.2019.05.009,31279672.0,85068235545,2-s2.0-85068235545,Review,CFREF,https://api.elsevier.com/content/abstract/scopus_id/85068235545,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85068235545&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85068235545&origin=inward +NIMH MonkeyLogic: Behavioral control and data acquisition in MATLAB,Murray,Elisabeth A. Murray;Andrew R. Mitz;Jaewon Hwang,2019-07-15,1,Journal of Neuroscience Methods,13-21,10.1016/j.jneumeth.2019.05.002,31071345.0,85065733478,2-s2.0-85065733478,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85065733478,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85065733478&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85065733478&origin=inward +Heightened defensive responses following subtotal lesions of macaque orbitofrontal cortex,Murray,Peter H. Rudebeck;Nicole K. Ciesinski;Maia S. Pujara;Elisabeth A. Murray,2019-05-22,4,Journal of Neuroscience,4133-4141,10.1523/JNEUROSCI.2812-18.2019,30910790.0,85066511520,2-s2.0-85066511520,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85066511520,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85066511520&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85066511520&origin=inward +"Gustatory responses in macaque monkeys revealed with fMRI: Comments on taste, taste preference, and internal state",Murray,Peter M. Kaskan;Andrew R. Mitz;Mark A. Nicholas;Aaron M. Dean;Elisabeth A. Murray,2019-01-01,5,NeuroImage,932-942,10.1016/j.neuroimage.2018.10.005,30291973.0,85054870973,2-s2.0-85054870973,Article,NARSAD,https://api.elsevier.com/content/abstract/scopus_id/85054870973,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85054870973&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85054870973&origin=inward +Silencing of immune activation with methotrexate in patients with COVID-19,Nath,Avindra Nath;Farinaz Safavi,2020-08-15,0,Journal of the Neurological Sciences,,10.1016/j.jns.2020.116942,32471659.0,85085386556,2-s2.0-85085386556,Editorial,NIH,https://api.elsevier.com/content/abstract/scopus_id/85085386556,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85085386556&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85085386556&origin=inward +"Effect of HIV and Interpersonal Trauma on Cortical Thickness, Cognition, and Daily Functioning",Nath,Joseph Snow;Avindra Nath;Suad Kapetanovic;Govind Nair;Katrina Geannopoulos;Peter Siyahhan Julnes;Katherine A. Traino;Bryan R. Smith;Gina Norato,2020-08-01,0,Journal of acquired immune deficiency syndromes (1999),405-413,10.1097/QAI.0000000000002358,32235173.0,85087321334,2-s2.0-85087321334,Article,,https://api.elsevier.com/content/abstract/scopus_id/85087321334,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85087321334&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85087321334&origin=inward +Regulation of stem cell function and neuronal differentiation by HERV-K via mTOR pathway,Nath,Kory R. Johnson;Marie Medynets;Joseph Steiner;Anna Bagnell;James O'Malley;Brianna DiSanza;Nasir Malik;Avindra Nath;Alina Hadegan;Dragan Maric;Jeffrey Kowalak;Yadi Xu;Tara T. Doucet-O'Hare;Wenxue Li;Kevon Sampson;Richa Tyagi;Tongguang Wang,2020-07-28,0,Proceedings of the National Academy of Sciences of the United States of America,17842-17853,10.1073/pnas.2002427117,32669437.0,85088879424,2-s2.0-85088879424,Article,,https://api.elsevier.com/content/abstract/scopus_id/85088879424,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85088879424&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85088879424&origin=inward +Productive HIV infection in astrocytes can be established via a nonclassical mechanism,Nath,Eugene O. Major;Avindra Nath;Dragan Maric;Guan Han Li,2020-06-01,2,"AIDS (London, England)",963-978,10.1097/QAD.0000000000002512,32379159.0,85084379740,2-s2.0-85084379740,Article,,https://api.elsevier.com/content/abstract/scopus_id/85084379740,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85084379740&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85084379740&origin=inward +Neurologic complications of coronavirus infections,Nath,Avindra Nath,2020-05-12,32,Neurology,809-810,10.1212/WNL.0000000000009455,32229625.0,85083557304,2-s2.0-85083557304,Editorial,NIH,https://api.elsevier.com/content/abstract/scopus_id/85083557304,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85083557304&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85083557304&origin=inward +CD8+ T cells target cerebrovasculature in children with cerebral malaria,Nath,Kory R. Johnson;Brittany A. Riggle;Myoung Hwa Lee;Susan K. Pierce;Avindra Nath;Osorio Lopes Abath Neto;Dragan Maric;Terrie E. Taylor;Monica Manglani;Louis H. Miller;Dorian B. McGavern;Karl B. Seydel,2020-03-02,3,Journal of Clinical Investigation,1128-1138,10.1172/JCI133474,31821175.0,85081137051,2-s2.0-85081137051,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85081137051,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85081137051&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85081137051&origin=inward +Advances toward curing HIV-1 infection in tissue reservoirs,Nath,Lauren B. Reoma;Lisa J. Henderson;Avindra Nath;Joseph A. Kovacs,2020-02-01,1,Journal of Virology,,10.1128/JVI.00375-19,31694954.0,85078116865,2-s2.0-85078116865,Review,OAR,https://api.elsevier.com/content/abstract/scopus_id/85078116865,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85078116865&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85078116865&origin=inward +The Pathogenesis of Nodding Syndrome,Nath,Tory P. Johnson;Avindra Nath;James Sejvar;Thomas B. Nutman,2020-01-24,0,Annual Review of Pathology: Mechanisms of Disease,395-417,10.1146/annurev-pathmechdis-012419-032748,31977293.0,85078303202,2-s2.0-85078303202,Review,,https://api.elsevier.com/content/abstract/scopus_id/85078303202,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85078303202&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85078303202&origin=inward +Neurotoxicities associated with checkpoint inhibitors: Two case reports and a review of the literature,Nath,Nicole N. Davarpanah;Martha Quezado;Lisa M. Cordes;Avindra Nath;Billel Gasmi;Andrea B. Apolo;Lauren B. Reoma;Omar I. Khan,2020-01-01,0,Clinical Case Reports,24-32,10.1002/ccr3.2534,,85075748697,2-s2.0-85075748697,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85075748697,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85075748697&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85075748697&origin=inward +Neurological manifestations of Erdheim–Chester Disease,Nath,William A. Gahl;Juvianee I. Estrada-Veras;Fady Hannah-Shmouni;Louisa C. Boyd;Kevin J. O’Brien;Bernadette R. Gochuico;Neval Ozkaya;Avindra Nath;Tanya Lehky;Avner Meoded;Rahul H. Dave;Camilo Toro,2020-01-01,0,Annals of Clinical and Translational Neurology,,10.1002/acn3.51014,32227455.0,85082407052,2-s2.0-85082407052,Article,,https://api.elsevier.com/content/abstract/scopus_id/85082407052,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85082407052&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85082407052&origin=inward +Presence of Tat and transactivation response element in spinal fluid despite antiretroviral therapy,Nath,Robert A. Barclay;Joseph Steiner;Catherine Demarino;Joseph Snow;Justin McArthur;Fatah Kashanchi;Avindra Nath;Muzna Bachani;Ulisses A. Santamaria;Lauren Bowen Reoma;Tory P. Johnson;Lisa J. Henderson;Scott Letendre;Ned Sacktor;Bryan R. Smith,2019-12-01,8,AIDS,S145-S157,10.1097/QAD.0000000000002268,31789815.0,85075953371,2-s2.0-85075953371,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85075953371,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85075953371&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85075953371&origin=inward +Fatal encephalopathy with wild-type JC virus and ruxolitinib therapy,Nath,Daniel S. Reich;Phuong Vu;Marta Garcia Montojo;Marta Quezado;Richard Childs;Stephen M. Hewitt;Avindra Nath;Jamie Solis;Govind Nair;Erin Beck;Christopher Julius Trindade;Lauren Bowen Reoma;Maria Chiara Monaco;Kory Johnson;Omar I. Khan,2019-12-01,4,Annals of Neurology,878-884,10.1002/ana.25608,31600832.0,85074280688,2-s2.0-85074280688,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85074280688,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85074280688&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85074280688&origin=inward +Involvement of organelles and inter-organellar signaling in the pathogenesis of HIV-1 associated neurocognitive disorder and Alzheimer's disease,Nath,Norman J. Haughey;Jonathan D. Geiger;Avindra Nath;Nabab Khan,2019-11-01,0,Brain Research,,10.1016/j.brainres.2019.146389,31425679.0,85070934250,2-s2.0-85070934250,Review,,https://api.elsevier.com/content/abstract/scopus_id/85070934250,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85070934250&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85070934250&origin=inward +Neuroinflammation and not tauopathy is a predominant pathological signature of nodding syndrome,Nath,Samir Kumar-Singh;Geoffrey Akena;Pamela R. Akun;Avindra Nath;Francis Olwa;Robert Colebunders;Martin Lammens;An Hotterbeekx;Richard Idro;Robert Lukande;Joneé Taylor,2019-11-01,7,Journal of Neuropathology and Experimental Neurology,1049-1058,10.1093/jnen/nlz090,31553445.0,85073655124,2-s2.0-85073655124,Article,ERC,https://api.elsevier.com/content/abstract/scopus_id/85073655124,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85073655124&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85073655124&origin=inward +Chronic Dengue Virus Panencephalitis in a Patient with Progressive Dementia with Extrapyramidal Features,Nath,Jonathan Howard;Steven Galetta;William A. Gahl;Ilya Kister;Jeffrey Kowalak;Camilo Toro;Juyun Kim;Tory P. Johnson;C. Christopher Lau;Myoung Hwa Lee;James Weisfeld-Adams;H. Benjamin Larman;Lauren B. Reoma;Carlos A. Pardo;Stephen S. Whitehead;Kory R. Johnson;Avindra Nath;Sanjay Kottapalli;Craig Blackstone;Arline Faustin;Matija Snuderl;Daniel Monaco,2019-11-01,3,Annals of Neurology,695-703,10.1002/ana.25588,31461177.0,85072194617,2-s2.0-85072194617,Article,"SOM, JHU",https://api.elsevier.com/content/abstract/scopus_id/85072194617,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85072194617&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85072194617&origin=inward +Safety and tolerability of Triumeq in amyotrophic lateral sclerosis: the Lighthouse trial,Nath,Matthew C. Kiernan;Steve Vucic;Leonard H. van den Berg;Mary Louise Rogers;Marta Garcia Montojo;Henk Jan Westeneng;Avindra Nath;Andrea Malaspina;Ammar Al-Chalabi;Vittoria Lombardi;Susan Mathers;Ulisses A. Santamaria;Gina Norato;Ruben P.A. van Eijk;Dominic B. Rowe;Puja R. Mehta;Julian Gold,2019-10-02,6,Amyotrophic Lateral Sclerosis and Frontotemporal Degeneration,595-604,10.1080/21678421.2019.1632899,31284774.0,85068694658,2-s2.0-85068694658,Article,JPND,https://api.elsevier.com/content/abstract/scopus_id/85068694658,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85068694658&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85068694658&origin=inward +HIV and Alzheimer’s disease: complex interactions of HIV-Tat with amyloid β peptide and Tau protein,Nath,Eliezer Masliah;Alina Hategan;Avindra Nath,2019-10-01,2,Journal of NeuroVirology,648-660,10.1007/s13365-019-00736-z,31016584.0,85064914655,2-s2.0-85064914655,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85064914655,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85064914655&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85064914655&origin=inward +"Correction to: Astrocytes as an HIV CNS reservoir: highlights and reflections of an NIMH-sponsored symposium (Journal of NeuroVirology, (2018), 24, 6, (665-669), 10.1007/s13365-018-0691-8)",Nath,Jeymohan Joseph;Avindra Nath;Lena Al-Harthi,2019-08-01,1,Journal of NeuroVirology,616,10.1007/s13365-019-00726-1,31041681.0,85065259823,2-s2.0-85065259823,Erratum,,https://api.elsevier.com/content/abstract/scopus_id/85065259823,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85065259823&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85065259823&origin=inward +Technical considerations in detection of HERV-K in amyotrophic lateral sclerosis: selection of controls and the perils of qPCR,Nath,Avindra Nath;Wenxue Li;Marta Garcia-Montojo,2019-07-03,2,Acta neuropathologica communications,101,10.1186/s40478-019-0753-z,31269986.0,85069267321,2-s2.0-85069267321,Letter,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85069267321,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85069267321&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85069267321&origin=inward +Future directions of training physician–scientists: Reimagining and remeasuring the workforce,Nath,Avindra Nath;John D. Heiss;Omar I. Khan;Wyatt P. Bensken,2019-05-01,0,Academic Medicine,659-663,10.1097/ACM.0000000000002581,30640263.0,85065305243,2-s2.0-85065305243,Review,NIH,https://api.elsevier.com/content/abstract/scopus_id/85065305243,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85065305243&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85065305243&origin=inward +Neuroinflammatory changes in relation to cerebrospinal fluid viral load in simian immunodeficiency virus encephalitis,Nath,Siva Muthusamy;Dima A. Hammoud;Paul Wakim;Dianne E. Lee;Sanhita Sinharay;Kenta Matsuda;William Schreiber-Stainthorp;Avindra Nath;Dragan Maric;Michele Di Mascio;Cheri A. Lee;William C. Reid;Falguni Basuli;Swati Shah;Vanessa Hirsch,2019-05-01,0,mBio,,10.1128/mBio.00970-19,31138753.0,85067115727,2-s2.0-85067115727,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85067115727,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85067115727&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85067115727&origin=inward +Treatment of progressive multifocal leukoencephalopathy with pembrolizumab,Nath,Cornelius Weiller;Klaus Warnatz;Avindra Nath;Horst Urbach;Bodo Grimbacher;Steve Holland;Sebastian Rauer;Reinhard Marks,2019-04-25,18,New England Journal of Medicine,1676-1677,10.1056/NEJMc1817193,30969507.0,85064860482,2-s2.0-85064860482,Letter,,https://api.elsevier.com/content/abstract/scopus_id/85064860482,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85064860482&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85064860482&origin=inward +A longitudinal study of Ebola sequelae in Liberia,Nath,Elizabeth S. Higgs;Cavan Reilly;James D. Neaton;Allen O. Eghrari;Avindra Nath;Kenneth S. Jensen;Michael C. Sneller;Soka J. Moses;Mosoka P. Fallah;Lisa E. Hensley;H. Clifford Lane;Dehkontee Gayedyu-Dennis;Rachel J. Bishop;Justin Varughese;Moses Badio;Bonnie Dighero-Kemp;Kaylie Tuznik;Kumblytee L. Johnson,2019-03-07,23,New England Journal of Medicine,924-934,10.1056/NEJMoa1805435,30855742.0,85062697714,2-s2.0-85062697714,Article,NEI,https://api.elsevier.com/content/abstract/scopus_id/85062697714,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85062697714&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85062697714&origin=inward +HIV brain latency as measured by CSF BcL11b relates to disrupted brain cellular energy in virally suppressed HIV infection,Nath,Bruce J. Brew;Avindra Nath;Michael D. Lovelace;Matthew J. Lennon;Lucette A. Cysique;Lauriane Jugé;Tory P. Johnson;Thomas M. Gates;Simon P. Jones;Caroline D. Rae,2019-03-01,5,AIDS,433-441,10.1097/QAD.0000000000002076,30475266.0,85060905958,2-s2.0-85060905958,Article,OAR,https://api.elsevier.com/content/abstract/scopus_id/85060905958,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85060905958&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85060905958&origin=inward +Clinicopathology conference: 41-year-old woman with chronic relapsing meningitis,Nath,Elise M. O'Connell;Daniel S. Reich;Kelsey C. Zorn;Erin S. Beck;Hannah A. Sample;Theodore Nash;Avindra Nath;Arun Venkatesan;Michael R. Wilson;Lillian M. Khan;Prashanth S. Ramachandran;Joseph L. DeRisi,2019-02-01,4,Annals of Neurology,161-169,10.1002/ana.25400,30565288.0,85059582124,2-s2.0-85059582124,Conference Paper,NIH,https://api.elsevier.com/content/abstract/scopus_id/85059582124,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85059582124&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85059582124&origin=inward +"Herpes Viruses, Alzheimer’s Disease, and Related Dementias: Unifying or Confusing Hypothesis?",Nath,Avindra Nath,2019-01-15,0,Neurotherapeutics,180-181,10.1007/s13311-018-00701-4,30644072.0,85060140193,2-s2.0-85060140193,Article,,https://api.elsevier.com/content/abstract/scopus_id/85060140193,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85060140193&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85060140193&origin=inward +Parasitic Infections of the Nervous System,Nath,Oscar H. Del Brutto;Avindra Nath;Hector H. Garcia,2019-01-01,1,Seminars in Neurology,358-368,10.1055/s-0039-1693036,31378871.0,85070390834,2-s2.0-85070390834,Article,,https://api.elsevier.com/content/abstract/scopus_id/85070390834,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85070390834&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85070390834&origin=inward +Potential mechanism for HIV-associated depression: Upregulation of serotonin transporters in SIV-infected macaques detected by 11c-DASB PET,Nath,Siva Muthusamy;Dima A. Hammoud;Paul Wakim;Michele Di Mascio;Kenta Matsuda;Sanhita Sinharay;William Schreiber-Stainthorp;Avindra Nath;Dianne Lee;Swati Shah;Vanessa Hirsch,2019-01-01,0,Frontiers in Psychiatry,,10.3389/fpsyt.2019.00362,,85068116224,2-s2.0-85068116224,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85068116224,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85068116224&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85068116224&origin=inward +In-vivoMRI reveals changes to intracerebral vasculature caliber in HIV infection,Nath,Cristah Artrip;Stanley I. Rapoport;Daniel S. Reich;Caryn Morse;Tianxia Wu;Joseph Snow;Chuen Yen Lau;Avindra Nath;Sally Steinbach;Govind Nair;Paba M. De Alwis;Bryan R. Smith;Edmund Tramont,2019-01-01,0,Frontiers in Neurology,,10.3389/fneur.2019.00687,,85069149573,2-s2.0-85069149573,Article,OAR,https://api.elsevier.com/content/abstract/scopus_id/85069149573,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85069149573&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85069149573&origin=inward +Metacognition and emotion – How accurate perception of own biases relates to positive feelings and hedonic capacity,Nugent,Pawel Kleka;Hanna Brycz;Allison C. Nugent;Joanna E. Szczepanik;Carlos A. Zarate;Agnieszka Fanslau,2020-07-01,0,Consciousness and Cognition,,10.1016/j.concog.2020.102936,32416543.0,85084468406,2-s2.0-85084468406,Article,NARSAD,https://api.elsevier.com/content/abstract/scopus_id/85084468406,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85084468406&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85084468406&origin=inward +"Correction: Ketamine metabolites, clinical response, and gamma power in a randomized, placebo-controlled, crossover trial for treatment-resistant major depression (Neuropsychopharmacology, (2020), 45, 8, (1398-1404), 10.1038/s41386-020-0663-6)",Nugent,Allison C. Nugent;Cristan A. Farmer;Todd D. Gould;Jacqueline Lovett;Lilian Adeojo;Peixiong Yuan;Jessica R. Gilbert;Carlos A. Zarate;Bashkim Kadriu;Jomy George;Lawrence T. Park;Ruin Moaddel,2020-07-01,0,Neuropsychopharmacology,1405,10.1038/s41386-020-0699-7,32376872.0,85085076323,2-s2.0-85085076323,Erratum,,https://api.elsevier.com/content/abstract/scopus_id/85085076323,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85085076323&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85085076323&origin=inward +"Ketamine metabolites, clinical response, and gamma power in a randomized, placebo-controlled, crossover trial for treatment-resistant major depression",Nugent,Allison C. Nugent;Cristan A. Farmer;Todd D. Gould;Jacqueline Lovett;Lilian Adeojo;Peixiong Yuan;Jessica R. Gilbert;Carlos A. Zarate;Bashkim Kadriu;Jomy George;Lawrence T. Park;Ruin Moaddel,2020-07-01,3,Neuropsychopharmacology,1398-1404,10.1038/s41386-020-0663-6,32252062.0,85083440937,2-s2.0-85083440937,Article,NARSAD,https://api.elsevier.com/content/abstract/scopus_id/85083440937,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85083440937&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85083440937&origin=inward +The Effect of Ketamine on Electrophysiological Connectivity in Major Depressive Disorder,Nugent,Elizabeth D. Ballard;Allison C. Nugent;Matthew J. Brookes;Prejaas K. Tewarie;Carlos A. Zarate;Jessica R. Gilbert,2020-06-10,0,Frontiers in Psychiatry,,10.3389/fpsyt.2020.00519,,85087025785,2-s2.0-85087025785,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85087025785,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85087025785&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85087025785&origin=inward +Evaluating global brain connectivity as an imaging marker for depression: influence of preprocessing strategies and placebo-controlled ketamine treatment,Nugent,Allison C. Nugent;Carlos A. Zarate;Anahit Mkrtchian;Bashkim Kadriu;Jennifer W. Evans;Christoph Kraus,2020-05-01,5,Neuropsychopharmacology,982-989,10.1038/s41386-020-0624-0,31995812.0,85079180564,2-s2.0-85079180564,Article,NARSAD,https://api.elsevier.com/content/abstract/scopus_id/85079180564,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85079180564&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85079180564&origin=inward +"Correction to: Mapping anticipatory anhedonia: an fMRI study (Brain Imaging and Behavior, (2019), 13, 6, (1624-1634), 10.1007/s11682-019-00084-w)",Nugent,Elizabeth D. Ballard;Allison C. Nugent;Joanna E. Szczepanik;Carl W. Lejuez;Carlos A. Zarate;Jennifer W. Evans;Jessica L. Reed,2020-04-01,0,Brain Imaging and Behavior,640,10.1007/s11682-019-00131-6,31172359.0,85067023923,2-s2.0-85067023923,Erratum,,https://api.elsevier.com/content/abstract/scopus_id/85067023923,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85067023923&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85067023923&origin=inward +Magnetoencephalographic Correlates of Suicidal Ideation in Major Depression,Nugent,Elizabeth D. Ballard;Allison C. Nugent;Christina S. Galiano;Carlos A. Zarate;Jessica R. Gilbert,2020-03-01,1,Biological Psychiatry: Cognitive Neuroscience and Neuroimaging,354-363,10.1016/j.bpsc.2019.11.011,31928949.0,85077719703,2-s2.0-85077719703,Article,FNIH,https://api.elsevier.com/content/abstract/scopus_id/85077719703,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85077719703&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85077719703&origin=inward +What we learn about bipolar disorder from large-scale neuroimaging: Findings and future directions from the ENIGMA Bipolar Disorder Working Group,Nugent,Bronwyn J. Overs;Orwa Dandash;Joaquim Radua;Melissa J. Green;Ana M. Díaz-Zuluaga;Erlend Bøen;Hilary P. Blumberg;David C. Glahn;Christian Knöchel;Derrek P. Hibar;Bartholomeus C.M. Haarman;Erick J. Canales-Rodríguez;Victoria Ives-Deliperi;Henricus G. Ruhe;Aart H. Schene;Giulia Tronchin;Allison C. Nugent;Rachel M. Brouwer;Tiril P. Gurholt;Beny Lafer;Oliver Gruber;Mikael Landén;Leila Nabulsi;Jose M. Goikolea;Arnaud Pouchon;Mary L. Phillips;Ling Li Zeng;Viola Oertel;Yash Patel;Philip B. Mitchell;Marcio G. Soeiro-de-Souza;Udo Dannlowski;Igor Nenadic;Pauline Favre;Dara M. Cannon;Caterina del Mar Bonnin;Giuseppe Delvecchio;Andreas Jansen;Bernd Kramer;Henrik Walter;Christoph Abé;Tristram A. Lett;Chantal Henry;Carlos López-Jaramillo;Michael Berk;Bernhard T. Baune;Abraham Nunes;Maria M. Rive;Sophia Frangou;Dag Alnæs;Tomas Hajek;Rodrigo Machado-Vieira;Francesco Benedetti;Martin Alda;Jorge Almeida;Gloria Roberts;Edith Pomarol-Clotet;Neeltje E.M. van Haren;Roel A. Ophoff;Josselin Houenou;Scott C. Fears;Tilo T.J. Kircher;Salvador Sarró;Daniel L. Pham;Sara Poletti;Danai Dima;Kang Sim;Elisa M.T. Melloni;Melissa E. Pauling;Ingrid Agartz;Lisa T. Eyler;Janice M. Fullerton;Amy C. Bilderbeck;Eduard Vieta;Marcella Bellani;Fabiano Nery;Xavier Caseras;Mircea Polosan;Bradley J. MacIntosh;Sophia I. Thomopoulos;Édouard Duchesnay;Tomas Paus;Sonja M.C. de Zwarte;Silvia Alonso-Lana;Dominik Grotegerd;Torbjørn Elvsåshagen;Colm McDonald;Paolo Brambilla;Carrie E. Bearden;Yann Quidé;Michael Bauer;Irene Bollettini;Raymond Salvador;Julian A. Pineda-Zapata;Christopher R.K. Ching;Fleur M. Howells;Theodore D. Satterthwaite;Miho Ota;Unn K. Haukvik;Cara Altimus,2020-01-01,0,Human Brain Mapping,,10.1002/hbm.25098,,85088655322,2-s2.0-85088655322,Review,,https://api.elsevier.com/content/abstract/scopus_id/85088655322,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85088655322&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85088655322&origin=inward +"Research on the pathophysiology, treatment, and prevention of suicide: Practical and ethical issues",Nugent,Elizabeth D. Ballard;Allison C. Nugent;Lawrence T. Park;Carlos A. Zarate,2019-11-01,1,BMC Psychiatry,,10.1186/s12888-019-2301-6,31675949.0,85074325264,2-s2.0-85074325264,Review,,https://api.elsevier.com/content/abstract/scopus_id/85074325264,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85074325264&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85074325264&origin=inward +Ketamine has distinct electrophysiological and behavioral effects in depressed and healthy subjects,Nugent,Elizabeth D. Ballard;Allison C. Nugent;Nancy E. Brutsche;Carlos A. Zarate;Ruin Moaddel;Lawrence T. Park;Todd D. Gould,2019-07-01,40,Molecular Psychiatry,1040-1052,10.1038/s41380-018-0028-2,29487402.0,85042565493,2-s2.0-85042565493,Article,,https://api.elsevier.com/content/abstract/scopus_id/85042565493,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85042565493&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85042565493&origin=inward +Subtle predictive movements reveal actions regardless of social context,Pereira,Maryam Vaziri-Pashkam;Emalie G. McMahon;Leslie G. Ungerleider;Ray Gonzalez;Charles Y. Zheng;Francisco Pereira,2019-01-01,1,Journal of Vision,1-16,10.1167/19.7.16,31355865.0,85070377579,2-s2.0-85070377579,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85070377579,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85070377579&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85070377579&origin=inward +Hypoplasia of cerebellar afferent networks in Down syndrome revealed by DTI-driven tensor based morphometry,Pierpaoli,Amritha Nayak;Liv S. Clasen;Catherine J. Stoodley;Elizabeth Adeyemi;M. Okan Irfanoglu;Neda Sadeghi;Carlo Pierpaoli;Nancy Raitano Lee,2020-12-01,0,Scientific Reports,,10.1038/s41598-020-61799-1,32214129.0,85082483311,2-s2.0-85082483311,Article,NIBIB,https://api.elsevier.com/content/abstract/scopus_id/85082483311,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85082483311&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85082483311&origin=inward +Image processing and analysis methods for the Adolescent Brain Cognitive Development Study,Pierpaoli,Aimee Goldstone;Steve Heeringa;James M. Bjork;Thomas Ernst;Adriana Galvan;Vani Pariyadath;Joanna Jacobus;Florence J. Breslin;Darrick T. Sturgeon;Mary Soules;Hauke Bartsch;Antonio Noronha;Carlo Pierpaoli;Anthony Steven Dick;Michael C. Riedel;Christian Hopfer;W. Kyle Simmons;Laura Hilmer;Damien A. Fair;M. Alejandra Infante;Rahul Desikan;Adolf Pfefferbaum;Marie T. Banich;Jonathan R. Polimeni;Mary M. Heitzeg;Richard Watts;Megan Herting;Carolina Makowski;Jerzy Bodurka;Devin Prouty;Oscar Miranda-Dominguez;M. Daniela Cornejo;Kevin Conway;Fiona C. Baker;Matthew T. Sutherland;Raul Gonzalez;Susan RB Weiss;John A. Matochik;Eric A. Earl;Hugh P. Garavan;Katia D. Howlett;Angela R. Laird;Kevin M. Gray;Elizabeth R. Sowell;Marsha Lopez;Linda Chang;Lindsay M. Squeglia;Yi Li;Feng Xue;David N. Kennedy;Linda B. Cottler;Wesley K. Thompson;Monica D. Rosenberg;Elizabeth Hoffman;Kristina Uban;Chelsea S. Sicat;Mirella Dapretto;Bonnie J. Nagel;Kara Bagot;Kevin Patrick;Michael P. Harms;Mariana Sanchez;Leo Sugrue;Paul D. Shilling;Jody Tanabe;Andre van der Kouwe;B. J. Casey;Thanh T. Trinh;Sara Jo Nixon;Roger Little;Christopher J. Pung;Martin P. Paulus;Samuel W. Hawes;Kilian M. Pohl;Susan Y. Bookheimer;Luke W. Hyde;Christine Cloak;Rebecca DelCarmen-Wiggins;Sarah W. Feldstein Ewing;Anders J. Perrone;Joshua Kuperman;Jay Giedd;Will M. Aklin;Amanda Sheffield Morris;Meyer Glantz;Ruben P. Alvarez;Jazmin Diaz;Octavio Ruiz de Leon;Scott Peltier;Donald J. Hagler;Sean N. Hatton;Joseph Sakai;Dana L. Wolff-Hughes;Gloria Reeves;Naomi Friedman;Andrew S. Nencka;Susan F. Tapert;John K. Hewitt;Michael C. Neale;Deanna M. Barch,2019-11-15,17,NeuroImage,,10.1016/j.neuroimage.2019.116091,31415884.0,85072244119,2-s2.0-85072244119,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85072244119,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85072244119&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85072244119&origin=inward +The effect of Zika virus infection in the ferret,Pierpaoli,William G. Valiant;Sharon L. Juliano;Francis T. Djankpa;Elizabeth B. Hutchinson;Mitali Chatterjee;Laura Reyes;Bernard Dardzinski;Carlo Pierpaoli;Joseph J. Mattapallil,2019-07-01,3,Journal of Comparative Neurology,1706-1719,10.1002/cne.24640,30680733.0,85061588504,2-s2.0-85061588504,Article,USUHS,https://api.elsevier.com/content/abstract/scopus_id/85061588504,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85061588504&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85061588504&origin=inward +Characterization and correlation of signal drift in diffusion weighted MRI,Pierpaoli,Prasanna Parvathaneni;Colin B. Hansen;Roza G. Bayrak;Okan Irfanoglu;Justin A. Blaber;Kurt G. Schilling;Bennett A. Landman;Carlo Pierpaoli;Adam W. Anderson;Baxter P. Rogers;Allison E. Hainline;Vishwesh Nath,2019-04-01,0,Magnetic Resonance Imaging,133-142,10.1016/j.mri.2018.11.009,30468766.0,85057278514,2-s2.0-85057278514,Article,NCATS,https://api.elsevier.com/content/abstract/scopus_id/85057278514,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85057278514&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85057278514&origin=inward +The spectrum of brainstem malformations associated to mutations of the tubulin genes family: MRI and DTI analysis,Pierpaoli,Enza Maria Valente;Filippo Arrigoni;Romina Romaniello;Fabio Triulzi;Eugen Boltshauser;Renato Borgatti;Carlo Pierpaoli;Andrea Poretti;Thierry André Gerard Marie Huisman;Sara Nuovo;Maria Teresa Bassi;Denis Peruzzo,2019-02-01,6,European Radiology,770-782,10.1007/s00330-018-5610-0,30066250.0,85052084606,2-s2.0-85052084606,Article,ERC,https://api.elsevier.com/content/abstract/scopus_id/85052084606,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85052084606&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85052084606&origin=inward +Limits to anatomical accuracy of diffusion tractography using modern approaches,Pierpaoli,Prasanna Parvathaneni;Jonathan Rafael-Patino;Gaëtan Rensonnet;Kurt G. Schilling;Tim B. Dyrby;Elda Fischi;Adam W. Anderson;Vishwesh Nath;Peter Neher;M. Okan Irfanoglu;Muhamed Barakovic;Maxime Descoteaux;Alice Bates;Francois Rheault;Yogesh Rathi;Marco Pizzolato;Jasmeen Sidhu;Alessandro Daducci;Erick J. Canales-Rodríguez;Justin Blaber;Gabriel Girard;Ragini Verma;Jean Philippe Thiran;Cibu Thomas;Bennett A. Landman;Carlo Pierpaoli;Colin Hansen;Yurui Gao;Chao Huang;Liming Zhong;Hongtu Zhu;David Romascano;Ryan Cabeen;Arthur W. Toga;Jean Christophe Houde;Mario Ocampo-Pineda;Guillaume Theaud;Yonggang Shi;Simona Schiavi;Carl Fredrik Westin;Dogu Baran Aydogan;Maxime Chamberland,2019-01-15,27,NeuroImage,1-11,10.1016/j.neuroimage.2018.10.029,30317017.0,85054788458,2-s2.0-85054788458,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85054788458,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85054788458&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85054788458&origin=inward +Consideration of cerebrospinal fluid intensity variation in diffusion weighted MRI,Pierpaoli,Susan Resnick;Owen Williams;Prasanna Parvathaneni;Colin B. Hansen;Roza G. Bayrak;Okan Irfanoglu;Justin A. Blaber;Kurt G. Schilling;Lori Beason-Held;Carlo Pierpaoli;Adam W. Anderson;Baxter P. Rogers;Bennett A. Landman;Allison E. Hainline;Vishwesh Nath,2019-01-01,0,Progress in Biomedical Optics and Imaging - Proceedings of SPIE,,10.1117/12.2512949,,85068356425,2-s2.0-85068356425,Conference Paper,NIA,https://api.elsevier.com/content/abstract/scopus_id/85068356425,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85068356425&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85068356425&origin=inward +The phenotypic landscape of a Tbc1d24 mutant mouse includes convulsive seizures resembling human early infantile epileptic encephalopathy,Pierpaoli,Risa Tona;Laura D. Reyes;Lijin Dong;Wenqian Chen;Koichi Omori;Thomas B. Friedman;Ya Xian Wang;Robert J. Morell;Matthew F. Starost;Ronald S. Petralia;Yogita Chudasama;Takushi Miyoshi;Inna A. Belyantseva;Carlo Pierpaoli;Kevin D. Cravedi;Yoko Nakano;Talah T. Wafa;Jeeva P. Munasinghe;Johann Du Hoffmann;Tracy S. Fitzgerald;Botond Banfi,2019-01-01,5,Human Molecular Genetics,1530-1547,10.1093/hmg/ddy445,30602030.0,85062880596,2-s2.0-85062880596,Article,NIBIB,https://api.elsevier.com/content/abstract/scopus_id/85062880596,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85062880596&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85062880596&origin=inward +ENIGMA and global neuroscience: A decade of large-scale studies of the brain in health and disease across more than 40 countries,Pine,Katrina L. Grasby;Gianfranco Spalletta;Georg Homuth;Carrie Esopenko;Fabrizio Piras;Daniel Garijo;Charlotte A.M. Cecil;Hans J. Grabe;Jun Soo Kwon;Janita Bralten;Carolien G.F. de Kovel;Graeme Fairchild;Sara Bertolín;Janna Marie Bas-Hoogendam;Eus J.W. Van Someren;Marieke Klein;Guohao Zhang;Tianye Jia;Norbert Hosten;Esther Walton;Karen Caeyenberghs;Gary Donohoe;Rachel M. Brouwer;Sylvane Desrivieres;Ronald A. Cohen;Bhim M. Adhikari;Yolanda Gil;Laurena Holleran;Joseph O’ Neill;Simon E. Fisher;Jian Chen;Courtney A. Filippi;Jean Paul Fouche;Guido A. van Wingen;Stephane A. De Brito;Udo Dannlowski;Pauline Favre;Laura A. Berner;Robert R. Althoff;Iliyan Ivanov;Natalia Shatokhina;Anderson M. Winkler;Stefan Ehrlich;Moji Aghajani;James H. Cole;Bernhard T. Baune;Abraham Nunes;Kevin Hilbert;Arielle R. Baskin-Sommers;Tomas Hajek;Nils Opel;Ulrike Lueken;Elena Pozzi;Premika S.W. Boedhoe;Tiffany C. Ho;Josselin Houenou;Neda Jahanshad;Lei Wang;Stephen V. Faraone;Daqiang Sun;David A. Baron;Je Yeon Yun;Leonardo Tozzi;Henry Völzke;Danai Dima;Thomas Frodl;Max A. Laansma;André Aleman;Ingrid Agartz;Jan K. Buitelaar;Lisa T. Eyler;Joanna Bright;Jeanne Leerssen;Ole A. Andreassen;Andre Altmann;Sophia I. Thomopoulos;Brenda L. Bartnik-Olson;Yanli Zhang-James;Merel C. Postema;Sonja M.C. de Zwarte;Margaret J. Wright;Willem B. Bruin;Alexander Teumer;Federica Piras;Robin Bülow;Carrie E. Bearden;Carles Soriano-Mas;Lauren E. Salminen;Sean N. Hatton;Emily L. Dennis;Yann Chye;Katharina Wittfeld;Amanda K. Tilot;Paul M. Thompson;Clyde Francks;Christopher R.K. Ching;Celia van der Merwe;Laura K.M. Han;Sinead Kelly;Patricia J. Conrod,2020-12-01,14,Translational Psychiatry,,10.1038/s41398-020-0705-1,32198361.0,85082148270,2-s2.0-85082148270,Review,NIH,https://api.elsevier.com/content/abstract/scopus_id/85082148270,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85082148270&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85082148270&origin=inward +Neural mechanisms underlying heterogeneous expression of threat-related attention in social anxiety,Pine,Travis C. Evans;Daniel S. Pine;Nathan A. Fox;Jennifer C. Britton;Yair Bar-Haim,2020-09-01,0,Behaviour Research and Therapy,,10.1016/j.brat.2020.103657,32682075.0,85087950578,2-s2.0-85087950578,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85087950578,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85087950578&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85087950578&origin=inward +2019 Articles of import and Impact,Pine,Elisabeth Binder;Ned H. Kalin;Shapir Rosenberg;Kathleen T. Brady;Daniel S. Pine;David A. Lewis;Madhukar Trivedi;Carolyn Rodriguez,2020-01-01,0,American Journal of Psychiatry,17-19,10.1176/appi.ajp.2019.19111124,31892299.0,85077438480,2-s2.0-85077438480,Editorial,,https://api.elsevier.com/content/abstract/scopus_id/85077438480,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85077438480&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85077438480&origin=inward +ENIGMA-anxiety working group: Rationale for and organization of large-scale neuroimaging studies of anxiety disorders,Pine,Anita Harrewijn;Sophia I. Thomopoulos;Moji Aghajani;Ulrike Lueken;Nic J.A. van der Wee;Dan J. Stein;Daniel S. Pine;Dick J. Veltman;Kevin Hilbert;Neda Jahanshad;Nynke A. Groenewold;Janna Marie Bas-Hoogendam;Gabrielle F. Freitag;Anderson M. Winkler;Paul M. Thompson,2020-01-01,0,Human Brain Mapping,,10.1002/hbm.25100,,85087404076,2-s2.0-85087404076,Review,,https://api.elsevier.com/content/abstract/scopus_id/85087404076,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85087404076&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85087404076&origin=inward +Associations Between Anxious and Depressive Symptoms and the Recognition of Vocal Socioemotional Expressions in Youth,Pine,Eric E. Nelson;Daniel S. Pine;Michele Morningstar;Brent I. Rappaport;Melanie A. Dirks,2019-05-04,5,Journal of Clinical Child and Adolescent Psychology,491-500,10.1080/15374416.2017.1350963,28820619.0,85027842611,2-s2.0-85027842611,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85027842611,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85027842611&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85027842611&origin=inward +Altered uncinate fasciculus microstructure in childhood anxiety disorders in boys but not girls,Pine,Ned H. Kalin;Lisa E. Williams;Daniel S. Pine;Patrick H. Roseboom;Do P.M. Tromp;Andrew L. Alexander;Gregory M. Rogers;Andrew S. Fox;Jonathan A. Oler;Brenda E. Benson,2019-03-01,6,American Journal of Psychiatry,208-216,10.1176/appi.ajp.2018.18040425,30654645.0,85062877576,2-s2.0-85062877576,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85062877576,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85062877576&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85062877576&origin=inward +Missense variants in ATP1A3 and FXYD gene family are associated with childhood-onset schizophrenia,Rapoport,Patrick A. Dion;Claudine Laurent;Dan Spiegelman;Boris Chaumette;David Cohen;Alice Goldenberg;Alexandre Dionne-Laporte;Priscille Gerardin;Judith Rapoport;Guy A. Rouleau;Amirthagowri Ambalavanan;Vladimir Ferrafiat,2020-04-01,10,Molecular Psychiatry,821-830,10.1038/s41380-018-0103-8,29895895.0,85048372347,2-s2.0-85048372347,Article,,https://api.elsevier.com/content/abstract/scopus_id/85048372347,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85048372347&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85048372347&origin=inward +Childhood-Onset Schizophrenia and Early-onset Schizophrenia Spectrum Disorders: An Update,Rapoport,Nitin Gogtay;Shari Thomas;Judith L. Rapoport;David I. Driver,2020-01-01,2,Child and Adolescent Psychiatric Clinics of North America,71-90,10.1016/j.chc.2019.08.017,31708054.0,85074513250,2-s2.0-85074513250,Review,,https://api.elsevier.com/content/abstract/scopus_id/85074513250,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85074513250&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85074513250&origin=inward +Sleep neurophysiology in childhood onset schizophrenia,Rapoport,Peter A. Gochman;Ashura Buckley;Kerstin Hoedlmoser;Diane Dillard-Broadnax;Judith L. Rapoport;Andjela Markovic;Leila Tarokh;David I. Driver,2020-01-01,0,Journal of Sleep Research,,10.1111/jsr.13039,,85083968939,2-s2.0-85083968939,Article,,https://api.elsevier.com/content/abstract/scopus_id/85083968939,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85083968939&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85083968939&origin=inward +Neuronal impact of patient-specific aberrant NRXN1α splicing,Rapoport,Hardik Shah;Ian Ladran;Michael B. Fernando;P. J.Michael Deans;Madeline Halpern;Robert Sebra;Kristen J. Brennand;Esther Cheng;Megan Fitzgerald;Judith Rapoport;Gang Fang;Nadine Schrode;Peter Gochman;Alesia Antoine;Gabriel E. Hoffman;Gintaras Deikus;Natalie Barretto;Nadejda M. Tsankova;Robert McCullumsmith;Erin Flaherty;Khaled Alganem;Shijia Zhu;Nancy Francoeur,2019-12-01,4,Nature Genetics,1679-1690,10.1038/s41588-019-0539-z,31784728.0,85075779019,2-s2.0-85075779019,Article,ISMMS,https://api.elsevier.com/content/abstract/scopus_id/85075779019,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85075779019&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85075779019&origin=inward +NRXN1 is associated with enlargement of the temporal horns of the lateral ventricles in psychosis,Rapoport,Huma Asif;Godfrey Pearlson;Scot Hill;Carol Tamminga;Olivia Lutz;Victor Zeng;Shashwath A. Meda;David Curtis;Nicolas R. Bolo;Sarah Keedy;Tamar A. Grey;Philip Henson;David C. Glahn;James L. Reilly;John A. Sweeney;Deepthi Bannai;Siyuan Liu;Rebecca Shafee;Judith Rapoport;Chunyu Liu;Brett A. Clementz;Ney Alliey-Rodriguez;Elliot S. Gershon;Jaya Padmanabhan;Judith A. Badner;Jonathan Spring;Balaji Narayanan;Uzma Nawaz;Diane Gage;Katherine Reis;Madeline Klinger;Dung T. Hoang;Elena I. Ivleva;Lucas Coppes;Jeffrey R. Bishop;Neeraj Tandon;Rebekka Lencer;Peter Buckley;Matcheri S. Keshavan;Steven McCarroll;Rachal R. Hegde,2019-12-01,1,Translational Psychiatry,,10.1038/s41398-019-0564-9,31530798.0,85072270340,2-s2.0-85072270340,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85072270340,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85072270340&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85072270340&origin=inward +Exome sequencing of sporadic childhood-onset schizophrenia suggests the contribution of X-linked genes in males,Rapoport,Patrick A. Dion;Simon L. Girard;Dan Spiegelman;Ridha Joober;Boris Chaumette;Martine Therrien;Pingxing Xie;Alexandre Dionne-Laporte;Judith L. Rapoport;Cynthia V. Bourassa;Guy A. Rouleau;Qin He;Amirthagowri Ambalavanan;Lan Xiong;Sirui Zhou;Daniel Rochefort,2019-01-01,3,"American Journal of Medical Genetics, Part B: Neuropsychiatric Genetics",335-340,10.1002/ajmg.b.32683,30378261.0,85055885920,2-s2.0-85055885920,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85055885920,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85055885920&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85055885920&origin=inward +Transcriptomic and cellular decoding of regional brain vulnerability to neurogenetic disorders,Raznahan,François M. Lalonde;Richard A.I. Bethlehem;Liv S. Clasen;Siyuan Liu;František Váša;Konrad Wagstyl;Declan G. Murphy;Petra E. Vértes;Daniel H. Geschwind;Damon Polioudakis;Joan C. Han;Sarah E. Morgan;Rafael Romero-Garcia;Ajay Nadig;Jonathan D. Blumenthal;Armin Raznahan;Luis de la Torre-Ubieta;Jakob Seidlitz;Casey Paquola;Edward T. Bullmore;Nancy R. Lee;Boris Bernhardt,2020-12-01,0,Nature Communications,,10.1038/s41467-020-17051-5,32620757.0,85087425878,2-s2.0-85087425878,Article,NICHD,https://api.elsevier.com/content/abstract/scopus_id/85087425878,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85087425878&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85087425878&origin=inward +Reciprocal Copy Number Variations at 22q11.2 Produce Distinct and Convergent Neurobehavioral Impairments Relevant for Schizophrenia and Autism Spectrum Disorder,Raznahan,Rachel K. Jonas;Gerhard Helleman;Ariana Vajdi;Amy Lin;Leila Kushan-Wells;Carrie E. Bearden;Lyle Kingsbury;Armin Raznahan;Laura Pacheco Hansen;Maria Jalbrzikowski,2020-08-01,1,Biological Psychiatry,260-272,10.1016/j.biopsych.2019.12.028,32143830.0,85081326717,2-s2.0-85081326717,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85081326717,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85081326717&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85081326717&origin=inward +Sex chromosome aneuploidy alters the relationship between neuroanatomy and cognition,Raznahan,Ethan Whitman;Liv S. Clasen;François M. Lalonde;Siyuan Liu;Allysa Warling;Jonathan D. Blumenthal;Armin Raznahan;Kathleen Wilson,2020-06-01,0,"American Journal of Medical Genetics, Part C: Seminars in Medical Genetics",493-505,10.1002/ajmg.c.31795,32515138.0,85086159262,2-s2.0-85086159262,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85086159262,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85086159262&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85086159262&origin=inward +Individual Variation in Functional Topography of Association Networks in Youth,Raznahan,Zaixu Cui;Tyler M. Moore;David R. Roalf;Christos Davatzikos;Desmond J. Oathes;Azeez Adebimpe;Russell T. Shinohara;Cedric H. Xia;Hongming Li;Daniel H. Wolf;Raquel E. Gur;Bart Larsen;Danielle S. Bassett;Armin Raznahan;Yong Fan;Matt Cieslak;Graham L. Baum;Damien A. Fair;Theodore D. Satterthwaite;Ruben C. Gur;Aaron F. Alexander-Bloch,2020-04-22,4,Neuron,340-353.e8,10.1016/j.neuron.2020.01.029,32078800.0,85081542531,2-s2.0-85081542531,Article,,https://api.elsevier.com/content/abstract/scopus_id/85081542531,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85081542531&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85081542531&origin=inward +Altered Sex Chromosome Dosage Induces Coordinated Shifts in Cortical Anatomy and Anatomical Covariance,Raznahan,Anastasia Xenophontos;Liv S. Clasen;Jakob Seidlitz;Siyuan Liu;Aaron Alexander-Bloch;Jay N. Giedd;Jonathan D. Blumenthal;Armin Raznahan,2020-04-14,3,Cerebral Cortex,2215-2228,10.1093/cercor/bhz235,31828307.0,85083913416,2-s2.0-85083913416,Article,,https://api.elsevier.com/content/abstract/scopus_id/85083913416,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85083913416&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85083913416&origin=inward +Imaging local genetic influences on cortical folding,Raznahan,Gil D. Hoftman;Godfrey Pearlson;Laura Almasyr;Amanda Rodrigue;Zhixin Lu;Harald H.H. Görring;Josephine Mollon;David C. Glahn;Russell T. Shinohara;Aaron F. Alexander-Bloch;Siyuan Liu;Emma Knowles;Raquel E. Gur;Simon N. Vandekar;John Blangero;Danielle S. Bassett;Armin Raznahan;Samuel R. Matthias;Jakob Seidlitz;Theodore D. Satterthwaite;Joanne E. Curran;Peter T. Fox,2020-03-31,0,Proceedings of the National Academy of Sciences of the United States of America,7430-7436,10.1073/pnas.1912064117,32170019.0,85082749827,2-s2.0-85082749827,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85082749827,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85082749827&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85082749827&origin=inward +Greater cortical thickness in individuals with ASD,Raznahan,Gabriel A. Devenyi;Michael D. Spencer;Rosemary J. Holt;Michael C. Craig;Michael V. Lombardo;Min Tae M. Park;Declan G.M. Murphy;Jason P. Lerch;Meng Chuan Lai;Evdokia Anagnostou;John Suckling;Stephanie Tullo;Amber N.V. Ruigrok;Christine Ecker;M. Mallar Chakravarty;Rhoshel Lenroot;Lindsay R. Chura;Raihaan Patel;Armin Raznahan;Jurgen Germann;Simon Baron-Cohen;Elizabeth Smith;Audrey Thurm;Margot J. Taylor;Saashi A. Bedford;Edward T. Bullmore;Dorothea L. Floris,2020-03-01,0,Molecular Psychiatry,507-508,10.1038/s41380-020-0691-y,32103162.0,85080043547,2-s2.0-85080043547,Note,,https://api.elsevier.com/content/abstract/scopus_id/85080043547,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85080043547&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85080043547&origin=inward +"Large-scale analyses of the relationship between sex, age and intelligence quotient heterogeneity and cortical morphometry in autism spectrum disorder",Raznahan,Gabriel A. Devenyi;Michael D. Spencer;Rosemary J. Holt;Michael C. Craig;Michael V. Lombardo;Min Tae M. Park;Declan G.M. Murphy;Jason P. Lerch;Meng Chuan Lai;Evdokia Anagnostou;John Suckling;Stephanie Tullo;Amber N.V. Ruigrok;Christine Ecker;M. Mallar Chakravarty;Rhoshel Lenroot;Lindsay R. Chura;Raihaan Patel;Armin Raznahan;Jurgen Germann;Simon Baron-Cohen;Elizabeth Smith;Audrey Thurm;Margot J. Taylor;Saashi A. Bedford;Edward T. Bullmore;Dorothea L. Floris,2020-03-01,8,Molecular Psychiatry,614-628,10.1038/s41380-019-0420-6,31028290.0,85065214199,2-s2.0-85065214199,Article,OBI,https://api.elsevier.com/content/abstract/scopus_id/85065214199,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85065214199&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85065214199&origin=inward +"The genetics of cortical myelination in young adults and its relationships to cerebral surface area, cortical thickness, and intelligence: A magnetic resonance imaging study of twins and families: Genetics of Cortical Myelination, Area, Thickness, and Intelligence",Raznahan,Armin Raznahan;Michael C. Neale;Siyuan Liu;J. Eric Schmitt,2020-02-01,2,NeuroImage,,10.1016/j.neuroimage.2019.116319,31678229.0,85075464173,2-s2.0-85075464173,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85075464173,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85075464173&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85075464173&origin=inward +Development of structure–function coupling in human brain networks during youth,Raznahan,Zaixu Cui;David R. Roalf;Tyler M. Moore;Kosha Ruparel;Philip A. Cook;Desmond J. Oathes;Russell T. Shinohara;Cedric H. Xia;Raquel E. Gur;Richard F. Betzel;Rastko Ciric;Bart Larsen;Danielle S. Bassett;Armin Raznahan;Matthew Cieslak;Graham L. Baum;Theodore D. Satterthwaite;Ruben C. Gur;Aaron F. Alexander-Bloch,2020-01-07,4,Proceedings of the National Academy of Sciences of the United States of America,771-778,10.1073/pnas.1912034117,31874926.0,85077497083,2-s2.0-85077497083,Article,Penn,https://api.elsevier.com/content/abstract/scopus_id/85077497083,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85077497083&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85077497083&origin=inward +"Advancing equity, diversity, and inclusion in the American College of Neuropsychopharmacology (ACNP): advances, challenges, and opportunities to accelerate progress",Raznahan,Dorothy Hatsukami;James C. Anthony;Armin Raznahan;Sherecce Fields;Carlos A. Zarate;Richard De La Garza;Jack E. Henningfield;Carlos A. Bolaños-Guzmán;Sandra D. Comer;Lawrence S. Brown;Debra Furr-Holden;Albert Garcia-Romeu,2020-01-01,0,Neuropsychopharmacology,,10.1038/s41386-020-0784-y,,85088859688,2-s2.0-85088859688,Note,,https://api.elsevier.com/content/abstract/scopus_id/85088859688,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85088859688&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85088859688&origin=inward +Sex-biased trajectories of amygdalo-hippocampal morphology change over human development,Raznahan,Liv S. Clasen;M. Mallar Chakravarty;Russell T. Shinohara;Jakob Seidlitz;Ari M. Fish;Cassidy L. McDermott;Francois Lalonde;Paul K. Reardon;Ajay Nadig;Jonathan D. Blumenthal;Armin Raznahan;Catherine Mankiw;Jason P. Lerch,2020-01-01,6,NeuroImage,,10.1016/j.neuroimage.2019.116122,31470127.0,85074153626,2-s2.0-85074153626,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85074153626,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85074153626&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85074153626&origin=inward +The Dynamic Associations between Cortical Thickness and General Intelligence are Genetically Mediated,Raznahan,Liv S. Clasen;Michael C. Neale;Greg L. Wallace;Joshua N. Pritikin;J. Eric Schmitt;Jay N. Giedd;Armin Raznahan;Nancy Raitano Lee,2019-12-17,4,Cerebral Cortex,4743-4752,10.1093/cercor/bhz007,30715232.0,85075462723,2-s2.0-85075462723,Article,NIEHS,https://api.elsevier.com/content/abstract/scopus_id/85075462723,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85075462723&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85075462723&origin=inward +A framework for the investigation of rare genetic disorders in neuropsychiatry,Raznahan,Alan Anticevic;Thomas Lehner;Joseph Hostyk;Jennifer G. Mulle;Sebastien Jacquemont;David C. Glahn;Christa L. Martin;Jonathan Sebat;Raquel E. Gur;Sergiu P. Pasca;Carrie E. Bearden;Ricardo Dolmetsch;Andres Moreno-De-Luca;Daniel H. Geschwind;David B. Goldstein;Stephan J. Sanders;Paul Avillach;David H. Ledbetter;Elise Douard;Anne Pariser;Rodney Samaco;Mustafa Sahin;Armin Raznahan;Audrey Thurm;Meera E. Modi;Guoping Feng,2019-10-01,9,Nature Medicine,1477-1487,10.1038/s41591-019-0581-5,31548702.0,85073086752,2-s2.0-85073086752,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85073086752,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85073086752&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85073086752&origin=inward +Comparison of Three-Dimensional Surface Imaging Systems Using Landmark Analysis,Raznahan,William A. Gahl;Denise K. Liberton;Rashmi Mishra;Margaret Beach;Irini Manoli;Janice S. Lee;Armin Raznahan,2019-09-01,1,Journal of Craniofacial Surgery,1869-1872,10.1097/SCS.0000000000005795,31335576.0,85071514202,2-s2.0-85071514202,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85071514202,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85071514202&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85071514202&origin=inward +Cortical patterning of abnormal morphometric similarity in psychosis is associated with brain expression of schizophrenia-related genes,Raznahan,Philip McGuire;Petra E. Vértes;Machteld Marcelis;Aiden Corvin;Jakob Seidlitz;Cristina Scarpazza;Sarah E. Morgan;David Mothersill;Rafael Romero-Garcia;Nicholas E. Clifton;Kirstie J. Whitaker;Jim van Os;Andrew Pocklington;Edward T. Bullmore;Therese van Amelsvoort;Armin Raznahan;Gary Donohoe,2019-05-07,11,Proceedings of the National Academy of Sciences of the United States of America,9604-9609,10.1073/pnas.1820754116,31004051.0,85065662406,2-s2.0-85065662406,Article,EC,https://api.elsevier.com/content/abstract/scopus_id/85065662406,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85065662406&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85065662406&origin=inward +Longitudinally mapping childhood socioeconomic status associations with cortical and subcortical morphology,Raznahan,François Lalonde;Liv S. Clasen;M. Mallar Chakravarty;Armin Raznahan;Jakob Seidlitz;Paul Kirkpatrick Reardon;Siyuan Liu;Cassidy L. McDermott;Deanna Greenstein;Ajay Nadig;Jonathan D. Blumenthal;Raihaan Patel;Jason P. Lerch,2019-02-20,23,Journal of Neuroscience,1365-1373,10.1523/JNEUROSCI.1808-18.2018,30587541.0,85061965677,2-s2.0-85061965677,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85061965677,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85061965677&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85061965677&origin=inward +Sex differences in the developing brain: insights from multimodal neuroimaging,Raznahan,Theodore D. Satterthwaite;Armin Raznahan;Antonia N. Kaczkurkin,2019-01-01,22,Neuropsychopharmacology,71-85,10.1038/s41386-018-0111-z,29930385.0,85048782995,2-s2.0-85048782995,Review,NARSAD,https://api.elsevier.com/content/abstract/scopus_id/85048782995,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85048782995&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85048782995&origin=inward +Multiple sclerosis lesions in motor tracts from brain to cervical cord: spatial distribution and correlation with disability,Reich,Daniel S. Reich;Renxin Chu;Jennifer Lefeuvre;Benoit Combès;Jan Hillert;Massimo Filippi;Govind Nair;Raphaël Chouteau;Bertrand Audoin;Kouhei Kamiya;Tobias Granberg;Paola Valsasina;Masaaki Hori;Pierre Labauge;Xavier Ayrignac;Maria A. Rocca;Francesca Galassi;Atef Badji;Russell Ouellette;Jérôme De Seze;Julien Cohen-Adad;Lydia Chougar;Gilles Edan;Rohit Bakshi;Elise Bannier;Yasuhiko Tachibana;Nicolas Collongues;Clarisse Carra-Dalliere;Leszek Stawiarz;Jean Pelletier;Adil Maarouf;Charley Gros;Jason Talbott;Virginie Callot;Anne Kerbrat;Josefina Maranzano,2020-07-01,0,Brain : a journal of neurology,2089-2105,10.1093/brain/awaa162,32572488.0,85088255790,2-s2.0-85088255790,Article,,https://api.elsevier.com/content/abstract/scopus_id/85088255790,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85088255790&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85088255790&origin=inward +Gadolinium should always be used to assess disease activity in MS – Yes,Reich,Daniel S. Reich;Cristina Granziera,2020-06-01,1,Multiple Sclerosis Journal,765-766,10.1177/1352458520911174,32484018.0,85085876994,2-s2.0-85085876994,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85085876994,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85085876994&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85085876994&origin=inward +Problems and Pitfalls of Identifying Remyelination in Multiple Sclerosis,Reich,Ragnhildur Thóra Káradóttir;Daniel S. Reich;Bruno Stankoff;Catherine Lubetzki;Robin J.M. Franklin;Sarah Foerster;Bjoern Neumann;Benedetta Bodini;Bernard Zalc;Dwight E. Bergles;Chao Zhao;Luke L. Lairson,2020-05-07,1,Cell Stem Cell,617-619,10.1016/j.stem.2020.03.017,32386552.0,85084118366,2-s2.0-85084118366,Article,AMRF,https://api.elsevier.com/content/abstract/scopus_id/85084118366,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85084118366&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85084118366&origin=inward +Paramagnetic Rim Sign in Radiologically Isolated Syndrome,Reich,Aditya Bharatha;Melanie Guenette;Daniel S. Reich;Jiwon Oh;Suradech Suthiphosuwan;Pascal Sati;Martina Absinta,2020-05-01,0,JAMA Neurology,653-655,10.1001/jamaneurol.2020.0124,32150224.0,85081654331,2-s2.0-85081654331,Letter,NIH,https://api.elsevier.com/content/abstract/scopus_id/85081654331,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85081654331&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85081654331&origin=inward +CVSnet: A machine learning approach for automated central vein sign assessment in multiple sclerosis,Reich,Francesco La Rosa;Reto Meuli;Daniel S. Reich;Tobias Kober;Pascal Sati;Renaud Du Pasquier;Pietro Maggi;Jonas Richiardi;Mário João Fartaria;João Jorge;Cristina Granziera;Meritxell Bach Cuadra;Martina Absinta,2020-05-01,0,NMR in Biomedicine,,10.1002/nbm.4283,32125737.0,85081028361,2-s2.0-85081028361,Article,CNHF,https://api.elsevier.com/content/abstract/scopus_id/85081028361,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85081028361&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85081028361&origin=inward +Imaging Mechanisms of Disease Progression in Multiple Sclerosis: Beyond Brain Atrophy,Reich,Daniel Pelletier;Daniel S. Reich;George R.Wayne Moore;Seth A. Smith;Daniel Ontaneda;Daniel M. Harrison;Russell T. Shinohara;Roland G. Henry;Peter A. Calabresi;Riley Bove;Nancy L. Sicotte;Francesca Bagnato;Julien Cohen-Adad;Cornelia Laule;Gülin Öz;Zhengxin Cai;Susan A. Gauthier;Sarah A. Morrow;Jiwon Oh;Eric C. Klawiter;William D. Rooney,2020-05-01,1,Journal of Neuroimaging,251-266,10.1111/jon.12700,,85084836258,2-s2.0-85084836258,Review,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85084836258,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85084836258&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85084836258&origin=inward +The “central vein sign” in patients with diagnostic “red flags” for multiple sclerosis: A prospective multicenter 3T study,Reich,Reto Meuli;Daniel S. Reich;Pascal Sati;Renaud Du Pasquier;Bernard Dachy;Pietro Maggi;Caroline Pot;Gaetano Perrotta;Marie Théaudin;Luca Massacesi;Massimo Filippi;Martina Absinta,2020-04-01,7,Multiple Sclerosis Journal,421-432,10.1177/1352458519876031,31536435.0,85073936532,2-s2.0-85073936532,Article,CNHF,https://api.elsevier.com/content/abstract/scopus_id/85073936532,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85073936532&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85073936532&origin=inward +Effect of disease-modifying therapies on subcortical gray matter atrophy in multiple sclerosis,Reich,Shiv Saidha;Dzung L. Pham;Esther Ogbuokiri;Daniel S. Reich;Ellen M. Mowry;Jerry L. Prince;Elias S. Sotirchos;Jeffrey Glaister;Natalia Gonzalez-Caldito;Blake E. Dewey;Peter A. Calabresi;Angeliki Filippatou;Hunter Risher;Ohemaa Kwakyi;Sydney Feldman;Ciprian Crainiceanu;Kathryn C. Fitzgerald;Peter C. Van Zijl,2020-03-01,3,Multiple Sclerosis Journal,312-321,10.1177/1352458519826364,30741108.0,85061580415,2-s2.0-85061580415,Article,,https://api.elsevier.com/content/abstract/scopus_id/85061580415,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85061580415&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85061580415&origin=inward +Targeted Complement Inhibition at Synapses Prevents Microglial Synaptic Engulfment and Synapse Loss in Demyelinating Disease,Reich,Daniel S. Reich;Rejani B. Kunjamma;Brian Popko;Jonathan Jung;Cory M. Willis;Stephen J. Crocker;Sebastian Werneburg;Natalia P. Biscola;Leif A. Havton;Seung Kwon Ha;Guangping Gao;Dorothy P. Schafer;Nicholas J. Luciano,2020-01-14,6,Immunity,167-182.e7,10.1016/j.immuni.2019.12.004,31883839.0,85077636150,2-s2.0-85077636150,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85077636150,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85077636150&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85077636150&origin=inward +Experimental design and sample size considerations in longitudinal magnetic resonance imaging-based biomarker detection for multiple sclerosis,Reich,Daniel S. Reich;Russell T. Shinohara;Ani Eloyan;Blake E. Dewey;Menghan Hu;Matthew K. Schindler,2020-01-01,0,Statistical Methods in Medical Research,,10.1177/0962280220904392,32070238.0,85081693515,2-s2.0-85081693515,Article,,https://api.elsevier.com/content/abstract/scopus_id/85081693515,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85081693515&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85081693515&origin=inward +Five-year longitudinal changes in quantitative spinal cord MRI in multiple sclerosis,Reich,Peter van Zijl;Min Chen;Daniel S. Reich;Jiwon Oh;Suradech Suthiphosuwan;Marie Diener-West;Peter A. Calabresi;Kateryna Cybulsky;Jerry Prince;Blake Dewey;Estelle Seyman,2020-01-01,0,Multiple Sclerosis Journal,,10.1177/1352458520923970,,85085701874,2-s2.0-85085701874,Article,MSSOC,https://api.elsevier.com/content/abstract/scopus_id/85085701874,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85085701874&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85085701874&origin=inward +Open-source pipeline for multi-class segmentation of the spinal cord with deep learning,Reich,Daniel S. Reich;Jennifer Lefeuvre;Pascal Sati;Charley Gros;Christian S. Perone;Julien Cohen-Adad;François Paugam,2019-12-01,2,Magnetic Resonance Imaging,21-27,10.1016/j.mri.2019.04.009,31004711.0,85064629816,2-s2.0-85064629816,Article,FRQNT,https://api.elsevier.com/content/abstract/scopus_id/85064629816,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85064629816&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85064629816&origin=inward +Assessment of lesions on magnetic resonance imaging in multiple sclerosis: practical guidelines,Reich,Tarek A. Yousry;Maria A. Rocca;Brenda L. Banwell;Daniel S. Reich;Friedemann Paul;Anthony Traboulsee;Catherine Lubetzki;Ahmed T. Toosy;Paolo Preziosa;Frederik Barkhof;Olga Ciccarelli;Mike P. Wattjes;Achim Gass;Jeroen J.G. Geurts;Nicola De Stefano;Massimo Filippi;Brian G. Weinshenker,2019-07-01,20,Brain,1858-1875,10.1093/brain/awz144,31209474.0,85068522090,2-s2.0-85068522090,Review,FISM,https://api.elsevier.com/content/abstract/scopus_id/85068522090,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85068522090&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85068522090&origin=inward +Automated Detection and Segmentation of Multiple Sclerosis Lesions Using Ultra-High-Field MP2RAGE,Reich,Daniel S. Reich;Tobias Kober;Pascal Sati;Kieran O'Brien;Mário João Fartaria;Ernst Wilhelm Radue;Alexandra Todea;Cristina Granziera;Meritxell Bach Cuadra;Reza Rahmanzadeh,2019-06-01,6,Investigative Radiology,356-364,10.1097/RLI.0000000000000551,30829941.0,85065530203,2-s2.0-85065530203,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85065530203,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85065530203&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85065530203&origin=inward +A Spatio-Temporal Model for Longitudinal Image-on-Image Regression,Reich,Arnab Hazra;Daniel S. Reich;Russell T. Shinohara;Ana Maria Staicu;Brian J. Reich,2019-04-15,0,Statistics in Biosciences,22-46,10.1007/s12561-017-9206-z,,85031898757,2-s2.0-85031898757,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85031898757,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85031898757&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85031898757&origin=inward +Imaging outcome measures of neuroprotection and repair in MS: A consensus statement from NAIMS,Reich,Daniel Pelletier;Yunyan Zhang;Sridar Narayanan;Daniel S. Reich;Govind Nair;David K.B. Li;Caterina Mainero;Daniel Ontaneda;Douglas L. Arnold;Christina Azevedo;Flavia Nelson;Russell T. Shinohara;Shannon Kolind;Peter A. Calabresi;Ravi S. Menon;Nancy L. Sicotte;Pascal Sati;Daniel Schwartz;Rohit Bakshi;Susan Gauthier;Yi Wang;Blake Dewey;Ciprian Crainiceanu;Tarek Yousry;Anthony Traboulsee;Mathilde Inglese;Jiwon Oh;Alexander Rauscher;Eric C. Klawiter;Ian Tagge;Roland Henry;Youngjin Yoo;William Rooney;Leorah Freeman;Martina Absinta,2019-03-12,9,Neurology,519-533,10.1212/WNL.0000000000007099,30787160.0,85062886285,2-s2.0-85062886285,Review,CIHR,https://api.elsevier.com/content/abstract/scopus_id/85062886285,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85062886285&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85062886285&origin=inward +Retinal measurements predict 10-year disability in multiple sclerosis,Reich,Elliot M. Frohman;James Nguyen;Daniel S. Reich;Julia Button;Natalia Gonzalez Caldito;Peter A. Calabresi;Eliza Gordon-Lipkin;Kathryn C. Fitzgerald;Alissa Rothman;Shiv Saidha;Elias S. Sotirchos;John N. Ratchford;Stephanie B. Syc-Mazurek;Ciprian Crainiceanu;Laura J. Balcer;Ellen M. Mowry;Scott D. Newsome;Teresa C. Frohman;Olwen C. Murphy,2019-02-01,4,Annals of Clinical and Translational Neurology,222-232,10.1002/acn3.674,,85060351513,2-s2.0-85060351513,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85060351513,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85060351513&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85060351513&origin=inward +Spinal cord involvement in multiple sclerosis and neuromyelitis optica spectrum disorders,Reich,Burkhard Becher;Nicola De Stefano;Kazuo Fujihara;Steven Galetta;Myla Goldman;Maria Pia Amato;Ruth Ann Marrie;Aaron Miller;Daniel Pelletier;Olaf Stuve;Jerome De Sèze;Claudia Lucchinetti;Eoin Flanagan;Per Soelberg Sorensen;Wallace Brownlee;Jeremy Chatway;Anke Henning;Benjamin Greenberg;Tanuja Chitnis;François Bethoux;Claudia Gandini Wheeler-Kingshott;Friedemann Paul;Maria Assunta Rocca;Bruce Bebo;Sebastien Ourselin;Frederik Barkhof;Olga Ciccarelli;Jorge Correale;Jeffrey A. Cohen;Carsten Lukas;David Miller;Cornelia Laule;Mark Freedman;Ellen Mowry;Maria Sormani;Alan Thompson;Brian Weinshenker;Ludwig Kappos;Xavier Montalban;Giancarlo Comi;Sandra Vukusic;Bernhard Hemmer;Junqian Xu;Jeffrey Cohen;Stephen Reingold;Brian G. Weinshenker;Hans Peter Hartung;Peter Calabresi;Franz Fazekas;Daniel Reich;Anthony Traboulsee;Maria Trojano;Jean Philippe Ranjeva;Regina Schlaerger;Emmanuelle Waubant;Bruce Trapp;Fred Lublin;Alex Rovira;Alexander Brandt;Bernard Uitdehaag;Brenda Banwell;Mar Tintoré;Hans Lassmann;Stephen C. Reingold;Izlem Izbudak;Michael Levy;Claudia Chien,2019-02-01,23,The Lancet Neurology,185-197,10.1016/S1474-4422(18)30460-5,30663608.0,85060049167,2-s2.0-85060049167,Review,NIHR,https://api.elsevier.com/content/abstract/scopus_id/85060049167,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85060049167&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85060049167&origin=inward +The central vein sign in radiologically isolated syndrome,Reich,D. S. Reich;M. Guenette;A. Bharatha;P. Sati;X. Montalban;J. Oh;S. Suthiphosuwan,2019-01-01,6,American Journal of Neuroradiology,776-783,10.3174/ajnr.A6045,31000526.0,85066163764,2-s2.0-85066163764,Article,,https://api.elsevier.com/content/abstract/scopus_id/85066163764,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85066163764&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85066163764&origin=inward +Automatic segmentation of the spinal cord and intramedullary multiple sclerosis lesions with convolutional neural networks,Reich,Erik Charlson;Daniel S. Reich;Shahabeddin Vahdat;Jennifer Lefeuvre;Ali Khatibi;Henitsoa Rasoanandrianina;Sridar Narayanan;Jan Hillert;Massimo Filippi;Govind Nair;Bertrand Audoin;Kouhei Kamiya;Tobias Granberg;Paola Valsasina;Masaaki Hori;Ren Zhuoquiong;Pierre Labauge;Caterina Mainero;Maria A. Rocca;Shahamat Tauhid;Dominique Eden;Olga Ciccarelli;Atef Badji;Russell Ouellette;Allan R. Martin;Michael G. Fehlings;Julien Cohen-Adad;Lydia Chougar;Yaou Liu;Gilles Edan;Marios Yiannakas;Hugh Kearney;Timothy Shepherd;Jean Christophe Brisset;Rohit Bakshi;Elise Bannier;Julien Doyon;Yasuhiko Tachibana;Benjamin De Leener;Seth Smith;Leszek Stawiarz;Jean Pelletier;Donald G. McLaren;Charley Gros;Jason Talbott;Virginie Callot;Vincent Auclair;Anne Kerbrat;Constantina Andrada Treaba;Josefina Maranzano;Ferran Prados;Sara M. Dupont,2019-01-01,20,NeuroImage,901-915,10.1016/j.neuroimage.2018.09.081,30300751.0,85054688847,2-s2.0-85054688847,Article,INRS,https://api.elsevier.com/content/abstract/scopus_id/85054688847,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85054688847&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85054688847&origin=inward +"Transdermal estradiol for postpartum depression: results from a pilot randomized, double-blind, placebo-controlled study",Schmidt,David R. Rubinow;Pedro E. Martinez;Howard J. Li;Linda A. Schenkel;Lynnette K. Nieman;Xiaobai Li;Peter J. Schmidt,2020-06-01,1,Archives of Women's Mental Health,401-412,10.1007/s00737-019-00991-3,31372757.0,85070104836,2-s2.0-85070104836,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85070104836,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85070104836&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85070104836&origin=inward +Sex differences and the neurobiology of affective disorders,Schmidt,David R. Rubinow;Peter J. Schmidt,2019-01-01,26,Neuropsychopharmacology,111-128,10.1038/s41386-018-0148-z,30061743.0,85052597674,2-s2.0-85052597674,Review,NIH,https://api.elsevier.com/content/abstract/scopus_id/85052597674,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85052597674&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85052597674&origin=inward +Using virtual reality to define the mechanisms linking symptoms with cognitive deficits in attention deficit hyperactivity disorder,Shaw,Aman Mangalmurti;Barrington Quarrie;Wendy Sharp;Philip Shaw;Susan Persky;William D. Kistler,2020-12-01,0,Scientific Reports,,10.1038/s41598-019-56936-4,31953449.0,85078063783,2-s2.0-85078063783,Article,NHGRI,https://api.elsevier.com/content/abstract/scopus_id/85078063783,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85078063783&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85078063783&origin=inward +Adolescent Attention-Deficit/Hyperactivity Disorder: Understanding Teenage Symptom Trajectories,Shaw,Philip Shaw;Gustavo Sudre,2020-01-01,0,Biological Psychiatry,,10.1016/j.biopsych.2020.06.004,,85088856774,2-s2.0-85088856774,Review,NHGRI,https://api.elsevier.com/content/abstract/scopus_id/85088856774,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85088856774&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85088856774&origin=inward +Consortium neuroscience of attention deficit/hyperactivity disorder and autism spectrum disorder: The ENIGMA adventure,Shaw,Claiton H.D. Bau;Ruth L. O'Gorman Tuura;Andreas Reif;Filippo Muratori;Jeffery N. Epstein;Jacqueline Fitzgerald;Evdokia Anagnostou;Klaus Peter Lesch;Luisa Lazaro;Christine Ecker;Marieke Klein;Sara Calderoni;Mark A. Bellgrove;Christine Deruelle;Oscar Vilarroya;Jane McGrath;Beatriz Luna;J. Antoni Ramos-Quiroga;Barbara Franke;Damien A. Fair;Marlene Behrmann;Mara Parellada;Joost Janssen;Katya Rubia;Paulo Mattos;Mario R. Louza;Yash Patel;Eileen Oberwelland-Weiss;Ilan Dinstein;Louise Gallagher;Liesbeth Reneman;Kirsten O'Hearn;Joel T. Nigg;Annette Conzelmann;Philip Shaw;Daan van Rooij;Eugenio H. Grevet;Martine Hoogman;Kerstin Konrad;Stefan Ehrlich;Georgii Karkashadze;Pedro G.P. Rosa;Alessandra Retico;Neda Jahanshad;Stephen V. Faraone;Iva Ilioska;Jan Haavik;Daniel Brandeis;Clodagh Murphy;Silvia Brem;Celso Arango;Jonna Kuntsi;Rosa Calvo;Thomas Frodl;Paul Pauli;Christine M. Freitag;Jan K. Buitelaar;Francisco X. Castellanos;Premika Boedhoe;Leanne Tamm;Eileen Daly;Tomas Paus;Sarah Durston;Yanli Zhang-James;Merel C. Postema;Odile A. van den Heuvel;Jason P. Lerch;Tim J. Silk;Geraldo F. Busatto;Kerstin J. Plessen;Guillaume Auzias;Susanne Walitza;David Coghill;Joseph A. King;Paul M. Thompson;Tobias Banaschewski;Pieter J. Hoekstra;Clyde Francks;Ting Li;Jaap Oosterlaan,2020-01-01,0,Human Brain Mapping,,10.1002/hbm.25029,32420680.0,85084801312,2-s2.0-85084801312,Review,,https://api.elsevier.com/content/abstract/scopus_id/85084801312,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85084801312&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85084801312&origin=inward +Mapping the neuroanatomic substrates of cognition in familial attention deficit hyperactivity disorder,Shaw,Wendy Sharp;Gustavo Sudre;Rachel Muster;Steven Kasparek;Philip Shaw;Saadia Choudhury,2019-03-01,1,Psychological Medicine,590-597,10.1017/S0033291718001241,29792238.0,85047352313,2-s2.0-85047352313,Article,,https://api.elsevier.com/content/abstract/scopus_id/85047352313,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85047352313&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85047352313&origin=inward +"Associations between neighborhood, family factors and symptom change in childhood attention deficit hyperactivity disorder",Shaw,Aman Mangalmurti;Wendy Sharp;Carlisha Hall;Philip Shaw;Saadia Choudhury,2019-01-01,6,Social Science and Medicine,,10.1016/j.socscimed.2019.02.054,,85062462961,2-s2.0-85062462961,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85062462961,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85062462961&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85062462961&origin=inward +"Mapping associations between polygenic risks for childhood neuropsychiatric disorders, symptoms of attention deficit hyperactivity disorder, cognition, and the brain",Shaw,Aman Mangalmurti;Wendy Sharp;Gustavo Sudre;Ayaka Ishii-Takahashi;Philip Shaw;Saadia Choudhury;Jennifer Frederick,2019-01-01,0,Molecular Psychiatry,,10.1038/s41380-019-0350-3,,85060917690,2-s2.0-85060917690,Article,,https://api.elsevier.com/content/abstract/scopus_id/85060917690,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85060917690&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85060917690&origin=inward +Brain imaging of the cortex in ADHD: A coordinated analysis of large-scale clinical and population-based samples,Shaw,Ruth L. O'Gorman Tuura;Norbert Skokauskas;Andreas Reif;Alexandr Baranov;Hanan El Marroun;Ramona Baur-Streubel;Jeffery N. Epstein;Tiffany M. Chaim-Avancini;Yuliya N. Yoncheva;Klaus Peter Lesch;Clare Kelly;Luisa Lazaro;Tinatin Gogberashvili;Mark A. Bellgrove;Bob Oranje;Lizanne J.S. Schweren;Leyla Namazova-Baranova;Mariam Zentis;Stephanie E. Novotny;Katya Rubia;Paulo Mattos;Mario R. Louza;Yolanda Vives-Gilabert;Thomas Wolfers;Andreas J. Fallgatter;Kaylita C. Chantiluke;Sarah Baumeister;Bernd Kardatzki;Ivanei E. Bramati;Liesbeth Reneman;Annette Conzelmann;Fernanda Tovar-Moll;Elena Shumskaya;Matt C. Gabel;Tonya White;Martine Hoogman;Kerstin Konrad;Eric A. Earl;Astri J. Lundervold;Georgii Karkashadze;Mitul A. Mehta;Pedro G.P. Rosa;Anastasia Christakou;Sabin Khadka;Terry L. Jernigan;Georg G. Von Polier;Anouk Schrantee;Juan Carlos Soliva Vila;Sara Lera-Miguel;Neda Jahanshad;Anna Calvo;Anatoly Anikin;Alysa E. Doyle;Eileen Oberwelland Weiss;Joao P. Guimaraes;Marcel P. Zwiers;Jan Haavik;Theo G.M. van Erp;Daniel Brandeis;Silvia Brem;Hazel McCarthy;Ana I. Cubillo;Jonna Kuntsi;Gregor Kohls;Thomas Frodl;Anastasia Solovieva;Paul Pauli;Kathrin C. Zierhut;Francisco X. Castellanos;Catharina A. Hartman;Thomas Ethofer;Leanne Tamm;Jochen Seitz;Sara Ambrosino;Georg C. Ziegler;Rosa Nicolau;Anders M. Dale;Sarah Hohmann;Ryan Muetzel;Maarten Mennes;Charles B. Malpas;Lena Schwarz;Tim J. Silk;Marie F. Høvik;Geraldo F. Busatto;Kerstin J. Plessen;Gustavo Sudre;Dirk J. Heslenfeld;Neil A. Harrison;Susanne Walitza;David Coghill;Joseph Biederman;Philip Asherson;Alasdair Vance;Yannis Paloyelis;Tobias Banaschewski;Dmitry Kapilushniy;Mara Cercignani;Marcus V. Zanetti;Patrick De Zeeuw Oranje,2019-01-01,25,American Journal of Psychiatry,531-542,10.1176/appi.ajp.2019.18091033,31014101.0,85069237582,2-s2.0-85069237582,Article,,https://api.elsevier.com/content/abstract/scopus_id/85069237582,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85069237582&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85069237582&origin=inward +RNA-seq analysis of chondrocyte transcriptome reveals genetic heterogeneity in LG/J and SM/J murine strains,Shen,X. Duan;L. Cai;R. J. O'Keefe;M. F. Rai;E. J. Schmidt;J. Shen;J. M. Cheverud;E. D. Tycksen,2020-04-01,0,Osteoarthritis and Cartilage,516-527,10.1016/j.joca.2020.01.001,31945456.0,85078929390,2-s2.0-85078929390,Article,NIAMS,https://api.elsevier.com/content/abstract/scopus_id/85078929390,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85078929390&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85078929390&origin=inward +Inhibition of the Prostaglandin EP-1 Receptor in Periosteum Progenitor Cells Enhances Osteoblast Differentiation and Fracture Repair,Shen,Hani A. Awad;Jie Shen;Marina Feigenson;Alayna E. Loiselle;Jennifer H. Jonason;Regis J. O’Keefe,2020-03-01,0,Annals of Biomedical Engineering,927-939,10.1007/s10439-019-02264-7,30980293.0,85064206134,2-s2.0-85064206134,Article,NIAMS,https://api.elsevier.com/content/abstract/scopus_id/85064206134,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85064206134&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85064206134&origin=inward +Dnmt3b ablation impairs fracture repair through upregulation of Notch pathway,Shen,Jie Shen;Jianjun Guan;Taotao Xu;Hongting Jin;Cuicui Wang;Regis O’Keefe;Peijian Tong;Jun Ying;Yousef Abu-Amer,2020-02-13,0,JCI Insight,,10.1172/jci.insight.131816,32051335.0,85081672419,2-s2.0-85081672419,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85081672419,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85081672419&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85081672419&origin=inward +Peripheral Blood Stem Cell Therapy Does Not Improve Outcomes of Femoral Head Osteonecrosis With Cap-Shaped Separated Cartilage Defect,Shen,Pinger Wang;Jie Shen;Hongting Jin;Quanwei Ding;Peijian Tong;Jun Ying;Regis J. O'Keefe;Di Chen,2020-02-01,2,Journal of Orthopaedic Research,269-276,10.1002/jor.24471,31520480.0,85076543018,2-s2.0-85076543018,Article,ZJTCM,https://api.elsevier.com/content/abstract/scopus_id/85076543018,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85076543018&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85076543018&origin=inward +Runx2 plays a central role in Osteoarthritis development,Shen,Jie Shen;Zhen Zou;Dongyeon J. Kim;Regis J. O'Keefe;Di Chen,2020-01-01,0,Journal of Orthopaedic Translation,,10.1016/j.jot.2019.11.008,,85083722602,2-s2.0-85083722602,Review,NIH,https://api.elsevier.com/content/abstract/scopus_id/85083722602,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85083722602&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85083722602&origin=inward +Activation of β-catenin in Col2-expressing chondrocytes leads to osteoarthritis-like defects in hip joint,Shen,Pinger Wang;Jie Shen;Zhen Zou;Hongting Jin;Qinwen Ge;Di Chen;Luwei Xiao;Lei Zhang;Rui Xu;Jun Ying;Peijian Tong;Rui Dong;Peng Zhang;Zhenyu Shi;Liang Fang;Chen Luo;Chenjie Xia,2019-10-01,2,Journal of Cellular Physiology,18535-18543,10.1002/jcp.28491,30912140.0,85063408421,2-s2.0-85063408421,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85063408421,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85063408421&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85063408421&origin=inward +Inhibition of 4-aminobutyrate aminotransferase protects against injury-induced osteoarthritis in mice,Shen,Audrey McAlinden;Jie Shen;Taotao Xu;Cuicui Wang;Jun Ying;Regis J. O'Keefe,2019-09-19,2,JCI Insight,,10.1172/jci.insight.128568,31534049.0,85072655136,2-s2.0-85072655136,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85072655136,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85072655136&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85072655136&origin=inward +Epigenetic and therapeutic implications of dnmt3b in temporomandibular joint osteoarthritis,Shen,Mo Chen;Jeremy J. Mao;Jie Shen;Xuedong Zhou;Zhi Li;Yue Zhou;Jian Zhou;Regis J. O’Keefe,2019-01-01,3,American Journal of Translational Research,1736-1747,,,85065239317,2-s2.0-85065239317,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85065239317,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85065239317&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85065239317&origin=inward +Complex post-traumatic stress symptoms in female adolescents: the role of emotion dysregulation in impairment and trauma exposure after an acute sexual assault,Stringaris,Argyris Stringaris;Kia Chong Chua;Venetia Clarke;Patrick Smith;Laia Villalta;Tami Kramer;Russell M. Viner;Sophie Khadr,2020-12-31,1,European Journal of Psychotraumatology,,10.1080/20008198.2019.1710400,,85077686165,2-s2.0-85077686165,Article,,https://api.elsevier.com/content/abstract/scopus_id/85077686165,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85077686165&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85077686165&origin=inward +Associations between brain activity and endogenous and exogenous cortisol – A systematic review,Stringaris,Anita Harrewijn;Argyris Stringaris;Simone Pisano;Daniel S. Pine;Sarah M. Jackson;Katharina Clore-Gronenborn;Pablo Vidal-Ribas,2020-10-01,0,Psychoneuroendocrinology,,10.1016/j.psyneuen.2020.104775,32592873.0,85086995654,2-s2.0-85086995654,Review,NIH,https://api.elsevier.com/content/abstract/scopus_id/85086995654,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85086995654&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85086995654&origin=inward +Heavy drinking in adolescents is associated with change in brainstem microstructure and reward sensitivity,Stringaris,Patricia Conrod;Herta Flor;Sarah Hohmann;Dimitri Papadopoulos-Orfanos;Robert Goodman;Frauke Nees;Michael N. Smolka;Anna Cattrell;Rüdiger Brühl;Ruben Miranda;Viola Kappel;Vincent Frouin;Uli Bromberg;Erin Burke Quinlan;Sarah Jurk;Arun L.W. Bokde;Gunter Schumann;Irina Filippi;Marie Laure Paillère Martinot;Luise Poustka;Henrik Walter;Eric Artiges;Corinna Isensee;Juergen Gallinat;Penny Gowland;Robert Whelan;Andreas Becker;Sabina Millenet;Tahmine Fadai;André Galinowski;Betteke M. van Noort;Jean Luc Martinot;Yvonne Grimmer;Argyris Stringaris;Tobias Banaschewski;Christian Büchel;Juliane H. Fröhner;Hugh Garavan;Hervé Lemaitre;Jani Penttilä;Sylvane Desrivières;Andreas Heinz;Maren Struve,2020-05-01,0,Addiction Biology,,10.1111/adb.12781,31328396.0,85069739278,2-s2.0-85069739278,Article,FRC,https://api.elsevier.com/content/abstract/scopus_id/85069739278,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85069739278&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85069739278&origin=inward +Sex effects on structural maturation of the limbic system and outcomes on emotional regulation during adolescence,Stringaris,Patricia Conrod;Eva Menningen;Michael N. Smolka;Anna Cattrell;Vincent Frouin;Uli Bromberg;Sarah Jurk;Gunter Schumann;Irina Filippi;Betteke van Noort;Henrik Walter;Eric Artiges;Hélène Vulser;Dimitri Papadopoulos Orfanos;Veronika Ziesch;Nora C. Vetter;Rubén Miranda;Jean Luc Martinot;Jurgen Gallinat;Argyris Stringaris;Yvonne Grimmer;Hervé Lemaître;Pauline Bezivin Frere;Marie Laure Paillère-Martinot;Jani Penttilä,2020-04-15,1,NeuroImage,,10.1016/j.neuroimage.2019.116441,31811901.0,85078193630,2-s2.0-85078193630,Article,ANR,https://api.elsevier.com/content/abstract/scopus_id/85078193630,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85078193630&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85078193630&origin=inward +Annual Research Review: Defining and treating pediatric treatment-resistant depression,Stringaris,Michael H. Bloch;Argyris Stringaris;Jennifer B. Dwyer;David A. Brent,2020-03-01,1,Journal of Child Psychology and Psychiatry and Allied Disciplines,312-332,10.1111/jcpp.13202,32020643.0,85079068611,2-s2.0-85079068611,Review,AFSP,https://api.elsevier.com/content/abstract/scopus_id/85079068611,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85079068611&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85079068611&origin=inward +The Role of Paternal Accommodation of Paediatric OCD Symptoms: Patterns and Implications for Treatment Outcomes,Stringaris,Argyris Stringaris;Georgina Krebs;David Mataix-Cols;Isobel Heyman;Caroline Stokes;Cynthia Turner;Benedetta Monzani;Pablo Vidal-Ribas,2020-01-01,0,Journal of Abnormal Child Psychology,,10.1007/s10802-020-00678-9,,85088107056,2-s2.0-85088107056,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85088107056,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85088107056&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85088107056&origin=inward +Linked patterns of biological and environmental covariation with brain structure in adolescence: a population-based longitudinal study,Stringaris,Alex Ing;Herta Flor;Tomáš Paus;Frauke Nees;Michael N. Smolka;Erin Burke Quinlan;Arun L.W. Bokde;Gunter Schumann;Amirhossein Modabbernia;Marie Laure Paillère Martinot;Dominik A. Moser;Luise Poustka;Henrik Walter;Eric Artiges;Bernd Ittermann;Dimitri Papadopoulos Orfanos;Gareth J. Barker;Penny Gowland;Robert Whelan;Andreas Becker;Corinna Insensee;Abraham Reichenberg;Sabina Millenet;Betteke M. van Noort;Jean Luc Martinot;Tobias Banaschewski;Yvonne Grimmer;Hugh Garavan;Argyris Stringaris;Juliane H. Fröhner;Sophia Frangou;Jani Penttilä;Sylvane Desrivières;Antoine Grigis;Andreas Heinz;Gaelle E. Doucet,2020-01-01,0,Molecular Psychiatry,,10.1038/s41380-020-0757-x,32444868.0,85085341287,2-s2.0-85085341287,Article,Inserm,https://api.elsevier.com/content/abstract/scopus_id/85085341287,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85085341287&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85085341287&origin=inward +Editorial: Are computers going to take over: implications of machine learning and computational psychiatry for trainees and practising clinicians,Stringaris,Argyris Stringaris,2019-12-01,1,Journal of Child Psychology and Psychiatry and Allied Disciplines,1251-1253,10.1111/jcpp.13168,31724195.0,85074959312,2-s2.0-85074959312,Editorial,,https://api.elsevier.com/content/abstract/scopus_id/85074959312,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85074959312&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85074959312&origin=inward +Identification of neurobehavioural symptom groups based on shared brain mechanisms,Stringaris,Alex Ing;Nicole Tay;Patricia Conrod;Herta Flor;Thomas Wolfers;Frauke Nees;Michael N. Smolka;Vincent Frouin;Viola Kappel;Uli Bromberg;Erin Burke Quinlan;Philip A. Spechler;John Ashburner;Arun L.W. Bokde;Gunter Schumann;Philipp G. Sämann;Marie Laure Paillère Martinot;Betteke van Noort;Luise Poustka;Henrik Walter;Jan Buitelaar;Congying Chu;Bernd Ittermann;Andreas Meyer-Lindenberg;Dimitri Papadopoulos Orfanos;Trevor W. Robbins;Tianye Jia;Ingrid Agartz;Penny Gowland;Robert Whelan;Sabina Millenet;Ilya M. Veer;Tahmine Fadai;Edward D. Barker;Jean Luc Martinot;Tobias Banaschewski;Francesca Biondo;Christian Büchel;Hugh Garavan;Yvonne Grimmer;Argyris Stringaris;Elisabeth Binder;Andre Marquand;Gabriel Robert;Hervé Lemaitre;Jani Penttilä;Sylvane Desrivières;Andreas Heinz;Maren Struve;Ole A. Andreassen,2019-12-01,4,Nature Human Behaviour,1306-1318,10.1038/s41562-019-0738-8,31591521.0,85076447002,2-s2.0-85076447002,Article,BMBF,https://api.elsevier.com/content/abstract/scopus_id/85076447002,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85076447002&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85076447002&origin=inward +Pubertal maturation and sex effects on the default-mode network connectivity implicated in mood dysregulation,Stringaris,C. Nymberg;Z. Pausova;Anna Cattrell;Rüdiger Brühl;Arun L.W. Bokde;G. J. Barker;K. Stueber;D. Hall;Juergen Gallinat;Penny Gowland;B. Ruggeri;N. Ivanov;Jean Luc Martinot;Christian Büchel;C. Newman;A. Ihlenfeld;H. Werts;N. Bordas;J. Jones;Sylvane Desrivières;Y. Schwartz;M. Fauth-Bühler;N. Subramaniam;S. Ripke;S. Millenet;Henrik Walter;E. Mennigen;B. Walaszek;Betteke M. van Noort;C. Mallik;T. Hübner;Argyris Stringaris;L. Topper;T. Paus;Antoine Grigis;Maren Struve;Z. Bricaud;D. Theobald;Herta Flor;Frauke Nees;L. Smith;Michael N. Smolka;Ruben Miranda;N. Strache;D. Carter;Marie Laure Paillère Martinot;Luise Poustka;J. Yacubian;N. Heym;S. Schneider;C. Bach;D. Schmidt;J. Ireland;T. Jia;M. Rapp;Herve Lemaitre;Adam X. Gorka;Hugh Garavan;Christian Grillon;Jani Penttilä;Andreas Heinz;K. Head;J. Reuter;Patricia Conrod;Dimitri Papadopoulos-Orfanos;A. Tahmasebi;B. Thyreau;V. Ziesch;J. Rogers;Viola Kappel;I. Filippi;Uli Bromberg;Gunter Schumann;R. Spanagel;J. B. Poline;N. C. Vetter;Eric Artiges;L. Albrecht;D. Stephens;Tiffany Lago;Robert Whelan;F. Gollier-Briant;Brenda Benson;Tahmine Fadai;A. Ströhle;Tobias Banaschewski;Yvonne Grimmer;C. Connolly;S. Nugent;J. Dalley;S. Havatzias;Monique Ernst;K. Müller;A. Galinowski,2019-12-01,2,Translational Psychiatry,,10.1038/s41398-019-0433-6,30804326.0,85062069450,2-s2.0-85062069450,Article,WT,https://api.elsevier.com/content/abstract/scopus_id/85062069450,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85062069450&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85062069450&origin=inward +Reward processing in adolescent depression across neuroimaging modalities: A review,Stringaris,Argyris Stringaris;Georgia O’Callaghan,2019-11-01,2,Zeitschrift fur Kinder- und Jugendpsychiatrie und Psychotherapie,535-541,10.1024/1422-4917/a000663,30957688.0,85074676470,2-s2.0-85074676470,Review,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85074676470,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85074676470&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85074676470&origin=inward +Bidirectional Associations Between Stress and Reward Processing in Children and Adolescents: A Longitudinal Neuroimaging Study,Stringaris,Anita Harrewijn;Argyris Stringaris;Aria D. Vitale;Nathan A. Fox;Hanna Keren;Daniel S. Pine;Brenda Benson;Pablo Vidal-Ribas,2019-10-01,2,Biological Psychiatry: Cognitive Neuroscience and Neuroimaging,893-901,10.1016/j.bpsc.2019.05.012,31324591.0,85072598688,2-s2.0-85072598688,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85072598688,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85072598688&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85072598688&origin=inward +Promotion of Wellbeing for Children of Parents With Mental Illness: A Model Protocol for Research and Intervention,Stringaris,Camilla Lauritzen;Argyris Stringaris;Karin van Doesum;Richard Musil;Floor van Santvoort;Allan H. Young;Charlotte Reedtz;Thomas Schulze;Giovanni de Girolamo;Michael Berk;Therese van Amelsvoort;Giulia Signorini;Geneviève Piché;Philippe Conus,2019-09-06,1,Frontiers in Psychiatry,,10.3389/fpsyt.2019.00606,,85072828438,2-s2.0-85072828438,Article,UiT,https://api.elsevier.com/content/abstract/scopus_id/85072828438,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85072828438&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85072828438&origin=inward +The initiation of cannabis use in adolescence is predicted by sex-specific psychosocial and neurobiological features,Stringaris,Catherine Orr;Jean Baptiste Poline;Bader Chaarani;Alexis Barbot;Anna Cattrell;Arun L.W. Bokde;Eva Mennigen;Nicholas D'Alberto;Eva Loth;Dirk Schmidt;Kerstin Stueber;Marcella Rietschel;Tianye Jia;Bernadeta Walaszek;Penny Gowland;Scott Mackey;Sabina Millenet;Kathrin Müller;Ruediger Brühl;Jean Luc Martinot;Christian Büchel;Zdenka Pausova;Hervé Lemaitre;Sylvane Desrivières;Barbara Ruggeri;Benjamin Thyreau;Lauren Topper;Lindsay Smith;Karl Mann;Vincent Frouin;Richard Watts;Chris Andrew;Kelsey E. Hudson;Mira Fauth-Bühler;Stephan Ripke;Henrik Walter;Jessica Massicotte;Robert R. Althoff;Bernd Ittermann;Zuleima Bricaud;Jürgen Gallinat;Catherine Mallik;Amir Tahmasebi;Christophe Lalanne;Argyris Stringaris;Jani Pentillä;Stephanie Havatzias;Andreas Ströhle;Nora Vetter;Maren Struve;Craig Newman;Alexandra Potter;Herta Flor;Albrecht Ihlenfeld;Frauke Nees;Nikolay Ivanov;Michael N. Smolka;Philip A. Spechler;Fanny Briand;Marie Laure Paillère Martinot;Luise Poustka;Dimitri Papadopoulos Orfanos;André Galinowski;Hugh Garavan;Andreas Heinz;Jan Reuter;Yannick Schwartz;Juliana Yacubian;Tomáš Paus;Helene Vulser;Uli Bromberg;Rainer Spanagel;Nicholas Allgaier;Gunter Schumann;Kay Head;Stephen T. Higgins;Nadja Heym;Charlotte Nymberg;Thomas Hübner;Robert Whelan;Claire Lawrence;Veronika Ziesch;Tahmine Fadai;Nicole Strache;Michael Rapp;Tobias Banaschewski;Yvonne Grimmer;Matthew D. Albaugh;Laurence Reed;Helen Werts;Sarah Rodehacke;Patricia J. Conrod,2019-08-01,6,European Journal of Neuroscience,2346-2356,10.1111/ejn.13989,29889330.0,85055048096,2-s2.0-85055048096,Article,WT,https://api.elsevier.com/content/abstract/scopus_id/85055048096,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85055048096&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85055048096&origin=inward +"Low Smoking Exposure, the Adolescent Brain, and the Modulating Role of CHRNA5 Polymorphisms",Stringaris,Catherine Orr;Jean Baptiste Poline;Sophia Schneider;Bader Chaarani;Alexis Barbot;Anna Cattrell;Arun L.W. Bokde;Eva Mennigen;Nicholas D'Alberto;Eva Loth;Dirk Schmidt;Kerstin Stueber;Kees Jan Kan;Marcella Rietschel;Tianye Jia;Bernadeta Walaszek;Penny Gowland;Scott Mackey;Sabina Millenet;Kathrin Müller;Ruediger Brühl;Jean Luc Martinot;Fanny Gollier Briand;Christian Büchel;Zdenka Pausova;Hervé Lemaitre;Sylvane Desrivières;Barbara Ruggeri;Benjamin Thyreau;Lauren Topper;Lindsay Smith;Karl Mann;Vincent Frouin;Chris Andrew;Jennifer Jones;Kelsey E. Hudson;Mira Fauth-Bühler;Stephan Ripke;Henrik Walter;Jessica Massicotte;Robert R. Althoff;Bernd Ittermann;Zuleima Bricaud;Jürgen Gallinat;Catherine Mallik;Amir Tahmasebi;Christophe Lalanne;Argyris Stringaris;Jani Pentillä;Stephanie Havatzias;Andreas Ströhle;Nora Vetter;Maren Struve;Patrick Constant;Craig Newman;Alexandra Potter;Herta Flor;Albrecht Ihlenfeld;Frauke Nees;Nikolay Ivanov;Michael N. Smolka;Philip A. Spechler;Luise Poustka;Elliot A. Stein;André Galinowski;Hugh Garavan;Andreas Heinz;Jan Reuter;Yannick Schwartz;Juliana Yacubian;Tomáš Paus;Dimitri Papadopoulos-Orfanos;Helene Vulser;Uli Bromberg;Rainer Spanagel;Gunter Schumann;Kay Head;Stephen T. Higgins;Nadja Heym;Charlotte Nymberg;Thomas Hübner;Robert Whelan;Claire Lawrence;Veronika Ziesch;Tahmine Fadai;Nicole Strache;Michael Rapp;Tobias Banaschewski;Yvonne Grimmer;Laurence Reed;Helen Werts;Sarah Rodehacke;Patricia J. Conrod,2019-07-01,2,Biological Psychiatry: Cognitive Neuroscience and Neuroimaging,672-679,10.1016/j.bpsc.2019.02.006,31072760.0,85065211708,2-s2.0-85065211708,Article,WT,https://api.elsevier.com/content/abstract/scopus_id/85065211708,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85065211708&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85065211708&origin=inward +Extending the Construct Network of Trait Disinhibition to the Neuroimaging Domain: Validation of a Bridging Scale for Use in the European IMAGEN Project,Stringaris,Patricia Conrod;James R. Yancey;Herta Flor;Frauke Nees;Michael N. Smolka;Angela Heinrich;Vincent Frouin;Laura E. Drislane;Uli Bromberg;Erin Burke Quinlan;Arun L.W. Bokde;Gunter Schumann;Marie Laure Paillère Martinot;Betteke van Noort;Jens Foell;Luise Poustka;Henrik Walter;Bernd Ittermann;Dimitri Papadopoulos Orfanos;Sarah J. Brislin;Penny Gowland;Robert Whelan;Tahmine Fadai;Jean Luc Martinot;Tobias Banaschewski;Christian Büchel;Hugh Garavan;Argyris Stringaris;Juliane H. Fröhner;Yvonne Grimmer;Christopher J. Patrick;Sylvane Desrivières;Andreas Heinz;Maren Struve,2019-06-01,6,Assessment,567-581,10.1177/1073191118759748,29557190.0,85044347238,2-s2.0-85044347238,Article,Inserm,https://api.elsevier.com/content/abstract/scopus_id/85044347238,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85044347238&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85044347238&origin=inward +Dimensions and subtypes of oppositionality and their relation to comorbidity and psychosocial characteristics,Stringaris,Argyris Stringaris;Anders Bo Bojesen;Christian Sibbersen;Ardesheer Talati;Rikke Wesselhoeft;Rune Voss Kristensen,2019-03-11,4,European Child and Adolescent Psychiatry,351-365,10.1007/s00787-018-1199-8,30003396.0,85049770959,2-s2.0-85049770959,Article,"FSS, DFF",https://api.elsevier.com/content/abstract/scopus_id/85049770959,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85049770959&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85049770959&origin=inward +Debate: Pediatric bipolar disorder – divided by a common language?,Stringaris,Argyris Stringaris,2019-02-01,0,Child and Adolescent Mental Health,106-107,10.1111/camh.12314,32677239.0,85060732157,2-s2.0-85060732157,Note,,https://api.elsevier.com/content/abstract/scopus_id/85060732157,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85060732157&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85060732157&origin=inward +Probing the Irritability−Suicidality Nexus,Stringaris,Argyris Stringaris;Pablo Vidal-Ribas,2019-01-01,1,Journal of the American Academy of Child and Adolescent Psychiatry,18-19,10.1016/j.jaac.2018.08.014,30577933.0,85058513073,2-s2.0-85058513073,Editorial,,https://api.elsevier.com/content/abstract/scopus_id/85058513073,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85058513073&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85058513073&origin=inward +Autoantibody Biomarkers for Basal Ganglia Encephalitis in Sydenham Chorea and Pediatric Autoimmune Neuropsychiatric Disorder Associated With Streptococcal Infections,Swedo,Rebecca Hommer;Susan E. Swedo;Julie A. Stoner;Sean Reim;Adita Mascaro-Blanco;Jennifer L. Chain;Kathy Alvarez;Paul Grant;Ivana Kawikova;Kyle Williams;Madeleine W. Cunningham;Rebecca Bentley;James F. Leckman,2020-06-24,0,Frontiers in Psychiatry,,10.3389/fpsyt.2020.00564,,85087690834,2-s2.0-85087690834,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85087690834,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85087690834&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85087690834&origin=inward +Functional genomics analysis of Phelan-McDermid syndrome 22q13 region during human neurodevelopment,Swedo,Susan E. Swedo;Catherine A. Ziats;Ahmed Mahfouz;Luke P. Grosvenor;Sara M. Sarasua;Owen M. Rennert;Audrey E. Thurm;Mark N. Ziats,2019-03-01,1,PLoS ONE,,10.1371/journal.pone.0213921,30875393.0,85062986137,2-s2.0-85062986137,Article,,https://api.elsevier.com/content/abstract/scopus_id/85062986137,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85062986137&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85062986137&origin=inward +Functional brain connectivity in electrical status epilepticus in sleep,Swedo,Susan E. Swedo;Steven H. Mott;Cristan A. Farmer;Amara L. Krag;Richard P. Morse;Gregory L. Holmes;Scott A. Burroughs;Audrey E. Thurm;Ashura W. Buckley,2019-02-01,1,Epileptic Disorders,55-64,10.1684/epd.2019.1027,30767900.0,85063424008,2-s2.0-85063424008,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85063424008,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85063424008&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85063424008&origin=inward +"The Gestalt of functioning in autism spectrum disorder: Results of the international conference to develop final consensus International Classification of Functioning, Disability and Health core sets",Swedo,Soheil Mahdi;Bruce Tonge;Wolfgang Segerer;Melissa Selb;Sven Bölte;Susan Swedo;Cory Shulman;Petrus J. de Vries;Virginia Wong;Lonnie Zwaigenbaum;Mats Granlund;John E. Robison,2019-02-01,25,Autism,449-467,10.1177/1362361318755522,29378422.0,85041576618,2-s2.0-85041576618,Article,VR,https://api.elsevier.com/content/abstract/scopus_id/85041576618,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85041576618&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85041576618&origin=inward +Guidelines for the content and format of PET brain data in publications and archives: A consensus paper,Thomas,Peter Herscovitch;J. John Mann;Thomas E. Nichols;Richard E. Carson;Stefan Appelhoff;Peter J.H. Scott;Graham Searle;Francesca Zanderigo;Gaia Rizzo;Ciprian Catana;Todd Ogden;Dean F. Wong;Doris Doudet;Julie Price;Peter S. Talbot;Jeih San Liow;Rupert Lanzenberger;Tetsuya Suhara;Gitte M. Knudsen;Guy Bormans;Melanie Ganz;Pedro Rosa-Neto;Victor W. Pike;Christer Halldin;Granville J. Matheson;Ronald Boellaard;Douglas N. Greve;Roger N. Gunn;Mark Lubberink;Adriaan A. Lammertsma;Maqsood Yaqub;Talakad G. Lohith;Henry Huang;Sune H. Keller;Mattia Veronese;Martin Schain;Sami Zoghbi;Martin Nørgaard;Antony D. Gee;Adam Thomas;Robert B. Innis;Mark Slifstein;Ramin Parsey;Chul H. Lyoo,2020-08-01,2,Journal of Cerebral Blood Flow and Metabolism,1576-1585,10.1177/0271678X20905433,32065076.0,85081976410,2-s2.0-85081976410,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85081976410,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85081976410&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85081976410&origin=inward +Behavioral flexibility is associated with changes in structure and function distributed across a frontal cortical network in macaques,Thomas,Mark E. Walton;Franz X. Neubert;Mark J. Buckley;Jérôme Sallet;Rogier B. Mars;Andrew H. Bell;Georgios K. Papageorgiou;Léa Roumazeilles;Steven Cuell;Jesper Anderson;Adam Thomas;Kristine Krug;Bashir Ahmed;Jill X. O'Reilly;Mary Ann P. Noonan;Jackson Smith;Matthew F.S. Rushworth,2020-05-01,1,PLoS Biology,,10.1371/journal.pbio.3000605,32453728.0,85085981788,2-s2.0-85085981788,Article,BBSRC,https://api.elsevier.com/content/abstract/scopus_id/85085981788,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85085981788&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85085981788&origin=inward +Crowdsourced MRI quality metrics and expert quality annotations for training of humans and machines,Thomas,Russell A. Poldrack;Jan C. Varada;Krzysztof J. Gorgolewski;Oscar Esteban;Sean Marrett;Adam G. Thomas;Ross W. Blair;Dylan M. Nielson,2019-12-01,2,Scientific Data,,10.1038/s41597-019-0035-4,30975998.0,85064830641,2-s2.0-85064830641,,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85064830641,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85064830641&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85064830641&origin=inward +The brain-structural correlates of mathematical expertise,Thomas,Roi Cohen Kadosh;Marie Schaer;Ann Dowker;Devin B. Terhune;Rogier B. Mars;Tudor Popescu;Adam Thomas;Elie Sader,2019-05-01,4,Cortex,140-150,10.1016/j.cortex.2018.10.009,30424836.0,85056252714,2-s2.0-85056252714,Article,ERC,https://api.elsevier.com/content/abstract/scopus_id/85056252714,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85056252714&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85056252714&origin=inward +A phenome-wide association and Mendelian Randomisation study of polygenic risk for depression in UK Biobank,Thurm,Jakob Grove;Lili Milani;Georg Homuth;Peter McGuffin;Robert M. Maier;Jonas Bybjerg-Grauholm;Stefan Herms;Yuri Milaneschi;Aartjan T.F. Beekman;Wolfgang Maier;Matthias Nauck;Erin C. Dunn;Gregory E. Crawford;Nese Direk;Michael Gill;Jerome C. Foo;Yihan Li;Lisa A. Jones;Divya Mehta;Enda M. Byrne;Baptiste Couvy-Duchesne;Zoltán Kutalik;Patrick McGrath;Conor V. Dolan;Farnush Farhadi Hassan Kiadeh;Dale R. Nyholt;Stephan Ripke;David M. Howard;Penelope A. Lind;Christine Søholm Hansen;Michael J. Owen;Francis M. Mondimore;Gail Davies;Julia Kraft;Thalia C. Eley;Toni Kim Clarke;Andreas J. Forstner;Lynsey S. Hall;Marie Bækvad-Hansen;James A. Knowles;Ian J. Deary;Hogni Oskarsson;Carsten Horn;Warren W. Kretzschmar;Bernard Ng;Jonathan Marchini;Hilary K. Finucane;Julien Bryois;Ian Jones;W. David Hill;Fernando S. Goes;Isaac S. Kohane;Dean F. MacKinnon;Na Cai;Hamdi Mbarek;Marcus Ising;Valentina Escott-Price;Evelin Mihailov;Franziska Degenhardt;Eske M. Derks;David M. Hougaard;Mark J. Adams;Christel M. Middeldorp;Paul F. O’Reilly;Tim B. Bigdeli;Enrique Castelao;Michel G. Nivard;Nick Craddock;Héléna A. Gaspar;Sarah E. Medland;Jonathan R.I. Coleman;Scott D. Gordon;Henriette N. Buttenschøn;Josef Frank;Jane Hvarregaard Christensen;Thomas F. Hansen;Grant W. Montgomery;Jouke Jan Hottenga;Rick Jansen;Tracy M. Air;Eric Jorgenson;Naomi R. Wray;Niamh Mullins;Xueyi Shen;Sara Mostafavi;Lucía Colodro-Conde;Per Hoffmann;Donald J. MacIntyre;Abdel Abdellaoui;Ian B. Hickie;Maciej Trzaskowski;Elisabeth B. Binder;Silviu Alin Bacanu;Till F.M. Andlauer;Andrew M. McIntosh;Manuel Mattheisen;Esben Agerbo,2020-12-01,0,Nature Communications,,10.1038/s41467-020-16022-0,32385265.0,85084721245,2-s2.0-85084721245,Article,RCPE,https://api.elsevier.com/content/abstract/scopus_id/85084721245,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85084721245&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85084721245&origin=inward +"The Genetics of the Mood Disorder Spectrum: Genome-wide Association Analyses of More Than 185,000 Cases and 439,000 Controls",Thurm,Richard Belliveau;Monika Budde;Miquel Casas;Chun Chieh Fan;Tatiana M. Foroud;Jennifer M. Whitehead Pavlides;Erlend Bøen;Jonas Bybjerg-Grauholm;Srdjan Djurovic;Aartjan T.F. Beekman;Alexander W. Charney;Jack D. Barchas;Nelson B. Freimer;Judith A. Badner;Liz Forty;Erin C. Dunn;Gregory E. Crawford;Nese Direk;Jerome C. Foo;Sarah E. Bergen;Julie Garnham;Enda M. Byrne;Baptiste Couvy-Duchesne;Amanda L. Dobbyn;Christine Fraser;Conor V. Dolan;J. Raymond DePaulo;Margit Burmeister;Stephan Ripke;Annelie Nordin Adolfsson;Tune H. Pers;Gail Davies;Thalia C. Eley;Toni Kim Clarke;Andreas J. Forstner;Marie Bækvad-Hansen;Verneri Antilla;Ian J. Deary;Huda Akil;Eli A. Stahl;Claire Churchhouse;Hilary K. Finucane;Julien Bryois;Piotr M. Czerski;Na Cai;Valentina Escott-Price;Franziska Degenhardt;Ney Alliey-Rodriguez;Adebayo Anjorin;Sandra Van der Auwera;Eske M. Derks;Liam Abbott;Stacy Steinberg;David St Clair;Andrew McQuillin;Mark J. Adams;Danfeng Chen;Vassily Trubetskoy;William Bunney;Tim B. Bigdeli;Swapnil Awasthi;Felecia Cerrato;Katrin Gade;Enrique Castelao;Pablo Cervantes;Cristiana Cruceanu;James Boocock;Héléna A. Gaspar;Matthew Flickinger;Jonathan R.I. Coleman;William Byerley;Nicholas Bass;Peter A. Holmans;Christiaan A. de Leeuw;Henriette N. Buttenschøn;Anders M. Dale;Josef Frank;Jane Hvarregaard Christensen;Louise Frisén;Kimberly Chambert;Ashley Dumont;David W. Craig;Torbjørn Elvsåshagen;William Coryell;Michael Bauer;Jurgen Del-Favero;Marco Boks;Lucía Colodro-Conde;Diane Gage;Thomas D. Als;Sascha B. Fischer;Abdel Abdellaoui;Yunpeng Wang;Maciej Trzaskowski;Elisabeth B. Binder;Silviu Alin Bacanu;Till F.M. Andlauer;Manuel Mattheisen;Esben Agerbo;Diego Albani,2020-07-15,5,Biological Psychiatry,169-184,10.1016/j.biopsych.2019.10.015,31926635.0,85078024661,2-s2.0-85078024661,Article,NRW,https://api.elsevier.com/content/abstract/scopus_id/85078024661,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85078024661&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85078024661&origin=inward +Quantitative genome-wide association analyses of receptive language in the Danish High Risk and Resilience Study,Thurm,Jessica Ohland;Camilla A.J. Christiani;Jonas Bybjerg-Grauholm;Ole Mors;Ron Nudel;Katrine S. Spang;Aja N. Greve;Md Jamal Uddin;Jens Richardt M. Jepsen;Anne A.E. Thorup;Merete Nordentoft;Birgitte K. Burton;Ditte L. Gantriis;Thomas Werge;Ditte Ellersgaard;Nicoline Hemager,2020-07-07,0,BMC Neuroscience,,10.1186/s12868-020-00581-5,32635940.0,85087725531,2-s2.0-85087725531,Article,,https://api.elsevier.com/content/abstract/scopus_id/85087725531,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85087725531&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85087725531&origin=inward +Genetic liability to ADHD and substance use disorders in individuals with ADHD,Thurm,Ole Mors;Lucy Riglin;Kate Langley;Merete Nordentoft;Jonas Bybjerg-Grauholm;Anita Thapar;Henriette Thisted Horsdal;Preben Bo Mortensen;Søren Dalsgaard;Thomas Werge;Cæcilie Ottosen;Thomas Damm Als;David Hougaard;Marie Bækvad Hansen;Isabell Brikell;Theresa Wimberley;Anders D. Børglum;Esben Agerbo;Ditte Demontis,2020-07-01,1,Addiction,1368-1377,10.1111/add.14910,31803957.0,85078053867,2-s2.0-85078053867,Article,WT,https://api.elsevier.com/content/abstract/scopus_id/85078053867,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85078053867&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85078053867&origin=inward +Genome-wide gene-environment analyses of major depressive disorder and reported lifetime traumatic experiences in UK Biobank,Thurm,Jakob Grove;Lili Milani;Georg Homuth;Peter McGuffin;Robert M. Maier;Jonas Bybjerg-Grauholm;Stefan Herms;Yuri Milaneschi;Aartjan T.F. Beekman;Mark James Adams;Wolfgang Maier;Erin C. Dunn;Gregory E. Crawford;Nese Direk;Michael Gill;Jerome C. Foo;Yihan Li;Lisa A. Jones;Divya Mehta;Enda M. Byrne;Baptiste Couvy-Duchesne;Zoltán Kutalik;Patrick McGrath;Conor V. Dolan;Farnush Farhadi Hassan Kiadeh;Stephan Ripke;David M. Howard;Penelope A. Lind;Christine Søholm Hansen;Kirstin L. Purves;Francis M. Mondimore;Christopher Rayner;Gail Davies;Julia Kraft;Thalia C. Eley;Toni Kim Clarke;Andreas J. Forstner;Lynsey S. Hall;Marie Bækvad-Hansen;James A. Knowles;Ian J. Deary;Carsten Horn;Warren W. Kretzschmar;Jonathan Marchini;Hilary K. Finucane;Julien Bryois;Ian Jones;Fernando S. Goes;Isaac S. Kohane;Dean F. MacKinnon;Na Cai;Hamdi Mbarek;Marcus Ising;Valentina Escott-Price;Evelin Mihailov;Franziska Degenhardt;Sandra Van der Auwera;Eske M. Derks;David M. Hougaard;Mark J. Adams;Christel M. Middeldorp;Christopher Hübel;Tim B. Bigdeli;Enrique Castelao;Nick Craddock;Karmel W. Choi;Héléna A. Gaspar;Sarah E. Medland;Jonathan R.I. Coleman;Scott D. Gordon;Henriette N. Buttenschøn;Josef Frank;Jane Hvarregaard Christensen;Thomas F. Hansen;Donald M. Lyall;Grant W. Montgomery;Jouke Jan Hottenga;Rick Jansen;Tracy M. Air;Eric Jorgenson;Naomi R. Wray;Niamh Mullins;Sara Mostafavi;Lucía Colodro-Conde;Per Hoffmann;Carol Kan;Shing Wan Choi;Donald J. MacIntyre;Abdel Abdellaoui;Ian B. Hickie;Maciej Trzaskowski;Elisabeth B. Binder;Silviu Alin Bacanu;Wouter J. Peyrot;Till F.M. Andlauer;Katrina A.S. Davis;Manuel Mattheisen;Esben Agerbo,2020-07-01,7,Molecular Psychiatry,1430-1446,10.1038/s41380-019-0546-6,31969693.0,85078355026,2-s2.0-85078355026,Article,NIHR,https://api.elsevier.com/content/abstract/scopus_id/85078355026,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85078355026&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85078355026&origin=inward +A Cluster of Autism-Associated Variants on X-Linked NLGN4X Functionally Resemble NLGN4Y,Thurm,Katherine W. Roche;Michael A. Bemben;Audrey Thurm;Kareem A. Zaghloul;Wei Lu;John D. Badger;Julie L. Lauzon;Yan Li;Kunwei Wu;Alexander W. Lehr;Mahim Jain;Thien A. Nguyen;Saurabh Pandey;Tongguang Wang,2020-06-03,1,Neuron,759-768.e7,10.1016/j.neuron.2020.03.008,32243781.0,85085311548,2-s2.0-85085311548,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85085311548,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85085311548&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85085311548&origin=inward +"Neurodevelopmental Characterization of Young Children Diagnosed with Niemann-Pick Disease, Type C1",Thurm,Colby Chlebowski;Audrey Thurm;Cristan Farmer;Simona Bianconi;Elizabeth Berry-Kravis;Dee Adedipe;Forbes D. Porter;Nicole Farhat;Edythe Wiggs;Madison Weiss;Lisa Joseph,2020-06-01,0,Journal of developmental and behavioral pediatrics : JDBP,388-396,10.1097/DBP.0000000000000785,32073546.0,85086749750,2-s2.0-85086749750,Article,,https://api.elsevier.com/content/abstract/scopus_id/85086749750,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85086749750&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85086749750&origin=inward +A large population-based investigation into the genetics of susceptibility to gastrointestinal infections and the link between gastrointestinal infections and mental illness,Thurm,Ole Mors;Jonas Bybjerg-Grauholm;David M. Hougaard;Ron Nudel;Merete Nordentoft;Vivek Appadurai;Preben Bo Mortensen;Mark J. Daly;Wesley K. Thompson;Michael E. Benros;Anders D. Børglum;Thomas Werge;Andrew J. Schork;Alfonso Buil,2020-05-01,0,Human Genetics,593-604,10.1007/s00439-020-02140-8,32152699.0,85081732814,2-s2.0-85081732814,Article,AU,https://api.elsevier.com/content/abstract/scopus_id/85081732814,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85081732814&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85081732814&origin=inward +Diffusion Tensor Imaging Abnormalities in the Uncinate Fasciculus and Inferior Longitudinal Fasciculus in Phelan-McDermid Syndrome,Thurm,Ellen Hanson;Craig M. Powell;Paige Siper;Jennifer M. Phillips;Jonathan A. Bernstein;Elizabeth Berry Kravis;Stormi P. White;Rajna Filip-Dhima;Simon Warfield;Siddharth Srivastava;Craig Powell;Anna K. Prohl;Mustafa Sahin;Benoit Scherrer;Kush Kapur;Audrey Thurm;Joseph D. Buxbaum;Elizabeth Berry-Kravis;Latha Soorya;Alexander Kolevzon;Julia Bassell;Kira Dies;Simon K. Warfield,2020-05-01,0,Pediatric Neurology,24-31,10.1016/j.pediatrneurol.2020.01.006,32107139.0,85080031211,2-s2.0-85080031211,Article,NICHD,https://api.elsevier.com/content/abstract/scopus_id/85080031211,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85080031211&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85080031211&origin=inward +A genome-wide association study on medulloblastoma,Thurm,Beatrice Melin;Carl Wibom;Astrid Sehested;Long T. Hung;Birgitta Lannering;Maria Feychting;Lisbeth S. Schmidt;Jonas Bybjerg-Grauholm;Danuta Januszkiewicz-Lewandowska;Ashley S. Margol;Maral Adel Fahmideh;Kristina Kjaerheim;Martin Röösli;Roberta McKean-Cowdin;Joachim Schüz;Claudia Kuehni;W. James Gauderman;Isabelle Deltour;Christoffer Johansen;Shahab Asgharzadeh;Tore Tynes;Ulf Hjalmars;David M. Hougaard;Ching C. Lau;Anna M. Dahlin;Susan Searles Nielsen;Tone Eggen;Jessica Barrington-Trimis;Lars Klæboe;Michael Grotzer;Janis Yee;Michaela Prochazka;Jerzy Nowak;Lisa Mirabello;Marta Fichna;Rebekah J. Kennedy;Ulrika Andersson;Michael E. Scheurer,2020-04-01,0,Journal of Neuro-Oncology,309-315,10.1007/s11060-020-03424-9,32056145.0,85079528189,2-s2.0-85079528189,Article,VR,https://api.elsevier.com/content/abstract/scopus_id/85079528189,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85079528189&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85079528189&origin=inward +"Practice guideline: Treatment for insomnia and disrupted sleep behavior in children and adolescents with autism spectrum disorder: Report of the Guideline Development, Dissemination, and Implementation Subcommittee of the American Academy of Neurology",Thurm,Ashura Williams Buckley;Thomas Gaughan;Aubyn Stahmer;Gary Gronseth;Maryam Oskoui;Geraldine Dawson;Max Wiznitzer;Roberto Tuchman;Linmarie Sikich;David Gloss;Robert L. Findling;Zachary Warren;Riley Kessler;Daniel Coury;Melissa J. Armstrong;Judith Owens;Audrey Thurm;Anshu Batra;Shannon Merillat;Deborah Hirtz;Amy Wetherby;Diane Donley;David Michelson;Stephen Ashwal;Carolyn Bridgemohan;Tamara Pringsheim,2020-03-03,2,Neurology,392-404,10.1212/WNL.0000000000009033,32051244.0,85081127262,2-s2.0-85081127262,Article,,https://api.elsevier.com/content/abstract/scopus_id/85081127262,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85081127262&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85081127262&origin=inward +"Language deficits in specific language impairment, attention deficit/hyperactivity disorder, and autism spectrum disorder: An analysis of polygenic risk",Thurm,Jessica Ohland;Camilla A.J. Christiani;Jonas Bybjerg-Grauholm;Ole Mors;Ditte V. Ellersgaard;Ron Nudel;Katrine S. Spang;Aja N. Greve;Md Jamal Uddin;Jens Richardt M. Jepsen;Anne A.E. Thorup;Merete Nordentoft;Birgitte K. Burton;Ditte L. Gantriis;Thomas Werge;Nicoline Hemager,2020-03-01,1,Autism Research,369-381,10.1002/aur.2211,31577390.0,85073945418,2-s2.0-85073945418,Article,AU,https://api.elsevier.com/content/abstract/scopus_id/85073945418,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85073945418&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85073945418&origin=inward +Classical Human Leukocyte Antigen Alleles and C4 Haplotypes Are Not Significantly Associated With Depression,Thurm,Jakob Grove;Glyn Lewis;Myrna M. Weissman;Georg Homuth;Peter McGuffin;Hans J. Grabe;Jonas Bybjerg-Grauholm;Stefan Herms;Yuri Milaneschi;Henning Tiemeier;Aartjan T.F. Beekman;Gerome Breen;Erin C. Dunn;Gregory E. Crawford;Martin Preisig;Nese Direk;Michael Gill;Jerome C. Foo;Lisa A. Jones;Enda M. Byrne;Zoltán Kutalik;Baptiste Couvy-Duchesne;Conor V. Dolan;Susanne Lucae;Farnush Farhadi Hassan Kiadeh;Douglas F. Levinson;Udo Dannlowski;Stephan Ripke;David M. Howard;Penelope A. Lind;Christine Søholm Hansen;Kirstin L. Purves;Gail Davies;Patrick F. Sullivan;Thalia C. Eley;Jianxin Shi;Toni Kim Clarke;Andreas J. Forstner;Lynsey S. Hall;Marie Bækvad-Hansen;Ken B. Hanscombe;Stanley I. Shyn;Bernhard T. Baune;James A. Knowles;Ian J. Deary;Carsten Horn;Ole Mors;Hilary K. Finucane;Rudolf Uher;Ian Jones;Julien Bryois;Fernando S. Goes;Patrik K. Magnusson;Na Cai;Marcus Ising;Valentina Escott-Price;Steven P. Hamilton;Franziska Degenhardt;Sandra Van der Auwera;Eske M. Derks;David M. Hougaard;Mark J. Adams;Eco J.C. de Geus;Tim B. Bigdeli;Enrique Castelao;Nick Craddock;Héléna A. Gaspar;Jonathan R.I. Coleman;Nancy L. Pedersen;Scott D. Gordon;Henriette N. Buttenschøn;Josef Frank;Jane Hvarregaard Christensen;Thomas F. Hansen;Douglas H.R. Blackwood;Jouke Jan Hottenga;Fabian Streit;Rick Jansen;Tracy M. Air;Bertram Müller-Myhsok;Naomi R. Wray;Sara Mostafavi;Lucía Colodro-Conde;Per Hoffmann;Shing Wan Choi;Abdel Abdellaoui;Ian B. Hickie;Kylie P. Glanville;Jordan W. Smoller;Jack Euesden;Maciej Trzaskowski;Elisabeth B. Binder;James B. Potash;Silviu Alin Bacanu;Till F.M. Andlauer;Andrew M. McIntosh;Manuel Mattheisen;Esben Agerbo;Dorret I. Boomsma;Brenda W.J.H. Penninx,2020-03-01,1,Biological Psychiatry,419-430,10.1016/j.biopsych.2019.06.031,31570195.0,85072749953,2-s2.0-85072749953,Article,NIHR,https://api.elsevier.com/content/abstract/scopus_id/85072749953,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85072749953&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85072749953&origin=inward +Psychiatric illness and regression in individuals with Phelan-McDermid syndrome,Thurm,Audrey Thurm;Teresa M. Kohlenberg;Alexander Kolevzon;Catalina Betancur;Brittany McLarney;M. Pilar Trelles,2020-02-12,1,Journal of Neurodevelopmental Disorders,,10.1186/s11689-020-9309-6,32050889.0,85079336071,2-s2.0-85079336071,Article,,https://api.elsevier.com/content/abstract/scopus_id/85079336071,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85079336071&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85079336071&origin=inward +Large-Scale Exome Sequencing Study Implicates Both Developmental and Functional Changes in the Neurobiology of Autism,Thurm,Jakob Grove;Michael L. Cuccaro;Behrang Mahjani;Aarno Palotie;Isaac Pessah;Chiara Fallerini;Jiebiao Wang;Joon Yong An;Per Magnus;Shan Dong;Jonas Bybjerg-Grauholm;Margaret Pericak-Vance;Antonio M. Persico;Angel Carracedo;Alfredo Brusco;Brooke Sheppard;Hilary Coon;Eric M. Morrow;Enrico Domenici;Marcus C.Y. Chan;Benjamin M. Neale;Minshi Peng;Astanand Jugessur;Maria Rita Passos-Bueno;Daniel Geschwind;Harrison Brand;Rachel Nguyen;Yunin Ludena;Mara Parellada;Idan Menashe;F. Kyle Satterstrom;Utku Norman;Maureen S. Mulhern;Lambertus Klei;Branko Aleksic;Gail E. Herman;Xinyi Xu;Andreas G. Chiocchetti;Giovanni Battista Ferrero;Preben Bo Mortensen;Elizabeth E. Guerrero;Diego Lopergolo;Irva Hertz-Picciotto;W. Ian Lipkin;Eduarda M.S. Montenegro;Carla Lintas;Suma Jacob;Michael S. Breen;Itaru Kushima;Patricia Maciel;Menachem Fromer;Kaija Puura;Jennifer Reichert;Ole Mors;Mykyta Artomov;Emily Hansen-Kiss;J. Jay Gargus;Merete Nordentoft;Xin He;Ryan Doan;Ryan Collins;Jesslyn Jamison;Norio Ozaki;Miia Kaartinen;Fátima Lopes;David M. Hougaard;Sherif Gerges;Judith Miller;Nell Maltman;Montserrat Fernández-Prieto;Elaine T. Lim;Christine M. Freitag;Pierandrea Muglia;Stephen Guter;Javier González-Peñas;Aparna Bhaduri;Bernardo Dalla Bernardina;Matthew Mosconi;Alexander Kolevzon;Gal Meiri;Somer Bishop;Grace Schwartz;Danielle Moreira;Brian H.Y. Chung;Richard Anney;Christina M. Hultman;Christine Stevens;Mafalda Barbosa;Gun Peggy Knudsen;Terho Lehtimäki;So Lun Lee;Jack A. Kosmicki;Iuliana Ionita-Laza;Dara S. Manoach;Nancy Minshew;Danielle Halpern;Elisa Giorgio;Caroline Dias;Aurora Curró;Silvia De Rubeis,2020-02-06,55,Cell,568-584.e23,10.1016/j.cell.2019.12.036,31981491.0,85078664833,2-s2.0-85078664833,Article,ASF,https://api.elsevier.com/content/abstract/scopus_id/85078664833,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85078664833&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85078664833&origin=inward +"Concordance of the Vineland Adaptive Behavior Scales, second and third editions",Thurm,A. Thurm;C. Chlebowski;D. Adedipe;C. Farmer;V. H. Bal,2020-01-01,1,Journal of Intellectual Disability Research,18-26,10.1111/jir.12691,31657503.0,85074661247,2-s2.0-85074661247,Article,NICHD,https://api.elsevier.com/content/abstract/scopus_id/85074661247,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85074661247&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85074661247&origin=inward +Functional near-infrared spectroscopy in toddlers: Neural differentiation of communicative cues and relation to future language abilities,Thurm,Audrey Thurm;Elizabeth G. Smith;Afrouz Anderson;Emma Condy;Lauren Swineford;Stacy S. Manwaring;Elizabeth Redcay;Amir Gandjbakhche,2020-01-01,0,Developmental Science,,10.1111/desc.12948,,85082721522,2-s2.0-85082721522,Article,,https://api.elsevier.com/content/abstract/scopus_id/85082721522,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85082721522&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85082721522&origin=inward +Sex differences in scores on standardized measures of autism symptoms: a multisite integrative data analysis,Thurm,Somer L. Bishop;Audrey Thurm;Stelios Georgiades;Cristan A. Farmer;Aaron J. Kaat;Stephen M. Kanne;Catherine Lord;Amy N. Esler;Sheila S. Ghods;Amy M. Shui;Young Shin Kim,2020-01-01,1,Journal of Child Psychology and Psychiatry and Allied Disciplines,,10.1111/jcpp.13242,,85083650031,2-s2.0-85083650031,Article,,https://api.elsevier.com/content/abstract/scopus_id/85083650031,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85083650031&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85083650031&origin=inward +Genome-wide association study identifies locus at chromosome 2q32.1 associated with syncope and collapse,Thurm,Jonas Bybjerg-Grauholm;David M. Hougaard;Stig Haunsø;Morten S. Olesen;Thomas A. Jepps;Gustav Ahlberg;Jesper H. Svendsen;Michael Christiansen;Morten W. Skov;Christian M. Hagen;Jonas Ghouse;Jørgen K. Kanters;Paula Hedley;Laura Andreasen;Katra Hadji-Turdeghal;Marie Bækvad-Hansen,2020-01-01,2,Cardiovascular Research,138-148,10.1093/cvr/cvz106,31049583.0,85076873985,2-s2.0-85076873985,Article,,https://api.elsevier.com/content/abstract/scopus_id/85076873985,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85076873985&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85076873985&origin=inward +Psychometric Study of the Social Responsiveness Scale in Phelan–McDermid Syndrome,Thurm,Alison Durkin;Audrey Thurm;Paige Siper;Joseph D. Buxbaum;Jennifer Foss-Feig;Elizabeth Berry-Kravis;Maria del Pilar Trelles;Kellie Gergoudis;Craig M. Powell;Latha Soorya;Jonathan A. Bernstein;Alexander Kolevzon;Alan Weinberg;Mustafa Sahin;Cristan Farmer;Jonathan Templin;Jordana Weissman,2020-01-01,0,Autism Research,,10.1002/aur.2299,,85084615648,2-s2.0-85084615648,Article,,https://api.elsevier.com/content/abstract/scopus_id/85084615648,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85084615648&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85084615648&origin=inward +"Correction: Genome-wide gene-environment analyses of major depressive disorder and reported lifetime traumatic experiences in UK Biobank (Molecular Psychiatry, (2020), 10.1038/s41380-019-0546-6)",Thurm,Jakob Grove;Lili Milani;Georg Homuth;Peter McGuffin;Robert M. Maier;Jonas Bybjerg-Grauholm;Stefan Herms;Yuri Milaneschi;Aartjan T.F. Beekman;Mark James Adams;Wolfgang Maier;Erin C. Dunn;Gregory E. Crawford;Nese Direk;Michael Gill;Jerome C. Foo;Yihan Li;Lisa A. Jones;Divya Mehta;Enda M. Byrne;Baptiste Couvy-Duchesne;Zoltán Kutalik;Patrick McGrath;Conor V. Dolan;Farnush Farhadi Hassan Kiadeh;Stephan Ripke;David M. Howard;Penelope A. Lind;Christine Søholm Hansen;Kirstin L. Purves;Francis M. Mondimore;Christopher Rayner;Gail Davies;Julia Kraft;Thalia C. Eley;Toni Kim Clarke;Andreas J. Forstner;Lynsey S. Hall;Marie Bækvad-Hansen;James A. Knowles;Ian J. Deary;Carsten Horn;Warren W. Kretzschmar;Jonathan Marchini;Hilary K. Finucane;Julien Bryois;Ian Jones;Fernando S. Goes;Isaac S. Kohane;Dean F. MacKinnon;Na Cai;Hamdi Mbarek;Marcus Ising;Valentina Escott-Price;Evelin Mihailov;Franziska Degenhardt;Sandra Van der Auwera;Eske M. Derks;David M. Hougaard;Mark J. Adams;Christel M. Middeldorp;Christopher Hübel;Tim B. Bigdeli;Enrique Castelao;Nick Craddock;Karmel W. Choi;Héléna A. Gaspar;Sarah E. Medland;Jonathan R.I. Coleman;Scott D. Gordon;Henriette N. Buttenschøn;Josef Frank;Jane Hvarregaard Christensen;Thomas F. Hansen;Donald M. Lyall;Grant W. Montgomery;Jouke Jan Hottenga;Rick Jansen;Tracy M. Air;Eric Jorgenson;Naomi R. Wray;Niamh Mullins;Sara Mostafavi;Lucía Colodro-Conde;Per Hoffmann;Carol Kan;Shing Wan Choi;Donald J. MacIntyre;Abdel Abdellaoui;Ian B. Hickie;Maciej Trzaskowski;Elisabeth B. Binder;Silviu Alin Bacanu;Wouter J. Peyrot;Till F.M. Andlauer;Katrina A.S. Davis;Manuel Mattheisen;Esben Agerbo,2020-01-01,0,Molecular Psychiatry,,10.1038/s41380-020-0779-4,32424234.0,85084993846,2-s2.0-85084993846,Erratum,,https://api.elsevier.com/content/abstract/scopus_id/85084993846,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85084993846&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85084993846&origin=inward +Association of polygenic score for major depression with response to lithium in patients with bipolar disorder,Thurm,Barbara König;Ichiro Kusumi;Susan L. McElroy;Caterina Chillotti;Peter Falkai;Andreas Reif;Alfonso Tortorella;Ryota Hashimoto;Stefan Herms;Francesc Colom;Aartjan T.F. Beekman;Urban Ösby;Layla Kassem;Joanna M. Biernacka;Stephane Jamain;Nina Dalkner;Sergi Papiol;Lena Backlund;Frank Bellivier;Nirmala Akula;Susanne Bengesser;Susan G. Leckband;Enda M. Byrne;Mikael Landén;Esther Jiménez;Po Hsiu Kuo;Sarah Kittel-Schneider;Andrea Pfennig;J. Raymond DePaulo;Paul Grof;Antonio Benabarre;Stephan Ripke;Micah Cearns;Sébastien Gard;Francis M. Mondimore;Abesh Kumar Bhattacharjee;Clara Brichant-Petitjean;Sebastian Kliwicki;Andreas J. Forstner;Marie Bækvad-Hansen;Claire O’Donovan;Lina Martinsson;Bárbara Arias;Kazufumi Akiyama;Andrea Hofmann;Alexandre Dayer;Mirko Manchia;Fernando S. Goes;Markus M. Nöthen;Liping Hou;Tatyana Shekhtman;Scott R. Clark;Piotr M. Czerski;Armin Birner;Klaus Oliver Schubert;Urs Heilbronner;Norio Ozaki;Franziska Degenhardt;Hsi Chung Chen;Raffaella Ardau;Michael J. McCarthy;Mark J. Adams;Julie S. Garnham;Jean Pierre Kahn;Tim B. Bigdeli;Janice M. Fullerton;Maria Grigoroiu-Serbanescu;Pablo Cervantes;Cristiana Cruceanu;Mazda Adli;Tadafumi Kato;Yi Hsiang Hsu;Sven Cichon;Tomas Novák;Marion Leboyer;Tracy M. Air;Azmeraw T. Amare;Palmiero Monteleone;Louise Frisen;Jean Michel Aubry;Catharina Lavebratt;Naomi R. Wray;Joanna Hauser;Gonzalo Laje;Bruno Étain;Mark A. Frye;Fasil Tekola-Ayele;Per Hoffmann;John R. Kelsoe;Abdel Abdellaoui;Maciej Trzaskowski;James B. Potash;Elisabeth B. Binder;Silviu Alin Bacanu;Caroline M. Nievergelt;Marina Mitjans;Till F.M. Andlauer;Manuel Mattheisen;Esben Agerbo;Maria Del Zompo,2020-01-01,1,Molecular Psychiatry,,10.1038/s41380-020-0689-5,,85081737215,2-s2.0-85081737215,Article,EUR,https://api.elsevier.com/content/abstract/scopus_id/85081737215,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85081737215&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85081737215&origin=inward +"Genomic Relationships, Novel Loci, and Pleiotropic Mechanisms across Eight Psychiatric Disorders",Thurm,Jakob Grove;Hyejung Won;Alicia R. Martin;Phil H. Lee;Rolf Adolfsson;Miquel Casas;Andreas Reif;Bru Cormand;Duncan S. Palmer;Patrick Turley;Jonas Bybjerg-Grauholm;Josephine Elia;Russell Schachar;Robert D. Oades;Klaus Peter Lesch;Jennifer L. Moran;Yen Chen A. Feng;Hakon Hakonarson;Danielle Posthuma;Sandra K. Loo;Jaakko Kaprio;Marianne G. Pedersen;Aribert Rothenberger;Jennifer Crosbie;Ditte Demontis;Tetyana Zayats;F. Kyle Satterstrom;Meg M.J. Wang;Kate Langley;Giovanni Coppola;Marta Ribasés;Raymond K. Walters;Mark Bellgrove;Laramie E. Duncan;Preben B. Mortensen;Luis A. Rohde;Carsten B. Pedersen;Triinu Peters;Marie Bækvad-Hansen;Gísli Baldursson;Patrick W.L. Leung;M. J. Arranz;Amaia Hervás;Hreinn Stefansson;Eli A. Stahl;Maria Soler Artigas;Ole Mors;Claire Churchhouse;Elliot M. Tucker-Drob;Christie L. Burton;Timothy Poterba;Josep Antoni Ramos-Quiroga;Jacob Rosenthal;Francesco Bettella;Alysa E. Doyle;Jan Haavik;Ziarih Hawi;Thomas Werge;Olafur O. Gudmundsson;Jan Buitelaar;Eske M. Derks;Stacy Steinberg;Jonna Kuntsi;David M. Hougaard;Edwin H. Cook;Richard A. Belliveau;Joanna Martin;Felecia Cerrato;Christine S. Hansen;Verneri Anttila;Michel G. Nivard;Catharina A. Hartman;Joseph D. Buxbaum;Henry R. Kranzler;Jurjen J. Luykx;Dongmei Yu;Zhaozhong Zhu;Sarah E. Medland;George Kirov;Kimberly Chambert;Ashley Dumont;Dan E. Arking;Andrew D. Grotzinger;Søren Dalsgaard;Cristina Sánchez-Mora;G. Bragi Walters;Daniel P. Howrigan;Clement C. Zai;Philip Asherson;Hailiang Huang;Richard J.L. Anney;Tobias Banaschewski;Pieter J. Hoekstra;Paula Rovira;Esben Agerbo;Tian Ge;Sintia Belangero;Jesper B. Poulsen;James J. McGough;Anna Keski-Rahkonen,2019-12-12,32,Cell,1469-1482.e11,10.1016/j.cell.2019.11.020,31835028.0,85076270049,2-s2.0-85076270049,Article,JHU,https://api.elsevier.com/content/abstract/scopus_id/85076270049,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85076270049&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85076270049&origin=inward +Reduced neonatal brain-derived neurotrophic factor is associated with autism spectrum disorders,Thurm,Ole Mors;Jonas Bybjerg-Grauholm;Nis Borbye-Lorenzen;Michael Christiansen;Preben Bo Mortensen;Kristin Skogstrand;David Michael Hougaard;Thomas Werge;Merethe Nordentoft;Anders Børglum;Marie Bækvad-Hansen;Christian Munch Hagen,2019-12-01,5,Translational Psychiatry,,10.1038/s41398-019-0587-2,31591381.0,85073078772,2-s2.0-85073078772,Article,NNF,https://api.elsevier.com/content/abstract/scopus_id/85073078772,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85073078772&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85073078772&origin=inward +A large-scale genomic investigation of susceptibility to infection and its association with mental disorders in the Danish population,Thurm,Ole Mors;Jonas Bybjerg-Grauholm;David M. Hougaard;Ron Nudel;Merete Nordentoft;Preben B. Mortensen;Vivek Appadurai;Wesley K. Thompson;Mark J. Daly;Michael E. Benros;Anders D. Børglum;Esben Agerbo;Thomas Werge;Andrew J. Schork;Alfonso Buil;Yunpeng Wang,2019-12-01,1,Translational Psychiatry,,10.1038/s41398-019-0622-3,31712607.0,85074835924,2-s2.0-85074835924,Article,AU,https://api.elsevier.com/content/abstract/scopus_id/85074835924,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85074835924&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85074835924&origin=inward +Autism spectrum disorder and attention deficit hyperactivity disorder have a similar burden of rare protein-truncating variants,Thurm,Jakob Grove;Ole Mors;Julian B. Maller;Merete Nordentoft;Mark J. Daly;Raymond K. Walters;Duncan S. Palmer;Jonas Bybjerg-Grauholm;Emilie M. Wigdor;Christine Stevens;Preben Bo Mortensen;Jack A. Kosmicki;David M. Hougaard;Francesco Lescai;Benjamin M. Neale;Marie Bækvad-Hansen;Tarjinder Singh;Thomas M. Werge;Elise B. Robinson;Anders D. Børglum;Ditte Demontis;F. Kyle Satterstrom,2019-12-01,9,Nature Neuroscience,1961-1965,10.1038/s41593-019-0527-8,31768057.0,85075472497,2-s2.0-85075472497,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85075472497,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85075472497&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85075472497&origin=inward +"Disentangling polygenic associations between attention-deficit/hyperactivity disorder, educational attainment, literacy and language",Thurm,Jakob Grove;Ole Mors;Claire Churchhouse;Aysu Okbay;Alicia R. Martin;Merete Nordentoft;Mads V. Hollegaard;Mark J. Daly;Kimberly Chambert;Evie Stergiakouli;Simon E. Fisher;Jonatan Pallesen;Ashley Dumont;Timothy Poterba;Raymond K. Walters;Stephen Burgess;Duncan S. Palmer;Patrick Turley;Stephen V. Faraone;Jonas Bybjerg-Grauholm;Stephan Ripke;Christine Stevens;Preben Bo Mortensen;Philip S. Dale;Rich Belliveau;Jesper Buchhave Poulsen;Søren Dalsgaard;Thomas Werge;Ellen Verhoef;Thomas Damm Als;Marianne Giørtz Pedersen;David M. Hougaard;Daniel P. Howrigan;Jennifer Moran;Hailiang Huang;Jacqueline Goldstein;Mads Engel Hauberg;Joanna Martin;Felecia Cerrato;Christine S. Hansen;Julian Maller;Ditte Demontis;Carsten Bøcker Pedersen;Marie Bækved-Hansen;Chin Yang Shapland;Beate St Pourcain;Elise B. Robinson;Manuel Mattheisen;Anders D. Børglum;Esben Agerbo;Benjamin M. Neale;F. Kyle Satterstrom;George Davey Smith,2019-12-01,3,Translational Psychiatry,,10.1038/s41398-018-0324-2,30679418.0,85060519969,2-s2.0-85060519969,Article,WT,https://api.elsevier.com/content/abstract/scopus_id/85060519969,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85060519969&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85060519969&origin=inward +International meta-analysis of PTSD genome-wide association studies identifies sex- and ancestry-specific genetic risk loci,Thurm,Allison C. Provost;Michelle F. Dennis;Alicia R. Martin;Nikolaos P. Daskalakis;Jonas Bybjerg-Grauholm;Tanja Jovanovic;Nathan A. Kimbrel;Bruce R. Lawford;Sian M.J. Hemmings;Chia Yen Chen;Catrin E. Lewis;Gerome Breen;Xue Jun Qin;Megan Brashear;Adriana Lori;Michael J. Lyons;Lauren A.M. Lebois;Angela C. Bustamante;Renato Polimanti;Esmina Avdibegovic;Joel Gelernter;Marti Jett;Charles Marmar;Michael A. Hauser;Torsten Klengel;William S. Kremen;Guia Guffanti;Mark J. Daly;Sandro Galea;Elizabeth A. Bolger;Laramie E. Duncan;Katharina Domschke;Marco P. Boks;Lindsay A. Farrer;Milissa L. Kaufman;Andrew C. Heath;Christopher R. Erbes;Anthony P. King;Alaptagin Khan;Jürgen Deckert;Douglas L. Delahanty;Marie Bækvad-Hansen;Janine D. Flory;Joseph R. Calabrese;Lynn M. Almli;Eric Otto Johnson;Shareefa Dalvie;Allison E. Ashley-Koch;Adam X. Maihofer;Ian Jones;David Michael Hougaard;Elizabeth G. Atkinson;Aferdita Goci Uka;Murray B. Stein;Daniel F. Levey;Seth G. Disner;Jessica Maples-Keller;Katy Torres;Alexandra Evans;Rasha Hammamieh;Andrew Ratanatharathorn;Dewleen G. Baker;Dragan Babić;Elbert Geuze;Bekh Bradley;Mark W. Logue;Henry R. Kranzler;Supriya Harnal;Jurjen J. Luykx;Karmel W. Choi;Nastassja Koen;Charles Gillespie;Ole A. Andreassen;Jonathan R.I. Coleman;Sarah D. Linnstaedt;Richard A. Bryant;Scott D. Gordon;Anders M. Dale;Paul A. Arbisi;Jean C. Beckham;Laura J. Bierut;S. Bryn Austin;Søren B. Andersen;Ronald C. Kessler;José M. Caldas- de- Almeida;Ananda B. Amstadter;Karen Inge Karstoft;Bizu Gelaye;Jonathan I. Bisson;Norah C. Feeny;Alma Dzubur-Kulenovic;Angela G. Junglen;Miro Jakovljevic;Bozo Lugonja;Carol E. Franz;Allison E. Aiello;Caroline M. Nievergelt;David Forbes;Melanie E. Garrett;Anders D. Børglum,2019-12-01,18,Nature Communications,,10.1038/s41467-019-12576-w,31594949.0,85073062147,2-s2.0-85073062147,Article,AAL,https://api.elsevier.com/content/abstract/scopus_id/85073062147,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85073062147&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85073062147&origin=inward +Integrated analysis of environmental and genetic influences on cord blood DNA methylation in new-borns,Thurm,Jakob Grove;Meaghan J. Jones;Nikola S. Müller;Pathik D. Wadhwa;Georg Homuth;Siri E. Håberg;Robert M. Maier;Heather J. Zar;Jonas Bybjerg-Grauholm;Stefan Herms;Aartjan T.F. Beekman;Gökçen Eraslan;Michael J. Meaney;Erin C. Dunn;Jari Lahti;Gregory E. Crawford;Michael S. Kobor;Nese Direk;Michael Gill;Yihan Li;Marius Lahti-Pulkkinen;Ivan Kondofersky;Pia M. Villa;Enda M. Byrne;Baptiste Couvy-Duchesne;Zoltán Kutalik;Dan J. Stein;Julie L. MacIsaac;Conor V. Dolan;Farnush Farhadi Hassan Kiadeh;Stephan Ripke;Christian M. Page;Penelope A. Lind;Christine Søholm Hansen;Jesper Krogh;Rebecca M. Reynolds;Gail Davies;Julia Kraft;Thalia C. Eley;Toni Kim Clarke;Andreas J. Forstner;Lynsey S. Hall;Marie Bækvad-Hansen;James A. Knowles;Ian J. Deary;Carsten Horn;Shareefa Dalvie;Warren W. Kretzschmar;Hilary K. Finucane;Julien Bryois;Kieran J. O’Donnell;Fernando S. Goes;Isaac S. Kohane;Dean F. MacKinnon;Elika Garg;Na Cai;Marcus Ising;Valentina Escott-Price;Franziska Degenhardt;Eske M. Derks;David M. Hougaard;Mark J. Adams;Claudia Buss;Tim B. Bigdeli;Enrique Castelao;Nick Craddock;Nastassja Koen;Héléna A. Gaspar;Jonathan R.I. Coleman;Scott D. Gordon;Fabian J. Theis;Henriette N. Buttenschøn;Josef Frank;Karestan C. Koenen;Jane Hvarregaard Christensen;Thomas F. Hansen;David T.S. Lin;Hannele Laivuori;Eero Kajantie;Douglas H.R. Blackwood;Jouke Jan Hottenga;Rick Jansen;Tracy M. Air;Stephanie J. London;Eric Jorgenson;Naomi R. Wray;Darina Czamara;Sonja Entringer;Lucía Colodro-Conde;Wenche Nystad;Per Hoffmann;Donald J. MacIntyre;Abdel Abdellaoui;Ian B. Hickie;Maciej Trzaskowski;Silviu Alin Bacanu;Esa Hämäläinen;Till F.M. Andlauer;Manuel Mattheisen;Esben Agerbo,2019-12-01,11,Nature Communications,,10.1038/s41467-019-10461-0,31186427.0,85067229888,2-s2.0-85067229888,Article,SAMRC,https://api.elsevier.com/content/abstract/scopus_id/85067229888,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85067229888&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85067229888&origin=inward +"Development of a multiplex real-time PCR assay for the newborn screening of SCID, SMA, and XLA",Thurm,Anne Timonen;David M. Hougaard;Jonas Bybjerg-Grauholm;Cristina Gutierrez-Mateo;Stephanie Dallaire;David Goldfarb;Markku Jaakkola;Dea Adamsen;Katja Vaahtera;Daniel Schoener;Marie Baekvad-Hansen;Galina Filippov;Rongcong Wu,2019-11-02,2,International Journal of Neonatal Screening,,10.3390/ijns5040039,,85075466329,2-s2.0-85075466329,Article,,https://api.elsevier.com/content/abstract/scopus_id/85075466329,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85075466329&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85075466329&origin=inward +Response to “Newborn dried blood spot samples in Denmark: the hidden figures of secondary use and research participation”,Thurm,Bent Nørgaard-Pedersen;Jonas Bybjerg-Grauholm;Michael Christiansen;David Michael Hougaard,2019-11-01,1,European Journal of Human Genetics,1625-1627,10.1038/s41431-019-0437-y,31253879.0,85068145801,2-s2.0-85068145801,Letter,,https://api.elsevier.com/content/abstract/scopus_id/85068145801,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85068145801&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85068145801&origin=inward +Fragile X syndrome in a male with methylated premutation alleles and no detectable methylated full mutation alleles,Thurm,Audrey Thurm;Xiaohua Ding;Karen Usdin;Sarah L. Nolin;Bruce Hayward;Carolyn B. Smith;Inna Loutaev,2019-10-01,2,"American Journal of Medical Genetics, Part A",2132-2137,10.1002/ajmg.a.61286,31356000.0,85071996776,2-s2.0-85071996776,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85071996776,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85071996776&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85071996776&origin=inward +Immunity and mental illness: findings from a Danish population-based immunogenetic study of seven psychiatric and neurodevelopmental disorders,Thurm,Ole Mors;Jonas Bybjerg-Grauholm;David M. Hougaard;Simon Rasmussen;Ron Nudel;Merete Nordentoft;Rosa Lundbye Allesøe;Preben Bo Mortensen;Mark J. Daly;Wesley K. Thompson;Michael E. Benros;Camilla Koldbæk Lemvigh;Anders D. Børglum;Thomas Werge;Alfonso Buil;Morten Dybdahl Krebs,2019-09-01,3,European Journal of Human Genetics,1445-1455,10.1038/s41431-019-0402-9,30976114.0,85064242411,2-s2.0-85064242411,Article,AU,https://api.elsevier.com/content/abstract/scopus_id/85064242411,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85064242411&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85064242411&origin=inward +Genetic Variants Associated with Anxiety and Stress-Related Disorders: A Genome-Wide Association Study and Mouse-Model Study,Thurm,Jakob Grove;Ole Mors;Merete Nordentoft;Jonas Bybjerg-Grauholm;Preben B. Mortensen;Thomas Werge;Thomas Damm Als;Kirstin L. Purves;Marianne Giørtz Pedersen;David M. Hougaard;Gerome Breen;Mikaela Laine;Kalevi Trontti;Thalia C. Eley;Ewa Sokolowska;Marie Bækved-Hansen;Manuel Mattheisen;Anders D. Børglum;Iiris Hovatta;Sandra M. Meier,2019-09-01,8,JAMA Psychiatry,924-932,10.1001/jamapsychiatry.2019.1119,31116379.0,85066912475,2-s2.0-85066912475,Article,ERC,https://api.elsevier.com/content/abstract/scopus_id/85066912475,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85066912475&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85066912475&origin=inward +"Long-Term Neuropsychological Outcomes from an Open-Label Phase I/IIa Trial of 2-Hydroxypropyl-β-Cyclodextrins (VTS-270) in Niemann-Pick Disease, Type C1",Thurm,Audrey Thurm;Simona Bianconi;Cristan A. Farmer;Forbes D. Porter;Lee Ann Keener;Nicole Farhat,2019-07-01,6,CNS Drugs,677-683,10.1007/s40263-019-00642-2,31187454.0,85067391581,2-s2.0-85067391581,Article,NICHD,https://api.elsevier.com/content/abstract/scopus_id/85067391581,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85067391581&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85067391581&origin=inward +Genome-wide association study implicates CHRNA2 in cannabis use disorder,Thurm,Veera Manikandan Rajagopal;Jakob Grove;Ole Mors;Mette Nyegaard;Merete Nordentoft;Jane Hvarregaard Christensen;Mark J. Daly;Per Qvist;Jonatan Pallesen;Carsten Hjorthøj;Jonas Bybjerg-Grauholm;Kari Stefansson;Thorgeir E. Thorgeirsson;Preben Bo Mortensen;Thorarinn Tyrfingsson;Thomas Werge;Gunnar W. Reginsson;David M. Hougaard;Laura M. Huckins;Allan Timmermann;Thomas D. Als;Kalle Leppälä;Marie Bækvad-Hansen;Daniel F. Gudbjartsson;Anders D. Børglum;Esben Agerbo;Ditte Demontis;Eli A. Stahl;Hreinn Stefansson;Valgerdur Runarsdottir,2019-07-01,11,Nature Neuroscience,1066-1074,10.1038/s41593-019-0416-1,31209380.0,85067847434,2-s2.0-85067847434,Article,NHGRI,https://api.elsevier.com/content/abstract/scopus_id/85067847434,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85067847434&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85067847434&origin=inward +The Need for a Developmentally Based Measure of Social Communication Skills,Thurm,Aaron Kaat;Audrey Thurm;Stelios Georgiades;Stephen Kanne;Cristan Farmer;Somer Bishop,2019-06-01,1,Journal of the American Academy of Child and Adolescent Psychiatry,555-560,10.1016/j.jaac.2018.12.010,31130206.0,85066035363,2-s2.0-85066035363,Editorial,NICHD,https://api.elsevier.com/content/abstract/scopus_id/85066035363,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85066035363&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85066035363&origin=inward +Post-traumatic stress following military deployment: Genetic associations and cross-disorder genetic correlations,Thurm,Jonas Bybjerg-Grauholm;David M. Hougaard;Karen Inge Karstoft;Adam X. Maihofer;Caroline M. Nievergelt;Robert J. Ursano;Wesley K. Thompson;Søren B. Andersen;Thomas Werge;Ole A. Andreassen;Murray B. Stein;Marie Bækvad-Hansen;Yunpeng Wang,2019-06-01,0,Journal of Affective Disorders,350-357,10.1016/j.jad.2019.04.070,30999091.0,85064147578,2-s2.0-85064147578,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85064147578,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85064147578&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85064147578&origin=inward +"Publisher Correction: Gene expression imputation across multiple brain regions provides insights into schizophrenia risk (Nature Genetics, (2019), 51, 4, (659-674), 10.1038/s41588-019-0364-4)",Thurm,Thanneer M. Perumal;Aiden Corvin;Benjamin A. Logsdon;Hiroyoshi Toyoshiba;Richard Bruggeman;Vaughan J. Carr;Srdjan Djurovic;Vahram Haroutunian;Elizabeth Bevilacqua;Jurgen Del Favero;Ronald Y.L. Chen;Brendan Bulik-Sullivan;Barbara K. Lipska;James J. Crowley;Veera M. Rajagopal;Elodie Drapeau;Guiqing Cai;Laura M. Huckins;Nadine Cohen;Noa Carrera;Enrico Domenici;Paul Cormican;David A. Lewis;Madeline Alexander;Gary Donohoe;Hoang T. Nguyen;Sarah E. Bergen;Ditte Demontis;Hardik R. Shah;C. Robert Cloninger;Michael Davidson;Kristen K. Dang;Panos Roussos;David Curtis;Martin Begemann;Kiran Girdhar;Stephan Ripke;Tune H. Pers;Silviu A. Bacanu;Wiepke Cahn;Shaun Purcell;Kimberly D. Chambert;Milind C. Mahajan;Amanda Dobbyn;Jessica S. Johnson;Rita M. Cantor;Gabriel Hoffman;Laurent Essioux;Antonio F. Pardiñas;Menachem Fromer;Jubao Duan;James T.R. Walters;Phil Lee;Nancy G. Buccola;Naser Durmishi;Chang Gyu Hahn;Judit Bene;Eric F.C. Cheung;Franziska Degenhardt;Lara M. Mangravite;Eric R. Gamazon;Stanley V. Catts;Eric Y.H. Chen;Douglas M. Ruderfer;Ingrid Agartz;Dimitris Dikeos;Raymond C.K. Chan;Richard A. Belliveau;Keisuke Hirai;Tim B. Bigdeli;Dominique Campion;Joseph D. Buxbaum;James Boocock;Siow Ann Chong;Nick Craddock;Timothy Dinan;William Byerley;David Cohen;Peter A. Holmans;Peter Eichhammer;David A. Collier;Johan Eriksson;Weiqing Wang;Donald W. Black;Mette A. Peters;Lambertus L. Klein;Raquel E. Gur;Eric Schadt;Kenneth L. Davis;Frank Dudbridge;Farooq Amin;Randy L. Buckner;Wei Cheng;Hailiang Huang;Kai How Farh;Thomas D. Als;Robin Kramer;Margot Albus;Esben Agerbo;Benjamin M. Neale,2019-06-01,0,Nature Genetics,1068,10.1038/s41588-019-0435-6,31086353.0,85065757972,2-s2.0-85065757972,Erratum,,https://api.elsevier.com/content/abstract/scopus_id/85065757972,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85065757972&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85065757972&origin=inward +Haploinsufficiency of the brain-derived neurotrophic factor gene is associated with reduced pain sensitivity,Thurm,Kristen M. Danley;Andrew J. Mannes;Jack W. Tsao;Shannon R. Fuhr;Amanda E. Huey;Jack A. Yanovski;Joan C. Han;Mark D. Lee;Michael J. Iadarola;Tanya Lehky;Matthew R. Sapio;Stephen J. Sharp;Danielle M. LaPaglia;Audrey E. Thurm,2019-05-01,3,Pain,1070-1081,10.1097/j.pain.0000000000001485,30855519.0,85065086783,2-s2.0-85065086783,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85065086783,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85065086783&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85065086783&origin=inward +"Association of Polygenic Liabilities for Major Depression, Bipolar Disorder, and Schizophrenia with Risk for Depression in the Danish Population",Thurm,Katherine L. Musliner;John J. McGrath;David M. Hougaard;Jonas Bybjerg-Grauholm;Ole Mors;Merete Nordentoft;Preben B. Mortensen;Carsten B. Pedersen;Nis P. Suppli;Marianne G. Pedersen;Anders D. Børglum;Thomas Werge;Esben Agerbo;Ole Andreassen;Marie Bækvad-Hansen,2019-05-01,17,JAMA Psychiatry,516-525,10.1001/jamapsychiatry.2018.4166,30698613.0,85061012249,2-s2.0-85061012249,Article,NIDA,https://api.elsevier.com/content/abstract/scopus_id/85061012249,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85061012249&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85061012249&origin=inward +Genome-wide association study identifies 30 loci associated with bipolar disorder,Thurm,Jakob Grove;Richard Belliveau;Monika Budde;Melissa J. Green;Miquel Casas;Chun Chieh Fan;Tatiana M. Foroud;Erlend Bøen;Jonas Bybjerg-Grauholm;Srdjan Djurovic;Stefan Herms;Alexander W. Charney;Jack D. Barchas;Nelson B. Freimer;Gerome Breen;Judith A. Badner;Liz Forty;Sarah E. Bergen;José Guzman-Parra;Julie Garnham;Simone de Jong;Enda M. Byrne;Amanda L. Dobbyn;Christine Fraser;David Curtis;J. Raymond DePaulo;Margit Burmeister;Stephan Ripke;Tune H. Pers;Marco P. Boks;Claudia Giambartolomei;Maria Hipolito;Toni Kim Clarke;Andreas J. Forstner;Marie Bækvad-Hansen;Jessica S. Johnson;Verneri Antilla;Katherine Gordon-Smith;Huda Akil;Eli A. Stahl;Claire Churchhouse;Dominic Holland;Piotr M. Czerski;Urs Heilbronner;Valentina Escott-Price;Franziska Degenhardt;Ney Alliey-Rodriguez;Adebayo Anjorin;Liam Abbott;Stacy Steinberg;Andrew McQuillin;Danfeng Chen;Vassily Trubetskoy;William Bunney;Felecia Cerrato;Swapnil Awasthi;Katrin Gade;Martin Hautzinger;Pablo Cervantes;Cristiana Cruceanu;Carsten Bøcker Pedersen;James Boocock;Jennifer M.Whitehead Pavlides;Tiffany A. Greenwood;Héléna A. Gaspar;Matthew Flickinger;Laura Huckins;Jonathan R.I. Coleman;William Byerley;Nicholas Bass;Peter A. Holmans;Christiaan A. de Leeuw;Anders M. Dale;Josef Frank;Louise Frisén;Scott D. Gordon;Kimberly Chambert;Marian L. Hamshere;Ashley Dumont;David W. Craig;Stéphane Jamain;Jaqueline Goldstein;Torbjørn Elvsåshagen;William Coryell;Elaine K. Green;Alexander L. Richards;Michael Bauer;Marianne Giørtz Pedersen;Jurgen Del-Favero;Diane Gage;Thomas D. Als;Sascha B. Fischer;Per Hoffmann;Yunpeng Wang;Maciej Trzaskowski;Manuel Mattheisen;Esben Agerbo;Anders Juréus;Weihua Guan;Diego Albani,2019-05-01,143,Nature Genetics,793-803,10.1038/s41588-019-0397-8,31043756.0,85065180508,2-s2.0-85065180508,Article,VR,https://api.elsevier.com/content/abstract/scopus_id/85065180508,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85065180508&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85065180508&origin=inward +Variable DNA methylation in neonates mediates the association between prenatal smoking and birth weight,Thurm,Jakob Grove;Ole Mors;Mads Vilhelm Hollegaard;Merete Nordentoft;David Michael Hougaard;Mady Hornig;Jonas Bybjerg-Grauholm;M. Daniele Fallin;Eilis Hannon;Preben Bo Mortensen;Christine Søholm Hansen;Thomas Werge;Marianne Giørtz Pedersen;Christine Ladd-Acosta;Abraham Reichenberg;Michaeline Bresnahan;Marie Bækvad-Hansen;Joseph D. Buxbaum;Diana Schendel;Anders D. Børglum;Jonathan Mill,2019-04-15,4,Philosophical Transactions of the Royal Society B: Biological Sciences,,10.1098/rstb.2018.0120,30966880.0,85064163758,2-s2.0-85064163758,Article,NICHD,https://api.elsevier.com/content/abstract/scopus_id/85064163758,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85064163758&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85064163758&origin=inward +Gene expression imputation across multiple brain regions provides insights into schizophrenia risk,Thurm,Thanneer M. Perumal;Aiden Corvin;Benjamin A. Logsdon;Hiroyoshi Toyoshiba;Richard Bruggeman;Vaughan J. Carr;Srdjan Djurovic;Vahram Haroutunian;Elizabeth Bevilacqua;Jurgen Del Favero;Ronald Y.L. Chen;Brendan Bulik-Sullivan;Barbara K. Lipska;James J. Crowley;Veera M. Rajagopal;Elodie Drapeau;Guiqing Cai;Laura M. Huckins;Nadine Cohen;Noa Carrera;Enrico Domenici;Paul Cormican;David A. Lewis;Madeline Alexander;Gary Donohoe;Hoang T. Nguyen;Sarah E. Bergen;Ditte Demontis;Hardik R. Shah;C. Robert Cloninger;Michael Davidson;Kristen K. Dang;Panos Roussos;David Curtis;Martin Begemann;Kiran Girdhar;Stephan Ripke;Tune H. Pers;Silviu A. Bacanu;Wiepke Cahn;Shaun Purcell;Kimberly D. Chambert;Milind C. Mahajan;Amanda Dobbyn;Jessica S. Johnson;Rita M. Cantor;Gabriel Hoffman;Laurent Essioux;Antonio F. Pardiñas;Menachem Fromer;Jubao Duan;James T.R. Walters;Phil Lee;Nancy G. Buccola;Naser Durmishi;Chang Gyu Hahn;Judit Bene;Eric F.C. Cheung;Franziska Degenhardt;Lara M. Mangravite;Eric R. Gamazon;Stanley V. Catts;Eric Y.H. Chen;Douglas M. Ruderfer;Ingrid Agartz;Dimitris Dikeos;Raymond C.K. Chan;Richard A. Belliveau;Keisuke Hirai;Tim B. Bigdeli;Dominique Campion;Joseph D. Buxbaum;James Boocock;Siow Ann Chong;Nick Craddock;Timothy Dinan;William Byerley;David Cohen;Peter A. Holmans;Peter Eichhammer;David A. Collier;Johan Eriksson;Weiqing Wang;Donald W. Black;Mette A. Peters;Lambertus L. Klein;Raquel E. Gur;Eric Schadt;Kenneth L. Davis;Frank Dudbridge;Farooq Amin;Randy L. Buckner;Wei Cheng;Hailiang Huang;Kai How Farh;Thomas D. Als;Robin Kramer;Margot Albus;Esben Agerbo;Benjamin M. Neale,2019-04-01,29,Nature Genetics,659-674,10.1038/s41588-019-0364-4,30911161.0,85063585118,2-s2.0-85063585118,Article,IDPH,https://api.elsevier.com/content/abstract/scopus_id/85063585118,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85063585118&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85063585118&origin=inward +Early Indicators of Creatine Transporter Deficiency,Thurm,Judith S. Miller;Audrey Thurm;Simona Bianconi;Whitney Guthrie;Can Ficicioglu;Rebecca P. Thomas;Robert J. Davis;Forbes D. Porter;Amanda Bennett;Aleksandra Bruchey,2019-03-01,0,Journal of Pediatrics,283-285,10.1016/j.jpeds.2018.11.008,30579583.0,85058667948,2-s2.0-85058667948,Article,NICHD,https://api.elsevier.com/content/abstract/scopus_id/85058667948,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85058667948&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85058667948&origin=inward +A genome-wide association study of shared risk across psychiatric disorders implicates gene regulation during fetal neurodevelopment,Thurm,Ole Mors;Hyejung Won;Ron Nudel;Merete Nordentoft;Vivek Appadurai;Wesley K. Thompson;Mark J. Daly;Alfonso Buil;Jonas Bybjerg-Grauholm;Preben Bo Mortensen;Malene Revsbech Christiansen;Thomas Werge;Mike Gandal;Naomi R. Wray;Marianne Giørtz Pedersen;Daniel H. Geschwind;David M. Hougaard;Andrew J. Schork;Carsten Bøcker Pedersen;Marie Bækved-Hansen;Anders D. Børglum;Esben Agerbo;Benjamin M. Neale;Olivier Delaneau,2019-03-01,31,Nature Neuroscience,353-361,10.1038/s41593-018-0320-0,30692689.0,85060777615,2-s2.0-85060777615,Article,NHMRC,https://api.elsevier.com/content/abstract/scopus_id/85060777615,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85060777615&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85060777615&origin=inward +Identification of common genetic risk variants for autism spectrum disorder,Thurm,Jakob Grove;Mette Nyegaard;Aarno Palotie;Hyejung Won;Alicia R. Martin;Ashley L. Dumont;Duncan S. Palmer;Patrick Turley;Jonas Bybjerg-Grauholm;Srdjan Djurovic;Swapnil Awashti;Aartjan T.F. Beekman;Rich Belliveau;Jennifer L. Moran;Sven Sandin;Erin C. Dunn;Gregory E. Crawford;Nese Direk;Beate St Pourcain;Ditte Demontis;F. Kyle Satterstrom;Enda M. Byrne;Baptiste Couvy-Duchesne;Lambertus Klei;Per Qvist;Jonatan Pallesen;Raymond K. Walters;Conor V. Dolan;Panos Roussos;Farnush Farhadi Hassan Kiadeh;Xinyi Xu;Kathryn Roeder;Stephan Ripke;Gail Davies;Karola Rehnström;Jane H. Christensen;Patrick F. Sullivan;Evald Saemundsen;Thalia C. Eley;Toni Kim Clarke;Andreas J. Forstner;Marie Bækvad-Hansen;Christine R. Stevens;Ian J. Deary;Hreinn Stefansson;George Davey Smith;Jennifer Reichert;Claire Churchhouse;Hilary K. Finucane;Terje Nærland;Julien Bryois;Karin Dellenvall;Na Cai;Francesco Bettella;Valentina Escott-Price;Timothy dPoterba;Jesper Buchhave Poulsen;Franziska Degenhardt;Eske M. Derks;Stacy Steinberg;Mark J. Adams;Mads Engel Hauberg;Joanna Martin;Felecia Cerrato;Tim B. Bigdeli;Christine S. Hansen;Enrique Castelao;Joseph D. Buxbaum;Julian Maller;Carsten Bøcker Pedersen;Nick Craddock;Elise B. Robinson;Ole A. Andreassen;Jonathan R.I. Coleman;Henriette N. Buttenschøn;Richard Anney;Mads V. Hollegaard;Kimberly Chambert;Christina M. Hultman;Jacqueline I. Goldstein;Douglas H.R. Blackwood;Tracy M. Air;G. Bragi Walters;Naomi R. Wray;Marianne Giørtz Pedersen;Daniel P. Howrigan;Lucía Colodro-Conde;Sigrun Hope;Hailiang Huang;Abraham Reichenberg;Thomas D. Als;Bernie Devlin;Abdel Abdellaoui;Maciej Trzaskowski;Elisabeth B. Binder;Silviu Alin Bacanu;Till F.M. Andlauer;Manuel Mattheisen;Esben Agerbo;Silvia De Rubeis,2019-03-01,172,Nature Genetics,431-444,10.1038/s41588-019-0344-8,30804558.0,85062110842,2-s2.0-85062110842,Article,,https://api.elsevier.com/content/abstract/scopus_id/85062110842,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85062110842&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85062110842&origin=inward +Genome-wide meta-Analysis identifies BARX1 and EML4-MTA3 as new loci associated with infantile hypertrophic pyloric stenosis,Thurm,João Fadista;Jonas Bybjerg-Grauholm;David M. Hougaard;Mads Melbye;Bjarke Feenstra;Hans Matsson;Paul A. Romitti;Heather A. Boyd;Denise M. Kay;James L. Mills;Sanne Gørtz;Agneta Nordenskjöld;Michele Caggana;Frank Geller;Line Skotte,2019-01-15,4,Human Molecular Genetics,332-340,10.1093/hmg/ddy347,30281099.0,85059503621,2-s2.0-85059503621,Article,"FSS, DFF",https://api.elsevier.com/content/abstract/scopus_id/85059503621,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85059503621&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85059503621&origin=inward +State of the field: Differentiating intellectual disability from autism spectrum disorder,Thurm,Audrey Thurm;Emma Salzman;Catherine Lord;Cristan Farmer;Somer Bishop,2019-01-01,8,Frontiers in Psychiatry,,10.3389/fpsyt.2019.00526,,85078967913,2-s2.0-85078967913,Review,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85078967913,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85078967913&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85078967913&origin=inward +"Genetic Variants in the 9p21.3 Locus Associated with Glioma Risk in Children, Adolescents, and Young Adults: A case–control study",Thurm,Ulf Hjalmars;David M. Hougaard;Jonas Bybjerg-Grauholm;Beatrice Melin;Anna M. Dahlin;Anna K. Kahler;Carl Wibom;Christina M. Hultman;Isabelle Deltour;Ulrika Andersson;Robert Karlsson,2019-01-01,0,Cancer Epidemiology Biomarkers and Prevention,1252-1258,10.1158/1055-9965.EPI-18-1026,31040135.0,85068755478,2-s2.0-85068755478,Article,VR,https://api.elsevier.com/content/abstract/scopus_id/85068755478,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85068755478&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85068755478&origin=inward +Volumetric Analysis of the Basal Ganglia and Cerebellar Structures in Patients with Phelan-McDermid Syndrome,Thurm,Mustafa Sahin;Audrey Thurm;Joseph D. Buxbaum;Elizabeth Berry-Kravis;Craig M. Powell;Latha Soorya;Rajna Filip-Dhima;Jonathan A. Bernstein;Siddharth Srivastava;Alexander Kolevzon;Anna K. Prohl;Benoit Scherrer;Simon K. Warfield;Kush Kapur,2019-01-01,4,Pediatric Neurology,37-43,10.1016/j.pediatrneurol.2018.09.008,30396833.0,85055891350,2-s2.0-85055891350,Article,NICHD,https://api.elsevier.com/content/abstract/scopus_id/85055891350,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85055891350&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85055891350&origin=inward +A major role for common genetic variation in anxiety disorders,Thurm,Ole Mors;Merete Nordentoft;Kristin K. Nicodemus;Jonas Bybjerg-Grauholm;Preben Bo Mortensen;Thomas Werge;Kirstin L. Purves;David Hougaard;Christopher Rayner;Gerome Breen;John M. Hettema;J. Jürgen Deckert;Thalia C. Eley;Carol Kan;Christopher Hübel;Marie Bækvad-Hansen;Rosa Cheesman;Matthew Hotopf;Katrina A.S. Davis;Andrew M. McIntosh;Héléna A. Gaspar;Anders D. Børglum;Shing Wan Cho;Manuel Mattheisen;Sandra M. Meier;Jonathan R.I. Coleman,2019-01-01,12,Molecular Psychiatry,,10.1038/s41380-019-0559-1,,85075328965,2-s2.0-85075328965,Article,FNIH,https://api.elsevier.com/content/abstract/scopus_id/85075328965,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85075328965&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85075328965&origin=inward +"Publisher Correction: Common schizophrenia alleles are enriched in mutation-intolerant genes and in regions under strong background selection (Nature Genetics, (2018), 50, 3, (381-389), 10.1038/s41588-018-0059-2)",Thurm,Jakob Grove;Hyejung Won;Leon Hubbard;Alison Goate;Jonas Bybjerg-Grauholm;Srdjan Djurovic;Sarah Tosato;Elliott Rees;Enrique Santiago;Charlene Thomas;Wolfgang Maier;David J. Porteous;Gerome Breen;Laura M. Huckins;Noa Carrera;Petroula Proitsi;John Powell;André Lacour;Darren Cameron;Enda M. Byrne;Britta Schurmann;Alfredo Ramirez;Andrew J. Pocklington;Simon Lovestone;Udo Dannlowski;Stephan Ripke;Preben Bo Mortensen;Christine Søholm Hansen;Reiner Heun;Engilbert Sigurdsson;David Craig;Thalia C. Eley;Amy Lynham;Michelle Lupton;Marie Bækvad-Hansen;Dmitriy Drichel;Bernhard T. Baune;Peter Passmore;Carlos Cruchaga;Hreinn Stefansson;Eli A. Stahl;Antonio F. Pardiñas;Ole Mors;Michael O’Donovan;Merete Nordentoft;Richard Abraham;Naser Durmishi;Markus Nothen;Valentina Escott-Price;Sophie Bishop;Petra Nowotny;Teimuraz Silagadze;Frank Jessen;Thomas Werge;Stacy Steinberg;David M. Hougaard;Douglas M. Ruderfer;Pamela Sklar;Stephen Todd;Vera Golimbet;Carsten Bøcker Pedersen;Steven A. McCarroll;Sarah Taylor;Ole A. Andreassen;Amy Gerrish;Jaspreet Pahwa;Bernadette McGuinness;Armando Caballero;Tim Becker;Robert Plomin;Milica Pejovic-Milovancevic;Nicola Denning;Kiran Mantripragada;Paul Hollingworth;Peter Holmans;Marian L. Hamshere;Espen Molden;Kari Stefansson;Christine Herold;Denise Harold;Naomi R. Wray;Marianne Giørtz Pedersen;Daniel H. Geschwind;Nicholas G. Martin;Jade Chapman;Thomas D. Als;Jun Han;John C. Morris;Rebecca Sims;James H. MacCabe;Sophie E. Legge;Andrew M. McIntosh;Manuel Mattheisen;Anders D. Børglum;Esben Agerbo;Caroline Hayward;Janet Johnston;Kevin Mayo,2019-01-01,2,Nature Genetics,,10.1038/s41588-019-0450-7,31160808.0,85066976804,2-s2.0-85066976804,Erratum,,https://api.elsevier.com/content/abstract/scopus_id/85066976804,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85066976804&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85066976804&origin=inward +Discovery of the first genome-wide significant risk loci for attention deficit/hyperactivity disorder,Thurm,Jakob Grove;Alicia R. Martin;Hyejung Won;Jobst Meyer;Freimer Nelson;Amaia Hervas;Katrina L. Grasby;Beate Herpertz-Dahlmann;Duncan S. Palmer;Patrick Turley;Fernando Mulas;Jonas Bybjerg-Grauholm;Josephine Elia;Gerd Lehmkuhl;T. Trang Nguyen;Robert D. Oades;Tobias J. Banaschewski;Rich Belliveau;Alice Charach;Marcella Rietschel;Sandra K. Loo;Lindsey Kent;Stefan Johansson;Ana Miranda;Miguel Casas;Michael Gill;Nina Roth Mota;Herbert Royers;Marcel Romanos;Aribert Rothenberger;Jennifer Crosbie;Ditte Demontis;Özgür Albayrak;F. Kyle Satterstrom;Nanda Lambregts-Rommelse;Julian B. Maller;Marta Ribasés;Sarah Kittel-Schneider;Haukur Palmason;Jonatan Pallesen;Raymond K. Walters;Michael Gandal;Anke Hinney;Stephan Ripke;Eric Mick;Michael J. Owen;Aisling Mulligan;Christine Freitag;Abel Ickowitz;Jennifer Moran;Marie Bækvad-Hansen;Gísli Baldursson;Manuel Föcker;Hreinn Stefansson;Claire Churchhouse;Mara Hutz;Timothy Poterba;Josep Antoni Ramos-Quiroga;Alysa E. Doyle;Michael C. O’Donovan;Ziarih Hawi;Frank Middletion;Jesper Buchhave Poulsen;Olafur O. Gudmundsson;Mads Engel Hauberg;Jan K. Buitelaar;Joanna Martin;Felecia Cerrato;Christine S. Hansen;Carsten Bøcker Pedersen;Jasmin Romanos;Elise B. Robinson;Astrid Dempfle;Olga Rivero;Claiton Bau;Mads V. Hollegaard;Sarah Hohmann;Kimberly Chambert;Eugenio Grevet;Peter Holmans;Ashley Dumont;Margaret J. Wright;Jacqueline I. Goldstein;Johannes Hebebrand;Christine Stevens;G. Bragi Walters;Marianne Giørtz Pedersen;Joseph Biederman;Nicholas Eriksson;Daniel P. Howrigan;Maria Jesús Arranz;Nicholas G. Martin;Hailiang Huang;Thomas D. Als;Richard J.L. Anney;Richard P. Ebstein;Manuel Mattheisen;Esben Agerbo;Tobias J. Renner;James J. McGough,2019-01-01,260,Nature Genetics,63-75,10.1038/s41588-018-0269-7,30478444.0,85057436335,2-s2.0-85057436335,Article,H2020,https://api.elsevier.com/content/abstract/scopus_id/85057436335,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85057436335&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85057436335&origin=inward +Association of Whole-Genome and NETRIN1 Signaling Pathway–Derived Polygenic Risk Scores for Major Depressive Disorder and White Matter Microstructure in the UK Biobank,Thurm,Jakob Grove;Lili Milani;Georg Homuth;Peter McGuffin;Robert M. Maier;Jonas Bybjerg-Grauholm;Yanni Zeng;Stefan Herms;Yuri Milaneschi;Aartjan T.F. Beekman;Wolfgang Maier;Matthias Nauck;Jude Gibson;Stephen M. Lawrie;Erin C. Dunn;Gregory E. Crawford;Nese Direk;Michael Gill;Yihan Li;Divya Mehta;Enda M. Byrne;Baptiste Couvy-Duchesne;Zoltán Kutalik;Patrick McGrath;Conor V. Dolan;Farnush Farhadi Hassan Kiadeh;Dale R. Nyholt;Stephan Ripke;Simon R. Cox;Mandy Johnstone;Penelope A. Lind;Christine Søholm Hansen;Jesper Krogh;Michael J. Owen;Francis M. Mondimore;Gail Davies;Julia Kraft;Thalia C. Eley;Toni Kim Clarke;Andreas J. Forstner;Lynsey S. Hall;Marie Bækvad-Hansen;James A. Knowles;Ian J. Deary;Hogni Oskarsson;Carsten Horn;Warren W. Kretzschmar;Bernard Ng;Jonathan Marchini;Hilary K. Finucane;Julien Bryois;Fernando S. Goes;Isaac S. Kohane;Dean F. MacKinnon;Na Cai;Hamdi Mbarek;Marcus Ising;Valentina Escott-Price;Evelin Mihailov;Franziska Degenhardt;Paul F. O'Reilly;Eske M. Derks;David M. Hougaard;Mark J. Adams;Christel M. Middeldorp;Tim B. Bigdeli;Enrique Castelao;Michel G. Nivard;Nick Craddock;Héléna A. Gaspar;Sarah E. Medland;Jonathan R.I. Coleman;Scott D. Gordon;Henriette N. Buttenschøn;Josef Frank;Jane Hvarregaard Christensen;Thomas F. Hansen;Grant W. Montgomery;Douglas H.R. Blackwood;Jouke Jan Hottenga;Rick Jansen;Tracy M. Air;Eric Jorgenson;Naomi R. Wray;Niamh Mullins;Xueyi Shen;Sara Mostafavi;Lucía Colodro-Conde;Per Hoffmann;Chris S. Haley;Donald J. MacIntyre;Abdel Abdellaoui;Miruna C. Barbu;Ian B. Hickie;Maciej Trzaskowski;Elisabeth B. Binder;Silviu Alin Bacanu;Till F.M. Andlauer;Manuel Mattheisen;Esben Agerbo,2019-01-01,6,Biological Psychiatry: Cognitive Neuroscience and Neuroimaging,91-100,10.1016/j.bpsc.2018.07.006,,85052912914,2-s2.0-85052912914,Article,RCPE,https://api.elsevier.com/content/abstract/scopus_id/85052912914,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85052912914&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85052912914&origin=inward +Bipolar multiplex families have an increased burden of common risk variants for psychiatric disorders,Thurm,Richard Belliveau;Monika Budde;Stephanie H. Witt;Francisco J. Cabaleiro Fabeiro;Miquel Casas;Chun Chieh Fan;Tatiana M. Foroud;Jose Guzman-Parra;Erlend Bøen;Stefan Herms;Jonas Bybjerg-Grauholm;Srdjan Djurovic;Susana Gil Flores;Alexander W. Charney;Jack D. Barchas;Nelson B. Freimer;Manolis Kogevinas;Gerome Breen;Judith A. Badner;Liz Forty;Yolanda de Diego-Otero;Stefanie Heilmann-Heimbach;Jerome C. Foo;Sarah E. Bergen;Julie Garnham;Guillermo Orozco Diaz;Simone de Jong;Amanda L. Dobbyn;Christine Fraser;J. Raymond DePaulo;Margit Burmeister;Stephan Ripke;Georg Auburger;Tune H. Pers;Claudia Giambartolomei;Jana Strohmaier;Toni Kim Clarke;Andreas J. Forstner;Marie Bækvad-Hansen;Verneri Antilla;Maria José González;Huda Akil;Eli A. Stahl;Claire Churchhouse;Francisco del Río Noriega;Jesus Haro González;Piotr M. Czerski;Valentina Escott-Price;Jens Treutlein;Franziska Degenhardt;Ney Alliey-Rodriguez;Adebayo Anjorin;Fermin Perez Perez;Stacy Steinberg;Liam Abbott;Andrew McQuillin;Danfeng Chen;Vassily Trubetskoy;William Bunney;Felecia Cerrato;Swapnil Awasthi;Katrin Gade;Pablo Cervantes;Cristiana Cruceanu;Carsten Bøcker Pedersen;James Boocock;Jennifer M.Whitehead Pavlides;Héléna A. Gaspar;Matthew Flickinger;Jonathan R.I. Coleman;William Byerley;Nicholas Bass;Peter A. Holmans;Christiaan A. de Leeuw;Anders M. Dale;Josef Frank;Louise Frisén;Sven Cichon;Kimberly Chambert;Ashley Dumont;David W. Craig;Torbjørn Elvsåshagen;Fabian Streit;William Coryell;Berta Moreno-Küstner;Michael Bauer;Jurgen Del-Favero;Marco Boks;Diane Gage;Per Hoffmann;Thomas D. Als;Sascha B. Fischer;Yunpeng Wang;Maciej Trzaskowski;Till F.M. Andlauer;Manuel Mattheisen;Esben Agerbo;Diego Albani,2019-01-01,1,Molecular Psychiatry,,10.1038/s41380-019-0558-2,31712721.0,85075169356,2-s2.0-85075169356,Article,DFG,https://api.elsevier.com/content/abstract/scopus_id/85075169356,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85075169356&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85075169356&origin=inward +Individualizing the definition of seizure clusters based on temporal clustering analysis,Theodore,Maxime O. Baud;Vikram R. Rao;Victor Ferastraoaru;William H. Theodore;Sheryl R. Haut;Daniel M. Goldenholz;Sharon Chiang;Robert Moss,2020-07-01,0,Epilepsy Research,,10.1016/j.eplepsyres.2020.106330,32305858.0,85083239781,2-s2.0-85083239781,Article,TSA,https://api.elsevier.com/content/abstract/scopus_id/85083239781,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85083239781&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85083239781&origin=inward +Prospective validation study of an epilepsy seizure risk system for outpatient evaluation,Theodore,John M. Stern;Marina Vannucci;Vikram R. Rao;William H. Theodore;Daniel M. Goldenholz;Sharon Chiang;Jay Gavvala;Jonathan K. Kleen;Robert Moss;Zulfi Haneef,2020-01-01,3,Epilepsia,29-38,10.1111/epi.16397,31792970.0,85076111669,2-s2.0-85076111669,Article,BIDMC,https://api.elsevier.com/content/abstract/scopus_id/85076111669,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85076111669&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85076111669&origin=inward +Response to commentary on recommendations for the use of structural MRI in the care of patients with epilepsy: A consensus report from the ILAE Neuroimaging Task Force,Theodore,Andrea Bernasconi;Ingmar Blümcke;Graeme Jackson;Ravnoor S. Gill;Philippe Ryvlin;Paolo Federico;Neda Bernasconi;Angelo Labate;William Theodore;Anna E. Vaudano;Robert Edward Hogan;Matthias Koepp;Fernando Cendes,2019-10-01,0,Epilepsia,2143-2144,10.1111/epi.16324,31468504.0,85073125733,2-s2.0-85073125733,Letter,,https://api.elsevier.com/content/abstract/scopus_id/85073125733,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85073125733&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85073125733&origin=inward +Convection-Enhanced Delivery of Muscimol in Patients with Drug-Resistant Epilepsy,Theodore,John D. Heiss;William H. Theodore;John A. Butman;Susumu Sato;Davis P. Argersinger;Omar I. Khan,2019-07-01,3,Clinical Neurosurgery,E4-E15,10.1093/neuros/nyy480,30407567.0,85068196158,2-s2.0-85068196158,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85068196158,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85068196158&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85068196158&origin=inward +Recommendations for the use of structural magnetic resonance imaging in the care of patients with epilepsy: A consensus report from the International League Against Epilepsy Neuroimaging Task Force,Theodore,Andrea Bernasconi;Graeme D. Jackson;Ingmar Blümcke;Ravnoor S. Gill;William H. Theodore;Anna Elisabetta Vaudano;Paolo Federico;Philippe Ryvlin;Neda Bernasconi;Angelo Labate;Robert Edward Hogan;Matthias J. Koepp;Fernando Cendes,2019-06-01,14,Epilepsia,1054-1068,10.1111/epi.15612,31135062.0,85066798430,2-s2.0-85066798430,Article,,https://api.elsevier.com/content/abstract/scopus_id/85066798430,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85066798430&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85066798430&origin=inward +The feasibility and impact of the EMOVE intervention on self-efficacy and outcome expectations for exercise in epilepsy,Theodore,Elizabeth Galik;William H. Theodore;N. Jennifer Klinedinst;Edythe Wiggs;Irene H. Dustin;Barbara Resnick;Kathleen Michael,2019-04-01,2,Journal of Neuroscience Nursing,95-100,10.1097/JNN.0000000000000425,30649092.0,85062407663,2-s2.0-85062407663,Article,,https://api.elsevier.com/content/abstract/scopus_id/85062407663,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85062407663&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85062407663&origin=inward +Anterior superior temporal sulcus is specialized for non-rigid facial motion in both monkeys and humans,Ungerleider,Leslie G. Ungerleider;Andrea Stacy;Molly Flessert;Shruti Japee;Hui Zhang,2020-09-01,0,NeuroImage,,10.1016/j.neuroimage.2020.116878,,85084490123,2-s2.0-85084490123,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85084490123,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85084490123&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85084490123&origin=inward +From visual awareness to consciousness without sensory input: The role of spontaneous brain activity,Ungerleider,Marine Vernet;Shruti Japee;Romain Quentin;Leslie G. Ungerleider,2020-05-18,1,Cognitive Neuropsychology,216-219,10.1080/02643294.2020.1731442,32093525.0,85085566392,2-s2.0-85085566392,Note,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85085566392,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85085566392&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85085566392&origin=inward +Accelerating the Evolution of Nonhuman Primate Neuroimaging,Ungerleider,Olivier Coulon;Béchir Jarraya;Zheng Wang;Adrien Meguerditchian;Luciano Simone;Piotr Majka;Julien Sein;Chika Sato;Ming Zhan;Stephanie J. Forkel;Clare Kelly;Renee Hartig;Xiaojin Liu;Karl Heinz Nenning;Wasana Madushanka;Vikas Pareek;Yang Gao;Robert Leech;Amir Shmuel;Damien A. Fair;Fabien Balezeau;David C. Van Essen;Clementine Bodin;Tomoko Sakai;Lei Ai;Andrew Fox;Henry Evrard;Pamela García-Saldivar;Afonso C. Silva;Céline Amiez;Susann Boretius;Christopher I. Petkov;Stephen Sawiak;Bastien Cagna;Wendy Jarrett;Sean Froudist-Walsh;Michele A. Basso;Anna Wang Roe;Colline Poirier;Jonathan Smallwood;Dirk Jan Ardesch;Anna Mitchell;Reza Rajimehr;Jordy Tasserie;Julia Sliwa;Jakob Seidlitz;Mark Prescott;Ioana Sabina Rautu;Kevin Marche;Hank P. Jedema;Antoine Grigis;P. Christiaan Klink;Yannick Becker;Sabine Kastner;Roberto Toro;Julien Vezoli;Sherif Hamdy El-Gohary;Wim Vanduffel;Emmanuel Procyk;Marike Schiffer;Rogier B. Mars;Essa Yacoub;Charles E. Schroeder;Alessandro Gozzi;Ashkan Alvand;Ting Xu;Igor Kagan;Amir Raz;Regis Trapeau;Suliann Ben Hamed;Adam Messinger;Henrietta Howells;Henry Kennedy;Jerome Sallet;Michael Milham;Augix Guohua Xu;Eduardo A. Garza-Villarreal;Román Rossi-Pool;Michael Ortiz-Rios;Hugo Merchant;Bella Williams;Aki Nikolaidis;Lynn Uhrig;Austin Benn;Christopher Madan;Patrick Friedrich;Sara Wells;Ravi S. Menon;Caspar M. Schwiedrzik;Ann Marie Mallon;Takuya Hayashi;Nikoloz Sirmpilatze;Lea Roumazeilles;Katja Heuer;Sze Chai Kwok;Pascal Belin;Daniel S. Margulies;Michel Thiebaut de Schotten;Marco Pagani;Zhi ming Shen,2020-02-19,2,Neuron,600-603,10.1016/j.neuron.2019.12.023,32078795.0,85079356882,2-s2.0-85079356882,Conference Paper,WT,https://api.elsevier.com/content/abstract/scopus_id/85079356882,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85079356882&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85079356882&origin=inward +Intranasal oxytocin selectively modulates the behavior of rhesus monkeys in an expression matching task,Ungerleider,Molly Flessert;Ning Liu;Leslie G. Ungerleider;Jessica Taubert,2019-12-01,0,Scientific Reports,,10.1038/s41598-019-51422-3,31645593.0,85074099902,2-s2.0-85074099902,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85074099902,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85074099902&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85074099902&origin=inward +Endogenous visuospatial attention increases visual awareness independent of visual discrimination sensitivity,Ungerleider,Marine Vernet;Leslie G. Ungerleider;Sara Ahmed;Valentinos Zachariou;Savannah Lokey;Shruti Japee,2019-05-01,5,Neuropsychologia,297-304,10.1016/j.neuropsychologia.2017.08.015,28807647.0,85027969530,2-s2.0-85027969530,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85027969530,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85027969530&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85027969530&origin=inward +Time course of cytochrome oxidase blob plasticity in the primary visual cortex of adult monkeys after retinal laser lesions,Ungerleider,Juliana G.M. Soares;Mariana F. Farias;Ricardo Gattass;Leslie G. Ungerleider;Sandra S. Pereira;Ana Karla J. Amorim,2019-02-15,1,Journal of Comparative Neurology,600-613,10.1002/cne.24434,29574781.0,85045406098,2-s2.0-85045406098,Article,CNPq,https://api.elsevier.com/content/abstract/scopus_id/85045406098,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85045406098&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85045406098&origin=inward +Mendelian randomization implies no direct causal association between leukocyte telomere length and amyotrophic lateral sclerosis,Wassermann,Dena G. Hernandez;John Collinge;Julie van der Zee;Daniela Galimberti;Jonathan D. Rohrer;Xinghao Yu;Giuliano Binetti;James Uphill;Christine Van Broeckhoven;Jørgen E. Nielsen;Adrian Danek;Panagiotis Alexopoulos;Stefano F. Cappa;Barbara Borroni;Maria Serpente;Sara Ortega-Cubero;Eric M. Wassermann;Peter St George-Hyslop;Ian R.A. Mackenzie;Benedetta Nacmias;Carol Dobson-Stone;James B. Rowe;Christopher M. Morris;Matthias Riemenschneider;Jordan Grafman;Christer Nilsson;Lena E. Hjermind;John B.J. Kwok;Eric Haan;Lorenzo Pinessi;Michael A. Nalls;Alexander Kurz;Alan J. Thomas;Robert Perneczky;Peter R. Schofield;Nigel J. Cairns;Timothy D. Griffiths;Lauren Bartley;Marc Cruts;Alessandro Padovani;Ian G. McKeith;Sabrina Pichler;Roberta Ghidoni;Elisa Rubino;Rafael Blesa;Janine Diehl-Schmid;Silvia Bagnoli;Ekaterina Rogaeva;Carlos Cruchaga;Johannes C.M. Schlachetzki;Gilles Gasparoni;Pau Pastor;William S. Brooks;Glenda M. Halliday;Giacomina Rossi;Yixin Gao;Giorgio Giaccone;Mercè Boada;Ting Wang;Elizabeth Thompson;Adaikalavan Ramasamy;Karin Nilsson;Ging Yuek R. Hsiung;Isabelle Leber;Elio Scarpini;Fabrizio Tagliavini;Simon Mead;Alexis Brice;Sandro Sorbi;Pietro Pietrini;Atik Baborie;Gianluigi Forloni;Luisa Benussi;Martine Vercelletto;Véronique Golfier;John R. Hodges;Murray Grossman;Raffaele Ferrari;Vivianna M. Van Deerlin;Evelyn Jaros;Chiara Fenoglio;Bernd Ibach;David M.A. Mann;Didier Hannequin;Agustín Ruiz;Elena Alonso;Maria Landqvist Waldö;John Q. Trojanowski;Johannes Attems;Cristina Razquin;Olivier Piguet;Edward D. Huey;Michael C. Tierney;Irene Piaceri;Isabel Hernández;Jordi Clarimón;Innocenzo Rainero;Manuel Mayhaus;Alberto Lleó;Diego Albani,2020-12-01,0,Scientific Reports,,10.1038/s41598-020-68848-9,32699404.0,85088385622,2-s2.0-85088385622,Article,PAPD,https://api.elsevier.com/content/abstract/scopus_id/85088385622,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85088385622&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85088385622&origin=inward +Prism Adaptation Modulates Connectivity of the Intraparietal Sulcus with Multiple Brain Networks,Wassermann,Eric M. Wassermann;Selene Schintu;Michael Freedberg;Stephen J. Gotts;Catherine A. Cunningham;Sarah Shomstein;Zaynah M. Alam,2020-07-30,0,"Cerebral cortex (New York, N.Y. : 1991)",4747-4758,10.1093/cercor/bhaa032,32313949.0,85088882335,2-s2.0-85088882335,Article,,https://api.elsevier.com/content/abstract/scopus_id/85088882335,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85088882335&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85088882335&origin=inward +"Correction to: A nonsynonymous mutation in PLCG2 reduces the risk of Alzheimer’s disease, dementia with Lewy bodies and frontotemporal dementia, and increases the likelihood of longevity (Acta Neuropathologica, (2019), 138, 2, (237-250), 10.1007/s00401-019-02026-8)",Wassermann,Kristel R. van Eijk;Jeanne E. Savage;Marianne Nygaard;D. Galimberti;Steffi Riedel-Heller;R. Ferrari;Kaj Blennow;O. Piguet;G. M. Halliday;Wei Wei;L. Benussi;Xue Wang;K. Nilsson;J. D. Rohrer;Anna Zettergren;C. Fenoglio;Sven J. van der Lee;Itziar de Rojas;Carmen Lage;Minerva M. Carrasquillo;Manuel A. Friese;Olga Pletnikova;Bernard Jeune;Najada Stringa;Juan Fortea;Christopher M. Morris;A. Ramasamy;Sonia Moreno-Grau;Daniel Alcolea;M. A. Nalls;Erik van den Akker;Michael J. Keogh;Nina Beker;Niccolo Tesi;D. G. Hernandez;Ignacio Illán-Gala;M. Landqvist Waldö;Jason A. Chen;Adelina Orellana;D. Albani;B. Borroni;Bart N.M. van Berckel;E. Scarpini;P. Pietrini;J. C. van Swieten;C. Dobson-Stone;R. Ghidoni;G. Forloni;D. M.A. Mann;Javier Simon-Sanchez;E. D. Huey;Samantha L. Strickland;M. Serpente;Olivia J. Conway;Eloy Rodríguez Rodríguez;J. B.J. Kwok;M. Synofzik;Begoña Indakoetxea;Ingmar Skoog;Martin Scherer;A. Padovani;Pau Pastor;Monica Diez-Fairen;Jonas Mengel-From;Marc Hulsman;I. Leber;C. Cruchaga;P. R. Schofield;Luca Kleineidam;A. J. Thomas;I. G. McKeith;C. Nilsson;E. Thompson;Estrella Morenas-Rodríguez;E. M. Wassermann;N. J. Cairns;Henrik Zetterberg;Cornelis Blauwendraat;James W. Ironside;Heinz Wiendl;Florian Then Bergh;L. Bartley;R. Blesa;C. M. Morris;Michael Wagner;Lyduine E. Collij;Miren Zulaica;J. Attems;S. Mead;G. Binetti;A. Baborie;I. R.A. Mackenzie;J. Grafman;T. D. Griffiths;Iris Jansen;Till F.M. Andlauer;Isabel Hernández;J. R. Hodges;Alberto Lleó;G. Y.R. Hsiung,2020-05-01,0,Acta Neuropathologica,959-962,10.1007/s00401-019-02107-8,31955222.0,85078622953,2-s2.0-85078622953,Erratum,JPND,https://api.elsevier.com/content/abstract/scopus_id/85078622953,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85078622953&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85078622953&origin=inward +Competitive and cooperative interactions between medial temporal and striatal learning systems,Wassermann,Michael Freedberg;Joel L. Voss;Andrew C. Toader;Eric M. Wassermann,2020-01-01,0,Neuropsychologia,,10.1016/j.neuropsychologia.2019.107257,31733236.0,85075204131,2-s2.0-85075204131,Review,CNRM,https://api.elsevier.com/content/abstract/scopus_id/85075204131,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85075204131&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85075204131&origin=inward +Identifying site- and stimulation-specific TMS-evoked EEG potentials using a quantitative cosine similarity metric,Wassermann,Sara J. Hussain;Eric M. Wassermann;Kareem A. Zaghloul;Michael Freedberg;Jack A. Reeves,2020-01-01,1,PLoS ONE,,10.1371/journal.pone.0216185,31929531.0,85077765373,2-s2.0-85077765373,Article,,https://api.elsevier.com/content/abstract/scopus_id/85077765373,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85077765373&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85077765373&origin=inward +A Novel Technique to Trigger High Beta and Low Gamma Activity in Patients with Schizophrenia,Wassermann,Eysteinn Ívarsson;Aníta Ósk Georgsdóttir;Alec Shaw;Ovidiu C. Banea;Paolo Gargiulo;Sigurjón B. Stefansson;Brynja B. Magnúsdóttir;Eric Wassermann;Aron D. Jónasson,2020-01-01,0,IFMBE Proceedings,1064-1070,10.1007/978-3-030-31635-8_129,,85075863981,2-s2.0-85075863981,Conference Paper,,https://api.elsevier.com/content/abstract/scopus_id/85075863981,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85075863981&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85075863981&origin=inward +"Transcranial Magnetic Stimulation for Pain, Headache, and Comorbid Depression: INS-NANS Expert Consensus Panel Review and Recommendation",Wassermann,Brian Kopell;Joshua Kuluva;Michael Vaninetti;Robert Levy;Lawrence Poree;Robert Chen;Prasad Shirvalkar;Albert Leung;Eric Wassermann;Richard Bermudes,2020-01-01,0,Neuromodulation,,10.1111/ner.13094,32212288.0,85083372475,2-s2.0-85083372475,Review,,https://api.elsevier.com/content/abstract/scopus_id/85083372475,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85083372475&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85083372475&origin=inward +P50 and P300 Event Related Potentials in Patients with Schizophrenia Recorded from High-Density EEG,Wassermann,Rún Friðriksdóttir;Eysteinn Ívarsson;Brynja B. Magnusdóttir;Elena Pegolo;Viktor D. Jónasson;Ovidiu C. Banea;Paolo Gargiulo;Eric Wassermann;Sara Marcu;Magnús Haraldsson;Aron D. Jónasson,2020-01-01,0,IFMBE Proceedings,1071-1077,10.1007/978-3-030-31635-8_130,,85075900508,2-s2.0-85075900508,Conference Paper,,https://api.elsevier.com/content/abstract/scopus_id/85075900508,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85075900508&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85075900508&origin=inward +Genetic variation across RNA metabolism and cell death gene networks is implicated in the semantic variant of primary progressive aphasia,Wassermann,J. Q. Trojanowski;A. Kurz;D. Galimberti;O. Piguet;S. Ortega-Cubero;G. M. Halliday;L. Benussi;E. Alonso;M. Landqvist Waldö;K. Nilsson;J. D. Rohrer;C. Fenoglio;A. Lleó;Maria Luisa Gorno-Tempini;Luke W. Bonham;Sergio E. Baranzini;Patrick Lewis;A. Ramasamy;M. Boada;Jennifer S. Yokoyama;L. Pinessi;Claudia Manzoni;P. Alexopoulos;Iris Broce;M. A. Nalls;I. Rainero;C. Razquin;E. Rogaeva;J. C.M. Schlachetzki;Parastoo Momeni;D. G. Hernandez;R. Perneczky;Zachary A. Miller;P. St George-Hyslop;J. Clarimón;D. Albani;B. Borroni;J. B. Rowe;E. Scarpini;William W. Seeley;P. Pietrini;C. Dobson-Stone;R. Ghidoni;G. Forloni;D. M.A. Mann;E. D. Huey;Celeste M. Karch;Natasha Z.R. Steele;M. Serpente;J. van der Zee;J. B.J. Kwok;John Hardy;M. Cruts;A. Padovani;S. F. Cappa;Rahul S. Desikan;Christopher P. Hess;I. Leber;V. M. Van Deerlin;E. Jaros;C. Cruchaga;E. Rubino;P. R. Schofield;M. C. Tierney;A. J. Thomas;P. Pastor;I. G. McKeith;C. Nilsson;E. Thompson;E. M. Wassermann;N. J. Cairns;J. Collinge;G. Rossi;F. Tagliavini;E. Haan;M. Grossman;A. Danek;L. Bartley;Raffaele Ferrari;R. Blesa;I. Hernández;C. M. Morris;D. Hannequin;Ethan G. Geier;J. Attems;S. Mead;A. Ruiz;G. Binetti;A. Baborie;I. R.A. Mackenzie;J. Grafman;G. Giaccone;T. D. Griffiths;Bruce L. Miller;J. Diehl-Schmid;J. Uphill;Natalie L. Wen;C. Van Broeckhoven;J. R. Hodges;G. Y.R. Hsiung,2019-12-01,0,Scientific Reports,,10.1038/s41598-019-46415-1,31350420.0,85069717816,2-s2.0-85069717816,Article,RSNA,https://api.elsevier.com/content/abstract/scopus_id/85069717816,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85069717816&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85069717816&origin=inward +Motor cortex inhibition and modulation in children with ADHD,Wassermann,Eric M. Wassermann;Stewart H. Mostofsky;Kathryn Hirabayashi;David A. Huddleston;Donald L. Gilbert;Steve W. Wu;Paul S. Horn;Deanna Crocetti;Ernest V. Pedapati,2019-08-06,2,Neurology,E599-E610,10.1212/WNL.0000000000007899,31315973.0,85071069777,2-s2.0-85071069777,Article,TAA,https://api.elsevier.com/content/abstract/scopus_id/85071069777,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85071069777&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85071069777&origin=inward +Seizures from transcranial magnetic stimulation 2012–2016: Results of a survey of active laboratories and clinics,Wassermann,Eric M. Wassermann;Diana I. Tamir;Adam J. Lerner,2019-08-01,9,Clinical Neurophysiology,1409-1416,10.1016/j.clinph.2019.03.016,31104898.0,85065514281,2-s2.0-85065514281,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85065514281,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85065514281&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85065514281&origin=inward +FDG-PET patterns associated with underlying pathology in corticobasal syndrome,Wassermann,Flavio Nobili;Eric M. Wassermann;Jordan Grafman;Bernardino Ghetti;Silvia Morbelli;Edward D. Huey;Salvatore Spina;Matteo Pardini;William C. Kreisl,2019-03-05,7,Neurology,E1121-E1135,10.1212/WNL.0000000000007038,30700592.0,85062396362,2-s2.0-85062396362,Article,,https://api.elsevier.com/content/abstract/scopus_id/85062396362,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85062396362&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85062396362&origin=inward +Persistent enhancement of hippocampal network connectivity by parietal rTMS is reproducible,Wassermann,Andrew C. Toader;Eric M. Wassermann;Michael Freedberg;Molly S. Hermiller;Joel L. Voss;Jack A. Reeves,2019-01-01,2,eNeuro,,10.1523/ENEURO.0129-19.2019,31591137.0,85073489418,2-s2.0-85073489418,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85073489418,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85073489418&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85073489418&origin=inward +Optimizing Hippocampal-Cortical Network Modulation via Repetitive Transcranial Magnetic Stimulation: A Dose-Finding Study Using the Continual Reassessment Method,Wassermann,Andrew C. Toader;Eric M. Wassermann;Ying Kuen Cheung;Michael Freedberg;Eunhee Kim;Molly S. Hermiller;Joel L. Voss;Jack A. Reeves;Dietrich Haubenberger,2019-01-01,0,Neuromodulation,,10.1111/ner.13052,31667947.0,85074771625,2-s2.0-85074771625,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85074771625,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85074771625&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85074771625&origin=inward +Identification of evolutionarily conserved gene networks mediating neurodegenerative dementia,Wassermann,Hiroyoshi Toyoshiba;Dena G. Hernandez;John Collinge;Julie van der Zee;Daniela Galimberti;Jonathan D. Rohrer;Giuliano Binetti;James Uphill;Christine Van Broeckhoven;Adrian Danek;Panagiotis Alexopoulos;Stefano F. Cappa;Barbara Borroni;Vivek Swarup;Maria Serpente;Stephen J. Haggarty;Sara Ortega-Cubero;Eric M. Wassermann;Peter St George-Hyslop;Flora I. Hinz;Ian R.A. Mackenzie;Carol Dobson-Stone;James B. Rowe;Christopher M. Morris;Jordan Grafman;Christer Nilsson;John B.J. Kwok;Eric Haan;Lorenzo Pinessi;Michael A. Nalls;Alexander Kurz;Parastoo Momeni;Alan J. Thomas;Robert Perneczky;Peter R. Schofield;Nigel J. Cairns;Timothy D. Griffiths;Lauren Bartley;Marc Cruts;Alessandro Padovani;Ian G. McKeith;Roberta Ghidoni;Elisa Rubino;Rafael Blesa;Janine Diehl-Schmid;Arjun Sarkar;Ekaterina Rogaeva;Carlos Cruchaga;Johannes C.M. Schlachetzki;John Hardy;Nicholas T. Seyfried;Chialin Cheng;Pau Pastor;William S. Brooks;Glenda M. Halliday;Giacomina Rossi;Giorgio Giaccone;Andrew B. Singleton;Mercè Boada;Jessica E. Rexach;Elizabeth Thompson;Adaikalavan Ramasamy;Karin Nilsson;Ging Yuek R. Hsiung;Isabelle Leber;Elio Scarpini;Fabrizio Tagliavini;Simon Mead;Alexis Brice;Keisuke Hirai;Pietro Pietrini;Atik Baborie;Akira Oda;Gianluigi Forloni;Luisa Benussi;Véronique Golfier;John R. Hodges;Murray Grossman;Raffaele Ferrari;Vivianna M. Van Deerlin;Evelyn Jaros;Chiara Fenoglio;David M.A. Mann;Didier Hannequin;Ken ichi Noguchi;Agustín Ruiz;Elena Alonso;Maria Landqvist Waldö;John Q. Trojanowski;Johannes Attems;Cristina Razquin;Stuart Pickering-Brown;Olivier Piguet;Edward D. Huey;Michael C. Tierney;Isabel Hernández;Jordi Clarimón;Innocenzo Rainero;Alberto Lleó;Diego Albani,2019-01-01,10,Nature Medicine,152-164,10.1038/s41591-018-0223-3,30510257.0,85058010718,2-s2.0-85058010718,Article,NIA,https://api.elsevier.com/content/abstract/scopus_id/85058010718,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85058010718&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85058010718&origin=inward +What is the optimal serum level for lithium in the maintenance treatment of bipolar disorder? A systematic review and recommendations from the ISBD/IGSLI Task Force on treatment with lithium,Zarate,Ross J. Baldessarini;Gin S. Malhi;Carlos Zarate;Allan H. Young;Eduard Vieta;René E. Nielsen;Emanuel Severus;Rasmus W. Licht;Mauricio Tohen;Willem A. Nolen;Ralph W. Kupka,2019-01-01,18,Bipolar Disorders,394-409,10.1111/bdi.12805,31112628.0,85067871028,2-s2.0-85067871028,Review,NIHR,https://api.elsevier.com/content/abstract/scopus_id/85067871028,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85067871028&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85067871028&origin=inward diff --git a/data/interim/New Publications from FMRIF Investigators Aug 2020 - 2020_new_papers.csv b/data/interim/New Publications from FMRIF Investigators Aug 2020 - 2020_new_papers.csv new file mode 100644 index 0000000..70bff77 --- /dev/null +++ b/data/interim/New Publications from FMRIF Investigators Aug 2020 - 2020_new_papers.csv @@ -0,0 +1,518 @@ +FMRIF?,Searched PI,Type,Source Title,Title,Authors (scrambled),Date,DOI,PubMed ID,Scopus ID,EID,Cited-By Count,Abstract Link,Scopus Link,Cited-By Link,Funding Agency,Page Range +N,Atlas,Article,"Cerebral cortex (New York, N.Y. : 1991)",Multiple Brain Networks Mediating Stimulus-Pain Relationships in Humans,Leonie Koban;Anjali Krishnan;Martin A. Lindquist;Lauren Y. Atlas;Liane Schmidt;Mathieu Roy;Elizabeth A. Reynolds Losin;Tor D. Wager;Stephan Geuter,2020-06-01,10.1093/cercor/bhaa048,32219311,85085904590,2-s2.0-85085904590,0,https://api.elsevier.com/content/abstract/scopus_id/85085904590,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85085904590&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85085904590&origin=inward,,4204-4219 +N,Atlas,Article,Cerebral Cortex,Pain-Evoked Reorganization in Functional Brain Networks,Marieke Jepma;Weihao Zheng;Lauren Y. Atlas;Liane Schmidt;Mathieu Roy;Tor D. Wager;Pavel Goldstein;Bin Hu;Anjali Krishnan;Zhijun Yao;Choong Wan Woo,2020-05-14,10.1093/cercor/bhz276,31813959,85084961318,2-s2.0-85084961318,0,https://api.elsevier.com/content/abstract/scopus_id/85084961318,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85084961318&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85084961318&origin=inward,NIH,2804-2822 +N,Atlas,Letter,British Journal of Anaesthesia,Flawed methodology undermines conclusions about opioid-induced pleasure: implications for psychopharmacology,Siri Leknes;Lauren Y. Atlas,2020-03-01,10.1016/j.bja.2019.10.006,31753290,85079089444,2-s2.0-85079089444,1,https://api.elsevier.com/content/abstract/scopus_id/85079089444,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85079089444&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85079089444&origin=inward,ERC,e29-e33 +N,Atlas,Article,Nature Human Behaviour,The Confidence Database,Yalçın A. Duyan;Sébastien Massoni;Ji Won Bang;Justin Kantner;Julian Matthews;Samuel Recht;Chien Ming Lo;Brian Maniscalco;Christoph T. Weidemann;Audrey Mazancieux;Xiao Hu;Sze Chai Kwok;Michael Pereira;Zuzanna Skóra;Futing Zou;Başak Akdoğan;Troy C. Dildine;Marine Hainguerlot;Manuel Rausch;Jérôme Sackur;Gerit Pfuhl;Nathan Faivre;Rachel N. Denison;Jason Samaha;Andrey Chetverikov;Kobe Desender;David Soto;Thibault Gajdos;Chen Song;Kaitlyn Fallow;Antonio Martin;Marcin Koculak;Damian P. Birney;Indrit Bègue;Joshua Calder-Travis;Lauren Y. Atlas;Michał Wierzchoń;Qun Ye;Elisa Filevich;Peter D. Kvam;Tzu Yu Hsu;Fernanda Prieto;Caroline Peters;Nadia Haddara;Sai Sun;Gabriel Reyes;Maël Lebreton;Tricia X.F. Seow;Marta Siedlecka;Kit S. Double;Maxine T. Sherman;Xinming Xu;Daniel M. Merfeld;Borysław Paulewicz;Denis O’Hora;Jeroen J.A. van Boxtel;Vincent de Gardelle;Torin K. Clark;Regan M. Gallagher;Medha Shekhar;Mahiko Konishi;William T. Adler;Polina Arbuzova;Karen Davranche;Timothy F. Brady;Eleanor R. Palser;Alan L.F. Lee;Jiwon Yeon;Fuat Balcı;Liang Luo;David Aguilar-Lleyda;Christina Koß;Karolina M. Lempert;Ariel Zylberberg;Gabriel Weindel;Sabina Gherman;Iñaki Iturrate;Marios G. Philiastides;Shuo Wang;Marion Rouault;Matt Jaquiery;Saeedeh Sadeghi;Dobromir Rahnev,2020-03-01,10.1038/s41562-019-0813-1,32015487,85079153540,2-s2.0-85079153540,0,https://api.elsevier.com/content/abstract/scopus_id/85079153540,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85079153540&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85079153540&origin=inward,NIMH,317-325 +N,Atlas,Article,Schizophrenia Bulletin,Towards precision medicine in psychosis: Benefits and challenges of multimodal multicenter studies - PSYSCAN: Translating neuroimaging findings from research into clinical practice,Inge Winter-Van Rossum;Stefania Tognin;Hendrika H. Van Hell;James McLoughlin;Jun Soo Kwon;Stephen M. Lawrie;MacHteld Marcelis;Sara Patriarca;Roberto Rodríguez-Jiménez;Kate Merritt;Cristina Scarpazza;Claudia Vingerhoets;Lotte Hendriks;DIeuwke Siegmann;Mathilde Antoniades;Kyeon Raab;Esther Setien-Suero;Matthijs G. Bossong;Rosa Ayesa-Arriola;Inge Winter;Wiepke Cahn;Michael Kiang;Sarah Ahmed;Giuseppe Piegari;Emily Hird;Sandra Vieira;Celso Arango;Danny Deckers;Karen Tangmose;Jens Sommer;Paola Dazzan;Minah Kim;Phillip McGuire;Yoo Bin Kwak;Gabriele Sachs;Barnaby Nelson;Therese Van Amelsvoort;René Kahn;Colm McDonald;Daria Pietrafesa;Alessia Nicita;Victor Ortiz Garcia-De La Foz;Irina Falkenberg;Kang Ik Kevin Cho;Philipp Berger;Florian Bitsch;Matthew J. Kempton;Mikkel Erlang Sørensen;Brian Broberg;Ivana Prce;Gemma Modinos;Lieuwe De Haan;Jana Barkhof;Babette Jakobi;Tom J. Spencer;Ary Gadelha;Romina Mizrahi;Meredith McHugh;Tae Young Lee;Miriam Ayora;Paul Amminger;Jenny Lepock;Dara Cannon;Erika Van Hell;Mark Weiser;Arija Maat;Birte Glenthøj;Silvana Galderisi;Armida Mucci;Benedicto Crespo-Facorro;Martha Finnegan;Marialuz Ramirez-Bonilla;Andrea De Micheli;Patrick McGorry;Andrea Mechelli;André Zugman;Tilo Kircher;DIana Tordesillas-Gutierrez;Jun S. Kwon;Anke Maatz;Margaret Maheandiran;Rodrigo Bressan;Egill Rostrup;Joost Janssen;Wu Jeong Hwang;Paolo Fusar-Poli;Iris De Wit;Hugo Schnack;Philip McGuire;Natalia Petros;Paula Suarez-Pinilla;Marina Díaz-Marsá;George Gifford;Helle Schæbel;Covadonga M. Díaz-Caneja;Cory Gerritsen;Graccielle Rodrigues Da Cunha;Oliver Gruber;Paola Bucci;Brian Hallahan,2020-03-01,10.1093/schbul/sbz067,31424555,85081165552,2-s2.0-85081165552,8,https://api.elsevier.com/content/abstract/scopus_id/85081165552,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85081165552&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85081165552&origin=inward,,432-441 +N,Atlas,Article,Biological Psychiatry,Classical Human Leukocyte Antigen Alleles and C4 Haplotypes Are Not Significantly Associated With Depression,Julien Bryois;Ole Mors;Yuri Milaneschi;Maciej Trzaskowski;Shing Wan Choi;Ken B. Hanscombe;Jack Euesden;Gregory E. Crawford;Stefan Herms;Stanley I. Shyn;James B. Potash;Jakob Grove;Tim B. Bigdeli;Carsten Horn;Nancy L. Pedersen;Sara Mostafavi;Nick Craddock;Fabian Streit;Marcus Ising;Rudolf Uher;Sandra Van der Auwera;Mark J. Adams;Jonas Bybjerg-Grauholm;Scott D. Gordon;Farnush Farhadi Hassan Kiadeh;Georg Homuth;Marie Bækvad-Hansen;Ian Jones;Tracy M. Air;David M. Howard;Enda M. Byrne;Stephan Ripke;Esben Agerbo;Rick Jansen;Douglas F. Levinson;Thalia C. Eley;Eske M. Derks;Jane Hvarregaard Christensen;Abdel Abdellaoui;Per Hoffmann;Kylie P. Glanville;Gerome Breen;Fernando S. Goes;Christine Søholm Hansen;Ian B. Hickie;Eco J.C. de Geus;Martin Preisig;Jianxin Shi;Zoltán Kutalik;Erin C. Dunn;Conor V. Dolan;David M. Hougaard;Lynsey S. Hall;Franziska Degenhardt;Toni Kim Clarke;Glyn Lewis;Baptiste Couvy-Duchesne;Steven P. Hamilton;Michael Gill;Douglas H.R. Blackwood;Elisabeth B. Binder;Valentina Escott-Price;Hans J. Grabe;Myrna M. Weissman;Naomi R. Wray;Ian J. Deary;Jonathan R.I. Coleman;Henning Tiemeier;Udo Dannlowski;Thomas F. Hansen;Brenda W.J.H. Penninx;Nese Direk;Jordan W. Smoller;Susanne Lucae;Penelope A. Lind;Na Cai;Jerome C. Foo;James A. Knowles;Andrew M. McIntosh;Lucía Colodro-Conde;Bernhard T. Baune;Lisa A. Jones;Manuel Mattheisen;Patrick F. Sullivan;Henriette N. Buttenschøn;Silviu Alin Bacanu;Dorret I. Boomsma;Enrique Castelao;Bertram Müller-Myhsok;Josef Frank;Hilary K. Finucane;Patrik K. Magnusson;Aartjan T.F. Beekman;Jouke Jan Hottenga;Gail Davies;Kirstin L. Purves;Héléna A. Gaspar;Till F.M. Andlauer;Andreas J. Forstner;Peter McGuffin,2020-03-01,10.1016/j.biopsych.2019.06.031,31570195,85072749953,2-s2.0-85072749953,1,https://api.elsevier.com/content/abstract/scopus_id/85072749953,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85072749953&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85072749953&origin=inward,NIHR,419-430 +N,Atlas,Conference Paper,Neuron,Accelerating the Evolution of Nonhuman Primate Neuroimaging,Anna Wang Roe;Daniel S. Margulies;Colline Poirier;Michael Ortiz-Rios;Aki Nikolaidis;Ting Xu;Bella Williams;Lei Ai;Antoine Grigis;Ming Zhan;Adrien Meguerditchian;Ashkan Alvand;Piotr Majka;Julien Vezoli;Fabien Balezeau;Luciano Simone;Céline Amiez;Wasana Madushanka;Julien Sein;Marike Schiffer;Ann Marie Mallon;Karl Heinz Nenning;Sze Chai Kwok;Roberto Toro;Wim Vanduffel;Yannick Becker;Susann Boretius;Henry Evrard;Patrick Friedrich;Robert Leech;Charles E. Schroeder;Alessandro Gozzi;Clementine Bodin;Amir Shmuel;Olivier Coulon;Reza Rajimehr;Clare Kelly;Hank P. Jedema;Vikas Pareek;Zhi ming Shen;Jerome Sallet;Lynn Uhrig;Sabine Kastner;Nikoloz Sirmpilatze;Ravi S. Menon;Mark Prescott;Takuya Hayashi;Emmanuel Procyk;Igor Kagan;Andrew Fox;Chika Sato;Wendy Jarrett;Yang Gao;Sara Wells;Jordy Tasserie;Rogier B. Mars;Essa Yacoub;Augix Guohua Xu;Christopher Madan;Tomoko Sakai;Sean Froudist-Walsh;Xiaojin Liu;Henry Kennedy;David C. Van Essen;P. Christiaan Klink;Jakob Seidlitz;Zheng Wang;Christopher I. Petkov;Suliann Ben Hamed;Lea Roumazeilles;Adam Messinger;Michele A. Basso;Stephanie J. Forkel;Sherif Hamdy El-Gohary;Anna Mitchell;Pascal Belin;Stephen Sawiak;Caspar M. Schwiedrzik;Béchir Jarraya;Dirk Jan Ardesch;Eduardo A. Garza-Villarreal;Román Rossi-Pool;Afonso C. Silva;Michel Thiebaut de Schotten;Ioana Sabina Rautu;Damien A. Fair;Hugo Merchant;Kevin Marche;Renee Hartig;Marco Pagani;Pamela García-Saldivar;Michael Milham;Austin Benn;Katja Heuer;Regis Trapeau;Bastien Cagna;Henrietta Howells;Julia Sliwa;Amir Raz;Jonathan Smallwood,2020-02-19,10.1016/j.neuron.2019.12.023,32078795,85079356882,2-s2.0-85079356882,2,https://api.elsevier.com/content/abstract/scopus_id/85079356882,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85079356882&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85079356882&origin=inward,WT,600-603 +N,Atlas,Article,NeuroImage,"Distinguishing pain from nociception, salience, and arousal: How autonomic nervous system activity can improve neuroimaging tests of specificity",Elizabeth A. Necka;In Seon Lee;Lauren Y. Atlas,2020-01-01,10.1016/j.neuroimage.2019.116254,31604122,85073474430,2-s2.0-85073474430,1,https://api.elsevier.com/content/abstract/scopus_id/85073474430,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85073474430&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85073474430&origin=inward,NCCIH, +N,Atlas,Letter,Pain,The need for diversity in research on facial expressions of pain,Troy C. Dildine;Lauren Y. Atlas,2019-08-01,10.1097/j.pain.0000000000001593,31335658,85070462787,2-s2.0-85070462787,1,https://api.elsevier.com/content/abstract/scopus_id/85070462787,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85070462787&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85070462787&origin=inward,,1901-1902 +N,Atlas,Review,Muscle and Nerve,ULTRASOUND IN THE DIAGNOSIS AND MONITORING OF AMYOTROPHIC LATERAL SCLEROSIS: A REVIEW,Lisa D. Hobson-Webb;Zachary Simmons,2019-08-01,10.1002/mus.26487,30989697,85065048170,2-s2.0-85065048170,3,https://api.elsevier.com/content/abstract/scopus_id/85065048170,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85065048170&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85065048170&origin=inward,CSF,114-123 +N,Atlas,Letter,Pain,Reply to Zaman et al.,Dominik Mischkowski;Lauren Y. Atlas,2019-06-01,10.1097/j.pain.0000000000001572,31107419,85066951542,2-s2.0-85066951542,0,https://api.elsevier.com/content/abstract/scopus_id/85066951542,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85066951542&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85066951542&origin=inward,NIH,1485-1486 +N,Atlas,Review,Current Opinion in Behavioral Sciences,"How instructions shape aversive learning: higher order knowledge, reversal learning, and the role of the amygdala",Lauren Y. Atlas,2019-04-01,10.1016/j.cobeha.2018.12.008,,85060104256,2-s2.0-85060104256,5,https://api.elsevier.com/content/abstract/scopus_id/85060104256,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85060104256&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85060104256&origin=inward,NCCIH,121-129 +N,Baker,Article,Scientific Reports,Intention to learn modulates the impact of reward and punishment on sequence learning,Chris I. Baker;Charlotte J. Stagg;Adam Steel,2020-12-01,10.1038/s41598-020-65853-w,32483289,85085854297,2-s2.0-85085854297,0,https://api.elsevier.com/content/abstract/scopus_id/85085854297,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85085854297&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85085854297&origin=inward,WT, +Y,Baker,Article,"Cerebral cortex (New York, N.Y. : 1991)",The Human Posterior Superior Temporal Sulcus Samples Visual Space Differently From Other Face-Selective Regions,Dwight J. Kravitz;Lionel Rauth;Chris Baker;Leslie G. Ungerleider;Amy Pilkington;David Pitcher,2020-03-21,10.1093/cercor/bhz125,31264693,85074469445,2-s2.0-85074469445,3,https://api.elsevier.com/content/abstract/scopus_id/85074469445,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85074469445&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85074469445&origin=inward,,778-785 +N,Baker,Article,Current Biology,Boundaries Extend and Contract in Scene Memory Depending on Image Properties,Chris I. Baker;Wilma A. Bainbridge,2020-02-03,10.1016/j.cub.2019.12.004,31983637,85078482896,2-s2.0-85078482896,1,https://api.elsevier.com/content/abstract/scopus_id/85078482896,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85078482896&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85078482896&origin=inward,NIH,537-543.e3 +N,Baker,Review,F1000Research,"Recent advances in understanding object recognition in the human brain: Deep neural networks, temporal dynamics, and context",Chris Baker;Susan G. Wardle,2020-01-01,10.12688/f1000research.22296.1,32566136,85086870175,2-s2.0-85086870175,0,https://api.elsevier.com/content/abstract/scopus_id/85086870175,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85086870175&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85086870175&origin=inward,, +N,Baker,Article,"Alzheimer's and Dementia: Diagnosis, Assessment and Disease Monitoring",Memorability of photographs in subjective cognitive decline and mild cognitive impairment: Implications for cognitive assessment,Anja Schneider;Claudia Bartels;Ingo Kilimann;Daniel Bittner;Michael Heneka;David Berron;Coraline Metzger;Arturo Cardenas-Blanco;Stefan Teipel;Oliver Peters;Josef Priller;Wilma A. Bainbridge;Martina Buchmann;Barbara Kofler;Frederic Brosseron;Wenzel Glanz;Christoph Laske;Klaus Fliessbach;Dominik Diesing;Daniel Janowitz;Chris I. Baker;Michael Wagner;Slawek Altenstein;Janna Rudolph;Hartmut Schütze;Steffen Wolfsgruber;Siyao Li;Annika Spottke;Frank Jessen;Eike Jakob Spruth;Jens Wiltfang;Katharina Buerger;Emrah Düzel;Laura Dobisch,2019-12-01,10.1016/j.dadm.2019.07.005,,85071610785,2-s2.0-85071610785,2,https://api.elsevier.com/content/abstract/scopus_id/85071610785,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85071610785&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85071610785&origin=inward,DZNE,610-618 +N,Baker,Review,Annual Review of Vision Science,Scene Perception in the Human Brain,Russell A. Epstein;Chris I. Baker,2019-09-15,10.1146/annurev-vision-091718-014809,31226012,85072266392,2-s2.0-85072266392,6,https://api.elsevier.com/content/abstract/scopus_id/85072266392,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85072266392&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85072266392&origin=inward,NIMH,373-397 +Y,Baker,Article,Cerebral Cortex,Differential Representations of Perceived and Retrieved Visual Information in Hippocampus and Cortex,Dwight J. Kravitz;Sue Hyun Lee;Chris I. Baker,2019-09-13,10.1093/cercor/bhy325,30590463,85072026868,2-s2.0-85072026868,2,https://api.elsevier.com/content/abstract/scopus_id/85072026868,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85072026868&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85072026868&origin=inward,NARSAD,4452-4461 +Y,Baker,Article,eLife,Distinct subdivisions of human medial parietal cortex support recollection of people and places,Chris I. Baker;Alexis Kidder;Adrian W. Gilmore;Edward H. Silson;Adam Steel,2019-07-01,10.7554/eLife.47391,31305238,85070789103,2-s2.0-85070789103,4,https://api.elsevier.com/content/abstract/scopus_id/85070789103,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85070789103&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85070789103&origin=inward,NIH, +N,Baker,Conference Paper,"7th International Conference on Learning Representations, ICLR 2019",Revealing interpretable object representations from human behavior,Martin N. Hebart;Charles Y. Zheng;Chris I. Baker;Francisco Pereira,2019-01-01,,,85083951659,2-s2.0-85083951659,2,https://api.elsevier.com/content/abstract/scopus_id/85083951659,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85083951659&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85083951659&origin=inward,NIMH, +N,Baker,Article,PLoS ONE,"THINGS: A database of 1,854 object concepts and more than 26,000 naturalistic object images",Chris I. Baker;Anna Corriveau;Caitlin Van Wicklin;Alexis Kidder;Adam H. Dickter;Wan Y. Kwok;Martin N. Hebart,2019-01-01,10.1371/journal.pone.0223792,31613926,85073476140,2-s2.0-85073476140,1,https://api.elsevier.com/content/abstract/scopus_id/85073476140,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85073476140&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85073476140&origin=inward,, +,Bandettini,Article,NeuroImage,"Untangling the relatedness among correlations, part III: Inter-subject correlation analysis through Bayesian multilevel modeling for naturalistic scanning",Robert W. Cox;Peter A. Bandettini;Xianggui Qu;Emily S. Finn;Paul A. Taylor;Peter J. Molfese;Gang Chen,2020-08-01,10.1016/j.neuroimage.2019.116474,31884057,85077746474,2-s2.0-85077746474,2,https://api.elsevier.com/content/abstract/scopus_id/85077746474,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85077746474&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85077746474&origin=inward,NIH, +N,Bandettini,Editorial,Muscle and Nerve,What's New at Muscle & Nerve?,Zachary Simmons,2020-08-01,10.1002/mus.27007,32557730,85087346416,2-s2.0-85087346416,0,https://api.elsevier.com/content/abstract/scopus_id/85087346416,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85087346416&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85087346416&origin=inward,,152-153 +N,Bandettini,Article,NeuroImage,Idiosynchrony: From shared responses to individual differences during naturalistic neuroimaging,Peter A. Bandettini;Emily S. Finn;Daniel A. Handwerker;Enrico Glerean;Arman Y. Khojandi;Dylan Nielson;Peter J. Molfese,2020-07-15,10.1016/j.neuroimage.2020.116828,32276065,85083213520,2-s2.0-85083213520,1,https://api.elsevier.com/content/abstract/scopus_id/85083213520,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85083213520&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85083213520&origin=inward,NIH, +N,Bandettini,Article,Biological Psychiatry,Peripheral Blood Cell–Stratified Subgroups of Inflamed Depression,Junaid Bhatti;Mary Ellen Lynall;Menna R. Clatworthy;Philip Cowen;Lorinda Turner;Valeria Mondelli;Carmine M. Pariante;Wayne C. Drevets;Linda Pointon;Edward Bullmore;Declan Jones;Jonathan Cavanagh;Neil A. Harrison;Peter de Boer,2020-07-15,10.1016/j.biopsych.2019.11.017,32000983,85078293353,2-s2.0-85078293353,1,https://api.elsevier.com/content/abstract/scopus_id/85078293353,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85078293353&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85078293353&origin=inward,NIHR,185-196 +,Bandettini,Article,Biological Psychiatry,"The Genetics of the Mood Disorder Spectrum: Genome-wide Association Analyses of More Than 185,000 Cases and 439,000 Controls",Srdjan Djurovic;Julien Bryois;Matthew Flickinger;Sarah E. Bergen;Maciej Trzaskowski;Anders M. Dale;Cristiana Cruceanu;Peter A. Holmans;Erlend Bøen;Huda Akil;Michael Bauer;Gregory E. Crawford;Monika Budde;Tim B. Bigdeli;J. Raymond DePaulo;Yunpeng Wang;Sandra Van der Auwera;Mark J. Adams;Jonas Bybjerg-Grauholm;Marie Bækvad-Hansen;Nelson B. Freimer;Enda M. Byrne;Liam Abbott;Stephan Ripke;Esben Agerbo;Thalia C. Eley;Eske M. Derks;Annelie Nordin Adolfsson;Diego Albani;Jane Hvarregaard Christensen;Christiaan A. de Leeuw;Abdel Abdellaoui;Verneri Antilla;Katrin Gade;Adebayo Anjorin;Jurgen Del-Favero;Vassily Trubetskoy;Tune H. Pers;Ashley Dumont;Liz Forty;Marco Boks;Margit Burmeister;Christine Fraser;Louise Frisén;Andrew McQuillin;Jack D. Barchas;Erin C. Dunn;Conor V. Dolan;Franziska Degenhardt;Claire Churchhouse;William Byerley;Diane Gage;Tatiana M. Foroud;William Coryell;Torbjørn Elvsåshagen;James Boocock;Toni Kim Clarke;William Bunney;Danfeng Chen;Ney Alliey-Rodriguez;Baptiste Couvy-Duchesne;Elisabeth B. Binder;Valentina Escott-Price;Kimberly Chambert;Ian J. Deary;Jonathan R.I. Coleman;Jennifer M. Whitehead Pavlides;David St Clair;Nese Direk;Richard Belliveau;Piotr M. Czerski;Na Cai;Amanda L. Dobbyn;Judith A. Badner;Chun Chieh Fan;Jerome C. Foo;Lucía Colodro-Conde;Stacy Steinberg;Julie Garnham;Manuel Mattheisen;Silviu Alin Bacanu;Henriette N. Buttenschøn;Enrique Castelao;Miquel Casas;Thomas D. Als;Pablo Cervantes;Josef Frank;Hilary K. Finucane;Nicholas Bass;Aartjan T.F. Beekman;Eli A. Stahl;Sascha B. Fischer;Gail Davies;David W. Craig;Felecia Cerrato;Alexander W. Charney;Héléna A. Gaspar;Swapnil Awasthi;Till F.M. Andlauer;Andreas J. Forstner,2020-07-15,10.1016/j.biopsych.2019.10.015,31926635,85078024661,2-s2.0-85078024661,5,https://api.elsevier.com/content/abstract/scopus_id/85078024661,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85078024661&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85078024661&origin=inward,NRW,169-184 +Y,Bandettini,Article,NeuroImage,Sub-millimeter fMRI reveals multiple topographical digit representations that form action maps in human motor cortex,Sriranga Kashyap;Benedikt A. Poser;Sean Marrett;Peter A. Bandettini;Jozien Goense;Daniel A. Handwerker;Emily S. Finn;Laurentius Huber;Marlene Bönstrup;Dimo Ivanov;Natalia Petridou;Daniel R. Glen,2020-03-01,10.1016/j.neuroimage.2019.116463,31862526,85076716317,2-s2.0-85076716317,2,https://api.elsevier.com/content/abstract/scopus_id/85076716317,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85076716317&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85076716317&origin=inward,NIMH, +Y,Bandettini,Article,NeuroImage,Integrated VASO and perfusion contrast: A new tool for laminar functional MRI,Benedikt A. Poser;Linqing Li;Peter A. Bandettini;Larentius Huber;Yuhui Chai,2020-02-15,10.1016/j.neuroimage.2019.116358,31740341,85075905478,2-s2.0-85075905478,1,https://api.elsevier.com/content/abstract/scopus_id/85075905478,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85075905478&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85075905478&origin=inward,NIMH, +Y,Bandettini,Review,Progress in Neurobiology,Layer-dependent functional connectivity methods,Benedikt A. Poser;Kamil Uludag;Sean Marrett;So Hyun Han;Peter A. Bandettini;Yuhui Chai;Tony Stöcker;Emily S. Finn;Seong Gi Kim;Laurentius Huber;Rainer Goebel;Rüdiger Stirnberg,2020-01-01,10.1016/j.pneurobio.2020.101835,32512115,85086426599,2-s2.0-85086426599,0,https://api.elsevier.com/content/abstract/scopus_id/85086426599,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85086426599&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85086426599&origin=inward,IBS, +,Bandettini,Article,Amyotrophic Lateral Sclerosis and Frontotemporal Degeneration,Electrical impedance myography (EIM) in a natural history study of C9ORF72 mutation carriers,Tianxia Wu;Michelle B. Offit;Mary Kay Floeter;Tanya J. Lehky,2020-01-01,10.1080/21678421.2020.1752247,,85083719754,2-s2.0-85083719754,0,https://api.elsevier.com/content/abstract/scopus_id/85083719754,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85083719754&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85083719754&origin=inward,ATSDR, +Y,Bandettini,Article,NeuroImage,A deconvolution algorithm for multi-echo functional MRI: Multi-echo Sparse Paradigm Free Mapping,Peter A. Bandettini;César Caballero-Gaudes;Stefano Moia;Javier Gonzalez-Castillo;Puja Panwar,2019-11-15,10.1016/j.neuroimage.2019.116081,31419613,85070906384,2-s2.0-85070906384,1,https://api.elsevier.com/content/abstract/scopus_id/85070906384,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85070906384&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85070906384&origin=inward,MSCA, +Y,Bandettini,Article,Nature Neuroscience,Layer-dependent activity in human prefrontal cortex during working memory,Peter A. Bandettini;David C. Jangraw;Emily S. Finn;Laurentius Huber;Peter J. Molfese,2019-10-01,10.1038/s41593-019-0487-z,31551596,85072613366,2-s2.0-85072613366,5,https://api.elsevier.com/content/abstract/scopus_id/85072613366,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85072613366&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85072613366&origin=inward,NIMH,1687-1695 +,Basser,Article,Scientific Reports,Composite Hydrogel Model of Cartilage Predicts Its Load-Bearing Ability,Ferenc Horkay;Peter J. Basser,2020-12-01,10.1038/s41598-020-64917-1,32415132,85084787739,2-s2.0-85084787739,0,https://api.elsevier.com/content/abstract/scopus_id/85084787739,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85084787739&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85084787739&origin=inward,NSF, +,Basser,Article,Scientific Reports,Retaining information from multidimensional correlation MRI using a spectral regions of interest generator,Dan Benjamini;Kristofor Pas;Daniel P. Perl;Michal E. Komlosh;Peter J. Basser,2020-12-01,10.1038/s41598-020-60092-5,32094400,85079806695,2-s2.0-85079806695,1,https://api.elsevier.com/content/abstract/scopus_id/85079806695,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85079806695&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85079806695&origin=inward,NICHD, +,Basser,Article,NeuroImage,Feasibility of filter-exchange imaging (FEXI) in measuring different exchange processes in human brain,Zhaoqing Li;Ruiliang Bai;Yi Cheng Hsu;Peter Basser;Chaoliang Sun;Hui Liang,2020-10-01,10.1016/j.neuroimage.2020.117039,32534125,85086676983,2-s2.0-85086676983,1,https://api.elsevier.com/content/abstract/scopus_id/85086676983,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85086676983&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85086676983&origin=inward,NICHD, +,Basser,Article,Journal of Magnetic Resonance,Real-time measurement of diffusion exchange rate in biological tissue,Dan Benjamini;Teddy X. Cai;Nathan H. Williamson;Rea Ravin;Melanie Falgairolle;Michael J. O'Donovan;Peter J. Basser,2020-08-01,10.1016/j.jmr.2020.106782,,85087884082,2-s2.0-85087884082,0,https://api.elsevier.com/content/abstract/scopus_id/85087884082,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85087884082&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85087884082&origin=inward,NIGMS, +,Basser,Article,Clinical Neurophysiology,Measuring conduction velocity distributions in peripheral nerves using neurophysiological techniques,Felipe Vial;Mark Hallett;Sinisa Pajevic;Giorgio Leodori;Alexandru V. Avram;Zhen Ni;Peter J. Basser,2020-07-01,10.1016/j.clinph.2020.04.008,32417700,85084586854,2-s2.0-85084586854,0,https://api.elsevier.com/content/abstract/scopus_id/85084586854,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85084586854&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85084586854&origin=inward,NINDS,1581-1588 +,Basser,Article,NMR in Biomedicine,Multidimensional correlation MRI,Dan Benjamini;Peter J. Basser,2020-01-01,10.1002/nbm.4226,31909516,85078238001,2-s2.0-85078238001,0,https://api.elsevier.com/content/abstract/scopus_id/85078238001,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85078238001&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85078238001&origin=inward,, +,Basser,Article,eLife,Magnetic resonance measurements of cellular and sub-cellular membrane structures in live and fixed neural tissue,Dan Benjamini;Nima S. Ghorashi;Dave Ide;Teddy X. Cai;Nathan H. Williamson;Hellmut Merkle;Michael J. O’donovan;Rea Ravin;Melanie Falgairolle;Ruiliang Bai;Dvir Blivis;Peter J. Basser,2019-12-01,10.7554/eLife.51101,31829935,85077588305,2-s2.0-85077588305,3,https://api.elsevier.com/content/abstract/scopus_id/85077588305,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85077588305&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85077588305&origin=inward,ZJU, +,Basser,Erratum,Proceedings of the National Academy of Sciences of the United States of America,Erratum: Regulation of myelin structure and conduction velocity by perinodal astrocytes (Proceedings of the National Academy of Sciences of the United States of America (2018) 115 (11832–11837) DOI: 10.1073/pnas.1811013115),William C. Huffman;Hiroaki Wake;R. Douglas Fields;Vanja Lazarevic;Sinisa Pajevic;Jeffrey C. Smith;Dipankar J. Dutta;Shahriar SheikhBahaei;Dong Ho Woo;Philip R. Lee;Olena Bukalo;Peter J. Basser,2019-06-18,10.1073/pnas.1908361116,31182569,85067842616,2-s2.0-85067842616,0,https://api.elsevier.com/content/abstract/scopus_id/85067842616,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85067842616&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85067842616&origin=inward,,12574 +,Basser,Article,Human Molecular Genetics,Genome-wide meta-Analysis identifies BARX1 and EML4-MTA3 as new loci associated with infantile hypertrophic pyloric stenosis,Heather A. Boyd;David M. Hougaard;Jonas Bybjerg-Grauholm;Bjarke Feenstra;Denise M. Kay;Agneta Nordenskjöld;Sanne Gørtz;Mads Melbye;João Fadista;Line Skotte;Hans Matsson;Michele Caggana;Frank Geller;Paul A. Romitti;James L. Mills,2019-01-15,10.1093/hmg/ddy347,30281099,85059503621,2-s2.0-85059503621,4,https://api.elsevier.com/content/abstract/scopus_id/85059503621,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85059503621&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85059503621&origin=inward,"FSS, DFF",332-340 +,Basser,Article,IEEE Transactions on Medical Imaging,Generalized mean apparent propagator MRI to measure and image advective and dispersive flows in medicine and biology,Dan Benjamini;Nathan H. Williamson;Michal E. Komlosh;Peter J. Basser,2019-01-01,10.1109/TMI.2018.2852259,30010549,85049995497,2-s2.0-85049995497,3,https://api.elsevier.com/content/abstract/scopus_id/85049995497,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85049995497&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85049995497&origin=inward,,11-20 +,Berman,Article,Nature Communications,Dissecting transcriptomic signatures of neuronal differentiation and maturation using iPSCs,Stephanie C. Page;Stephen A. Semick;Karen F. Berman;Ronald D.G. McKay;Jose A. Apud;Brady J. Maher;William S. Ulrich;Joo Heon Shin;Joshua G. Chenoweth;Anandita Rajpurohit;Gregory R. Hamersky;Huei Ying Chen;James C. Barrow;Andrew E. Jaffe;Daniel R. Weinberger;Amritha Jaishankar;Leonardo Collado-Torres;Alan J. Cross;Richard E. Straub;Daniel J. Hiler;Daniel J. Hoeppner;Amanda J. Price;Suel Kee Kim;Kamel Shibbani;Keri Martinowich;Nicholas J. Brandon;Thomas M. Hyde;Yanhong Wang;Nicola Micali;Marcelo Diaz Bustamante;Joel E. Kleinman;Alana Sellers;Ba Doi N. Phan;Roland W. Bürli;Cristian Valencia;Emily E. Burke;Carlo Colantuoni,2020-12-01,10.1038/s41467-019-14266-z,31974374,85078161735,2-s2.0-85078161735,2,https://api.elsevier.com/content/abstract/scopus_id/85078161735,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85078161735&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85078161735&origin=inward,, +,Berman,Article,Nature Communications,Transcriptomic and cellular decoding of regional brain vulnerability to neurogenetic disorders,Konrad Wagstyl;Daniel H. Geschwind;Casey Paquola;Luis de la Torre-Ubieta;Rafael Romero-Garcia;Ajay Nadig;František Váša;Jonathan D. Blumenthal;Joan C. Han;Sarah E. Morgan;François M. Lalonde;Nancy R. Lee;Jakob Seidlitz;Declan G. Murphy;Edward T. Bullmore;Siyuan Liu;Armin Raznahan;Boris Bernhardt;Liv S. Clasen;Petra E. Vértes;Damon Polioudakis;Richard A.I. Bethlehem,2020-12-01,10.1038/s41467-020-17051-5,32620757,85087425878,2-s2.0-85087425878,0,https://api.elsevier.com/content/abstract/scopus_id/85087425878,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85087425878&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85087425878&origin=inward,NICHD, +,Berman,Article,Translational Psychiatry,Whole-blood expression of inflammasome- and glucocorticoid-related mRNAs correctly separates treatment-resistant depressed patients from drug-free and responsive patients in the BIODEP study,Nicole Mariani;Naghmeh Nikkheslat;Maria A. Nettis;Courtney Worrell;Daniela Enache;Carmine M. Pariante;Linda Pointon;Luca Sforzini;Nadia Cattane;Clarissa Ferrari;Philip J. Cowen;Neil A. Harrison;Caitlin Hastings;Melisa Kose;Peter de Boer;Nicola Lopizzo;Zuzanna Zajkowska;Annamaria Cattaneo;Valeria Mondelli;Declan Jones;Edward T. Bullmore;Anna P. McLaughlin;Lorinda Turner;Wayne C. Drevets;Giulia Lombardo;Jonathan Cavanagh;Monica Mazzelli,2020-12-01,10.1038/s41398-020-00874-7,32699209,85088368060,2-s2.0-85088368060,0,https://api.elsevier.com/content/abstract/scopus_id/85088368060,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85088368060&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85088368060&origin=inward,"ADRC, UW", +,Berman,Review,Translational Psychiatry,ENIGMA and global neuroscience: A decade of large-scale studies of the brain in health and disease across more than 40 countries,Patricia J. Conrod;Laurena Holleran;Jun Soo Kwon;Tianye Jia;Jian Chen;Josselin Houenou;Lei Wang;Max A. Laansma;Robin Bülow;Lauren E. Salminen;Karen Caeyenberghs;Stefan Ehrlich;Sean N. Hatton;Nils Opel;Federica Piras;Thomas Frodl;Lisa T. Eyler;Eus J.W. Van Someren;Brenda L. Bartnik-Olson;Norbert Hosten;Andre Altmann;Clyde Francks;Je Yeon Yun;Jeanne Leerssen;Georg Homuth;Premika S.W. Boedhoe;Daqiang Sun;Stephane A. De Brito;Joseph O’ Neill;Willem B. Bruin;Bhim M. Adhikari;Kevin Hilbert;Yann Chye;Carles Soriano-Mas;Daniel Garijo;Neda Jahanshad;Celia van der Merwe;Arielle R. Baskin-Sommers;Yanli Zhang-James;Anderson M. Winkler;Fabrizio Piras;Esther Walton;Danai Dima;Guohao Zhang;Joanna Bright;Merel C. Postema;Natalia Shatokhina;Gary Donohoe;Janna Marie Bas-Hoogendam;Janita Bralten;Graeme Fairchild;Rachel M. Brouwer;Tiffany C. Ho;David A. Baron;Yolanda Gil;Simon E. Fisher;Laura K.M. Han;Ole A. Andreassen;Guido A. van Wingen;Tomas Hajek;Sara Bertolín;Katharina Wittfeld;André Aleman;Hans J. Grabe;Margaret J. Wright;Paul M. Thompson;Charlotte A.M. Cecil;Courtney A. Filippi;Carolien G.F. de Kovel;Marieke Klein;Udo Dannlowski;Stephen V. Faraone;Robert R. Althoff;Ronald A. Cohen;Jan K. Buitelaar;James H. Cole;Sophia I. Thomopoulos;Sylvane Desrivieres;Henry Völzke;Jean Paul Fouche;Carrie E. Bearden;Bernhard T. Baune;Gianfranco Spalletta;Sonja M.C. de Zwarte;Carrie Esopenko;Leonardo Tozzi;Moji Aghajani;Christopher R.K. Ching;Ingrid Agartz;Emily L. Dennis;Ulrike Lueken;Alexander Teumer;Abraham Nunes;Pauline Favre;Elena Pozzi;Iliyan Ivanov;Laura A. Berner;Amanda K. Tilot;Sinead Kelly;Katrina L. Grasby,2020-12-01,10.1038/s41398-020-0705-1,32198361,85082148270,2-s2.0-85082148270,14,https://api.elsevier.com/content/abstract/scopus_id/85082148270,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85082148270&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85082148270&origin=inward,NIH, +,Berman,Editorial,The American journal of psychiatry,Subcortical Signatures of Hemizygosity and Psychosis in 22q11.2 Deletion Syndrome: Finding Common Ground in Rare Genetic Variation,Michael D. Gregory;Daniel P. Eisenberg;Karen F. Berman,2020-07-01,10.1176/appi.ajp.2020.20050598,32605438,85087420322,2-s2.0-85087420322,0,https://api.elsevier.com/content/abstract/scopus_id/85087420322,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85087420322&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85087420322&origin=inward,,564-566 +,Berman,Article,American Journal of Psychiatry,Distinct Polygenic Score Profiles in Schizophrenia Subgroups with Different Trajectories of Cognitive Development,Sofia R. Zaidman;Karen F. Berman;Dwight Dickinson;Michael D. Gregory;Daniel P. Eisenberg;Evan J. Giangrande,2020-04-01,10.1176/appi.ajp.2019.19050527,31838871,85083160174,2-s2.0-85083160174,3,https://api.elsevier.com/content/abstract/scopus_id/85083160174,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85083160174&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85083160174&origin=inward,NIMH,298-307 +,Berman,Article,Annals of Neurology,Longitudinal Positron Emission Tomography of Dopamine Synthesis in Subjects with GBA1 Mutations,Jenny Kim;Ellen Sidransky;Karen F. Berman;Joseph C. Masdeu;Michael D. Gregory;Daniel P. Eisenberg;Grisel Lopez;Angela M. Ianni;Shannon E. Grogans;Catherine Groden,2020-04-01,10.1002/ana.25692,32030791,85082093516,2-s2.0-85082093516,0,https://api.elsevier.com/content/abstract/scopus_id/85082093516,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85082093516&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85082093516&origin=inward,NHGRI,652-657 +,Berman,Article,Molecular Psychiatry,KCNH2-3.1 mediates aberrant complement activation and impaired hippocampal-medial prefrontal circuitry associated with working memory deficits,Andrew Jaffe;Venkata S. Mattay;Karen F. Berman;Qingjun Tian;Fengyu Zhang;Yingbo Li;Kuan Hong Wang;Zhonghua Hu;Sunny Lang Qin;Joo Heon Shin;Daniel Paredes;Joseph H. Callicott;Daniel R. Weinberger;Vijay Sadashivaiah;Feng Yang;Wei Xia;Ming Ren;Jian Zhu;Yankai Jia;Shujuan Zhu;Jingxian Wu;Nina Rajpurohit;Qiang Chen;Xinjian Li,2020-01-01,10.1038/s41380-019-0530-1,31570775,85073989509,2-s2.0-85073989509,0,https://api.elsevier.com/content/abstract/scopus_id/85073989509,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85073989509&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85073989509&origin=inward,NINDS,206-229 +,Berman,Article,Cerebral Cortex,Sequence Variation Associated with SLC12A5 Gene Expression Is Linked to Brain Structure and Function in Healthy Adults,Venkata S. Mattay;Joseph H. Callicott;Karen F. Berman;Daniel Y. Rubinstein;Michael D. Gregory;J. Shane Kippenhan;Richard Coppola,2019-12-17,10.1093/cercor/bhy344,30668668,85067258780,2-s2.0-85067258780,1,https://api.elsevier.com/content/abstract/scopus_id/85067258780,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85067258780&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85067258780&origin=inward,NIMH,4654-4661 +,Berman,Article,Cerebral Cortex,The Dynamic Associations between Cortical Thickness and General Intelligence are Genetically Mediated,Greg L. Wallace;Armin Raznahan;Liv S. Clasen;Joshua N. Pritikin;Michael C. Neale;J. Eric Schmitt;Jay N. Giedd;Nancy Raitano Lee,2019-12-17,10.1093/cercor/bhz007,30715232,85075462723,2-s2.0-85075462723,4,https://api.elsevier.com/content/abstract/scopus_id/85075462723,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85075462723&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85075462723&origin=inward,NIEHS,4743-4752 +,Berman,Article,Human Brain Mapping,Enhancement of indirect functional connections with shortest path length in the adult autistic brain,John Suckling;Edward T. Bullmore;Michael V. Lombardo;Bhismadev Chakrabarti;Simon Baron-Cohen;Amber N.V. Ruigrok;Xiaonan Guo;Huafu Chen;Meng Chuan Lai;Tiago Simas,2019-12-15,10.1002/hbm.24777,31464062,85071903261,2-s2.0-85071903261,1,https://api.elsevier.com/content/abstract/scopus_id/85071903261,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85071903261&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85071903261&origin=inward,OBI,5354-5369 +,Berman,Article,Cell,"Genomic Relationships, Novel Loci, and Pleiotropic Mechanisms across Eight Psychiatric Disorders",Pieter J. Hoekstra;Richard J.L. Anney;Edwin H. Cook;Yen Chen A. Feng;Ole Mors;Marianne G. Pedersen;Timothy Poterba;Alysa E. Doyle;Richard A. Belliveau;Maria Soler Artigas;Olafur O. Gudmundsson;Jesper B. Poulsen;Jakob Grove;Russell Schachar;Sintia Belangero;Laramie E. Duncan;George Kirov;Luis A. Rohde;Elliot M. Tucker-Drob;Carsten B. Pedersen;Jonas Bybjerg-Grauholm;Zhaozhong Zhu;Tian Ge;Marie Bækvad-Hansen;Esben Agerbo;Christine S. Hansen;Eske M. Derks;Preben B. Mortensen;Jaakko Kaprio;Rolf Adolfsson;Raymond K. Walters;Gísli Baldursson;Giovanni Coppola;Joseph D. Buxbaum;Christie L. Burton;Ashley Dumont;Joanna Martin;Hailiang Huang;Paula Rovira;Henry R. Kranzler;Duncan S. Palmer;James J. McGough;Ziarih Hawi;David M. Hougaard;Francesco Bettella;Claire Churchhouse;Michel G. Nivard;Philip Asherson;Phil H. Lee;Hakon Hakonarson;Daniel P. Howrigan;Kimberly Chambert;Andrew D. Grotzinger;Robert D. Oades;Hyejung Won;Jennifer Crosbie;Cristina Sánchez-Mora;Jacob Rosenthal;Patrick Turley;Andreas Reif;F. Kyle Satterstrom;M. J. Arranz;Jan Haavik;Marta Ribasés;Klaus Peter Lesch;Sandra K. Loo;Thomas Werge;Amaia Hervás;Kate Langley;Jurjen J. Luykx;Josep Antoni Ramos-Quiroga;Triinu Peters;Catharina A. Hartman;Patrick W.L. Leung;Meg M.J. Wang;Stacy Steinberg;Anna Keski-Rahkonen;Søren Dalsgaard;Ditte Demontis;Danielle Posthuma;G. Bragi Walters;Miquel Casas;Alicia R. Martin;Jan Buitelaar;Dongmei Yu;Clement C. Zai;Eli A. Stahl;Tobias Banaschewski;Dan E. Arking;Verneri Anttila;Hreinn Stefansson;Felecia Cerrato;Josephine Elia;Aribert Rothenberger;Jonna Kuntsi;Mark Bellgrove;Tetyana Zayats;Jennifer L. Moran;Bru Cormand;Sarah E. Medland,2019-12-12,10.1016/j.cell.2019.11.020,31835028,85076270049,2-s2.0-85076270049,32,https://api.elsevier.com/content/abstract/scopus_id/85076270049,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85076270049&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85076270049&origin=inward,JHU,1469-1482.e11 +,Berman,Article,Brain,Williams syndrome hemideletion and LIMK1 variation both affect dorsal stream functional connectivity,Ranjani Prabhakaran;Karen F. Berman;Michael D. Gregory;Katherine Roe;Daniel P. Eisenberg;Maxwell L. Elliott;J. Shane Kippenhan;Carolyn B. Mervis;Jasmin B. Czarapata;Philip D. Kohn;Tiffany Nash,2019-12-01,10.1093/brain/awz323,31687737,85076124431,2-s2.0-85076124431,0,https://api.elsevier.com/content/abstract/scopus_id/85076124431,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85076124431&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85076124431&origin=inward,NINDS,3963-3974 +,Berman,Conference Paper,Lecture Notes in Computer Science (including subseries Lecture Notes in Artificial Intelligence and Lecture Notes in Bioinformatics),"Bridging imaging, genetics, and diagnosis in a coupled low-dimensional framework",Sayan Ghosal;Venkata S. Mattay;Karen F. Berman;William Ulrich;Archana Venkataraman;Daniel R. Weinberger;Aaron L. Goldman;Qiang Chen,2019-01-01,10.1007/978-3-030-32251-9_71,,85075680805,2-s2.0-85075680805,0,https://api.elsevier.com/content/abstract/scopus_id/85075680805,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85075680805&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85075680805&origin=inward,NIMH,647-655 +,Berman,Editorial,American Journal of Psychiatry,Cortical thickness and connectivity in schizophrenia,Edward Bullmore,2019-01-01,10.1176/appi.ajp.2019.19050509,31256617,85068884263,2-s2.0-85068884263,1,https://api.elsevier.com/content/abstract/scopus_id/85068884263,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85068884263&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85068884263&origin=inward,,505-506 +,Bielekova,Article,Annals of Human Genetics,Genetic model of MS severity predicts future accumulation of disability,Peter Kosa;Dena Hernandez;Makoto Tanigawa;Kayla C. Jackson;Ann Marie Weideman;Bibiana Bielekova;Christopher Barbour;Katherine Sun,2020-01-01,10.1111/ahg.12342,31396954,85070717159,2-s2.0-85070717159,0,https://api.elsevier.com/content/abstract/scopus_id/85070717159,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85070717159&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85070717159&origin=inward,HHS,1-10 +,Bielekova,Article,Frontiers in Neurology,Quantifications of CSF Apoptotic Bodies Do Not Provide Clinical Value in Multiple Sclerosis,Jordan Mizrahi;Ruturaj Masvekar;Bibiana Bielekova;John Park;Peter R. Williamson,2019-11-26,10.3389/fneur.2019.01241,,85076683499,2-s2.0-85076683499,0,https://api.elsevier.com/content/abstract/scopus_id/85076683499,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85076683499&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85076683499&origin=inward,NIH, +,Bielekova,Article,Frontiers in Neurology,"Intrathecal, Not Systemic Inflammation Is Correlated With Multiple Sclerosis Severity, Especially in Progressive Multiple Sclerosis",Peter Kosa;Bibiana Bielekova;Kayla Jackson;Joshua L. Milstein;Christopher R. Barbour,2019-11-22,10.3389/fneur.2019.01232,,85076673218,2-s2.0-85076673218,0,https://api.elsevier.com/content/abstract/scopus_id/85076673218,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85076673218&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85076673218&origin=inward,NIAID, +,Bielekova,Article,Multiple Sclerosis Journal,CSF inflammatory biomarkers responsive to treatment in progressive multiple sclerosis capture residual inflammation associated with axonal damage,Finn Sellebjerg;Mika Komori;Lars Börnsen;Marina Rode von Essen;Jeppe Romme Christensen;Rikke Ratzer;Bibi Bielekova,2019-06-01,10.1177/1352458518774880,29775134,85047437818,2-s2.0-85047437818,5,https://api.elsevier.com/content/abstract/scopus_id/85047437818,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85047437818&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85047437818&origin=inward,NINDS,937-946 +,Bielekova,Article,Cold Spring Harbor Perspectives in Medicine,Daclizumab therapy for multiple sclerosis,Bibiana Bielekova,2019-05-01,10.1101/cshperspect.a034470,29661806,85065520676,2-s2.0-85065520676,3,https://api.elsevier.com/content/abstract/scopus_id/85065520676,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85065520676&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85065520676&origin=inward,NINDS, +,Bielekova,Article,JAMA Psychiatry,"Association of Polygenic Liabilities for Major Depression, Bipolar Disorder, and Schizophrenia with Risk for Depression in the Danish Population",Carsten B. Pedersen;Esben Agerbo;Marianne G. Pedersen;Merete Nordentoft;David M. Hougaard;Jonas Bybjerg-Grauholm;Nis P. Suppli;Ole Andreassen;Preben B. Mortensen;Ole Mors;Thomas Werge;Anders D. Børglum;John J. McGrath;Katherine L. Musliner;Marie Bækvad-Hansen,2019-05-01,10.1001/jamapsychiatry.2018.4166,30698613,85061012249,2-s2.0-85061012249,17,https://api.elsevier.com/content/abstract/scopus_id/85061012249,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85061012249&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85061012249&origin=inward,NIDA,516-525 +,Bielekova,Article,PLoS Biology,Microstructural and functional gradients are increasingly dissociated in transmodal cortices,Jakob Seidlitz;Casey Paquola;Edward T. Bullmore;Boris C. Bernhardt;Alan C. Evans;Jonathan Smallwood;Bratislav Misic;Daniel S. Margulies;Seok Jun Hong;Reinder Vos De Wael;Konrad Wagstyl;Richard A.I. Bethlehem,2019-05-01,10.1371/journal.pbio.3000284,31107870,85066967446,2-s2.0-85066967446,12,https://api.elsevier.com/content/abstract/scopus_id/85066967446,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85066967446&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85066967446&origin=inward,CIHR, +,Bielekova,Article,Nature Genetics,Genome-wide association study identifies 30 loci associated with bipolar disorder,Srdjan Djurovic;Matthew Flickinger;Sarah E. Bergen;Urs Heilbronner;Maciej Trzaskowski;Anders M. Dale;Cristiana Cruceanu;Peter A. Holmans;Erlend Bøen;Huda Akil;Michael Bauer;Jaqueline Goldstein;Stefan Herms;Monika Budde;Jakob Grove;J. Raymond DePaulo;Yunpeng Wang;Simone de Jong;Jonas Bybjerg-Grauholm;Carsten Bøcker Pedersen;Scott D. Gordon;Nelson B. Freimer;Marie Bækvad-Hansen;Enda M. Byrne;Liam Abbott;Stephan Ripke;Esben Agerbo;Dominic Holland;Claudia Giambartolomei;Alexander L. Richards;Diego Albani;Anders Juréus;Christiaan A. de Leeuw;Verneri Antilla;Katrin Gade;Per Hoffmann;Adebayo Anjorin;Jurgen Del-Favero;Vassily Trubetskoy;Gerome Breen;Tune H. Pers;Ashley Dumont;Liz Forty;Elaine K. Green;Margit Burmeister;Martin Hautzinger;Christine Fraser;Louise Frisén;David Curtis;Andrew McQuillin;Jack D. Barchas;Stéphane Jamain;Franziska Degenhardt;Claire Churchhouse;William Byerley;Diane Gage;Tatiana M. Foroud;William Coryell;Torbjørn Elvsåshagen;James Boocock;Marianne Giørtz Pedersen;Toni Kim Clarke;Weihua Guan;William Bunney;Danfeng Chen;Ney Alliey-Rodriguez;José Guzman-Parra;Valentina Escott-Price;Kimberly Chambert;Jonathan R.I. Coleman;Marian L. Hamshere;Melissa J. Green;Tiffany A. Greenwood;Richard Belliveau;Piotr M. Czerski;Jennifer M.Whitehead Pavlides;Amanda L. Dobbyn;Judith A. Badner;Chun Chieh Fan;Maria Hipolito;Stacy Steinberg;Julie Garnham;Katherine Gordon-Smith;Manuel Mattheisen;Miquel Casas;Thomas D. Als;Pablo Cervantes;Josef Frank;Nicholas Bass;Eli A. Stahl;Jessica S. Johnson;Sascha B. Fischer;David W. Craig;Felecia Cerrato;Alexander W. Charney;Héléna A. Gaspar;Laura Huckins;Swapnil Awasthi;Andreas J. Forstner;Marco P. Boks,2019-05-01,10.1038/s41588-019-0397-8,31043756,85065180508,2-s2.0-85065180508,142,https://api.elsevier.com/content/abstract/scopus_id/85065180508,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85065180508&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85065180508&origin=inward,VR,793-803 +,Blair,Article,Biological Psychiatry: Cognitive Neuroscience and Neuroimaging,"Alcohol Use Disorder, But Not Cannabis Use Disorder, Symptomatology in Adolescents Is Associated With Reduced Differential Responsiveness to Reward Versus Punishment Feedback During Instrumental Learning",Jennie Lukoff;Erin Carollo;Matthew Dobbertin;Johannah Bashford-Largo;Karina S. Blair;Joseph Aloi;Francesca M. Filbey;R. James R. Blair;Soonjo Hwang;Ru Zhang;Kathleen I. Crum;Stuart F. White,2020-06-01,10.1016/j.bpsc.2020.02.003,32299790,85083112575,2-s2.0-85083112575,0,https://api.elsevier.com/content/abstract/scopus_id/85083112575,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85083112575&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85083112575&origin=inward,AACAP,610-618 +,Blair,Review,Muscle and Nerve,The role of technology in the lives of neuromuscular patients,Zachary Simmons,2020-06-01,10.1002/mus.26867,32413246,85084734027,2-s2.0-85084734027,0,https://api.elsevier.com/content/abstract/scopus_id/85084734027,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85084734027&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85084734027&origin=inward,,681 +,Blair,Article,Journal of the American Academy of Child and Adolescent Psychiatry,"Investigating Sex Differences in Emotion Recognition, Learning, and Regulation Among Youths With Conduct Disorder",Helena Oldenhof;Lucres Jansen;Gregor Kohls;Amaia Hervas;Aranzazu Fernández-Rivas;Christina Stadler;Sarah Baumann;Aitana Bigorra;Réka Siklósi;Roberta Dochnal;Mara Pirlympou;Iñaki Kerexeta-Lizeaga;Kerstin Konrad;Jack C. Rogers;Anne Martinelli;Karen Gonzalez-Madruga;Fernando Aguirregomoscorta-Menéndez;Roberta Clanton;Katharina Ackermann;Zacharias Kalogerakis;Harriet Cornwell;Beate Herpertz-Dahlmann;Malou Gundlach;Arne Popma;James R. Blair;Lisette van den Boogaard;Linda Kersten;Areti Smaragdi;Rosalind Baker;Ruth Pauli;Leonidas Papadakos;Christine M. Freitag;Graeme Fairchild;Eva Sesma-Pardo;Wolfgang Scharke;Dimitris Dikeos;Martin Prätzlich;Anka Bernhard;Stephane A. De Brito,2020-02-01,10.1016/j.jaac.2019.04.003,31026574,85071985460,2-s2.0-85071985460,3,https://api.elsevier.com/content/abstract/scopus_id/85071985460,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85071985460&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85071985460&origin=inward,CD,263-273 +,Blair,Article,Biological Psychiatry: Cognitive Neuroscience and Neuroimaging,Inhibition-Related Cortical Hypoconnectivity as a Candidate Vulnerability Marker for Obsessive-Compulsive Disorder,Naomi Fineberg;Edward T. Bullmore;Ana Zadel;Adam Hampshire;Eyal Soreq;Stefano Sandrone;Trevor W. Robbins;Samuel R. Chamberlain;Barbara J. Sahakian,2020-02-01,10.1016/j.bpsc.2019.09.010,31806485,85076208185,2-s2.0-85076208185,0,https://api.elsevier.com/content/abstract/scopus_id/85076208185,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85076208185&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85076208185&origin=inward,SRC,222-230 +,Blair,Review,Journal of Dual Diagnosis,Modeling the Comorbidity of Cannabis Abuse and Conduct Disorder/Conduct Problems from a Cognitive Neuroscience Perspective,R. James Blair,2020-01-02,10.1080/15504263.2019.1668099,31608811,85076497530,2-s2.0-85076497530,1,https://api.elsevier.com/content/abstract/scopus_id/85076497530,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85076497530&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85076497530&origin=inward,,3-21 +,Blair,Article,Amyotrophic Lateral Sclerosis and Frontotemporal Degeneration,Selection design phase II trial of high dosages of tamoxifen and creatine in amyotrophic lateral sclerosis,Merit E. Cudkowicz;Eric A. Macklin;Hong Yu;David Schoenfeld;Zachary Simmons;Katy Mahoney;Mazen M. Dimachkie;Michael D. Weiss;Katherine E. Jackson;Johnny S. Salameh;Paul E. Barkhaus;Nazem Atassi;Elizabeth Simpson;Benjamin Rix Brooks;Laura Simionescu;William S. David;Suma Babu;Jason Walker;Alan Pestronk;Jeremy Shefner;Swati Aggarwal,2020-01-02,10.1080/21678421.2019.1672750,31608711,85074356829,2-s2.0-85074356829,2,https://api.elsevier.com/content/abstract/scopus_id/85074356829,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85074356829&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85074356829&origin=inward,,15-23 +,Blair,Review,Current Opinion in Psychiatry,"Recent neuro-imaging findings with respect to conduct disorder, callous-unemotional traits and psychopathy",Ru Zhang;Robert James R. Blair,2020-01-01,10.1097/YCO.0000000000000559,31725420,85076126170,2-s2.0-85076126170,0,https://api.elsevier.com/content/abstract/scopus_id/85076126170,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85076126170&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85076126170&origin=inward,NIMH,45-50 +,Blair,Article,Addiction Biology,Alcohol use disorder and cannabis use disorder symptomatology in adolescents is associated with dysfunction in neural processing of future events,Alita Mobley;Laura C. Thornton;Karina S. Blair;Kayla Pope;R. James Blair;Abraham D. Killanin;Joseph Aloi;Patrick M. Tyler;Harma Meffert;Francesca M. Filbey;Soonjo Hwang;Kathleen I. Crum;Stuart F. White,2020-01-01,10.1111/adb.12885,,85080930791,2-s2.0-85080930791,0,https://api.elsevier.com/content/abstract/scopus_id/85080930791,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85080930791&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85080930791&origin=inward,, +,Blair,Article,Psychiatry Research - Neuroimaging,Alcohol use disorder and cannabis use disorder symptomatology in adolescents are differentially related to dysfunction in brain regions supporting face processing,Emily K. Leiker;Heba Abdel-Rahim;Matthew Dobbertin;Niraj Shah;Stuart F. White;Francesca Filbey;Laura C. Thornton;Karina S. Blair;Kayla Pope;Joseph Aloi;Patrick M. Tyler;Harma Meffert;R. James R. Blair;Brittany K. Taylor,2019-10-30,10.1016/j.pscychresns.2019.09.004,31541926,85072302321,2-s2.0-85072302321,1,https://api.elsevier.com/content/abstract/scopus_id/85072302321,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85072302321&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85072302321&origin=inward,,62-71 +,Blair,Article,Journal of Traumatic Stress,Psychometrics of a Brief Trauma Symptom Screen for Youth in Residential Care,Mary B. Chmelka;Heba Abdel-Rahim;Kimberly Johnson;Matthew Dobbertin;Irina Patwardan;Niraj Shah;W. Alex Mason;Kayla Pope;R. James Blair;Patrick M. Tyler,2019-10-01,10.1002/jts.22442,31441982,85070061983,2-s2.0-85070061983,2,https://api.elsevier.com/content/abstract/scopus_id/85070061983,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85070061983&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85070061983&origin=inward,NIMH,753-763 +,Blair,Editorial,Muscle and Nerve,Changing with the times,Zachary Simmons,2019-10-01,10.1002/mus.26682,31444976,85072357295,2-s2.0-85072357295,0,https://api.elsevier.com/content/abstract/scopus_id/85072357295,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85072357295&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85072357295&origin=inward,,343-344 +,Blair,Article,Journal of Child and Adolescent Psychopharmacology,Threat Responsiveness as a Function of Cannabis and Alcohol Use Disorder Severity,Jennie Lukoff;Emily K. Leiker;Kimberly Johnson;Matt Dobbertin;Francesca Filbey;Laura C. Thornton;Karina S. Blair;Patrick M. Tyler;Robert James R. Blair;Stuart F. White,2019-08-01,10.1089/cap.2019.0004,31170004,85071782104,2-s2.0-85071782104,5,https://api.elsevier.com/content/abstract/scopus_id/85071782104,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85071782104&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85071782104&origin=inward,,526-534 +,Blair,Article,Journal of Affective Disorders,"Attentional control abnormalities in posttraumatic stress disorder: Functional, behavioral, and structural correlates",Bekh Bradley;Tanja Jovanovic;Tricia Z. King;Abigail Powers;Raven A. Hardy;Sindhuja Surapaneni;Kerry J. Ressler;Cherita Clendinen;James R. Blair;Tim D. Ely;Negar Fani;Stuart F. White,2019-06-15,10.1016/j.jad.2019.04.098,31078834,85065843515,2-s2.0-85065843515,5,https://api.elsevier.com/content/abstract/scopus_id/85065843515,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85065843515&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85065843515&origin=inward,EMCF,343-351 +,Blair,Review,Aggression and Violent Behavior,What role can cognitive neuroscience play in violence prevention?,R. J.R. Blair,2019-05-01,10.1016/j.avb.2019.02.008,,85061362475,2-s2.0-85061362475,1,https://api.elsevier.com/content/abstract/scopus_id/85061362475,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85061362475&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85061362475&origin=inward,,158-164 +,Blair,Review,Neuroscience and Biobehavioral Reviews,The genetic underpinnings of callous-unemotional traits: A systematic research review,John M. Hettema;Ashlee A. Moore;R. James Blair;Roxann Roberson-Nay,2019-05-01,10.1016/j.neubiorev.2019.02.018,30817934,85062210960,2-s2.0-85062210960,5,https://api.elsevier.com/content/abstract/scopus_id/85062210960,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85062210960&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85062210960&origin=inward,NIMH,85-97 +,Blair,Article,Developmental Neuropsychology,Applying a Cognitive Neuroscience Perspective to Disruptive Behavior Disorders: Implications for Schools,R. J.R. Blair;Ronald W. Thompson;Patrick M. Tyler;Stuart F. White,2019-01-02,10.1080/87565641.2017.1334782,29432037,85041909528,2-s2.0-85041909528,3,https://api.elsevier.com/content/abstract/scopus_id/85041909528,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85041909528&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85041909528&origin=inward,NIH,17-42 +,Blair,Article,Dialogues in Clinical Neuroscience,Dysfunctional neurocognition in individuals with clinically significant psychopathic traits,Robert James R. Blair,2019-01-01,10.31887/DCNS.2019.21.3/rblair,31749653,85075523607,2-s2.0-85075523607,1,https://api.elsevier.com/content/abstract/scopus_id/85075523607,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85075523607&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85075523607&origin=inward,NIMH,291-299 +,Blair,Article,European Journal of Neuroscience,Threat-of-shock decreases emotional interference on affective stroop performance in healthy controls and anxiety patients,Gabriella Alvarez;Christian Grillon;Tiffany R. Lago;Monique Ernst;Amanda Thongdarong;Karina S. Blair;James R. Blair,2019-01-01,10.1111/ejn.14624,31738835,85076359264,2-s2.0-85076359264,0,https://api.elsevier.com/content/abstract/scopus_id/85076359264,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85076359264&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85076359264&origin=inward,NIMH, +,Bushnell,Article,Brain : a journal of neurology,The role of the inferior parietal lobule in writer's cramp,Shabbir Hussain I. Merchant;Traian Popa;Eleni Frangos;Mark Hallett;Giorgio Leodori;Megan Bradson;Tianxia Wu;Felipe Vial-Undurraga;M. C. Bushnell;Silvina G. Horovitz;Jacob Parker,2020-06-01,10.1093/brain/awaa138,32428227,85086683004,2-s2.0-85086683004,0,https://api.elsevier.com/content/abstract/scopus_id/85086683004,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85086683004&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85086683004&origin=inward,,1766-1779 +,Bushnell,Article,"Pain medicine (Malden, Mass.)",Attitudes and Perceptions Toward Authorized Deception: A Pilot Comparison of Healthy Controls and Fibromyalgia Patients,Susan J. Goo;M. Catherine Bushnell;Emily A. Richards;Eleni Frangos;Patrick Korb;Marta Ceko;Brian T. Walitt;Luana Colloca;Brenda L. Justement,2020-04-01,10.1093/pm/pnz081,31009537,85083003316,2-s2.0-85083003316,0,https://api.elsevier.com/content/abstract/scopus_id/85083003316,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85083003316&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85083003316&origin=inward,,794-802 +,Bushnell,Article,"Journal of Neurology, Neurosurgery and Psychiatry",Primary lateral sclerosis: Consensus diagnostic criteria,Matthew B. Harms;Hiroshi Mitsumoto;John Ravits;Richard J. Barohn;Matthew C. Kiernan;Philippe Corcia;Leonard H. Van Den Berg;Jeffrey Statland;Zachary Simmons;Martin R. Turner;John K. Fink;Vincenzo Silani,2020-04-01,10.1136/jnnp-2019-322541,32029539,85079217298,2-s2.0-85079217298,4,https://api.elsevier.com/content/abstract/scopus_id/85079217298,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85079217298&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85079217298&origin=inward,MNDA,373-377 +,Chung,Article,Psychiatry Research,Utilization of the DSM-5 Self-Rated Level 1 Cross-Cutting Symptom Measure-Adult to Screen Healthy Volunteers for Research Studies,Joyce Y. Chung;Stephen Sinclair;Susanna Sung;Kalene Dehaut;Margaret Rose Mahoney;Cristan Farmer,2020-04-01,10.1016/j.psychres.2020.112822,32086029,85079516238,2-s2.0-85079516238,0,https://api.elsevier.com/content/abstract/scopus_id/85079516238,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85079516238&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85079516238&origin=inward,NIMH, +,Chung,Article,Psycho-Oncology,The feasibility and value of parent input when evaluating the mental health of young adults with and without cancer,Hiroe Hu;Joyce Y. Chung;Lori S. Wiener;Elizabeth L. Clayton;Maryland Pao,2020-01-01,10.1002/pon.5348,32022347,85080068174,2-s2.0-85080068174,0,https://api.elsevier.com/content/abstract/scopus_id/85080068174,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85080068174&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85080068174&origin=inward,, +,Cohen,Letter,Brain Stimulation,Phase-dependent transcranial magnetic stimulation of the lesioned hemisphere is accurate after stroke,Farah Fourcand;Christoph Zrenner;Leonardo G. Cohen;William Hayward;Margaret K. Hayward;Ulf Ziemann;Sara J. Hussain;Ethan R. Buch,2020-09-01,10.1016/j.brs.2020.07.005,32687898,85088372149,2-s2.0-85088372149,0,https://api.elsevier.com/content/abstract/scopus_id/85088372149,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85088372149&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85088372149&origin=inward,BMS,1354-1357 +,Cohen,Article,Brain Stimulation,Transcranial direct current stimulation facilitates response inhibition through dynamic modulation of the fronto-basal ganglia network,John A. Butman;Rita Volochayev;Wen Tung Wang;Leonardo G. Cohen;Marco Sandrini;Oluwole Awosika;Benjamin Xu,2020-01-01,10.1016/j.brs.2019.08.004,31422052,85070537877,2-s2.0-85070537877,4,https://api.elsevier.com/content/abstract/scopus_id/85070537877,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85070537877&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85070537877&origin=inward,CNRM,96-104 +,Cohen,Article,Scientific Reports,Beta rhythm events predict corticospinal motor output,Sara J. Hussain;Leonardo G. Cohen;Marlene Bönstrup,2019-12-01,10.1038/s41598-019-54706-w,31797890,85076058922,2-s2.0-85076058922,0,https://api.elsevier.com/content/abstract/scopus_id/85076058922,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85076058922&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85076058922&origin=inward,NINDS, +,Cohen,Article,Annals of Neurology,Low-Frequency Brain Oscillations Track Motor Recovery in Human Stroke,Lutz Krawinkel;Bastian Cheng;Robert Schulz;Leonardo G. Cohen;Marlene Bönstrup;Götz Thomalla;Jan Feldheim;Christian Gerloff,2019-12-01,10.1002/ana.25615,31604371,85074583387,2-s2.0-85074583387,1,https://api.elsevier.com/content/abstract/scopus_id/85074583387,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85074583387&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85074583387&origin=inward,GIF,853-865 +,Cohen,Chapter,Handbook of Clinical Neurology,Plasticity and recovery of function,Oluwole Awosika;Leonardo G. Cohen;Romain Quentin,2019-01-01,10.1016/B978-0-12-804281-6.00025-2,31590747,85072793082,2-s2.0-85072793082,0,https://api.elsevier.com/content/abstract/scopus_id/85072793082,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85072793082&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85072793082&origin=inward,,473-483 +,Cohen,Article,Cerebral Cortex,Sensorimotor oscillatory phase-power interaction gates resting human corticospinal output,Leonardo Claudino;Christoph Zrenner;Gabriel Cruciani;Ryan Thompson;Leonardo G. Cohen;Ethan Buch;Ulf Ziemann;Marlene Bönstrup;Sara J. Hussain;Gina Norato,2019-01-01,10.1093/cercor/bhy255,30496352,85066067275,2-s2.0-85066067275,2,https://api.elsevier.com/content/abstract/scopus_id/85066067275,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85066067275&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85066067275&origin=inward,NINDS,3766-3777 +,Cortese,Review,Current Opinion in Virology,Checkpoint inhibitors for the treatment of JC virus-related progressive multifocal leukoencephalopathy,Erin S. Beck;Irene Cortese,2020-02-01,10.1016/j.coviro.2020.02.005,32279025,85082864720,2-s2.0-85082864720,0,https://api.elsevier.com/content/abstract/scopus_id/85082864720,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85082864720&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85082864720&origin=inward,NIH,19-27 +,Cortese,Article,NeuroImage,"The genetics of cortical myelination in young adults and its relationships to cerebral surface area, cortical thickness, and intelligence: A magnetic resonance imaging study of twins and families: Genetics of Cortical Myelination, Area, Thickness, and Intelligence",Armin Raznahan;Siyuan Liu;Michael C. Neale;J. Eric Schmitt,2020-02-01,10.1016/j.neuroimage.2019.116319,31678229,85075464173,2-s2.0-85075464173,2,https://api.elsevier.com/content/abstract/scopus_id/85075464173,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85075464173&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85075464173&origin=inward,NIMH, +,Cortese,Article,JAMA Neurology,Association of Chronic Active Multiple Sclerosis Lesions with Disability in Vivo,Federica Masuzzo;Joan Ohayon;Irene C.M. Cortese;Pascal Sati;Daniel S. Reich;Hadar Kolb;Govind Nair;Tianxia Wu;Varun Sethi;Martina Absinta,2019-12-01,10.1001/jamaneurol.2019.2399,31403674,85070723559,2-s2.0-85070723559,12,https://api.elsevier.com/content/abstract/scopus_id/85070723559,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85070723559&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85070723559&origin=inward,NINDS,1474-1483 +,Cortese,Article,Annals of Clinical and Translational Neurology,Clinical trial of a humanized anti-IL-2/IL-15 receptor β chain in HAM/TSP,Joan Ohayon;Thomas A. Waldmann;Bonita R. Bryant;Yoshimi Enose-Akahata;Bridgette Jeanne Billioux;Raya Massoud;Unsong Oh;Nyater Ngouth;Steven Jacobson;Ashley Vellucci;Irene Cortese,2019-01-01,10.1002/acn3.50820,31402625,85070478095,2-s2.0-85070478095,2,https://api.elsevier.com/content/abstract/scopus_id/85070478095,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85070478095&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85070478095&origin=inward,NINDS,1383-1394 +,Duyn,Article,NeuroImage,B0-field dependence of MRI T1 relaxation in human brain,Peter van Gelderen;Jeff H. Duyn;Yicun Wang;Jacco A. de Zwart,2020-06-01,10.1016/j.neuroimage.2020.116700,32145438,85081659893,2-s2.0-85081659893,0,https://api.elsevier.com/content/abstract/scopus_id/85081659893,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85081659893&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85081659893&origin=inward,NIH, +,Duyn,Review,Current Opinion in Behavioral Sciences,Physiological changes in sleep that affect fMRI inference,Catie Chang;Dante Picchioni;Pinar S. Ozbay;Jeff H. Duyn,2020-06-01,10.1016/j.cobeha.2019.12.007,,85076708543,2-s2.0-85076708543,0,https://api.elsevier.com/content/abstract/scopus_id/85076708543,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85076708543&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85076708543&origin=inward,NINDS,42-50 +,Duyn,Article,Magnetic Resonance in Medicine,Background suppressed magnetization transfer MRI,Peter van Gelderen;Jeff H. Duyn,2020-03-01,10.1002/mrm.27978,31502706,85072082041,2-s2.0-85072082041,0,https://api.elsevier.com/content/abstract/scopus_id/85072082041,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85072082041&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85072082041&origin=inward,NINDS,883-891 +Y,Duyn,Article,NeuroImage,Reducing motion sensitivity in 3D high-resolution T2*-weighted MRI by navigator-based motion and nonlinear magnetic field correction,Jiaen Liu;Peter van Gelderen;Jeff H. Duyn;Jacco A. de Zwart,2020-02-01,10.1016/j.neuroimage.2019.116332,31689535,85075334408,2-s2.0-85075334408,0,https://api.elsevier.com/content/abstract/scopus_id/85075334408,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85075334408&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85075334408&origin=inward,NINDS, +,Duyn,Article,Magnetic Resonance in Medicine,Eight-channel parallel transmit-receive system for 7 T MRI with optically controlled and monitored on-coil current-mode RF amplifiers,Natalia Gudino;Jeff H. Duyn;Jacco A. de Zwart,2020-01-01,10.1002/mrm.28392,,85087829004,2-s2.0-85087829004,0,https://api.elsevier.com/content/abstract/scopus_id/85087829004,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85087829004&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85087829004&origin=inward,, +,Duyn,Article,Communications Biology,Sympathetic activity contributes to the fMRI signal,Pinar Senay Özbay;Jeff Duyn;Miranda Grace Chappel-Farley;Catie Chang;Hendrik Mandelkow;Dante Picchioni;Jacco Adrianus de Zwart;Peter van Gelderen,2019-12-01,10.1038/s42003-019-0659-0,31754651,85075132629,2-s2.0-85075132629,5,https://api.elsevier.com/content/abstract/scopus_id/85075132629,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85075132629&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85075132629&origin=inward,NINDS, +,Duyn,Article,Molecular Autism,The oxytocin receptor gene predicts brain activity during an emotion recognition task in autism,Simone Shamay-Tsoory;John Suckling;Florina Uzefovsky;Lindsay Chura;Bhismadev Chakrabarti;Ed Bullmore;Simon Baron-Cohen;Rosemary Holt;Michael Spencer;Amber Ruigrok;Dorothea Floris;Richard A.I. Bethlehem;Varun Warrier,2019-03-12,10.1186/s13229-019-0258-4,30918622,85062965085,2-s2.0-85062965085,1,https://api.elsevier.com/content/abstract/scopus_id/85062965085,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85062965085&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85062965085&origin=inward,ISF, +,Grillon,Review,"Journal of Neurology, Neurosurgery and Psychiatry",The translational neural circuitry of anxiety,Brian Cornwell;Oliver J. Robinson;Christian Grillon;Alexandra C. Pike,2019-12-01,10.1136/jnnp-2019-321400,31256001,85068350181,2-s2.0-85068350181,5,https://api.elsevier.com/content/abstract/scopus_id/85068350181,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85068350181&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85068350181&origin=inward,NIMH,1353-1360 +,Hallett,Article,"Journal of Neurology, Neurosurgery and Psychiatry",Effects of TPH2 gene variation and childhood trauma on the clinical and circuit-level phenotype of functional movement disorders,Silvina Horovitz;Carine W. Maurer;Colin Hodgkinson;David Goldman;Mark Hallett;Primavera A. Spagnolo;Gina Norato,2020-08-01,10.1136/jnnp-2019-322636,32576619,85088496283,2-s2.0-85088496283,0,https://api.elsevier.com/content/abstract/scopus_id/85088496283,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85088496283&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85088496283&origin=inward,,814-821 +,Hallett,Letter,Parkinsonism and Related Disorders,Low-frequency transcranial magnetic stimulation of the left dorsal premotor cortex in patients with cervical dystonia,Mark Hallett;Hae Won Shin,2020-07-01,10.1016/j.parkreldis.2020.05.027,32535288,85086097109,2-s2.0-85086097109,0,https://api.elsevier.com/content/abstract/scopus_id/85086097109,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85086097109&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85086097109&origin=inward,NINDS,13-15 +,Hallett,Review,Movement Disorders Clinical Practice,Myoclonus: An Electrophysiological Diagnosis,Shabbir Hussain I. Merchant;Mark Hallett;Giorgio Leodori;Jay A. van Gerpen;Felipe Vial-Undurraga,2020-07-01,10.1002/mdc3.12986,,85087186310,2-s2.0-85087186310,0,https://api.elsevier.com/content/abstract/scopus_id/85087186310,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85087186310&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85087186310&origin=inward,,489-499 +,Hallett,Review,Clinical Neurophysiology,Human brain connectivity: Clinical applications for clinical neurophysiology,Christian Grefkes;Paolo M. Rossini;Ivan Rektor;Gustavo Deco;Cecile Gallea;Francesca Miraglia;Tao Wu;Mark Hallett;Rick C. Helmich;Lukas J. Volz;Riccardo Di Iorio;Willem de Haan;Reinhard Dengler;Fabrizio Vecchio;Morten L. Kringelbach;Ondřej Strýček;Christian Gerloff,2020-07-01,10.1016/j.clinph.2020.03.031,32417703,85084423140,2-s2.0-85084423140,0,https://api.elsevier.com/content/abstract/scopus_id/85084423140,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85084423140&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85084423140&origin=inward,DFG,1621-1651 +,Hallett,Review,Neurology,Functional gait disorders: A sign-based approach,Stephen G. Reich;Mark Hallett;Bastiaan R. Bloem;Evžen Růžička;Tereza Serranová;Jorik Nonnekes,2020-06-16,10.1212/WNL.0000000000009649,32482839,85086525286,2-s2.0-85086525286,0,https://api.elsevier.com/content/abstract/scopus_id/85086525286,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85086525286&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85086525286&origin=inward,,1093-1099 +,Hallett,Article,Movement Disorders,Re-emergent Tremor in Parkinson's Disease: The Role of the Motor Cortex,Felipe Vial;Matteo Costanzo;Daniele Belvisi;Giorgio Leodori;Mark Hallett;Alfredo Berardelli;Maria I. De Bartolo;Andrea Fabbrini;Antonella Conte,2020-06-01,10.1002/mds.28022,32175656,85081717317,2-s2.0-85081717317,0,https://api.elsevier.com/content/abstract/scopus_id/85081717317,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85081717317&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85081717317&origin=inward,NINDS,1002-1011 +,Hallett,Article,European Journal of Neurology,Opinions and clinical practices related to diagnosing and managing functional (psychogenic) movement disorders: changes in the last decade,A. K. Dwivedi;J. Stone;M. Edwards;M. Hallett;S. Lidstone;A. J. Espay;F. Morgante;K. LaFaver;C. W. Maurer;A. E. Lang,2020-06-01,10.1111/ene.14200,32153070,85082761012,2-s2.0-85082761012,0,https://api.elsevier.com/content/abstract/scopus_id/85082761012,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85082761012&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85082761012&origin=inward,NIH,975-984 +,Hallett,Article,Clinical Neurophysiology,Task-specific interhemispheric hypoconnectivity in writer's cramp – An EEG study,Jessica Shields;Mark Hallett;Ajay S. Pillai;Nivethida Thirugnanasambandam;Tyler Zimmerman;Silvina G. Horovitz,2020-05-01,10.1016/j.clinph.2020.01.011,32193164,85081647501,2-s2.0-85081647501,0,https://api.elsevier.com/content/abstract/scopus_id/85081647501,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85081647501&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85081647501&origin=inward,NINDS,985-993 +,Hallett,Review,Neurology,Defining research priorities in dystonia,David Standaert;Laura Scheinfeldt;Roy Sillitoe;Codrin Lungu;Beth Anne Sieber;Nicole Calakos;Rachel Saunders-Pullman;Laurie Ozelius;Jerrold Vitek;Brian D. Berman;Nutan Sharma;Sarah E. Pirio Richardson;Christine Swanson-Fisher;Anna Taylor;Philip A. Starr;Jennifer C. Moore;Mark Hallett;Kristina Simonyan;Joel S. Perlmutter,2020-03-24,10.1212/WNL.0000000000009140,32098856,85082342443,2-s2.0-85082342443,0,https://api.elsevier.com/content/abstract/scopus_id/85082342443,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85082342443&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85082342443&origin=inward,,526-537 +,Hallett,Article,Journal of the Neurological Sciences,Characteristics of oscillatory pallidal neurons in patients with Parkinson's disease,Yongjie Li;Jianyu Li;Mark Hallett;Yuqing Zhang;Detao Meng;Ping Zhuang;Yongsheng Hu,2020-03-15,10.1016/j.jns.2019.116661,31918151,85077327067,2-s2.0-85077327067,0,https://api.elsevier.com/content/abstract/scopus_id/85077327067,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85077327067&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85077327067&origin=inward,MOE, +,Hallett,Review,Brain,Evolving concepts on bradykinesia,Matteo Bologna;Giulia Paparella;Mark Hallett;Alfredo Berardelli;Alfonso Fasano,2020-03-01,10.1093/brain/awz344,31834375,85079381636,2-s2.0-85079381636,4,https://api.elsevier.com/content/abstract/scopus_id/85079381636,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85079381636&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85079381636&origin=inward,NINDS,727-750 +,Hallett,Article,Brain Stimulation,Parietal conditioning enhances motor surround inhibition,Sarung Kashyap;Gregg Khodorov;Alexandra Mandel;Traian Popa;Jaron Kee;Mark Hallett;Giorgio Leodori;Nivethida Thirugnanasambandam;Alexander Shaft;Panagiotis Kassavetis,2020-03-01,10.1016/j.brs.2019.12.011,31879086,85076850852,2-s2.0-85076850852,0,https://api.elsevier.com/content/abstract/scopus_id/85076850852,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85076850852&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85076850852&origin=inward,NINDS,447-449 +,Hallett,Article,Movement Disorders Clinical Practice,Gender as a Risk Factor for Functional Movement Disorders: The Role of Sexual Abuse,Sanaz Attaripour Isfahani;Isaiah Kletenik;Mark Hallett;Stefan H. Sillau;Kathrin LaFaver;Brian D. Berman,2020-02-01,10.1002/mdc3.12863,,85076377440,2-s2.0-85076377440,2,https://api.elsevier.com/content/abstract/scopus_id/85076377440,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85076377440&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85076377440&origin=inward,"CNS, UC",177-181 +,Hallett,Article,Advanced Science,Transcranial Pulse Stimulation with Ultrasound in Alzheimer's Disease—A New Navigated Focal Brain Therapy,Tuna Aslan;Henning Lohse-Busch;Ernst Marlinghaus;Marleen Schönfeld;Johann Lehrner;Alexandra Weber;Mark Hallett;Heike Baldysiak;Roland Beisteiner;Ahmad Amini;Christina Fan;Eva Matt;Raphael Reinecke;Ulrike Reime;Cédric Goldenstedt;Tabea Philippi Novak,2020-02-01,10.1002/advs.201902583,,85076905050,2-s2.0-85076905050,2,https://api.elsevier.com/content/abstract/scopus_id/85076905050,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85076905050&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85076905050&origin=inward,NINDS, +,Hallett,Article,Clinical Neurophysiology Practice,"BacAv, a new free online platform for clinical back-averaging",Mark Hallett;Sanaz Attaripour;Felipe Vial;Patrick McGurrin,2020-01-01,10.1016/j.cnp.2019.12.001,,85079671191,2-s2.0-85079671191,0,https://api.elsevier.com/content/abstract/scopus_id/85079671191,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85079671191&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85079671191&origin=inward,NIH,38-42 +,Hallett,Article,Clinical Neurophysiology Practice,"Tremoroton, a new free online platform for tremor analysis",Thomas Osterholt;Dietrich Haubenberger;Felipe Vial;Mark Hallett;Patrick McGurrin;Debra Ehrlich,2020-01-01,10.1016/j.cnp.2019.11.004,,85077703314,2-s2.0-85077703314,0,https://api.elsevier.com/content/abstract/scopus_id/85077703314,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85077703314&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85077703314&origin=inward,NINDS,30-34 +,Hallett,Review,Brain,Freezing of gait: Understanding the complexity of an enigmatic phenomenon,Daniel Weiss;Anna Schoellmann;Mark Hallett;Stewart A. Factor;Michael D. Fox;Alice Nieuwboer;Simon J.G. Lewis;Nicolaas I. Bohnen,2020-01-01,10.1093/brain/awz314,31647540,85076719762,2-s2.0-85076719762,6,https://api.elsevier.com/content/abstract/scopus_id/85076719762,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85076719762&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85076719762&origin=inward,MDS,14-30 +,Hallett,Article,Journal of Neuropsychiatry and Clinical Neurosciences,Outcome measures for functional neurological disorder: A review of the theoretical complexities,Timothy R. Nicholson;Susannah Pick;Mark J. Edwards;Bridget Mildon;Mark Hallett;Glenn Nielsen;Alan Carson;David L. Perez;Jon Stone;Clare Nicholson;Laura H. Goldstein,2020-01-01,10.1176/appi.neuropsych.19060128,31865871,85078548167,2-s2.0-85078548167,4,https://api.elsevier.com/content/abstract/scopus_id/85078548167,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85078548167&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85078548167&origin=inward,NIHR,33-42 +,Hallett,Review,Clinical Neurophysiology,International Federation of Clinical Neurophysiology (IFCN) – EEG research workgroup: Recommendations on frequency and topographic analysis of resting state EEG rhythms. Part 1: Applications in clinical research studies,Claudio Babiloni;Robert J. Barry;Erol Başar;Wilhelmus H.I.M. Drinkenburg;Fernando Lopes da Silva;Robert Oostenveld;Pedro Valdes-Sosa;Mark Hallett;Jaeseung Jeong;Robert T. Knight;Paul Nunez;Wolfgang Klimesch;Andrzej Cichocki;Katarzyna J. Blinowska;Roberto Pascual-Marqui,2020-01-01,10.1016/j.clinph.2019.06.234,31501011,85071871317,2-s2.0-85071871317,5,https://api.elsevier.com/content/abstract/scopus_id/85071871317,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85071871317&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85071871317&origin=inward,NINDS,285-307 +,Hallett,Review,"Journal of Neurology, Neurosurgery and Psychiatry",Outcome measurement in functional neurological disorder: A systematic review and recommendations,Carine W. Maurer;Susannah Pick;Richard J. Brown;Ali A. Asadi-Pooya;Alex Lehn;Marina A.J. Tijssen;Bastiaan R. Bloem;Alan J. Carson;Michele Tinazzi;Petra Schwingenshuh;Beátrice Garcin;Timothy R. Nicholson;Maria Damianova;Paul Shotbolt;Roxanne C. Keynejad;Bridget Mildon;Eileen M. Joyce;Anthony S. David;Stoyan Popkirov;Gaston Baslet;Glenn Nielsen;Karen S. Rommelfanger;Lorna Myers;Selma Aybek;Joseph Jankovic;Francesca Morgante;Mark J. Edwards;W. Curt Lafrance;Glenn T. Stebbins;Trudie Chalder;Kasia Kozlowska;Sarah Lidstone;Steven A. Epstein;Jon Stone;Markus Reuber;Clare Nicholson;Alberto J. Espay;Laura H. Goldstein;Tereza Serranova;Kathrin Lafaver;Mark Hallett;Richard A. Kanaan;David L. Perez;David G. Anderson;Anthony E. Lang;Abigail Bradley-Westguard,2020-01-01,10.1136/jnnp-2019-322180,32111637,85081699833,2-s2.0-85081699833,2,https://api.elsevier.com/content/abstract/scopus_id/85081699833,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85081699833&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85081699833&origin=inward,, +,Hallett,Article,Cerebellum,Consensus Paper: Experimental Neurostimulation of the Cerebellum,Mahlon R. DeLong;Traian Popa;Nordeyn Oulad Ben Taib;Thomas Wichmann;Eric H. Wang;Tao Xie;Jaclyn Beckinghausen;Michelle Y. Cheng;Freek E. Hoebeek;Gary K. Steinberg;Michael A. Nitsche;Lynley V. Bradnam;Sheng Han Kuo;Elan D. Louis;Masaki Tanaka;Simona V. Gornati;Mario Manto;Andre Machado;Lauren N. Miterko;Mark Hallett;Dagmar Timmann;Alana B. McCambridge;Detlef H. Heck;Roy V. Sillitoe;Kenneth B. Baker;Abbas Z. Kouzani;Jessica Cooperrider,2019-12-01,10.1007/s12311-019-01041-5,31165428,85067246896,2-s2.0-85067246896,15,https://api.elsevier.com/content/abstract/scopus_id/85067246896,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85067246896&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85067246896&origin=inward,FNRS,1064-1097 +,Hallett,Editorial,Journal of Clinical Neurophysiology,Brainstem Functions and Reflexes,Mark Hallett;Josep Valls-Solé,2019-11-01,10.1097/WNP.0000000000000584,31688321,85074548595,2-s2.0-85074548595,0,https://api.elsevier.com/content/abstract/scopus_id/85074548595,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85074548595&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85074548595&origin=inward,,395 +,Hallett,Article,Movement Disorders Clinical Practice,How Do I Assess Tremor Using Novel Technology?,Dietrich Haubenberger;Mark Hallett;Katherine Longardner;Fatta B. Nahab;Felipe Vial Undurraga,2019-11-01,10.1002/mdc3.12818,,85074669748,2-s2.0-85074669748,1,https://api.elsevier.com/content/abstract/scopus_id/85074669748,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85074669748&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85074669748&origin=inward,NIH,733-734 +,Hallett,Article,Movement Disorders,Evidence From Parkinson's Disease That the Superior Colliculus Couples Action and Perception,Edmond J. FitzGibbon;Mark Hallett;Lance M. Optican;Elena Pretegiani;Nora Vanegas-Arroyave,2019-11-01,10.1002/mds.27861,31633242,85074371990,2-s2.0-85074371990,1,https://api.elsevier.com/content/abstract/scopus_id/85074371990,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85074371990&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85074371990&origin=inward,NIH,1680-1689 +,Hallett,Article,Toxicon,Botulinum toxin and occupational therapy for Writer's cramp,Omar F. Ahmad;Camilo Toro;Codrin Lungu;Barbara Karp;Monica Villegas;Mark Hallett;Ejaz A. Shamim;Tianxia Wu;Pattamon Panyakaew;Katharine Alter;Jung E. Park;Jonathan Sackett;Sungyoung Auh;P. Mathew,2019-11-01,10.1016/j.toxicon.2019.07.010,31351085,85070711291,2-s2.0-85070711291,1,https://api.elsevier.com/content/abstract/scopus_id/85070711291,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85070711291&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85070711291&origin=inward,NINDS,12-17 +,Hallett,Article,Parkinsonism and Related Disorders,Effect of light on blinking in patients with idiopathic isolated blepharospasm,Hyun Joo Cho;Mark Hallett;Yiwen Wu;Tianxia Wu;Charulata Sankhla Savant;Pattamon Panyakaew;Nguyet Dang,2019-10-01,10.1016/j.parkreldis.2019.09.010,31621610,85073122626,2-s2.0-85073122626,0,https://api.elsevier.com/content/abstract/scopus_id/85073122626,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85073122626&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85073122626&origin=inward,NINDS,66-71 +,Hallett,Review,Clinical Neurophysiology,Methods for analysis of brain connectivity: An IFCN-sponsored review,G. Bertini;R. J. Ilmoniemi;M. A. Nitsche;U. Ziemann;M. Bentivoglio;M. Hallett;Y. Shirota;Y. Ugawa;C. Gerloff;C. Tesoriero;F. Vecchio;F. Miraglia;R. Di Iorio;M. Rosanova;F. Pestilli;P. M. Rossini;F. Ferreri,2019-10-01,10.1016/j.clinph.2019.06.006,31401492,85070222418,2-s2.0-85070222418,14,https://api.elsevier.com/content/abstract/scopus_id/85070222418,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85070222418&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85070222418&origin=inward,,1833-1858 +,Hallett,Article,Journal of Neuropsychiatry and Clinical Neurosciences,Hiding in plain sight: Functional neurological disorders in the news,Marina A.J. Tijssen;Bastiaan R. Bloem;Alan J. Carson;Michele Tinazzi;Alexander Lehn;Timothy R. Nicholson;Maria Stamelou;Philip Smith;Aileen McGonigal;Christopher P. Derry;Francesca Morgante;Mark J. Edwards;John Paul Leach;Mark P. Richardson;Hannah R. Cock;Markus Reuber;Jon Stone;Alberto J. Espay;Roderick Duncan;Mark Hallett;David L. Perez;Barbara A. Dworetzky;Anthony E. Lang;Stoyan Popkirov,2019-10-01,10.1176/appi.neuropsych.19010025,31117907,85073183339,2-s2.0-85073183339,2,https://api.elsevier.com/content/abstract/scopus_id/85073183339,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85073183339&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85073183339&origin=inward,NIHR,361-367 +,Hallett,Letter,Parkinsonism and Related Disorders,"Response to the letter to the editor, “cerebellar repetitive transcranial magnetic stimulation for patients with essential tremor”",Mark Hallett;Hae Won Shin;Young H. Sohn,2019-09-01,10.1016/j.parkreldis.2019.07.027,31353308,85072773159,2-s2.0-85072773159,0,https://api.elsevier.com/content/abstract/scopus_id/85072773159,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85072773159&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85072773159&origin=inward,NINDS,260 +,Hallett,Article,Parkinsonism and Related Disorders,Re-emergent tremor provocation,Alberto D. Rivero;Miguel Wilken;Mark Hallett;Malco Rossi;Marcelo Merello,2019-09-01,10.1016/j.parkreldis.2019.08.015,31471122,85071302286,2-s2.0-85071302286,1,https://api.elsevier.com/content/abstract/scopus_id/85071302286,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85071302286&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85071302286&origin=inward,,241-244 +,Hallett,Review,Neurobiology of Disease,Pathogenesis and pathophysiology of functional (psychogenic) movement disorders,Mark Hallett;Joseph Jankovic;José Fidel Baizabal-Carvallo,2019-07-01,10.1016/j.nbd.2019.02.013,30798005,85061903841,2-s2.0-85061903841,16,https://api.elsevier.com/content/abstract/scopus_id/85061903841,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85061903841&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85061903841&origin=inward,,32-44 +,Hallett,Review,Movement Disorders,MDS evidence-based review of treatments for essential tremor,Joaquim J. Ferreira;Giovanni Abbruzzese;Julián Benito-León;Dietrich Haubenberger;Mark Hallett;Kelly E. Lyons;Günther Deuschl;Rodger Elble;Eng King Tan;Tiago A. Mestre,2019-07-01,10.1002/mds.27700,31046186,85065449992,2-s2.0-85065449992,6,https://api.elsevier.com/content/abstract/scopus_id/85065449992,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85065449992&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85065449992&origin=inward,NIH,950-958 +,Hallett,Review,JAMA Neurology,Compensation strategies for gait impairments in parkinson disease: A review,Mark Hallett;Bastiaan R. Bloem;Evžen Růžička;Alice Nieuwboer;Alfonso Fasano;Jorik Nonnekes,2019-06-01,10.1001/jamaneurol.2019.0033,30907948,85063279032,2-s2.0-85063279032,17,https://api.elsevier.com/content/abstract/scopus_id/85063279032,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85063279032&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85063279032&origin=inward,MJFF,718-725 +,Hallett,Review,Clinical Neurophysiology,"Focus on the pedunculopontine nucleus. Consensus review from the May 2018 brainstem society meeting in Washington, DC, USA",A. Lozano;J. Nonnekes;M. Hallett;C. B. Saper;E. Garcia-Rill;David B. Rye;J. Valls-Solé;M. Kofler,2019-06-01,10.1016/j.clinph.2019.03.008,30981899,85064274867,2-s2.0-85064274867,8,https://api.elsevier.com/content/abstract/scopus_id/85064274867,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85064274867&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85064274867&origin=inward,NIGMS,925-940 +,Hallett,Review,Clinical Neurophysiology,Effects of deep brain stimulation on the primary motor cortex: Insights from transcranial magnetic stimulation studies,Robert Chen;Zhen Ni;Mark Hallett;Kaviraja Udupa,2019-04-01,10.1016/j.clinph.2018.10.020,30527386,85057777761,2-s2.0-85057777761,2,https://api.elsevier.com/content/abstract/scopus_id/85057777761,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85057777761&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85057777761&origin=inward,NINDS,558-567 +,Hallett,Review,Nature Reviews Neurology,The role of sensory information in the pathophysiology of focal dystonias,Mark Hallett;Giovanni Defazio;Alfredo Berardelli;Giovanni Fabbrini;Antonella Conte,2019-04-01,10.1038/s41582-019-0137-9,30700825,85060941990,2-s2.0-85060941990,13,https://api.elsevier.com/content/abstract/scopus_id/85060941990,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85060941990&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85060941990&origin=inward,,224-233 +,Hallett,Chapter,Current Clinical Neurology,Treatment of post-hypoxic myoclonus,Mark Hallett,2019-01-01,10.1007/978-3-319-97897-0_62,,85066895673,2-s2.0-85066895673,0,https://api.elsevier.com/content/abstract/scopus_id/85066895673,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85066895673&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85066895673&origin=inward,,275-276 +,Hallett,Article,PLoS ONE,Dual-hemispheric transcranial direct current stimulation (tDCS) over primary motor cortex does not affect movement selection,Nivethida Thirugnanasambandam;Mark Hallett;Felix G. Contreras-Castro,2019-01-01,10.1371/journal.pone.0226103,31830094,85076424544,2-s2.0-85076424544,0,https://api.elsevier.com/content/abstract/scopus_id/85076424544,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85076424544&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85076424544&origin=inward,NINDS, +,Hallett,Review,Clinical Neurophysiology Practice,How to do an electrophysiological study of tremor,Dietrich Haubenberger;Mark Hallett;Felipe Vial;Shabbir Merchant;Panagiotis Kassavetis,2019-01-01,10.1016/j.cnp.2019.06.002,,85068921368,2-s2.0-85068921368,5,https://api.elsevier.com/content/abstract/scopus_id/85068921368,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85068921368&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85068921368&origin=inward,NINDS,134-142 +,Hallett,Article,Frontiers in Neurology,Modulation of resting connectivity between the mesial frontal cortex and basal ganglia,Silvina Horovitz;Laurel S. Morris;Karin Mente;Traian Popa;Hitoshi Shitara;Mark Hallett;Valerie Voon;Kwangyeol Baek;Zhi De Deng;Rachel Hunt,2019-01-01,10.3389/fneur.2019.00587,,85069224665,2-s2.0-85069224665,1,https://api.elsevier.com/content/abstract/scopus_id/85069224665,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85069224665&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85069224665&origin=inward,WT, +,Inati,Article,Brain Stimulation,Characterizing and predicting cortical evoked responses to direct electrical stimulation of the human brain,Sridevi Sarma;Pierre Sacré;Timothy C. Sheehan;Sara K. Inati;Kareem A. Zaghloul;John H. Wittig;Cynthia R. Steinhardt,2020-09-01,10.1016/j.brs.2020.05.001,32526475,85086361010,2-s2.0-85086361010,0,https://api.elsevier.com/content/abstract/scopus_id/85086361010,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85086361010&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85086361010&origin=inward,DARPA,1218-1225 +,Inati,Article,Human Brain Mapping,Language lateralization from task-based and resting state functional MRI in patients with epilepsy,Xiaozhen You;Richard C. Reynolds;Rachel Rolinski;William H. Theodore;Javier Gonzalez-Castillo;Sara K. Inati;Gina Norato,2020-08-01,10.1002/hbm.25003,32329951,85083796368,2-s2.0-85083796368,0,https://api.elsevier.com/content/abstract/scopus_id/85083796368,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85083796368&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85083796368&origin=inward,NIH,3133-3146 +,Inati,Article,Science,Replay of cortical spiking sequences during human memory retrieval,Sara K. Inati;Kareem A. Zaghloul;Alex P. Vaz;John H. Wittig,2020-03-06,10.1126/science.aaz3691,32139543,85081530905,2-s2.0-85081530905,1,https://api.elsevier.com/content/abstract/scopus_id/85081530905,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85081530905&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85081530905&origin=inward,,1131-1134 +,Inati,Article,Nature Human Behaviour,Memorability of words in arbitrary verbal associations modulates memory retrieval in the anterior temporal lobe,Chris I. Baker;Wilma A. Bainbridge;Weizhen Xie;Kareem A. Zaghloul;Sara K. Inati,2020-01-01,10.1038/s41562-020-0901-2,,85087025590,2-s2.0-85087025590,0,https://api.elsevier.com/content/abstract/scopus_id/85087025590,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85087025590&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85087025590&origin=inward,NIMH, +,Inati,Review,Epilepsy Research,Emerging roles of network analysis for epilepsy,Ankit N. Khambhati;Sridevi Sarma;Jennifer Stiso;Virginia B. Liu;Danielle S. Bassett;Jorge Gonzalez-Martinez;William Stacey;Kristin Gunnarsdottir;Kareem Zaghloul;Mark Kramer;Richard Staba;Sara Inati;Rachel J. Smith;Beth A. Lopour,2020-01-01,10.1016/j.eplepsyres.2019.106255,31855828,85076365131,2-s2.0-85076365131,2,https://api.elsevier.com/content/abstract/scopus_id/85076365131,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85076365131&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85076365131&origin=inward,NSF, +,Inati,Article,Current Biology,Large-Scale Communication in the Human Brain Is Rhythmically Modulated through Alpha Coherence,Rafi Haque;Julio I. Chapeton;Kareem A. Zaghloul;John H. Wittig;Sara K. Inati,2019-09-09,10.1016/j.cub.2019.07.014,31422882,85071699340,2-s2.0-85071699340,5,https://api.elsevier.com/content/abstract/scopus_id/85071699340,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85071699340&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85071699340&origin=inward,NINDS,2801-2811.e5 +,Inati,Conference Paper,"Proceedings of the Annual International Conference of the IEEE Engineering in Medicine and Biology Society, EMBS",Investigation of Architectures for Models of Neural Responses to Electrical Brain Stimulation,Sridevi V. Sarma;Cynthia Steinhardt;Kareem A. Zaghloul;Sara K. Inati;Pierre Sacre,2019-07-01,10.1109/EMBC.2019.8857455,31947424,85077898652,2-s2.0-85077898652,1,https://api.elsevier.com/content/abstract/scopus_id/85077898652,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85077898652&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85077898652&origin=inward,NSF,6892-6895 +,Inati,Conference Paper,"Proceedings of the Annual International Conference of the IEEE Engineering in Medicine and Biology Society, EMBS",Virtual Cortical Stimulation Mapping of Epilepsy Networks to Localize the Epileptogenic Zone,Juan Bulacio;Sridevi V. Sarma;Kareem Zaghloul;Emily Johnson;Jennifer Hopp;Adam Li;Sara Inati;Nathan Crone;Jorge Martinez-Gonzalez;Zachary Fitzgerald,2019-07-01,10.1109/EMBC.2019.8856591,31946366,85077862771,2-s2.0-85077862771,0,https://api.elsevier.com/content/abstract/scopus_id/85077862771,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85077862771&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85077862771&origin=inward,NIH,2328-2331 +,Inati,Review,Brain Research,Clinical advances in photosensitive epilepsy,Sara Inati;Alexander Ksendzovsky;Kareem Zaghloul;Varun Padmanaban,2019-01-15,10.1016/j.brainres.2018.07.025,30076791,85051361603,2-s2.0-85051361603,2,https://api.elsevier.com/content/abstract/scopus_id/85051361603,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85051361603&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85051361603&origin=inward,,18-25 +,Inati,Erratum,Nature Neuroscience,"Erratum to: Attention improves memory by suppressing spiking-neuron activity in the human anterior temporal lobe (Nature Neuroscience, (2018), 21, 6, (808-810), 10.1038/s41593-018-0148-7)",Anthony I. Jang;Kareem A. Zaghloul;John B. Cocjin;John H. Wittig;Sara K. Inati,2019-01-01,10.1038/s41593-018-0224-z,30127431,85058759646,2-s2.0-85058759646,0,https://api.elsevier.com/content/abstract/scopus_id/85058759646,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85058759646&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85058759646&origin=inward,,143 +,Jacobson,Article,Orphanet Journal of Rare Diseases,Creation and validation of a bladder dysfunction symptom score for HTLV-1-associated myelopathy/tropical spastic paraparesis,Natsumi Araya;Abelardo Araujo;Naoko Yagishita;Junji Yamauchi;Eduardo Gotuzzo;Graham P. Taylor;Takahiko Ueno;Tomoo Sato;Natsuko Yamakawa;Ariella Coler-Reilly;Misako Nagasaka;Steven Jacobson;Marzia Puccioni-Sohler;Daisuke Hasegawa;Shuntaro Tsutsumi;Ayako Takata;Fabiola Martin;Eisuke Inoue;Yoshihisa Yamano;Tomohiro Matsuo;Jorge Casseb,2020-07-03,10.1186/s13023-020-01451-3,32620176,85087472700,2-s2.0-85087472700,0,https://api.elsevier.com/content/abstract/scopus_id/85087472700,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85087472700&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85087472700&origin=inward,, +,Jacobson,Article,Neuron,Human Herpesvirus 6 Detection in Alzheimer's Disease Cases and Controls across Multiple Cohorts,David A. Bennett;Susan M. Resnick;Philip L. De Jager;Sonja W. Scholz;Kory Johnson;Steven Jacobson;Olga Pletnikova;Sarah M. Connor;Marilyn S. Albert;Mary Alice Allnutt;Juan C. Troncoso,2020-03-18,10.1016/j.neuron.2019.12.031,31983538,85081374658,2-s2.0-85081374658,4,https://api.elsevier.com/content/abstract/scopus_id/85081374658,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85081374658&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85081374658&origin=inward,NIH,1027-1035.e2 +,Jacobson,Review,Journal of NeuroVirology,Human T-lymphotropic virus type 1 (HTLV-1) and cellular immune response in HTLV-1-associated myelopathy/tropical spastic paraparesis,Satoshi Nozuma;Ryuji Kubota;Steven Jacobson,2020-01-01,10.1007/s13365-020-00881-w,,85088396233,2-s2.0-85088396233,0,https://api.elsevier.com/content/abstract/scopus_id/85088396233,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85088396233&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85088396233&origin=inward,NIH, +,Jacobson,Article,Nature Communications,Atomic structure of the human herpesvirus 6B capsid and capsid-associated tegument complexes,Zihang Li;Yibo Zhang;Z. Hong Zhou;Steve Jacobson;Wei Liu;Vinay Kumar;Yanxiang Cui;Emily C. Leibovitch;Ana L. Alvarez-Cabrera;Guo Qiang Bi;Ye Mei,2019-12-01,10.1038/s41467-019-13064-x,31767868,85075545295,2-s2.0-85075545295,2,https://api.elsevier.com/content/abstract/scopus_id/85075545295,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85075545295&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85075545295&origin=inward,NIH, +,Jacobson,Review,Retrovirology,Immunovirological markers in HTLV-1-associated myelopathy/tropical spastic paraparesis (HAM/TSP),Yoshimi Enose-Akahata;Steven Jacobson,2019-11-29,10.1186/s12977-019-0499-5,31783764,85075800835,2-s2.0-85075800835,0,https://api.elsevier.com/content/abstract/scopus_id/85075800835,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85075800835&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85075800835&origin=inward,, +,Jacobson,Review,Infectious Agents and Cancer,An evaluation of HHV-6 as an etiologic agent in Hodgkin lymphoma and brain cancer using IARC criteria for oncogenicity,Paul H. Levine;Steven Jacobson;Michael J. Wells,2019-11-05,10.1186/s13027-019-0248-3,,85074731822,2-s2.0-85074731822,0,https://api.elsevier.com/content/abstract/scopus_id/85074731822,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85074731822&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85074731822&origin=inward,NINDS, +,Jacobson,Article,International Journal of Neonatal Screening,"Development of a multiplex real-time PCR assay for the newborn screening of SCID, SMA, and XLA",Anne Timonen;Katja Vaahtera;Markku Jaakkola;David M. Hougaard;Jonas Bybjerg-Grauholm;Cristina Gutierrez-Mateo;Rongcong Wu;Marie Baekvad-Hansen;David Goldfarb;Galina Filippov;Daniel Schoener;Stephanie Dallaire;Dea Adamsen,2019-11-02,10.3390/ijns5040039,,85075466329,2-s2.0-85075466329,2,https://api.elsevier.com/content/abstract/scopus_id/85075466329,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85075466329&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85075466329&origin=inward,, +,Jacobson,Article,Journal of Clinical Investigation,Potential role of iron in repair of inflammatory demyelinating lesions,Seung Kwon Ha;Pascal Sati;Daniel S. Reich;Nathanael J. Lee;Govind Nair;Afonso C. Silva;Nicholas J. Luciano;Cecil C. Yen;Steven Jacobson;Emily C. Leibovitch;Martina Absinta;Tracey A. Rouault,2019-10-01,10.1172/JCI126809,31498148,85072791172,2-s2.0-85072791172,4,https://api.elsevier.com/content/abstract/scopus_id/85072791172,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85072791172&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85072791172&origin=inward,NIH,4365-4376 +,Jacobson,Article,Journal of Virology,Essential role of human T cell leukemia virus type 1 orf-I in lethal proliferation of CD4+ cells in humanized mice,Genoveffa Franchini;Maria Artesi;Anne Van Den Broeke;Maria F. De Castro-Amarante;Breanna Caruso;Robyn Washington-Parks;Cynthia Pise-Masison;Steve Jacobson;Laura Romero;Dai Fujikawa;Natasa Strbo;Jerome A. Zack;Veronica Galli;Sophia Brown;Keith Durkin;Monica Vaccari;Maria Omsland;Baktiar Karim;Christopher C. Nixon;Katherine McKinnon,2019-10-01,10.1128/JVI.00565-19,31315992,85072153680,2-s2.0-85072153680,2,https://api.elsevier.com/content/abstract/scopus_id/85072153680,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85072153680&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85072153680&origin=inward,OAR, +,Jacobson,Article,Human Movement Science,Fronto-parietal mirror neuron system modeling: Visuospatial transformations support imitation learning independently of imitator perspective,Hyuk Oh;James A. Reggia;Allen R. Braun;Rodolphe J. Gentili,2019-06-01,10.1016/j.humov.2018.05.013,30219273,85053116646,2-s2.0-85053116646,2,https://api.elsevier.com/content/abstract/scopus_id/85053116646,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85053116646&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85053116646&origin=inward,UMD,121-141 +,Jacobson,Review,Viruses,Extracellular vesicles and ebola virus: A new mechanism of immune evasion,Fatah Kashanchi;Steven Jacobson;Catherine DeMarino;Spencer W. Stonier;John M. Dye;M. Javad Aman;Michelle L. Pleet,2019-05-01,10.3390/v11050410,31052499,85065661998,2-s2.0-85065661998,5,https://api.elsevier.com/content/abstract/scopus_id/85065661998,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85065661998&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85065661998&origin=inward,NIH, +,Jacobson,Article,Multiple Sclerosis Journal,Prevalence of salivary human herpesviruses in pediatric multiple sclerosis cases and controls,Jennifer Graves;Emmanuelle Waubant;Cheng Te Major Lin;Steven Jacobson;Emily C. Leibovitch;Bridgette J. Billioux,2019-04-01,10.1177/1352458518765654,,85044758815,2-s2.0-85044758815,4,https://api.elsevier.com/content/abstract/scopus_id/85044758815,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85044758815&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85044758815&origin=inward,,644-652 +,Jacobson,Review,Molecular Neurobiology,Viral Triggers and Inflammatory Mechanisms in Pediatric Epilepsy,Jane E. Libbey;Luca Bartolini;William D. Gaillard;Robert S. Fujinami;Steven Jacobson;Teresa Ravizza,2019-03-01,10.1007/s12035-018-1215-5,29978423,85049601515,2-s2.0-85049601515,8,https://api.elsevier.com/content/abstract/scopus_id/85049601515,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85049601515&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85049601515&origin=inward,EF,1897-1907 +,Jacobson,Review,Drug Discovery Today: Disease Models,Do herpesviruses play a role in Alzheimer's disease pathogenesis?,Steven Jacobson;Mary Alice Allnutt,2019-01-01,10.1016/j.ddmod.2019.10.006,,85076832235,2-s2.0-85076832235,0,https://api.elsevier.com/content/abstract/scopus_id/85076832235,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85076832235&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85076832235&origin=inward,NINDS, +,Jacobson,Review,Neuropsychopharmacology,Sex differences in the developing brain: insights from multimodal neuroimaging,Theodore D. Satterthwaite;Armin Raznahan;Antonia N. Kaczkurkin,2019-01-01,10.1038/s41386-018-0111-z,29930385,85048782995,2-s2.0-85048782995,22,https://api.elsevier.com/content/abstract/scopus_id/85048782995,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85048782995&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85048782995&origin=inward,NARSAD,71-85 +,Koretsky,Article,Acta Neuropathologica Communications,The unfolded protein response is activated in the olfactory system in Alzheimer's disease,Alan Koretsky;Maurice A. Curtis;Helen C. Murray;Richard L.M. Faull;Leonardo Belluscio;Molly E.V. Swanson;Birger Victor Dieriks;Clinton Turner;Praju Vikas Anekal,2020-07-14,10.1186/s40478-020-00986-7,32665027,85088017287,2-s2.0-85088017287,0,https://api.elsevier.com/content/abstract/scopus_id/85088017287,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85088017287&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85088017287&origin=inward,, +,Koretsky,Article,BMC Neuroscience,Quantitative genome-wide association analyses of receptive language in the Danish High Risk and Resilience Study,Merete Nordentoft;Ole Mors;Jonas Bybjerg-Grauholm;Nicoline Hemager;Birgitte K. Burton;Katrine S. Spang;Aja N. Greve;Md Jamal Uddin;Ditte Ellersgaard;Thomas Werge;Jens Richardt M. Jepsen;Ditte L. Gantriis;Anne A.E. Thorup;Ron Nudel;Camilla A.J. Christiani;Jessica Ohland,2020-07-07,10.1186/s12868-020-00581-5,32635940,85087725531,2-s2.0-85087725531,0,https://api.elsevier.com/content/abstract/scopus_id/85087725531,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85087725531&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85087725531&origin=inward,, +,Koretsky,Article,Journal of Neuroscience Methods,High-resolution MEMRI characterizes laminar specific ascending and descending spinal cord pathways in rats,Alan Koretsky;Jiadi Xu;Vijai Krishnan;Galit Pelled;Stasia A. Anderson;Albert German Mendoza,2020-07-01,10.1016/j.jneumeth.2020.108748,32335077,85084132952,2-s2.0-85084132952,0,https://api.elsevier.com/content/abstract/scopus_id/85084132952,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85084132952&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85084132952&origin=inward,NHLBI, +,Koretsky,Article,NeuroImage,Interactions between stimuli-evoked cortical activity and spontaneous low frequency oscillations measured with neuronal calcium,Kicheon Park;Wei Chen;Yingtian Pan;Alan P. Koretsky;Congwu Du,2020-04-15,10.1016/j.neuroimage.2020.116554,31972283,85078666319,2-s2.0-85078666319,1,https://api.elsevier.com/content/abstract/scopus_id/85078666319,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85078666319&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85078666319&origin=inward,NINDS, +,Koretsky,Article,Magnetic Resonance in Medicine,Multifield and inverse-contrast switching of magnetocaloric high contrast ratio MRI labels,Hatem ElBidweihy;Alan L. Huston;Barbara Marcheschi;Mladen Barbic;Neil R. Dilley;Alan P. Koretsky;H. Douglas Morris;Stephen J. Dodd,2020-01-01,10.1002/mrm.28400,,85087644446,2-s2.0-85087644446,0,https://api.elsevier.com/content/abstract/scopus_id/85087644446,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85087644446&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85087644446&origin=inward,, +,Koretsky,Article,American Journal of Neuroradiology,Manganese-enhanced MRI of the brain in healthy volunteers,G. Nair;I. C.M. Cortese;T. Wu;D. J. Suto;B. A. Berkowitz;D. S. Reich;A. P. Koretsky;D. M. Sudarshana;S. U. Steele;J. T. Dwyer;B. Dewey,2019-08-01,10.3174/ajnr.A6152,31371354,85071351382,2-s2.0-85071351382,2,https://api.elsevier.com/content/abstract/scopus_id/85071351382,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85071351382&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85071351382&origin=inward,NIH,1309-1316 +,Koretsky,Review,Frontiers in Neural Circuits,Manganese enhanced MRI for use in studying neurodegenerative diseases,Galit Saar;Alan P. Koretsky,2019-01-07,10.3389/fncir.2018.00114,30666190,85060244899,2-s2.0-85060244899,5,https://api.elsevier.com/content/abstract/scopus_id/85060244899,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85060244899&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85060244899&origin=inward,NIH, +,Koretsky,Article,Radiology,Opportunities in interventional and diagnostic imaging by using high-performance low-field-strength MRI,Hui Xue;Michael S. Hansen;Toby Rogers;Burcu Basar;Robert S. Balaban;David Grodzki;Adrienne E. Campbell-Washburn;Rainer Schneider;Daniel A. Herzka;Elizabeth C. Jones;W. Patricia Bandettini;Waqas Majeed;Robert J. Lederman;Ipshita Bhattacharya;Rajiv Ramasawmy;Delaney R. McGuirt;Joel Moss;Alan P. Koretsky;Himanshu Bhat;Christine Mancini;Matthew C. Restivo;Marcus Y. Chen;Peter Kellman;Ashkan A. Malayeri,2019-01-01,10.1148/radiol.2019190452,31573398,85073581726,2-s2.0-85073581726,14,https://api.elsevier.com/content/abstract/scopus_id/85073581726,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85073581726&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85073581726&origin=inward,NHLBI,384-393 +,Latour,Article,Journal of Stroke and Cerebrovascular Diseases,Routine use of FLAIR-negative MRI in the treatment of unknown onset stroke,Lawrence L. Latour;Amie W. Hsia;Marie Luby;Zurab Nadareishvili;Richard Leigh;Chandni P. Kalaria;John K. Lynch;Malik M. Adil,2020-09-01,10.1016/j.jstrokecerebrovasdis.2020.105093,,85087369278,2-s2.0-85087369278,0,https://api.elsevier.com/content/abstract/scopus_id/85087369278,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85087369278&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85087369278&origin=inward,NINDS, +,Latour,Article,Frontiers in Neurology,Inflammatory Cytokines Associate With Neuroimaging After Acute Mild Traumatic Brain Injury,Candace Moore;Lawrence Latour;Cassandra L. Pattinson;Jordan Peyer;Tara Davis;Vivian A. Guedes;Christina Devoto;L. Christine Turtzo;Katie A. Edwards;Jessica M. Gill,2020-05-19,10.3389/fneur.2020.00348,,85085891795,2-s2.0-85085891795,0,https://api.elsevier.com/content/abstract/scopus_id/85085891795,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85085891795&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85085891795&origin=inward,NINR, +,Latour,Article,Brain Injury,Traumatic microbleeds persist for up to five years following traumatic brain injury despite resolution of other acute findings on MRI,Lawrence Latour;Martin Cota;Andre J. Van Der Merwe;Theresa Rizk;Leighton Chan;Mark D. Whiting;L. Christine Turtzo,2020-05-11,10.1080/02699052.2020.1725835,32228304,85082663603,2-s2.0-85082663603,0,https://api.elsevier.com/content/abstract/scopus_id/85082663603,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85082663603&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85082663603&origin=inward,NINDS,773-781 +,Latour,Article,Journal of Neurotrauma,Subarachnoid Hemorrhage and Cerebral Perfusion Are Associated with Brain Volume Decrease in a Cohort of Predominantly Mild Traumatic Brain Injury Patients,Lawrence L. Latour;Jeroen Hendrikse;Matthew C. Restivo;Lisa A. Van Der Kleij;Jill B. De Vis;L. Christine Turtzo,2020-02-15,10.1089/neu.2019.6514,31642407,85079097417,2-s2.0-85079097417,0,https://api.elsevier.com/content/abstract/scopus_id/85079097417,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85079097417&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85079097417&origin=inward,NINDS,600-607 +,Latour,Article,Human Brain Mapping,White matter tract myelin maturation and its association with general psychopathology in adolescence and early adulthood,Peter B. Jones;Edward T. Bullmore;Peter Fonagy;Raymond J. Dolan;Lucy D. Vanes;Michael Moutoussis;Ian M. Goodyer;Gabriel Ziegler,2020-02-15,10.1002/hbm.24842,,85074821219,2-s2.0-85074821219,1,https://api.elsevier.com/content/abstract/scopus_id/85074821219,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85074821219&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85074821219&origin=inward,WT,827-839 +,Latour,Article,Biological Psychiatry,Multiple Holdouts With Stability: Improving the Generalizability of Machine Learning Analyses of Brain–Behavior Relationships,Peter B. Jones;Umar Toseeb;Kalia Cleridou;Junaid Bhatti;Ayesha Alrumaithi;Aislinn Bowler;Kirstie Whitaker;John Shawe-Taylor;Alexandra Hopkins;Pasco Fearon;Tobias Hauser;Emma Davies;Peter Fonagy;Rogier Kievit;Rick A. Adams;Michelle St Clair;Ciara O'Donnell;Sarah Birt;Barry Widmer;Mirtes Pereira;Becky Inkster;Maria J. Rosa;Hina Dadabhoy;Ashlyn Firkins;Rafael Romero-Garcia;Cinly Ooi;Harriet Mills;Jenny Scott;Anne Laura van Harmelen;Sara Pantaleone;John Suckling;Agoston Mihalik;Christina Maurice;Raymond Dolan;Jessica Memarzia;Danae Kokorikou;Janchai King;Janaina Mourão-Miranda;Michael Moutoussis;Elizabeth Harding;Leticia de Oliveira;Edward T. Bullmore;Laura Villis;Daniel Isaacs;Sharon Neufeld;Cleo McIntosh;Petra E. Vértes;Fabio S. Ferreira;Gita Prabhu;Sian Granville;Ian M. Goodyer;Gabriel Ziegler,2020-02-15,10.1016/j.biopsych.2019.12.001,32040421,85077437819,2-s2.0-85077437819,2,https://api.elsevier.com/content/abstract/scopus_id/85077437819,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85077437819&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85077437819&origin=inward,CORE,368-376 +,Latour,Article,PloS one,-----Comparison of T1-Post and FLAIR-Post MRI for identification of traumatic meningeal enhancement in traumatic brain injury patients,Lawrence L. Latour;Ana S. Tinoco Martinez;Jennifer E. Nathan;Tara S. Davis;Jill B. De Vis;L. Christine Turtzo,2020-01-01,10.1371/journal.pone.0234881,32614835,85087529072,2-s2.0-85087529072,0,https://api.elsevier.com/content/abstract/scopus_id/85087529072,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85087529072&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85087529072&origin=inward,,e0234881 +,Latour,Article,Biological Psychiatry,Major Depressive Disorder Is Associated With Differential Expression of Innate Immune and Neutrophil-Related Gene Networks in Peripheral Blood: A Quantitative Review of Whole-Genome Transcriptional Data From Case-Control Studies,Edward T. Bullmore;Gayle M. Wittenberg;Wayne C. Drevets;Petra E. Vértes;Jon Greene,2020-01-01,10.1016/j.biopsych.2020.05.006,,85087723630,2-s2.0-85087723630,0,https://api.elsevier.com/content/abstract/scopus_id/85087723630,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85087723630&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85087723630&origin=inward,"ADRC, UW", +,Latour,Article,Radiology,Nonhomogeneous gadolinium retention in the cerebral cortex after intravenous administration of gadolinium-based contrast agent in rats and humans,Xiuping Liu;Patrick T. Kiernan;Erich S. Franz;Stephan W. Anderson;Allison D. Griffin;Ann C. McKee;Chad W. Farris;Hernan Jara;Ali Guermazi;Laney E. Evers;Olga Minaeva;Sarah E. Chancellor;Nicola Lupoli;Lawrence L. Latour;Lee E. Goldstein;Victor E. Alvarez;Audrey M. Hildebrandt;Bertrand R. Huber;Katharine J. Babcock;Juliet A. Moncaster;Jorge A. Soto;Asim Z. Mian;Ning Hua,2020-01-01,10.1148/radiol.2019190461,31769744,85078517782,2-s2.0-85078517782,2,https://api.elsevier.com/content/abstract/scopus_id/85078517782,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85078517782&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85078517782&origin=inward,BU,377-385 +,Latour,Article,Birth Defects Research,Circle of Willis anomalies in Turner syndrome: Absent A1 segment of the anterior cerebral artery,Lawrence Latour;Camilo Toro;Marie Luby;Ashley Buscetta;Maximilian Muenke;Paul Kruszka;Nicole Banks;Gilbert Vezina;Maria T. Acosta;David C. Page;Yonit A. Addissie,2019-11-15,10.1002/bdr2.1609,31626395,85074102584,2-s2.0-85074102584,0,https://api.elsevier.com/content/abstract/scopus_id/85074102584,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85074102584&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85074102584&origin=inward,,1584-1588 +,Latour,Article,Brain,Traumatic microbleeds suggest vascular injury and predict disability in traumatic brain injury,Nancy A. Edwards;Lawrence L. Latour;Abhik Ray-Chaudhury;Gunjan Y. Parikh;Govind Nair;Partha P. Mitra;Bernard J. Dardzinski;Regina C. Armstrong;Zachary Lodato;Alexander Tolpygo;Daniel P. Perl;Anita D. Moses;Allison D. Griffin;L. Christine Turtzo,2019-11-01,10.1093/brain/awz290,31608359,85074304123,2-s2.0-85074304123,5,https://api.elsevier.com/content/abstract/scopus_id/85074304123,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85074304123&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85074304123&origin=inward,NINDS,3550-3564 +,Latour,Article,eLife,Shifts in myeloarchitecture characterise adolescent development of cortical gradients,Jakob Seidlitz;Casey Paquola;Guy B. Williams;Edward T. Bullmore;Boris Bernhardt;Daniel S. Margulies;Richard Ai Bethlehem;Petra E. Vértes;Rafael Romero-Garcia;Kirstie J. Whitaker;Reinder Vos De Wael;Konrad Wagstyl,2019-11-01,10.7554/eLife.50482,31724948,85074959270,2-s2.0-85074959270,5,https://api.elsevier.com/content/abstract/scopus_id/85074959270,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85074959270&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85074959270&origin=inward,EPSRC, +,Latour,Article,Neurology,MRI-based thrombolytic therapy in patients with acute ischemic stroke presenting with a low NIHSS,Lawrence L. Latour;Amie W. Hsia;Marie Luby;Zurab Nadareishvili;Richard T. Benson;Richard Leigh;Chandni P. Kalaria;Shahram Majidi;John K. Lynch,2019-10-15,10.1212/WNL.0000000000008312,31519779,85073183374,2-s2.0-85073183374,1,https://api.elsevier.com/content/abstract/scopus_id/85073183374,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85073183374&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85073183374&origin=inward,NINDS,E1507-E1513 +,Latour,Letter,Stroke,"Response by Luby et al to letter regarding article, “Frequency of blood-brain barrier disruption postendovascular therapy and multiple thrombectomy passes in acute ischemic stroke patients”",Lawrence L. Latour;Amie W. Hsia;Marie Luby,2019-10-01,10.1161/STROKEAHA.119.027214,31510900,85072588812,2-s2.0-85072588812,0,https://api.elsevier.com/content/abstract/scopus_id/85072588812,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85072588812&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85072588812&origin=inward,NIH,E312 +,Latour,Article,Journal of Neurotrauma,Association of Head Injury with Brain Amyloid Deposition: The ARIC-PET Study,Christopher T. Whitlow;Lawrence Latour;Elizabeth Selvin;Thomas Mosley;Yun Zhou;Rebecca F. Gottesman;Geoffrey Ling;Andrea L.C. Schneider;Silvia Koton;Menglu Liang;Josef Coresh;L. Christine Turtzo;Dean F. Wong,2019-09-01,10.1089/neu.2018.6213,30963804,85071786983,2-s2.0-85071786983,1,https://api.elsevier.com/content/abstract/scopus_id/85071786983,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85071786983&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85071786983&origin=inward,NIA,2549-2557 +,Latour,Article,Australian and New Zealand Journal of Psychiatry,Fractionation of impulsive and compulsive trans-diagnostic phenotypes and their longitudinal associations,Roxanne Hook;Murat Yücel;Jeggan Tiego;Leonardo F. Fontenelle;Linden Parkes;Rebecca Segrave;Ed Bullmore;Ray J. Dolan;Jon E. Grant;Ian M. Goodyer;Samuel R. Chamberlain;Tobias U. Hauser,2019-09-01,10.1177/0004867419844325,31001986,85064601331,2-s2.0-85064601331,3,https://api.elsevier.com/content/abstract/scopus_id/85064601331,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85064601331&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85064601331&origin=inward,NIHR,896-907 +,Latour,Article,European Journal of Human Genetics,Immunity and mental illness: findings from a Danish population-based immunogenetic study of seven psychiatric and neurodevelopmental disorders,Camilla Koldbæk Lemvigh;Merete Nordentoft;Ole Mors;Jonas Bybjerg-Grauholm;David M. Hougaard;Thomas Werge;Michael E. Benros;Anders D. Børglum;Mark J. Daly;Rosa Lundbye Allesøe;Alfonso Buil;Morten Dybdahl Krebs;Wesley K. Thompson;Ron Nudel;Preben Bo Mortensen;Simon Rasmussen,2019-09-01,10.1038/s41431-019-0402-9,30976114,85064242411,2-s2.0-85064242411,3,https://api.elsevier.com/content/abstract/scopus_id/85064242411,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85064242411&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85064242411&origin=inward,AU,1445-1455 +,Latour,Article,JAMA Psychiatry,Genetic Variants Associated with Anxiety and Stress-Related Disorders: A Genome-Wide Association Study and Mouse-Model Study,Marianne Giørtz Pedersen;Merete Nordentoft;Ole Mors;Thalia C. Eley;Preben B. Mortensen;Anders D. Børglum;Mikaela Laine;Manuel Mattheisen;Thomas Damm Als;Sandra M. Meier;Ewa Sokolowska;Kalevi Trontti;Gerome Breen;Jakob Grove;Marie Bækved-Hansen;Iiris Hovatta;Kirstin L. Purves;David M. Hougaard;Jonas Bybjerg-Grauholm;Thomas Werge,2019-09-01,10.1001/jamapsychiatry.2019.1119,31116379,85066912475,2-s2.0-85066912475,8,https://api.elsevier.com/content/abstract/scopus_id/85066912475,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85066912475&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85066912475&origin=inward,ERC,924-932 +,Latour,Article,Stroke,Frequency of Blood-Brain Barrier Disruption Post-Endovascular Therapy and Multiple Thrombectomy Passes in Acute Ischemic Stroke Patients,Malik Muhammad Adil;Amie W. Hsia;Kaylie Cullison;Marie Luby;Lawrence L. Latour;Zurab Nadareishvili;Noorie Pednekar,2019-08-01,10.1161/STROKEAHA.119.025914,31238832,85070182782,2-s2.0-85070182782,4,https://api.elsevier.com/content/abstract/scopus_id/85070182782,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85070182782&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85070182782&origin=inward,NINDS,2241-2244 +,Latour,Article,Stroke,Rapid Apparent Diffusion Coefficient Evolution after Early Revascularization: A Potential Marker of Secondary Injury?,Lawrence L. Latour;Amie W. Hsia;Kaylie Cullison;Marie Luby;Zurab Nadareishvili;Richard T. Benson;Richard Leigh;John K. Lynch;Rocco Armonda;Shannon Burton;Ai Hsi Liu,2019-08-01,10.1161/STROKEAHA.119.025784,31238830,85070183994,2-s2.0-85070183994,2,https://api.elsevier.com/content/abstract/scopus_id/85070183994,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85070183994&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85070183994&origin=inward,NINDS,2086-2092 +,Latour,Article,Psychopharmacology,Dopaminergic drug treatment remediates exaggerated cingulate prediction error responses in obsessive-compulsive disorder,John Suckling;Edward T. Bullmore;Kevin J. Craig;Franziska Knolle;Sanja Abbott;Naomi A. Fineberg;Karen D. Ersche;Graham K. Murray;Trevor W. Robbins;Shaila S. Shabbir;Barbara J. Sahakian,2019-08-01,10.1007/s00213-019-05292-2,31201476,85067789621,2-s2.0-85067789621,6,https://api.elsevier.com/content/abstract/scopus_id/85067789621,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85067789621&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85067789621&origin=inward,WT,2325-2336 +,Latour,Article,European Journal of Neuroscience,Naltrexone differentially modulates the neural correlates of motor impulse control in abstinent alcohol-dependent and polysubstance-dependent individuals,Emilio Fernandez-Egea;Filippo Passetti;John McGonigle;Venkataramana Boyapati;Valerie Voon;Remy Flechais;Adam Waldman;Shankar Kuchibatla;Anna Murphy;Nicola Kalk;Sanja Abbott;David Erritzoe;Trevor W. Robbins;Eleanor Taylor;Laurence Reed;Antonio Metastasio;John Suckling;Csaba Orban;Ilan Rabiner;Dana Smith;Liam J. Nestor;Karen D. Ersche;Louise M. Paterson;Rebecca Elliott;Anne Lingford Hughes;Inge Mick;Barbara J. Sahakian;Luca Faravelli;Edward T. Bullmore;David J. Nutt;Yetunde Faluyi;Bill Deakin,2019-08-01,10.1111/ejn.14262,30402987,85057272962,2-s2.0-85057272962,4,https://api.elsevier.com/content/abstract/scopus_id/85057272962,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85057272962&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85057272962&origin=inward,NIHR,2311-2321 +,Latour,Article,Philosophical Transactions of the Royal Society B: Biological Sciences,Variable DNA methylation in neonates mediates the association between prenatal smoking and birth weight,Marianne Giørtz Pedersen;Merete Nordentoft;Michaeline Bresnahan;Ole Mors;Christine Ladd-Acosta;Anders D. Børglum;David Michael Hougaard;Jonathan Mill;Mady Hornig;Mads Vilhelm Hollegaard;Joseph D. Buxbaum;Eilis Hannon;Abraham Reichenberg;Christine Søholm Hansen;Jakob Grove;Diana Schendel;Preben Bo Mortensen;M. Daniele Fallin;Jonas Bybjerg-Grauholm;Thomas Werge;Marie Bækvad-Hansen,2019-04-15,10.1098/rstb.2018.0120,30966880,85064163758,2-s2.0-85064163758,4,https://api.elsevier.com/content/abstract/scopus_id/85064163758,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85064163758&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85064163758&origin=inward,NICHD, +,Latour,Article,Science Translational Medicine,Using fMRI connectivity to define a treatment-resistant form of post-traumatic stress disorder,Emmanuel Shpigel;Brian Patenaude;Joachim Hallmayer;Barbara O. Rothbaum;Julia Huemer;Sanno Zack;Allison Thompson;Steven H. Baete;Silvia Fossati;Amit Etkin;Russ T. Toll;Gregory A. Fonzo;Jillian Autea;Bryan Gonzalez;Roland Hart;Desmond J. Oathes;Madeleine S. Goodkind;Adi Maron-Katz;Kathleen Durkin;Charles R. Marmar;Fernando E. Boada;Nicolas Crossley;Yevgeniya V. Zaiko;Raleigh Edelstein;Ruth O’Hara;Jonas Richiardi;Corey J. Keller;Kathy K. Peng;Afia Genfi;Steven E. Lindley;Edward T. Bullmore;Wei Wu;Parker Longwell;Elizabeth Weiss;Silas Mann;Irene Akingbade;Jaime Ramos-Cejudo;Jennifer Newman;Petra E. Vértes;Duna Abu-Amara;Jingyun Chen;Bruce A. Arnow,2019-04-03,10.1126/scitranslmed.aal3236,30944165,85064157000,2-s2.0-85064157000,18,https://api.elsevier.com/content/abstract/scopus_id/85064157000,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85064157000&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85064157000&origin=inward,NIMH, +,Latour,Review,Frontiers in Aging Neuroscience,Neuroimaging of cerebral small vessel disease and age-related cognitive changes,Lawrence Latour;Richard Leigh;Andres De Leon-Benedetti;Michelle R. Caunca;Clinton B. Wright,2019-01-01,10.3389/fnagi.2019.00145,,85069170934,2-s2.0-85069170934,1,https://api.elsevier.com/content/abstract/scopus_id/85069170934,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85069170934&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85069170934&origin=inward,MBRF, +,Latour,Review,Frontiers in Psychiatry,State of the field: Differentiating intellectual disability from autism spectrum disorder,Cristan Farmer;Somer Bishop;Emma Salzman;Catherine Lord;Audrey Thurm,2019-01-01,10.3389/fpsyt.2019.00526,,85078967913,2-s2.0-85078967913,8,https://api.elsevier.com/content/abstract/scopus_id/85078967913,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85078967913&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85078967913&origin=inward,NIMH, +,Leggio,Article,Translational Psychiatry,"Effects of oral, smoked, and vaporized cannabis on endocrine pathways related to appetite and metabolism: a randomized, double-blind, placebo-controlled, human laboratory study",Osama A. Abulseoud;Marilyn A. Huestis;Gray R. McDiarmid;Matthew N. Newmeyer;Mehdi Farokhnia;Vikas Munjal;Lorenzo Leggio,2020-12-01,10.1038/s41398-020-0756-3,32075958,85079821422,2-s2.0-85079821422,2,https://api.elsevier.com/content/abstract/scopus_id/85079821422,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85079821422&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85079821422&origin=inward,NIDA, +,Leggio,Article,Nature Communications,Labeled oxytocin administered via the intranasal route reaches the brain in rhesus macaques,A. J. Winchell;T. A. Shnitko;K. A. Grant;D. W. Erikson;M. R. Lee;A. V. Kaucher;S. W. Blue;L. Leggio,2020-12-01,10.1038/s41467-020-15942-1,32494001,85085969650,2-s2.0-85085969650,3,https://api.elsevier.com/content/abstract/scopus_id/85085969650,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85085969650&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85085969650&origin=inward,OD, +,Leggio,Article,Drug and Alcohol Dependence,Leveraging genetic data to investigate molecular targets and drug repurposing candidates for treating alcohol use disorder and hepatotoxicity,Joshua C. Gray;Mikela Murphy;Lorenzo Leggio,2020-09-01,10.1016/j.drugalcdep.2020.108155,,85087516310,2-s2.0-85087516310,0,https://api.elsevier.com/content/abstract/scopus_id/85087516310,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85087516310&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85087516310&origin=inward,NIDA, +,Leggio,Article,Brain Research,"Effects of exogenous ghrelin administration and ghrelin receptor blockade, in combination with alcohol, on peripheral inflammatory markers in heavy-drinking individuals: Results from two human laboratory studies",Sara L. Deschaine;Kelly M. Abshire;Mary R. Lee;Gray R. McDiarmid;Jillian T. Battista;Mehdi Farokhnia;Brittney D. Browning;Fatemeh Akhlaghi;Vikas Munjal;Lorenzo Leggio;Jeanelle Portelli,2020-08-01,10.1016/j.brainres.2020.146851,32339499,85084411414,2-s2.0-85084411414,1,https://api.elsevier.com/content/abstract/scopus_id/85084411414,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85084411414&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85084411414&origin=inward,NIAAA, +,Leggio,Article,Muscle and Nerve,Amyotrophic lateral sclerosis care and research in the United States during the COVID-19 pandemic: Challenges and opportunities,James D. Berry;Jinsy A. Andrews;Merit E. Cudkowicz;Timothy M. Miller;Jonathan Glass;Brixhilda Dedi;Jeffrey D. Rothstein;Nicholas J. Maragakis;Zachary Simmons;Michael D. Weiss;Robert H. Baloh;Jeremy M. Shefner;Sabrina Paganoni;Richard S. Bedlack;Nathan Carberry,2020-08-01,10.1002/mus.26989,32445195,85085970450,2-s2.0-85085970450,0,https://api.elsevier.com/content/abstract/scopus_id/85085970450,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85085970450&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85085970450&origin=inward,,182-186 +,Leggio,Article,Neuropharmacology,Endocrine effects of the novel ghrelin receptor inverse agonist PF-5190457: Results from a placebo-controlled human laboratory alcohol co-administration study in heavy drinkers,Mary R. Lee;Jillian T. Battista;Mehdi Farokhnia;Fatemeh Akhlaghi;Anitha Saravanakumar;Lisa A. Farinelli;Lorenzo Leggio;Enoch Cobbina;Xiaobai Li,2020-06-15,10.1016/j.neuropharm.2019.107788,31557492,85075385185,2-s2.0-85075385185,1,https://api.elsevier.com/content/abstract/scopus_id/85075385185,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85075385185&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85075385185&origin=inward,NIAAA, +,Leggio,Editorial,Alcohol and Alcoholism,"From 'The Red Journal', for the retirement of editor-in-chief philippe de witte: A fond and grateful farewell",Lorenzo Leggio;Jonathan Chick,2020-02-07,10.1093/alcalc/agaa008,31994695,85079105014,2-s2.0-85079105014,0,https://api.elsevier.com/content/abstract/scopus_id/85079105014,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85079105014&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85079105014&origin=inward,,1-2 +,Leggio,Article,Cell,Large-Scale Exome Sequencing Study Implicates Both Developmental and Functional Changes in the Neurobiology of Autism,Gail E. Herman;Fátima Lopes;Norio Ozaki;Ole Mors;Xinyi Xu;Sherif Gerges;Harrison Brand;Michael L. Cuccaro;Elisa Giorgio;Jakob Grove;Marcus C.Y. Chan;Isaac Pessah;Javier González-Peñas;Antonio M. Persico;Idan Menashe;Nancy Minshew;Andreas G. Chiocchetti;Mykyta Artomov;Stephen Guter;Jonas Bybjerg-Grauholm;Ryan Collins;Eduarda M.S. Montenegro;Grace Schwartz;Carla Lintas;Jiebiao Wang;Astanand Jugessur;Gal Meiri;Diego Lopergolo;Margaret Pericak-Vance;Aurora Curró;Christina M. Hultman;Jennifer Reichert;Patricia Maciel;Gun Peggy Knudsen;Iuliana Ionita-Laza;Jesslyn Jamison;Itaru Kushima;Angel Carracedo;Maureen S. Mulhern;Branko Aleksic;Ryan Doan;Utku Norman;Benjamin M. Neale;Pierandrea Muglia;J. Jay Gargus;Suma Jacob;Yunin Ludena;Caroline Dias;Giovanni Battista Ferrero;Per Magnus;Kaija Puura;David M. Hougaard;Minshi Peng;Lambertus Klei;Somer Bishop;Alexander Kolevzon;Behrang Mahjani;Dara S. Manoach;Elizabeth E. Guerrero;Alfredo Brusco;Montserrat Fernández-Prieto;Daniel Geschwind;Jack A. Kosmicki;Miia Kaartinen;Silvia De Rubeis;Eric M. Morrow;Rachel Nguyen;Terho Lehtimäki;Richard Anney;Shan Dong;Danielle Moreira;F. Kyle Satterstrom;Michael S. Breen;Preben Bo Mortensen;Menachem Fromer;Danielle Halpern;Mara Parellada;Merete Nordentoft;Xin He;W. Ian Lipkin;Brian H.Y. Chung;Aparna Bhaduri;Enrico Domenici;Matthew Mosconi;Nell Maltman;Bernardo Dalla Bernardina;Christine Stevens;Aarno Palotie;Emily Hansen-Kiss;Mafalda Barbosa;So Lun Lee;Elaine T. Lim;Chiara Fallerini;Christine M. Freitag;Maria Rita Passos-Bueno;Judith Miller;Joon Yong An;Brooke Sheppard;Hilary Coon;Irva Hertz-Picciotto,2020-02-06,10.1016/j.cell.2019.12.036,31981491,85078664833,2-s2.0-85078664833,55,https://api.elsevier.com/content/abstract/scopus_id/85078664833,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85078664833&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85078664833&origin=inward,ASF,568-584.e23 +,Leggio,Article,Molecular Psychiatry,The novel ghrelin receptor inverse agonist PF-5190457 administered with alcohol: preclinical safety experiments and a phase 1b human laboratory study,Markus Heilig;Jenica D. Tapocik;Melanie L. Schwandt;Mary R. Lee;Alexandra A. Dias;Mwlod Ghareeb;April N. Le;Mehdi Farokhnia;Fatemeh Akhlaghi;Lisa A. Farinelli;Sofia Bouhlal;Lorenzo Leggio;Enoch Cobbina,2020-02-01,10.1038/s41380-018-0064-y,29728704,85046419703,2-s2.0-85046419703,28,https://api.elsevier.com/content/abstract/scopus_id/85046419703,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85046419703&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85046419703&origin=inward,NIH,461-475 +,Leggio,Article,European Review for Medical and Pharmacological Sciences,Understanding plasma treatment effect on human acyl-ghrelin concentrations,L. Leggio;S. L. Deschaine,2020-01-01,10.26355/eurrev_202002_20216,32096210,85081919763,2-s2.0-85081919763,0,https://api.elsevier.com/content/abstract/scopus_id/85081919763,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85081919763&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85081919763&origin=inward,NIH,1585-1589 +,Leggio,Chapter,Handbook of Experimental Pharmacology,Medication development for alcohol use disorder: a focus on clinical studies,Raye Z. Litten;Megan L. Ryan;Joanne Fertig;Daniel E. Falk;Lorenzo Leggio,2020-01-01,10.1007/164_2019_295,31628604,85085232546,2-s2.0-85085232546,4,https://api.elsevier.com/content/abstract/scopus_id/85085232546,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85085232546&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85085232546&origin=inward,NIDA,443-462 +,Leggio,Note,Alcoholism: Clinical and Experimental Research,Five Priority Areas for Improving Medications Development for Alcohol Use Disorder and Promoting Their Routine Use in Clinical Practice,Megan L. Ryan;Raye Z. Litten;Joanne Fertig;Daniel E. Falk;Lorenzo Leggio,2020-01-01,10.1111/acer.14233,31803968,85076291159,2-s2.0-85076291159,0,https://api.elsevier.com/content/abstract/scopus_id/85076291159,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85076291159&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85076291159&origin=inward,,23-35 +,Leggio,Article,American Journal on Addictions,"Brief Report: Relationship Between Cotinine Levels and Peripheral Endogenous Concentrations of Oxytocin, β-Endorphin, and Orexin in Individuals With Both Alcohol and Nicotine Use Disorders",Carolina L. Haass-Koffler;Mary R. Lee;William H. Zywiak;Robert M. Swift;Zoe E. Brown;Jonathan Kurtis;Lorenzo Leggio;Roberta Perciballi,2020-01-01,10.1111/ajad.13064,,85085711386,2-s2.0-85085711386,0,https://api.elsevier.com/content/abstract/scopus_id/85085711386,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85085711386&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85085711386&origin=inward,NIDA, +,Leggio,Review,Addiction Biology,The future of translational research on alcohol use disorder,Lara A. Ray;Sarah W. Feldstein Ewing;Stephanie O'Malley;Barbara J. Mason;Erica N. Grodin;Anita J. Bechtholt;Markus Heilig;James David Jentsch;George F. Koob;James MacKillop;Andrea C. King;Lorenzo Leggio;Howard Becker,2020-01-01,10.1111/adb.12903,32286721,85083391641,2-s2.0-85083391641,0,https://api.elsevier.com/content/abstract/scopus_id/85083391641,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85083391641&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85083391641&origin=inward,, +,Leggio,Article,Addiction Biology,Differential correlation of serum BDNF and microRNA content in rats with rapid or late onset of heavy alcohol use,Ellanor L. Whiteley;Sophie Laguesse;Melanie Welman;Dorit Ron;Anthony L. Berger;Khanhky Phamluong;Jeffrey J. Moffat;Yann Ehinger;Mehdi Farokhnia;David Darevesky;Marie Lordkipanidzé;Samuel A. Sakhai;Lorenzo Leggio,2020-01-01,10.1111/adb.12890,,85080949191,2-s2.0-85080949191,0,https://api.elsevier.com/content/abstract/scopus_id/85080949191,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85080949191&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85080949191&origin=inward,, +,Leggio,Article,Amyotrophic Lateral Sclerosis and Frontotemporal Degeneration,Understanding the needs of people with ALS: a national survey of patients and caregivers,Jill Yersak;Calaneet Balas;Kate T. Brizzi;Miriam Galvin;James D. Berry;John Ravits;Chad Heatwole;Richard Bedlack;Neil Thakur;James Chan;Zachary Simmons;Orla Hardiman;John F.P. Bridges;Lucie Bruijn,2020-01-01,10.1080/21678421.2020.1760889,32396393,85085060901,2-s2.0-85085060901,0,https://api.elsevier.com/content/abstract/scopus_id/85085060901,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85085060901&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85085060901&origin=inward,CYTK, +,Leggio,Article,Cardiovascular Research,Genome-wide association study identifies locus at chromosome 2q32.1 associated with syncope and collapse,Michael Christiansen;Gustav Ahlberg;Christian M. Hagen;Jonas Bybjerg-Grauholm;David M. Hougaard;Jesper H. Svendsen;Morten W. Skov;Thomas A. Jepps;Laura Andreasen;Katra Hadji-Turdeghal;Morten S. Olesen;Stig Haunsø;Marie Bækvad-Hansen;Jørgen K. Kanters;Paula Hedley;Jonas Ghouse,2020-01-01,10.1093/cvr/cvz106,31049583,85076873985,2-s2.0-85076873985,2,https://api.elsevier.com/content/abstract/scopus_id/85076873985,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85076873985&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85076873985&origin=inward,,138-148 +,Leggio,Article,Autism Research,Psychometric Study of the Social Responsiveness Scale in Phelan–McDermid Syndrome,Latha Soorya;Jonathan Templin;Alison Durkin;Craig M. Powell;Audrey Thurm;Alexander Kolevzon;Jennifer Foss-Feig;Jonathan A. Bernstein;Elizabeth Berry-Kravis;Joseph D. Buxbaum;Kellie Gergoudis;Cristan Farmer;Alan Weinberg;Maria del Pilar Trelles;Mustafa Sahin;Paige Siper;Jordana Weissman,2020-01-01,10.1002/aur.2299,,85084615648,2-s2.0-85084615648,0,https://api.elsevier.com/content/abstract/scopus_id/85084615648,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85084615648&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85084615648&origin=inward,, +,Leggio,Article,Journal of Chromatography B: Analytical Technologies in the Biomedical and Life Sciences,Development and validation of an assay for a novel ghrelin receptor inverse agonist PF-5190457 and its major hydroxy metabolite (PF-6870961) by LC-MS/MS in human plasma,Rohitash Jamwal;Fatemeh Akhlaghi;Lorenzo Leggio;Sravani Adusumalli,2019-11-01,10.1016/j.jchromb.2019.121820,31670107,85073834820,2-s2.0-85073834820,0,https://api.elsevier.com/content/abstract/scopus_id/85073834820,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85073834820&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85073834820&origin=inward,NCATS, +,Leggio,Article,Drug and Alcohol Dependence,Peripheral proinflammatory markers are upregulated in abstinent alcohol-dependent patients but are not affected by cognitive bias modification: Preliminary findings,Sara L. Deschaine;Corinde E. Wiers;Felix Bermpohl;Gray R. McDiarmid;Lorenzo Leggio;Jeanelle Portelli;Xiaobai Li,2019-11-01,10.1016/j.drugalcdep.2019.107553,31541874,85072242565,2-s2.0-85072242565,1,https://api.elsevier.com/content/abstract/scopus_id/85072242565,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85072242565&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85072242565&origin=inward,NIH, +,Leggio,Article,Neuropharmacology,"Intravenous administration of ghrelin increases serum cortisol and aldosterone concentrations in heavy-drinking alcohol-dependent individuals: Results from a double-blind, placebo-controlled human laboratory study",George A. Kenna;Victoria M. Long;Carolina L. Haass-Koffler;Mehdi Farokhnia;Molly Magill;Robert M. Swift;Lorenzo Leggio,2019-11-01,10.1016/j.neuropharm.2019.107711,31310775,85070730233,2-s2.0-85070730233,2,https://api.elsevier.com/content/abstract/scopus_id/85070730233,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85070730233&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85070730233&origin=inward,NIAAA, +,Leggio,Review,Pharmacological Research,Sex differences in the response to opioids for pain relief: A systematic review and meta-analysis,Flavia Franconi;Ilaria Campesi;Giovanni Maria Pisanu;Roberta Agabio;Sergio Mameli;Claudia Pisanu;Gian Luigi Gessa;Lorenzo Leggio,2019-10-01,10.1016/j.phrs.2019.104447,31499196,85072616546,2-s2.0-85072616546,3,https://api.elsevier.com/content/abstract/scopus_id/85072616546,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85072616546&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85072616546&origin=inward,UNICA, +,Leggio,Article,Nature Medicine,A framework for the investigation of rare genetic disorders in neuropsychiatry,Joseph Hostyk;Carrie E. Bearden;David H. Ledbetter;David C. Glahn;Elise Douard;Anne Pariser;Christa L. Martin;Daniel H. Geschwind;Alan Anticevic;Jonathan Sebat;Mustafa Sahin;Stephan J. Sanders;Ricardo Dolmetsch;Sergiu P. Pasca;David B. Goldstein;Sebastien Jacquemont;Paul Avillach;Meera E. Modi;Armin Raznahan;Guoping Feng;Andres Moreno-De-Luca;Thomas Lehner;Raquel E. Gur;Jennifer G. Mulle;Audrey Thurm;Rodney Samaco,2019-10-01,10.1038/s41591-019-0581-5,31548702,85073086752,2-s2.0-85073086752,9,https://api.elsevier.com/content/abstract/scopus_id/85073086752,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85073086752&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85073086752&origin=inward,NIMH,1477-1487 +,Leggio,Article,Science Advances,Advances in the science and treatment of alcohol use disorder,K. Witkiewitz;R. Z. Litten;L. Leggio,2019-09-25,10.1126/sciadv.aax4043,31579824,85072649033,2-s2.0-85072649033,11,https://api.elsevier.com/content/abstract/scopus_id/85072649033,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85072649033&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85072649033&origin=inward,NIAAA, +,Leggio,Note,The Lancet HIV,HIV and alcohol use disorder: we cannot ignore the elephant in the room,Roberta Agabio;Lorenzo Leggio,2019-08-01,10.1016/S2352-3018(19)30074-8,31109914,85069879409,2-s2.0-85069879409,0,https://api.elsevier.com/content/abstract/scopus_id/85069879409,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85069879409&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85069879409&origin=inward,UNICA,e485-e486 +,Leggio,Article,EClinicalMedicine,Using Machine Learning to Classify Individuals With Alcohol Use Disorder Based on Treatment Seeking Status,William G. Kennedy;Vignesh Sankar;Jennifer J. Barb;A. Hammer;Philip G. McQueen;Mary R. Lee;Lorenzo Leggio,2019-07-01,10.1016/j.eclinm.2019.05.008,,85068016515,2-s2.0-85068016515,4,https://api.elsevier.com/content/abstract/scopus_id/85068016515,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85068016515&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85068016515&origin=inward,CIT,70-78 +,Leggio,Review,Physiology and Behavior,Ghrelin: From a gut hormone to a potential therapeutic target for alcohol use disorder,Monica L. Faulkner;Mary R. Lee;Mehdi Farokhnia;Lorenzo Leggio;Daria Piacentino,2019-05-15,10.1016/j.physbeh.2019.02.008,30738971,85061440490,2-s2.0-85061440490,12,https://api.elsevier.com/content/abstract/scopus_id/85061440490,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85061440490&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85061440490&origin=inward,NIH,49-57 +,Leggio,Article,International Journal of Obesity,Development and initial characterization of a novel ghrelin receptor CRISPR/Cas9 knockout wistar rat model,L. F. Vendruscolo;B. K. Harvey;Z. B. You;M. Heilig;G. F. Koob;C. T. Richie;L. J. Zallar;Y. J. Zhang;E. L. Gardner;B. J. Tunstall;J. Pickel;L. Leggio,2019-02-01,10.1038/s41366-018-0013-5,29453460,85042100624,2-s2.0-85042100624,8,https://api.elsevier.com/content/abstract/scopus_id/85042100624,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85042100624&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85042100624&origin=inward,NIMH,344-354 +,Leggio,Article,Drug Metabolism and Disposition,Role of molybdenum-containing enzymes in the biotransformation of the novel ghrelin receptor inverse agonist PF-5190457: A reverse translational bed-to-bench approachs,Rohitash Jamwal;Tim F. Ryder;Sravani Adusumalli;Fatemeh Akhlaghi;R. Scott Obach;Lorenzo Leggio,2019-01-01,10.1124/dmd.119.087015,31182423,85069949048,2-s2.0-85069949048,2,https://api.elsevier.com/content/abstract/scopus_id/85069949048,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85069949048&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85069949048&origin=inward,NIDA,874-882 +,Leggio,Review,Frontiers in Psychiatry,The use of baclofen as a treatment for alcohol use disorder: A clinical practice perspective,Esther M. Beraha;Fabio Caputo;Mathis Heydtmann;Paul S. Haber;Roberta Agabio;Adam Pastor;Andrew Thompson;Renaud De Beaurepaire;Patrick De La Selle;Amanda Stafford;Lorenzo Leggio;Christian A. Müller;Lynn Owens;Philippe Jaury;Louise M. Paterson;James C. Garbutt;Julia M.A. Sinclair;Giovanni Addolorato;Anne R. Lingford-Hughes;Fanny Pélissier;Wim Van Den Brink;Henri Jean Aubin;Kirsten C. Morley;Jonathan D. Chick;Benjamin Rolland;Nicolas Franchitto,2019-01-01,10.3389/fpsyt.2018.00708,,85065486849,2-s2.0-85065486849,5,https://api.elsevier.com/content/abstract/scopus_id/85065486849,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85065486849&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85065486849&origin=inward,ERAB, +,Leibenluft,Article,Depression and Anxiety,Genetic and environmental risk structure of internalizing psychopathology in youth,Melissa A. Brotman;Chelsea Sawyers;Roxann Roberson-Nay;Daniel S. Pine;Ellen Leibenluft;John M. Hettema;Brad Verhulst;Jessica L. Bourdon,2020-06-01,10.1002/da.23024,32369878,85085096755,2-s2.0-85085096755,0,https://api.elsevier.com/content/abstract/scopus_id/85085096755,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85085096755&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85085096755&origin=inward,NIH,540-548 +,Leibenluft,Article,Journal of the American Academy of Child and Adolescent Psychiatry,The Heterogeneity of Anxious Phenotypes: Neural Responses to Errors in Treatment-Seeking Anxious and Behaviorally Inhibited Youths,George A. Buzzell;Anastasia L. McGlade;Simone P. Haller;Nathan A. Fox;Daniel S. Pine;Ellen Leibenluft;Adina C. Heckelman;Ashley R. Smith;Lauren K. White,2020-06-01,10.1016/j.jaac.2019.05.014,31128266,85075353854,2-s2.0-85075353854,3,https://api.elsevier.com/content/abstract/scopus_id/85075353854,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85075353854&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85075353854&origin=inward,BMGF,759-769 +,Leibenluft,Article,Biological Psychiatry,"Anticipatory Threat Responding: Associations With Anxiety, Development, and Brain Structure",Jessica F. Sachs;Anderson M. Winkler;Tomer Shechner;Kalina J. Michalska;Bruno B. Averbeck;Daniel S. Pine;Ellen Leibenluft;Jennifer C. Britton;Rany Abend;Andrea L. Gold,2020-05-15,10.1016/j.biopsych.2019.11.006,31955915,85078037106,2-s2.0-85078037106,3,https://api.elsevier.com/content/abstract/scopus_id/85078037106,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85078037106&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85078037106&origin=inward,NIH,916-925 +,Leibenluft,Article,American Journal of Psychiatry,Age differences in the neural correlates of anxiety disorders: An fMRI study of response to learned threat,Brigid Behrens;Emily Ronkin;Madeline Farber;Daniel S. Pine;Ellen Leibenluft;Jennifer C. Britton;Rany Abend;Andrea L. Gold;Gang Chen,2020-05-01,10.1176/appi.ajp.2019.19060650,32252541,85085749416,2-s2.0-85085749416,3,https://api.elsevier.com/content/abstract/scopus_id/85085749416,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85085749416&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85085749416&origin=inward,NIH,454-463 +,Leibenluft,Article,Developmental Cognitive Neuroscience,Infant behavioral reactivity predicts change in amygdala volume 12 years later,Jessica F. Sachs;Nathan A. Fox;Dominique Phillips;Courtney A. Filippi;Daniel S. Pine;Ellen Leibenluft;Anderson Winkler;Andrea L. Gold,2020-04-01,10.1016/j.dcn.2020.100776,32452462,85081897842,2-s2.0-85081897842,0,https://api.elsevier.com/content/abstract/scopus_id/85081897842,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85081897842&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85081897842&origin=inward,NIH, +,Leibenluft,Article,Developmental Cognitive Neuroscience,Social anxiety and age are associated with neural response to social evaluation during adolescence,Q. B. Do;A. R. Smith;K. Kircanski;J. M. Jarcho;B. I. Rappaport;E. Leibenluft;D. S. Pine;E. E. Nelson,2020-04-01,10.1016/j.dcn.2020.100768,32077442,85079385240,2-s2.0-85079385240,0,https://api.elsevier.com/content/abstract/scopus_id/85079385240,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85079385240&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85079385240&origin=inward,NIMH, +,Leibenluft,Editorial,Biological Psychiatry,Increasing Diversity in Science: It Begins With All of Us,Ellen Leibenluft,2020-03-01,10.1016/j.biopsych.2019.12.009,32029071,85078075282,2-s2.0-85078075282,1,https://api.elsevier.com/content/abstract/scopus_id/85078075282,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85078075282&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85078075282&origin=inward,,379-381 +,Leibenluft,Note,Bipolar Disorders,Chronic irritability in children is not pediatric bipolar disorder: Implications for treatment,Ellen Leibenluft,2020-03-01,10.1111/bdi.12881,31820531,85076883884,2-s2.0-85076883884,0,https://api.elsevier.com/content/abstract/scopus_id/85076883884,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85076883884&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85076883884&origin=inward,NIMH,195-196 +,Leibenluft,Note,JAMA Psychiatry,New Frontiers in Irritability Research - From Cradle to Grave and Bench to Bedside,Ellen Leibenluft;Neir Eshel,2020-03-01,10.1001/jamapsychiatry.2019.3686,31799997,85076152368,2-s2.0-85076152368,2,https://api.elsevier.com/content/abstract/scopus_id/85076152368,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85076152368&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85076152368&origin=inward,NIMH,227-228 +,Leibenluft,Article,Behavior Therapy,Anxious-Irritable Children: A Distinct Subtype of Childhood Anxiety?,Melissa A. Brotman;Eli R. Lebowitz;Yaara Shimshoni;Daniel S. Pine;Ellen Leibenluft;Wendy K. Silverman,2020-03-01,10.1016/j.beth.2019.06.005,32138933,85069672844,2-s2.0-85069672844,1,https://api.elsevier.com/content/abstract/scopus_id/85069672844,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85069672844&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85069672844&origin=inward,NCATS,211-222 +,Leibenluft,Article,Bipolar Disorders,White matter microstructure in youth with and at risk for bipolar disorder,Melissa A. Brotman;Joelle Sarlls;Kenneth E. Towbin;Caitlin Stavish;Nancy E. Adleman;Ellen Leibenluft;Julia O. Linke,2020-03-01,10.1111/bdi.12885,31883419,85078667394,2-s2.0-85078667394,2,https://api.elsevier.com/content/abstract/scopus_id/85078667394,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85078667394&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85078667394&origin=inward,NIMH,163-173 +,Leibenluft,Article,Journal of the American Academy of Child and Adolescent Psychiatry,A Double-Blind Randomized Placebo-Controlled Trial of Citalopram Adjunctive to Stimulant Medication in Youth With Chronic Severe Irritability,Beth Lee;Alexandra Roule;Caroline G. Wambach;Ariela Kaiser;Wanda Wheeler;Ellen Leibenluft;Kenneth Towbin;Daniel S. Pine;Banafsheh Sharif-Askary;Andrew Pickles;Cheri McNeil;Katherine V. Miller;Aria D. Vitale;Chana Engel;Gerald P. Overman;Argyris Stringaris;Melissa A. Brotman;Catherine H. Yokum;Mollie Davis;Catherine T. Haring;Pablo Vidal-Ribas,2020-03-01,10.1016/j.jaac.2019.05.015,31128268,85072258051,2-s2.0-85072258051,6,https://api.elsevier.com/content/abstract/scopus_id/85072258051,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85072258051&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85072258051&origin=inward,NIHR,350-361 +,Leibenluft,Article,NeuroImage,Combining fMRI during resting state and an attention bias task in children,Melissa A. Brotman;Anita Harrewijn;Nathan A. Fox;Anderson M. Winkler;Julia Linke;Daniel S. Pine;Ellen Leibenluft;Rany Abend,2020-01-15,10.1016/j.neuroimage.2019.116301,31639510,85073937831,2-s2.0-85073937831,0,https://api.elsevier.com/content/abstract/scopus_id/85073937831,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85073937831&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85073937831&origin=inward,NIMH, +,Leibenluft,Letter,JAMA Psychiatry,Notice of Retraction and Replacement. Pornpattananangkul et al. Association between childhood anhedonia and alterations in large-scale resting-state networks and task-evoked activation. JAMA Psychiatry. 2019;76(6):624-633,Ellen Leibenluft;Narun Pornpattananangkul;Daniel S. Pine;Argyris Stringaris,2020-01-01,10.1001/jamapsychiatry.2020.1367,,85086852400,2-s2.0-85086852400,0,https://api.elsevier.com/content/abstract/scopus_id/85086852400,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85086852400&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85086852400&origin=inward,, +,Leibenluft,Article,Journal of the American Academy of Child and Adolescent Psychiatry,White Matter Microstructure in Pediatric Bipolar Disorder and Disruptive Mood Dysregulation Disorder,Melissa A. Brotman;Andrew Ross;Samantha Perlstein;Heather R. Frank;Joelle Sarlls;Kenneth E. Towbin;Daniel S. Pine;Nancy E. Adleman;Ellen Leibenluft;Julia O. Linke,2020-01-01,10.1016/j.jaac.2019.05.035,31330239,85078661432,2-s2.0-85078661432,1,https://api.elsevier.com/content/abstract/scopus_id/85078661432,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85078661432&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85078661432&origin=inward,NIMH, +,Leibenluft,Article,Psychological Medicine,Interaction of irritability and anxiety on emotional responding and emotion regulation: A functional MRI study,R. J.R. Blair;Ellen Leibenluft;Kathleen I. Crum;Karina S. Blair;Kayla Pope;Patrick M. Tyler;Harma Meffert;Soonjo Hwang;Joseph M. Aloi;Stuart F. White,2020-01-01,10.1017/S0033291720001397,,85087461885,2-s2.0-85087461885,0,https://api.elsevier.com/content/abstract/scopus_id/85087461885,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85087461885&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85087461885&origin=inward,, +,Leibenluft,Review,Human Brain Mapping,Mega-analysis methods in ENIGMA: The experience of the generalized anxiety disorder working group,Murray B. Stein;Randy Buckner;Mohammed Milad;Milutin Kostić;Ellen Leibenluft;Michal Assaf;Carmen Andreescu;Narcis Cardoner;K. Luan Phan;Gregory A. Fonzo;Karina S. Blair;Ruben C. Gur;Michael T. Perino;Helena van Nieuwenhuizen;Antonia N. Kaczkurkin;Gretchen J. Diefenbach;Sandra Van der Auwera;Rebecca Price;Katja Beesdo-Baum;Nicholas L. Balderston;Raquel E. Gur;Monique Ernst;Giovanni A. Salum;Elena Makovac;Kevin Hilbert;Michael Myers;Hannah Zwiebel;Daniel S. Pine;Bianca A.V. Alberton;Neda Jahanshad;Pedro M. Pan;Anderson M. Winkler;Nynke A. Groenewold;Matteo Mancini;Hugo D. Critchley;Christian Grillon;Elise M. Cardinale;Camilla Cividini;David Hofmann;Benson Mwangi;Frances Meeten;Gisele G. Manfro;Ana Munjiza;Giovana B. Zunta-Soares;Katie Burkhouse;Chad M. Sylvester;Katharina Wittfeld;Elisa Canu;Hans J. Grabe;Paul M. Thompson;Anita Harrewijn;Katy E. Werwath;Dick J. Veltman;Gabrielle F. Freitag;Janna M. Bas-Hoogendam;Jair C. Soares;Courtney A. Filippi;Massimo Filippi;Jared A. Nielsen;Jordan W. Smoller;Federica Agosta;Sophia I. Thomopoulos;Thomas Straube;Paolo Brambilla;Nic J.A. Van der Wee;Andrea P. Jackowski;Theodore D. Satterthwaite;André Zugman;Dan J. Stein;Heidi K. Schroeder;Rachel Berta;Bart Larsen;Qiongru Yu;Cristina Ottaviani;Lilianne R. Mujica-Parodi;Moji Aghajani;Eleonora Maggioni;Erica Tamburo;Jennifer Harper;Savannah Gosnell;Martin P. Paulus;Mira Z. Hammoud;Ulrike Lueken;James R. Blair;Daniel Porta-Casteràs;Jeffrey R. Strawn;Ramiro Salas;Mon Ju Wu,2020-01-01,10.1002/hbm.25096,,85083703055,2-s2.0-85083703055,1,https://api.elsevier.com/content/abstract/scopus_id/85083703055,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85083703055&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85083703055&origin=inward,, +,Leibenluft,Article,Neuropsychopharmacology,Accelerated cortical thinning within structural brain networks is associated with irritability in youth,Monica E. Calkins;Theodore D. Satterthwaite;Diego Davila;Daniel H. Wolf;Ellen Leibenluft;Robert J. Jirsaraie;Josiane Bourque;Russell T. Shinohara;Aristeidis Sotiras;Matthew Cieslak;Christos Davatzikos;Kristin Murtha;Azeez Adebimpe;Adon F.G. Rosen;Antonia N. Kaczkurkin;Rastko Ciric;Danielle S. Bassett;Sage Rush;David R. Roalf;Philip A. Cook;Kayla Piiwia;Mark A. Elliott;Kosha Ruparel,2019-12-01,10.1038/s41386-019-0508-3,31476764,85074964366,2-s2.0-85074964366,2,https://api.elsevier.com/content/abstract/scopus_id/85074964366,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85074964366&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85074964366&origin=inward,WRF,2254-2262 +,Leibenluft,Article,Journal of Clinical Child and Adolescent Psychology,"Irritability, Externalizing, and Internalizing Psychopathology in Adolescence: Cross-Sectional and Longitudinal Associations and Moderation by Sex",Katharina Kircanski;Sophie N.F. Schouboe;Ian H. Gotlib;Kathryn L. Humphreys;Ellen Leibenluft;Argyris Stringaris,2019-09-03,10.1080/15374416.2018.1460847,29667523,85045637488,2-s2.0-85045637488,3,https://api.elsevier.com/content/abstract/scopus_id/85045637488,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85045637488&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85045637488&origin=inward,NIMH,781-789 +,Leibenluft,Article,Social cognitive and affective neuroscience,Cross-species convergence in pupillary response: understanding human anxiety via non-human primate amygdala lesion,Vincent D. Costa;Bruno B. Averbeck;Olga Dal Monte;Daniel S. Pine;Ellen Leibenluft;David Pagliaccio,2019-08-07,10.1093/scan/nsz041,31184751,85072057554,2-s2.0-85072057554,1,https://api.elsevier.com/content/abstract/scopus_id/85072057554,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85072057554&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85072057554&origin=inward,NIMH,591-599 +,Leibenluft,Article,Depression and Anxiety,Early childhood social reticence and neural response to peers in preadolescence predict social anxiety symptoms in midadolescence,Johanna M.. Jarcho;Stefanie L. Sequeira;Nathan A. Fox;Adina C. Heckelman;Tessa Clarkson;Eric E. Nelson;Ellen Leibenluft;Daniel S. Pine;Nicholas R. Eaton,2019-08-01,10.1002/da.22910,31140687,85071057253,2-s2.0-85071057253,3,https://api.elsevier.com/content/abstract/scopus_id/85071057253,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85071057253&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85071057253&origin=inward,NARSAD,676-689 +,Leibenluft,Article,Depression and Anxiety,Advancing clinical neuroscience through enhanced tools: Pediatric social anxiety as an example,Quyen B. Do;Anni R. Subar;Melissa A. Brotman;George A. Buzzell;Anita Harrewijn;Simone P. Haller;Tyson Barker;Katharina Kircanski;Scott Engel;Jennifer S. Silk;Ross D. Crosby;Elise M. Cardinale;Daniel S. Pine;Ellen Leibenluft;Ashley R. Smith;Lauren K. White,2019-08-01,10.1002/da.22937,31373756,85071014152,2-s2.0-85071014152,1,https://api.elsevier.com/content/abstract/scopus_id/85071014152,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85071014152&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85071014152&origin=inward,NIMH,701-711 +,Leibenluft,Chapter,Bipolar Disorder: The Science of Mental Health,Relationship between sleep and mood in patients with rapid-cycling bipolar disorder,Ellen Leibenluft;Paul S. Albert;Thomas A. Wehr;E. Rosenthal Norman,2019-01-01,10.4324/9781315054308-18,,85084598160,2-s2.0-85084598160,0,https://api.elsevier.com/content/abstract/scopus_id/85084598160,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85084598160&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85084598160&origin=inward,,185-193 +,Lisanby,Article,Translational Psychiatry,Low-frequency parietal repetitive transcranial magnetic stimulation reduces fear and anxiety,Christian Grillon;Monique Ernst;Bruce Luber;Nicholas L. Balderston;Madeline Goodwin;Zhi De Deng;Thomas Radman;Emily M. Beydler;Sarah H. Lisanby,2020-12-01,10.1038/s41398-020-0751-8,32066739,85079574936,2-s2.0-85079574936,0,https://api.elsevier.com/content/abstract/scopus_id/85079574936,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85079574936&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85079574936&origin=inward,NARSAD, +,Lisanby,Article,Translational Psychiatry,Neurocomputational mechanisms underpinning aberrant social learning in young adults with low self-esteem,Peter B. Jones;Edward T. Bullmore;Peter Fonagy;Raymond J. Dolan;Robb B. Rutledge;Palee M. Womack;Geert Jan Will;Michael Moutoussis;Ian M. Goodyer,2020-12-01,10.1038/s41398-020-0702-4,32184384,85082056765,2-s2.0-85082056765,0,https://api.elsevier.com/content/abstract/scopus_id/85082056765,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85082056765&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85082056765&origin=inward,CLAHRC GM, +,Lisanby,Article,Journal of Affective Disorders,Electroconvulsive therapy (ECT) for moderate-severity major depression among the elderly: Data from the pride study,Søren D. Østergaard;Maria S. Speed;Martina Mueller;Charles H. Kellner;Georgios Petrides;William V. McCall;Shawn M. McClintock;Sarah H. Lisanby;Mustafa M. Husain,2020-09-01,10.1016/j.jad.2020.05.039,32663942,85086472236,2-s2.0-85086472236,0,https://api.elsevier.com/content/abstract/scopus_id/85086472236,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85086472236&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85086472236&origin=inward,,1134-1141 +,Lisanby,Article,NeuroImage,Older adults benefit from more widespread brain network integration during working memory,S. H. Lisanby;A. V. Peterchev;C. A. Crowell;H. Palmer;L. G. Appelbaum;L. Deng;B. Luber;R. Cabeza;S. A. Hilbig;S. W. Davis;A. Brito;L. Beynel;D. Lakhlani,2020-09-01,10.1016/j.neuroimage.2020.116959,32442638,85085727044,2-s2.0-85085727044,0,https://api.elsevier.com/content/abstract/scopus_id/85085727044,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85085727044&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85085727044&origin=inward,NIA, +,Lisanby,Article,The Journal of clinical psychiatry,Not So Fast: Recent Successes and Failures in Treating Depression,Bashkim Kadriu;Zhi De Deng;Ioline D. Henter;Sarah H. Lisanby;Carlos A. Zarate;Christoph Kraus,2020-05-26,10.4088/JCP.19ac13138,32459405,85085538648,2-s2.0-85085538648,0,https://api.elsevier.com/content/abstract/scopus_id/85085538648,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85085538648&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85085538648&origin=inward,, +,Lisanby,Article,Brain Stimulation,Utilizing transcranial direct current stimulation to enhance laparoscopic technical skills training: A randomized controlled trial,Hannah Palmer;Lawrence G. Appelbaum;Lysianne Beynel;Jonathan R. Young;Amanda Watts;Zhi De Deng;John Migaly;Sarah H. Lisanby;Morgan L. Cox,2020-05-01,10.1016/j.brs.2020.03.009,32289719,85082180983,2-s2.0-85082180983,1,https://api.elsevier.com/content/abstract/scopus_id/85082180983,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85082180983&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85082180983&origin=inward,NIMH,863-872 +,Lisanby,Article,Human Genetics,A large population-based investigation into the genetics of susceptibility to gastrointestinal infections and the link between gastrointestinal infections and mental illness,Merete Nordentoft;Ole Mors;Jonas Bybjerg-Grauholm;David M. Hougaard;Thomas Werge;Michael E. Benros;Anders D. Børglum;Alfonso Buil;Mark J. Daly;Wesley K. Thompson;Vivek Appadurai;Ron Nudel;Andrew J. Schork;Preben Bo Mortensen,2020-05-01,10.1007/s00439-020-02140-8,32152699,85081732814,2-s2.0-85081732814,0,https://api.elsevier.com/content/abstract/scopus_id/85081732814,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85081732814&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85081732814&origin=inward,AU,593-604 +,Lisanby,Article,Brain Sciences,Site-specific effects of online rtms during a working memory task in healthy older adults,Hannah Palmer;Simon W. Davis;Connor Hile;Bruce Luber;Courtney A. Crowell;Lawrence G. Appelbaum;Moritz Dannhauer;Lysianne Beynel;Roberto Cabeza;Wesley Lim;Susan A. Hilbig;Sarah H. Lisanby;Alexandra Brito;Angel V. Peterchev,2020-05-01,10.3390/brainsci10050255,,85084128746,2-s2.0-85084128746,0,https://api.elsevier.com/content/abstract/scopus_id/85084128746,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85084128746&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85084128746&origin=inward,NIMH, +,Lisanby,Article,Nature Medicine,A randomized proof-of-mechanism trial applying the ‘fast-fail’ approach to evaluating κ-opioid antagonism as a treatment for anhedonia,Gretchen Hermes;Hongqiu Yang;Wayne Goodman;William Z. Potter;Sanjay J. Mathew;Diego A. Pizzagalli;Richard S.E. Keefe;Gerard Sanacora;Alexis E. Whitton;Andrew D. Krystal;John Nurnberger;Moria Smoski;James W. Murrough;Richard D. Weiner;Keming Gao;Allen Song;Dan Iosifescu;Joseph R. Calabrese;Steven T. Szabo;Sarah H. Lisanby,2020-05-01,10.1038/s41591-020-0806-7,32231295,85083050857,2-s2.0-85083050857,4,https://api.elsevier.com/content/abstract/scopus_id/85083050857,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85083050857&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85083050857&origin=inward,NIMH,760-768 +,Lisanby,Review,Progress in Neuro-Psychopharmacology and Biological Psychiatry,Efficacy and acceptability of transcranial direct current stimulation (tDCS) for major depressive disorder: An individual patient data meta-analysis,Ulrich Palm;Colleen Loo;Emmanuel Haffen;Djamila Bennabi;Frank Padberg;Adriano H. Moffa;Donel Martin;Zafiris Daskalakis;Lais B. Razza;Angelo Alonzo;Andre R. Brunoni;Felipe Fregni;Bernardo Sampaio-Jr;Daniel M. Blumberger;Sarah H. Lisanby;Isabela M. Benseñor,2020-04-20,10.1016/j.pnpbp.2019.109836,31837388,85076550622,2-s2.0-85076550622,5,https://api.elsevier.com/content/abstract/scopus_id/85076550622,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85076550622&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85076550622&origin=inward,CAMH Foundation, +,Lisanby,Letter,Journal of ECT,Theta Burst for Cognitive Remediation in Schizophrenia: A Case Series and Feasibility Study,Steven T. Szabo;Sara Emory;Bruce Luber;Richard S.E. Keefe;Gopalkumar Rakesh;Nicholas A. Mischel;Sarah H. Lisanby,2020-03-01,10.1097/YCT.0000000000000625,31652174,85080846336,2-s2.0-85080846336,0,https://api.elsevier.com/content/abstract/scopus_id/85080846336,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85080846336&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85080846336&origin=inward,NIMH,72-74 +,Lisanby,Article,Neuropsychopharmacology,Mechanistic link between right prefrontal cortical activity and anxious arousal revealed using transcranial magnetic stimulation in healthy subjects,Christian Grillon;Monique Ernst;Bruce Luber;Nicholas L. Balderston;Camille Roberts;Zhi De Deng;Tiffany Lago;Thomas Radman;Emily M. Beydler;Sarah H. Lisanby,2020-03-01,10.1038/s41386-019-0583-5,31791039,85075989222,2-s2.0-85075989222,1,https://api.elsevier.com/content/abstract/scopus_id/85075989222,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85075989222&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85075989222&origin=inward,NARSAD,694-702 +,Lisanby,Article,Depression and Anxiety,Neurocognitive effects of transcranial direct current stimulation (tDCS) in unipolar and bipolar depression: Findings from an international randomized controlled trial,Cynthia Shannon Weickert;Scott T. Aaronson;Adith Mohan;Donel M. Martin;Angelo Alonzo;Shawn M. McClintock;John P. O'Reardon;William M. McDonald;Sarah H. Lisanby;Colleen K. Loo;Mustafa M. Husain,2020-03-01,10.1002/da.22988,31944487,85077999712,2-s2.0-85077999712,3,https://api.elsevier.com/content/abstract/scopus_id/85077999712,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85077999712&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85077999712&origin=inward,SMRI,261-272 +,Lisanby,Article,Autism Research,"Language deficits in specific language impairment, attention deficit/hyperactivity disorder, and autism spectrum disorder: An analysis of polygenic risk",Merete Nordentoft;Ole Mors;Jonas Bybjerg-Grauholm;Nicoline Hemager;Birgitte K. Burton;Katrine S. Spang;Aja N. Greve;Md Jamal Uddin;Thomas Werge;Jens Richardt M. Jepsen;Ditte L. Gantriis;Anne A.E. Thorup;Ron Nudel;Ditte V. Ellersgaard;Camilla A.J. Christiani;Jessica Ohland,2020-03-01,10.1002/aur.2211,31577390,85073945418,2-s2.0-85073945418,1,https://api.elsevier.com/content/abstract/scopus_id/85073945418,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85073945418&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85073945418&origin=inward,AU,369-381 +,Lisanby,Article,American Journal of Geriatric Psychiatry,Neurocognitive Effects of Combined Electroconvulsive Therapy (ECT) and Venlafaxine in Geriatric Depression: Phase 1 of the PRIDE Study,Robert M. Greenberg;George Alexopoulos;Martina Mueller;Styliani Kaliora;Zhi De Deng;Robert C. Young;Lauren S. Liebman;Matthew V. Rudorfer;Mimi C. Briggs;Samuel H. Bailine;Abeba A. Teklehaimanot;Vassilios Latoussakis;Joan Prudic;Kristen G. Tobias;Richard D. Weiner;Georgios Petrides;Emma T. Geduldig;Shawn M. McClintock;C. Munro Cullum;Peter B. Rosenquist;William V. McCall;Charles H. Kellner;Shirlene Sampson;Mary Dooley;Sarah H. Lisanby;Rebecca G. Knapp;Elisabeth Bernhardt;Mustafa M. Husain,2020-03-01,10.1016/j.jagp.2019.10.003,31706638,85075526174,2-s2.0-85075526174,4,https://api.elsevier.com/content/abstract/scopus_id/85075526174,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85075526174&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85075526174&origin=inward,SMRI,304-316 +,Lisanby,Note,Biological Psychiatry,Don't Blame the Tools: Clinical Neuroscience and the Quest to Link Brain With Behavior,Sarah H. Lisanby,2020-02-15,10.1016/j.biopsych.2019.12.002,32040418,85077462421,2-s2.0-85077462421,0,https://api.elsevier.com/content/abstract/scopus_id/85077462421,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85077462421&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85077462421&origin=inward,,312-313 +,Lisanby,Note,Biological Psychiatry,Getting Below the Surface of Behavioral Symptoms in Psychiatry,Edward Bullmore,2020-02-15,10.1016/j.biopsych.2019.12.007,32040420,85077442630,2-s2.0-85077442630,0,https://api.elsevier.com/content/abstract/scopus_id/85077442630,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85077442630&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85077442630&origin=inward,NIHR,316-317 +,Lisanby,Article,Frontiers in Human Neuroscience,Using Transcranial Magnetic Stimulation to Test a Network Model of Perceptual Decision Making in the Human Brain,Bruce Luber;David C. Jangraw;Paul Sajda;Susan Hilbig;Lysianne Beynel;Tristan Jones;Greg Appelbaum;Austin Harrison;Sarah H. Lisanby,2020-01-24,10.3389/fnhum.2020.00004,,85079130678,2-s2.0-85079130678,1,https://api.elsevier.com/content/abstract/scopus_id/85079130678,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85079130678&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85079130678&origin=inward,DARPA, +,Lisanby,Article,Neurology,Motor function decline correlates with behavioral impairment in C9orf72 mutation carriers,Shreya Gandhy;Jennifer Farren;Mary Kay Floeter,2020-01-21,10.1212/WNL.0000000000008810,31848258,85078383601,2-s2.0-85078383601,0,https://api.elsevier.com/content/abstract/scopus_id/85078383601,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85078383601&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85078383601&origin=inward,,134-136 +,Lisanby,Review,Annual Review of Pharmacology and Toxicology,Device-based modulation of neurocircuits as a therapeutic for psychiatric disorders,Shriya Awasthi;Michelle M. Noh;Bruce Luber;Nicholas L. Balderston;Zhi De Deng;Jeena Thomas;Shannon L. Exley;Melbaliz Velez Afanador;Sarah H. Lisanby;William C. Altekruse,2020-01-06,10.1146/annurev-pharmtox-010919-023253,31914895,85077700345,2-s2.0-85077700345,0,https://api.elsevier.com/content/abstract/scopus_id/85077700345,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85077700345&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85077700345&origin=inward,BBRF,591-614 +,Lisanby,Article,Neuropsychology,Neurocognitive Subgroups in Major Depressive Disorder,David Wollny-Huttarsch;Stevan Nikolin;Donel M. Martin;Angelo Alonzo;Shawn M. McClintock;Sarah H. Lisanby;Colleen K. Loo,2020-01-01,10.1037/neu0000626,32324004,85084672068,2-s2.0-85084672068,0,https://api.elsevier.com/content/abstract/scopus_id/85084672068,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85084672068&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85084672068&origin=inward,, +,Lisanby,Article,Developmental Science,Functional near-infrared spectroscopy in toddlers: Neural differentiation of communicative cues and relation to future language abilities,Stacy S. Manwaring;Elizabeth Redcay;Lauren Swineford;Amir Gandjbakhche;Emma Condy;Audrey Thurm;Elizabeth G. Smith;Afrouz Anderson,2020-01-01,10.1111/desc.12948,,85082721522,2-s2.0-85082721522,0,https://api.elsevier.com/content/abstract/scopus_id/85082721522,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85082721522&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85082721522&origin=inward,, +,Lisanby,Review,Neuroscience and Biobehavioral Reviews,Effects of online repetitive transcranial magnetic stimulation (rTMS) on cognitive processing: A meta-analysis and recommendations for future studies,Simon W. Davis;Bruce Luber;Lawrence G. Appelbaum;Courtney A. Crowell;Duy Nguyen;Lysianne Beynel;Roberto Cabeza;Zhi De Deng;Wesley Lim;Susan A. Hilbig;Sarah H. Lisanby;Nicolas A. Chrapliwy,2019-12-01,10.1016/j.neubiorev.2019.08.018,31473301,85071609690,2-s2.0-85071609690,4,https://api.elsevier.com/content/abstract/scopus_id/85071609690,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85071609690&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85071609690&origin=inward,NIMH,47-58 +,Lisanby,Article,Translational Psychiatry,A large-scale genomic investigation of susceptibility to infection and its association with mental disorders in the Danish population,Esben Agerbo;Merete Nordentoft;Ole Mors;Jonas Bybjerg-Grauholm;David M. Hougaard;Preben B. Mortensen;Thomas Werge;Michael E. Benros;Anders D. Børglum;Alfonso Buil;Andrew J. Schork;Mark J. Daly;Wesley K. Thompson;Vivek Appadurai;Yunpeng Wang;Ron Nudel,2019-12-01,10.1038/s41398-019-0622-3,31712607,85074835924,2-s2.0-85074835924,1,https://api.elsevier.com/content/abstract/scopus_id/85074835924,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85074835924&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85074835924&origin=inward,AU, +,Lisanby,Conference Paper,JAMA Neurology,"Ethical Challenges of Risk, Informed Consent, and Posttrial Responsibilities in Human Research with Neural Devices: A Review",Paul Ford;Hannah Maslen;Scott Y.H. Kim;Eran Klein;Anna Wexler;Michael L. Kelly;Helen Mayberg;Henry T. Greely;Joseph J. Fins;Karen Rommelfanger;Christine Grady;Saskia Hendriks;Katrina Hutchison;Winston Chiong;Sameer A. Sheth;Franklin G. Miller;Sara Goering;Khara M. Ramos;Sarah H. Lisanby,2019-12-01,10.1001/jamaneurol.2019.3523,31621797,85073711837,2-s2.0-85073711837,3,https://api.elsevier.com/content/abstract/scopus_id/85073711837,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85073711837&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85073711837&origin=inward,,1506-1514 +,Lisanby,Article,Nature Neuroscience,Autism spectrum disorder and attention deficit hyperactivity disorder have a similar burden of rare protein-truncating variants,Merete Nordentoft;Ole Mors;Anders D. Børglum;Ditte Demontis;Tarjinder Singh;Jack A. Kosmicki;Raymond K. Walters;Thomas M. Werge;Mark J. Daly;Jakob Grove;Elise B. Robinson;Christine Stevens;Benjamin M. Neale;Duncan S. Palmer;Emilie M. Wigdor;F. Kyle Satterstrom;Preben Bo Mortensen;David M. Hougaard;Jonas Bybjerg-Grauholm;Francesco Lescai;Julian B. Maller;Marie Bækvad-Hansen,2019-12-01,10.1038/s41593-019-0527-8,31768057,85075472497,2-s2.0-85075472497,9,https://api.elsevier.com/content/abstract/scopus_id/85075472497,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85075472497&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85075472497&origin=inward,NIMH,1961-1965 +,Lisanby,Article,Journal of Neural Engineering,Accuracy of robotic coil positioning during transcranial magnetic stimulation,David L.K. Murphy;Warren M. Grill;Bruce Luber;I. Cassie Kozyrkov;Stefan M. Goetz;Sarah H. Lisanby;Angel V. Peterchev,2019-09-17,10.1088/1741-2552/ab2953,31189147,85072508751,2-s2.0-85072508751,0,https://api.elsevier.com/content/abstract/scopus_id/85072508751,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85072508751&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85072508751&origin=inward,, +,Lisanby,Review,Progress in Neuro-Psychopharmacology and Biological Psychiatry,The dynamic Duo: Combining noninvasive brain stimulation with cognitive interventions,Bruce M. Luber;Sarah H. Lisanby;Aakash V. Sathappan,2019-03-08,10.1016/j.pnpbp.2018.10.006,30312634,85055266828,2-s2.0-85055266828,21,https://api.elsevier.com/content/abstract/scopus_id/85055266828,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85055266828&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85055266828&origin=inward,DDCF,347-360 +,Lisanby,Editorial,American Journal of Geriatric Psychiatry,"George Niederehe, Ph.D.: Tribute and Thanks",Sarah Hollingsworth Lisanby;Joshua Gordon;Jovier D. Evans,2019-03-01,10.1016/j.jagp.2018.12.019,30737007,85061831290,2-s2.0-85061831290,0,https://api.elsevier.com/content/abstract/scopus_id/85061831290,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85061831290&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85061831290&origin=inward,,333-334 +,Lisanby,Article,Cerebral Cortex,Waves of maturation and senescence in micro-structural MRI markers of human cortical myelination over the lifespan,František Váša;Lars T. Westlye;Edward T. Bullmore;Simon R. White;Donatas Sederevičius;Kirstie Whitaker;Håkon Grydeland;Anders M. Fjell;Ameera X. Patel;Petra E. Vértes;Rafael Romero-Garcia;Aaron F. Alexander-Bloch;Atle Bjørnerud;Christian K. Tamnes;Kristine B. Walhovd,2019-03-01,10.1093/cercor/bhy330,30590439,85061474863,2-s2.0-85061474863,7,https://api.elsevier.com/content/abstract/scopus_id/85061474863,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85061474863&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85061474863&origin=inward,EPSRC,1369-1381 +,Lisanby,Article,Nature Neuroscience,A genome-wide association study of shared risk across psychiatric disorders implicates gene regulation during fetal neurodevelopment,Marianne Giørtz Pedersen;Esben Agerbo;Merete Nordentoft;Ole Mors;Anders D. Børglum;Wesley K. Thompson;Olivier Delaneau;Mike Gandal;Daniel H. Geschwind;Hyejung Won;Naomi R. Wray;Mark J. Daly;Marie Bækved-Hansen;Benjamin M. Neale;Malene Revsbech Christiansen;Vivek Appadurai;Ron Nudel;Preben Bo Mortensen;David M. Hougaard;Jonas Bybjerg-Grauholm;Carsten Bøcker Pedersen;Thomas Werge;Alfonso Buil;Andrew J. Schork,2019-03-01,10.1038/s41593-018-0320-0,30692689,85060777615,2-s2.0-85060777615,31,https://api.elsevier.com/content/abstract/scopus_id/85060777615,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85060777615&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85060777615&origin=inward,NHMRC,353-361 +Y,Martin,Article,Communications Biology,Distinct neural mechanisms of social orienting and mentalizing revealed by independent measures of neural and eye movement typicality,Alex Martin;Catherine Walsh;Michal Ramot;Gabrielle Elise Reimann,2020-12-01,10.1038/s42003-020-0771-1,31996763,85078689481,2-s2.0-85078689481,1,https://api.elsevier.com/content/abstract/scopus_id/85078689481,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85078689481&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85078689481&origin=inward,NIMH, +,Martin,Article,Progress in Neurobiology,Changes in human brain dynamics during behavioral priming and repetition suppression,Mackenzie C. Cervenka;Max Collard;Griffin Milsap;Heather L. Benz;Yujing Wang;Stephen J. Gotts;Matthew S. Fifer;Anna Korzeniewska;Nathan E. Crone;Alex Martin,2020-06-01,10.1016/j.pneurobio.2020.101788,32198060,85083014728,2-s2.0-85083014728,0,https://api.elsevier.com/content/abstract/scopus_id/85083014728,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85083014728&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85083014728&origin=inward,NINDS, +,Martin,Article,Computers in Biology and Medicine,Fast detection and reduction of local transient artifacts in resting-state fMRI,Robert W. Cox;Peter A. Bandettini;Richard C. Reynolds;Irena Balzekas;Daniel A. Handwerker;Stephen J. Gotts;Alex Martin;Hang Joon Jo,2020-05-01,10.1016/j.compbiomed.2020.103742,32421647,85083039076,2-s2.0-85083039076,0,https://api.elsevier.com/content/abstract/scopus_id/85083039076,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85083039076&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85083039076&origin=inward,NINDS, +,Martin,Article,Journal of Neuroscience,Taste quality representation in the human brain,Alexander G. Liu;Jason A. Avery;John E. Ingeholm;Stephen J. Gotts;Cameron D. Riddell;Alex Martin,2020-01-29,10.1523/JNEUROSCI.1751-19.2019,31836661,85078693061,2-s2.0-85078693061,1,https://api.elsevier.com/content/abstract/scopus_id/85078693061,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85078693061&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85078693061&origin=inward,NIH,1042-1052 +,Martin,Article,BMJ Open Diabetes Research and Care,"Birth weight, family history of diabetes and diabetes onset in schizophrenia",Emilio Fernandez-Egea;Edward T. Bullmore;Rudolf N. Cardinal;Ryan Walker;Hisham Ziauddeen,2020-01-28,10.1136/bmjdrc-2019-001036,32049635,85078927636,2-s2.0-85078927636,1,https://api.elsevier.com/content/abstract/scopus_id/85078927636,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85078927636&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85078927636&origin=inward,NIHR, +Y,Martin,Article,NeuroImage,"Brain networks, dimensionality, and global signal averaging in resting-state fMRI: Hierarchical network structure results in low-dimensional spatiotemporal dynamics",Adrian W. Gilmore;Alex Martin;Stephen J. Gotts,2020-01-15,10.1016/j.neuroimage.2019.116289,31629827,85073823516,2-s2.0-85073823516,4,https://api.elsevier.com/content/abstract/scopus_id/85073823516,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85073823516&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85073823516&origin=inward,NIMH, +,Martin,Article,NeuroImage,"Characteristics of respiratory measures in young adults scanned at rest, including systematic changes and “missed” deep breaths",Rebecca M. Jones;Charles J. Lynch;Marc J. Dubin;Benjamin M. Silver;Jonathan D. Power;Alex Martin,2020-01-01,10.1016/j.neuroimage.2019.116234,31589990,85073106322,2-s2.0-85073106322,2,https://api.elsevier.com/content/abstract/scopus_id/85073106322,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85073106322&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85073106322&origin=inward,SF, +,Martin,Article,NeuroImage,Distinctions among real and apparent respiratory motions in human fMRI data,Rebecca M. Jones;Charles J. Lynch;Marc J. Dubin;Benjamin M. Silver;Jonathan D. Power;Alex Martin,2019-11-01,10.1016/j.neuroimage.2019.116041,31344484,85069742454,2-s2.0-85069742454,9,https://api.elsevier.com/content/abstract/scopus_id/85069742454,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85069742454&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85069742454&origin=inward,SF, +,Martin,Letter,Proceedings of the National Academy of Sciences of the United States of America,Reply to Spreng et al.: Multiecho fMRI denoising does not remove global motion-associated respiratory signals,Charles J. Lynch;Adrian W. Gilmore;Stephen J. Gotts;Jonathan D. Power;Alex Martin,2019-09-24,10.1073/pnas.1909852116,31455743,85072637696,2-s2.0-85072637696,2,https://api.elsevier.com/content/abstract/scopus_id/85072637696,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85072637696&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85072637696&origin=inward,,19243-19244 +N,Martin,Review,Progress in Neuro-Psychopharmacology and Biological Psychiatry,Altered resting-state dynamics in autism spectrum disorder: Causal to the social impairment?,Kyle Jasmin;Alex Martin;Michal Ramot;Stephen J. Gotts,2019-03-02,10.1016/j.pnpbp.2018.11.002,30414457,85056487646,2-s2.0-85056487646,1,https://api.elsevier.com/content/abstract/scopus_id/85056487646,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85056487646&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85056487646&origin=inward,NIH,28-36 +,Martin,Article,Frontiers in Human Neuroscience,Sex differences in resting-state functional connectivity of the cerebellum in autism spectrum disorder,Alex Martin;Lauren Kenworthy;Gregory L. Wallace;Jason A. Avery;Stephen J. Gotts;Rachel E.W. Smith,2019-02-01,10.3389/fnhum.2019.00104,,85069470461,2-s2.0-85069470461,5,https://api.elsevier.com/content/abstract/scopus_id/85069470461,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85069470461&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85069470461&origin=inward,NIMH, +,Merriam,Article,Neuropsychologia,What do across-subject analyses really tell us about neural coding?,Cambria Revsine;Fernando M. Ramírez;Elisha P. Merriam,2020-06-01,10.1016/j.neuropsychologia.2020.107489,32437761,85084795538,2-s2.0-85084795538,0,https://api.elsevier.com/content/abstract/scopus_id/85084795538,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85084795538&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85084795538&origin=inward,NIMH, +,Merriam,Review,Current Treatment Options in Neurology,Telemedicine for the Care of Neuromuscular Disorders,James Grogan;Zachary Simmons,2020-06-01,10.1007/s11940-020-00625-5,,85084478505,2-s2.0-85084478505,0,https://api.elsevier.com/content/abstract/scopus_id/85084478505,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85084478505&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85084478505&origin=inward,, +,Merriam,Article,Current Biology,Layer-Specific Contributions to Imagined and Executed Hand Movements in Human Primary Motor Cortex,Laurentius Huber;Jason A. Avery;Elisha P. Merriam;Alex Martin;Andrew S. Persichetti,2020-05-04,10.1016/j.cub.2020.02.046,32220318,85083835392,2-s2.0-85083835392,1,https://api.elsevier.com/content/abstract/scopus_id/85083835392,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85083835392&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85083835392&origin=inward,NWO,1721-1725.e3 +,Mishkin,Article,Frontiers in Neuroscience,Frontal and Insular Input to the Dorsolateral Temporal Pole in Primates: Implications for Auditory Memory,Mar Ubero-Martínez;Marta Córcoles-Parada;Ricardo Insausti;Mortimer Mishkin;Richard G.M. Morris;Mónica Muñoz-López,2019-11-12,10.3389/fnins.2019.01099,,85075678346,2-s2.0-85075678346,0,https://api.elsevier.com/content/abstract/scopus_id/85075678346,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85075678346&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85075678346&origin=inward,DART, +,Mishkin,Article,Journal of Cognitive Neuroscience,"A comparison of auditory oddball responses in dorsolateral prefrontal cortex, basolateral amygdala, and auditory cortex of macaque",Corrie R. Camalier;Mortimer Mishkin;Bruno B. Averbeck;Kaylee Scarim,2019-01-01,10.1162/jocn_a_01387,30883292,85067269576,2-s2.0-85067269576,5,https://api.elsevier.com/content/abstract/scopus_id/85067269576,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85067269576&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85067269576&origin=inward,NIMH,1054-1064 +,Momenan,Review,Neuroscience and Biobehavioral Reviews,Addictions NeuroImaging Assessment (ANIA): Towards an integrative framework for alcohol use disorder,David Goldman;Alekhya Mandali;Kathrin Weidacker;Erica Grodin;Valerie Voon;George F. Koob;Laura Kwako;Reza Momenan;Nuria Doñamayor;Laurel Morris,2020-06-01,10.1016/j.neubiorev.2020.04.004,32298710,85083767911,2-s2.0-85083767911,1,https://api.elsevier.com/content/abstract/scopus_id/85083767911,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85083767911&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85083767911&origin=inward,,492-506 +,Momenan,Article,Journal of developmental and behavioral pediatrics : JDBP,"Neurodevelopmental Characterization of Young Children Diagnosed with Niemann-Pick Disease, Type C1",Cristan Farmer;Lisa Joseph;Forbes D. Porter;Madison Weiss;Dee Adedipe;Nicole Farhat;Elizabeth Berry-Kravis;Simona Bianconi;Edythe Wiggs;Audrey Thurm;Colby Chlebowski,2020-06-01,10.1097/DBP.0000000000000785,32073546,85086749750,2-s2.0-85086749750,0,https://api.elsevier.com/content/abstract/scopus_id/85086749750,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85086749750&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85086749750&origin=inward,,388-396 +,Momenan,Article,Molecular Psychiatry,"Effects of immunomodulatory drugs on depressive symptoms: A mega-analysis of randomized, placebo-controlled clinical trials in inflammatory disorders",Tom Freeman;Benjamin Hsu;Robert Stewart;Carmine Pariante;Tim Regan;Patricia Zunszain;Alessandra Borsini;Yu Sun;Livia Carvalho;David Chandran;Neil Harrison;Shahid Khan;Joshua Bell;Hugh Perry;Mark E. Curran;David Hume;Zhaozong Wu;Ashutosh Gupta;Dai Wang;Annamaria Cattaneo;P. S. Jagannatha;Declan Jones;Robert B. Henderson;Annie Stylianou;Edward T. Bullmore;Gayle M. Wittenberg;Yun Zhang;Gwenael Leday;Luis Henrique Souza-Teodoro;Wayne C. Drevets;Rudolf Cardinal;Petra E. Vértes;Sylvia Richardson;Guang Chen,2020-06-01,10.1038/s41380-019-0471-8,31427751,85070810380,2-s2.0-85070810380,8,https://api.elsevier.com/content/abstract/scopus_id/85070810380,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85070810380&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85070810380&origin=inward,JRD,1275-1285 +,Momenan,Article,Neurobiology of Aging,Age-related reduction in motor adaptation: brain structural correlates and the role of explicit memory,Daniel M. Wolpert;David Troy;Gillian Amery;Liana Amunts;Lauren Bates;Noham Wolpe;Diane Rowland;Rafael Henriques;John Sargeant;Hayley Fisher;Carol Brayne;Aldabra Stoddart;Fiona E. Matthews;Anne Barcroft;Edward T. Bullmore;Abdur Mustafa;Patricia Johnston;Laura Villis;Jaya Hillman;Maggie Squire;Darren Price;Anna McCarrey;James N. Ingram;Tim Dalgleish;William D. Marslen-Wilson;Kim Norman;Marta Correia;Simon Davis;Karen Campbell;David Samu;Geoff Hale;Meredith A. Shafto;Jonathan Dowrick;Melissa Fair;Janna van Belle;Sharon Erzinçlioglu;Nitin Williams;Kamen A. Tsvetanov;Jessica Penrose;Amanda Castle;Dan Barnes;Alison McMinn;Frances Johnson;Adarsh Grewal;Rogier Kievit;Fiona Roby;Tibor Auer;Andrew Hilton;Emma Green;Jodie Allen;Cheryl Stone;James B. Rowe;Joanne Mitchell;Sofia Gerbase;Stanimira Georgieva;Teresa Cheung;Beth Parkin;Rhodri Cusack;Tina Emery;Linda Geerligs;Cheryl Dias;Marie Dixon;Andrew Gadie;Thea Kavanagh-Williamson;Tracy Thompson;Magdalena Kwasniewska;Lu Gao;Jason R. Taylor;John Duncan;Richard N. Henson;Lorraine K. Tyler;Anna Goulding;Claire Hanley;Andrew C. Calder;Beth Stevens;Matthias Treder;Ozlem Yazlik,2020-06-01,10.1016/j.neurobiolaging.2020.02.016,,85081677002,2-s2.0-85081677002,0,https://api.elsevier.com/content/abstract/scopus_id/85081677002,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85081677002&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85081677002&origin=inward,BBSRC,13-23 +,Momenan,Article,Neuroscience Letters,Addiction neurocircuitry and negative affect: A role for neuroticism in understanding amygdala connectivity and alcohol use disorder,Sarah F. Dean;Reza Momenan;Samantha J. Fede;Nancy Diazgranados,2020-03-23,10.1016/j.neulet.2020.134773,32045624,85079228303,2-s2.0-85079228303,0,https://api.elsevier.com/content/abstract/scopus_id/85079228303,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85079228303&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85079228303&origin=inward,NIH, +,Momenan,Article,American Journal of Drug and Alcohol Abuse,"A role for the CD38 rs3796863 polymorphism in alcohol and monetary reward: evidence from CD38 knockout mice and alcohol self-administration, [11C]-raclopride binding, and functional MRI in humans",Erica N. Grodin;Ahmad R. Hariri;Melanie L. Schwandt;Jung H. Shin;Mary R. Lee;Jia Yan;Nadia S. Corral-Frias;Sara Deschaine;Veronica A. Alvarez;Vijay A. Ramchandani;Allison M. Daurio;Ryan Bogdan;Bethany L. Stangl;Lorenzo Leggio;Reza Momenan,2020-03-03,10.1080/00952990.2019.1638928,31365285,85070241383,2-s2.0-85070241383,0,https://api.elsevier.com/content/abstract/scopus_id/85070241383,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85070241383&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85070241383&origin=inward,NINDS,167-179 +,Momenan,Article,Neurology,"Practice guideline: Treatment for insomnia and disrupted sleep behavior in children and adolescents with autism spectrum disorder: Report of the Guideline Development, Dissemination, and Implementation Subcommittee of the American Academy of Neurology",Melissa J. Armstrong;Judith Owens;Roberto Tuchman;Robert L. Findling;Diane Donley;Aubyn Stahmer;Max Wiznitzer;Thomas Gaughan;Deborah Hirtz;Amy Wetherby;Ashura Williams Buckley;Zachary Warren;Gary Gronseth;Carolyn Bridgemohan;Tamara Pringsheim;Daniel Coury;Stephen Ashwal;Linmarie Sikich;David Michelson;Anshu Batra;Geraldine Dawson;Riley Kessler;Maryam Oskoui;David Gloss;Audrey Thurm;Shannon Merillat,2020-03-03,10.1212/WNL.0000000000009033,32051244,85081127262,2-s2.0-85081127262,2,https://api.elsevier.com/content/abstract/scopus_id/85081127262,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85081127262&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85081127262&origin=inward,,392-404 +,Momenan,Article,PLoS ONE,Alcohol effects on globus pallidus connectivity: Role of impulsivity and binge drinking,Erica N. Grodin;Melanie L. Schwandt;Carlos R. Cortes;David T. George;Karina P. Abrahao;Nancy Diazgranados;Vijay A. Ramchandani;David M. Lovinger;Reza Momenan;Samantha J. Fede,2020-01-01,10.1371/journal.pone.0224906,32214339,85082445536,2-s2.0-85082445536,0,https://api.elsevier.com/content/abstract/scopus_id/85082445536,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85082445536&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85082445536&origin=inward,NIH, +,Momenan,Article,Human Brain Mapping,How do substance use disorders compare to other psychiatric conditions on structural brain abnormalities? A cross-disorder meta-analytic comparison using the ENIGMA consortium findings,Dan J. Stein;Patricia J. Conrod;Ruth J. van Holst;Rob Hester;Janna Cousijn;David C. Glahn;Rajita Sinha;Murat Yucel;Valentina Lorenzetti;Paul M. Thompson;Dick J. Veltman;Reinout Wiers;Zsuzsika Sjoerds;Neda Jahanshad;Reza Momenan;Xavier Navarri;Catherine Orr;Mohammad H. Afzali;Ozlem Korucuoglu;Scott Mackey;Jacob Lavoie,2020-01-01,10.1002/hbm.25114,,85087724834,2-s2.0-85087724834,0,https://api.elsevier.com/content/abstract/scopus_id/85087724834,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85087724834&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85087724834&origin=inward,, +,Momenan,Article,NeuroImage: Clinical,Disturbances across whole brain networks during reward anticipation in an abstinent addiction population,John McGonigle;Remy Flechais;Anna Murphy;Trevor W. Robbins;Eleanor Taylor;Laurence Reed;John Suckling;Csaba Orban;Ilan Rabiner;Dana Smith;Liam J. Nestor;Karen D. Ersche;Louise M. Paterson;Rebecca Elliott;Anne Lingford Hughes;Barbara J. Sahakian;Edward T. Bullmore;David J. Nutt;Bill Deakin,2020-01-01,10.1016/j.nicl.2020.102297,32505119,85085743109,2-s2.0-85085743109,0,https://api.elsevier.com/content/abstract/scopus_id/85085743109,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85085743109&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85085743109&origin=inward,MRC, +,Momenan,Article,Molecular Psychiatry,Epigenome-wide association study and multi-tissue replication of individuals with alcohol use disorder: evidence for abnormal glucocorticoid signaling pathway gene regulation,Toni Kim Clarke;Andrew M. McIntosh;Falk W. Lohoff;Alicia K. Smith;Daniel B. Rosoff;Martha Longley;Kathryn L. Evans;Jisoo Lee;Audrey Luo;David Goldman;Melanie Schwandt;Reza Momenan;Arunima Roy;Jill L. Sorcher;Jeesun Jung;Rosie M. Walker;Hui Sun;Emma O’Connell;Mark J. Adams;David Porteous;Zachary A. Kaminsky;Colin A. Hodgkinson;Katrin Charlet;Christine Muench,2020-01-01,10.1038/s41380-020-0734-4,,85084426594,2-s2.0-85084426594,0,https://api.elsevier.com/content/abstract/scopus_id/85084426594,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85084426594&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85084426594&origin=inward,NIH, +,Momenan,Article,Muscle and Nerve,Clinical features of LRP4/agrin-antibody–positive myasthenia gravis: A multicenter study,Zheng Yu;Stephen Scelsa;Robert P. Lisak;Carlayne Jackson;Ikjae Lee;Zachary Simmons;Hongyan Xu;James F. Howard;Lin Mei;Michael H. Rivner;Mazen M. Dimachkie;Andrea Swenson;Brandy M. Quarles;R. Bhavaraju Sanka;Andrea Corse;George Small;Jerry Belsh;J. Americo Fernandes;James Caress;Tuan Vu;Jin Xiu Pan;Richard J. Nowak;Vanessa Baute;Eroboghene Ubogu;Clifton Gooch;Richard Barohn;Mamatha Pasnoor,2020-01-01,10.1002/mus.26985,32483837,85086224074,2-s2.0-85086224074,0,https://api.elsevier.com/content/abstract/scopus_id/85086224074,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85086224074&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85086224074&origin=inward,, +,Momenan,Article,Addiction Biology,Fear conditioning and extinction in alcohol dependence: Evidence for abnormal amygdala reactivity,Markus Heilig;Christian Grillon;Nicholas L. Balderston;Carlos R. Cortes;Falk W. Lohoff;Reza Momenan;Katrin Charlet;Christine Muench,2019-01-01,10.1111/adb.12835,31702089,85074914205,2-s2.0-85074914205,1,https://api.elsevier.com/content/abstract/scopus_id/85074914205,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85074914205&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85074914205&origin=inward,DFG, +,Momenan,Article,Addiction Biology,Subcortical surface morphometry in substance dependence: An ENIGMA addiction working group study,Dan J. Stein;Murat Yücel;Shashwath A. Meda;Albert Batalla;Janna Cousijn;Hugh Garavan;Godfrey Pearlson;Ruth van Holst;Rajita Sinha;Patricia Conrod;Sara Blaine;Yann Chye;Kent Hutchison;Valentina Lorenzetti;Dick J. Veltman;Paul M. Thompson;Lianne Schmaal;Anne M. Kaag;Rocio Martin-Santos;John J. Foxe;Neda Jahanshad;Christopher R.K. Ching;Antonio Verdejo-Garcia;Deborah Tang;Nadia Solowij;Liesbeth Reneman;Chiang Shan R. Li;Martin P. Paulus;Boris A. Gutman;Alain Dagher;Reza Momenan;Robert Hester;Angelica Morales;Reinout W. Wiers;Catherine Orr;Anna E. Goudriaan;Edythe D. London;Ozlem Korucuoglu;Elliot A. Stein;Anne Uhlmann;Scott Mackey;Samantha Brooks;Elisabeth C. Caparelli;Maartje Luijten,2019-01-01,10.1111/adb.12830,,85075237877,2-s2.0-85075237877,4,https://api.elsevier.com/content/abstract/scopus_id/85075237877,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85075237877&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85075237877&origin=inward,SAMRC, +,Murray,Article,PLoS Biology,The anterior cingulate cortex is necessary for forming prosocial preferences from vicarious reinforcement in monkeys,Steve W.C. Chang;Elisabeth A. Murray;Chloe L. Karaskiewicz;Jamie L. Schafroth;Benjamin M. Basile,2020-06-01,10.1371/journal.pbio.3000677,32530910,85086523526,2-s2.0-85086523526,1,https://api.elsevier.com/content/abstract/scopus_id/85086523526,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85086523526&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85086523526&origin=inward,NIMH, +,Murray,Review,Trends in Cognitive Sciences,Lesion Studies in Contemporary Neuroscience,Michael Petrides;Maia S. Pujara;Avinash R. Vaidya;Lesley K. Fellows;Elisabeth A. Murray,2019-08-01,10.1016/j.tics.2019.05.009,31279672,85068235545,2-s2.0-85068235545,12,https://api.elsevier.com/content/abstract/scopus_id/85068235545,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85068235545&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85068235545&origin=inward,CFREF,653-671 +,Nath,Article,Journal of acquired immune deficiency syndromes (1999),"Effect of HIV and Interpersonal Trauma on Cortical Thickness, Cognition, and Daily Functioning",Suad Kapetanovic;Joseph Snow;Govind Nair;Bryan R. Smith;Katherine A. Traino;Katrina Geannopoulos;Peter Siyahhan Julnes;Gina Norato;Avindra Nath,2020-08-01,10.1097/QAI.0000000000002358,32235173,85087321334,2-s2.0-85087321334,0,https://api.elsevier.com/content/abstract/scopus_id/85087321334,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85087321334&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85087321334&origin=inward,,405-413 +,Nath,Article,"AIDS (London, England)",Productive HIV infection in astrocytes can be established via a nonclassical mechanism,Eugene O. Major;Dragan Maric;Guan Han Li;Avindra Nath,2020-06-01,10.1097/QAD.0000000000002512,32379159,85084379740,2-s2.0-85084379740,2,https://api.elsevier.com/content/abstract/scopus_id/85084379740,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85084379740&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85084379740&origin=inward,,963-978 +,Nath,Editorial,Neurology,Neurologic complications of coronavirus infections,Avindra Nath,2020-05-12,10.1212/WNL.0000000000009455,32229625,85083557304,2-s2.0-85083557304,32,https://api.elsevier.com/content/abstract/scopus_id/85083557304,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85083557304&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85083557304&origin=inward,NIH,809-810 +,Nath,Article,Journal of Clinical Investigation,CD8+ T cells target cerebrovasculature in children with cerebral malaria,Terrie E. Taylor;Osorio Lopes Abath Neto;Dorian B. McGavern;Louis H. Miller;Myoung Hwa Lee;Dragan Maric;Monica Manglani;Susan K. Pierce;Karl B. Seydel;Kory R. Johnson;Brittany A. Riggle;Avindra Nath,2020-03-02,10.1172/JCI133474,31821175,85081137051,2-s2.0-85081137051,2,https://api.elsevier.com/content/abstract/scopus_id/85081137051,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85081137051&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85081137051&origin=inward,NIH,1128-1138 +,Nath,Review,Journal of Virology,Advances toward curing HIV-1 infection in tissue reservoirs,Lisa J. Henderson;Lauren B. Reoma;Joseph A. Kovacs;Avindra Nath,2020-02-01,10.1128/JVI.00375-19,31694954,85078116865,2-s2.0-85078116865,1,https://api.elsevier.com/content/abstract/scopus_id/85078116865,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85078116865&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85078116865&origin=inward,OAR, +,Nath,Review,Annual Review of Pathology: Mechanisms of Disease,The Pathogenesis of Nodding Syndrome,Tory P. Johnson;James Sejvar;Avindra Nath;Thomas B. Nutman,2020-01-24,10.1146/annurev-pathmechdis-012419-032748,31977293,85078303202,2-s2.0-85078303202,0,https://api.elsevier.com/content/abstract/scopus_id/85078303202,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85078303202&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85078303202&origin=inward,,395-417 +,Nath,Editorial,Journal of the Neurological Sciences,Silencing of immune activation with methotrexate in patients with COVID-19,Farinaz Safavi;Avindra Nath,2020-01-01,10.1016/j.jns.2020.116942,32471659,85085386556,2-s2.0-85085386556,0,https://api.elsevier.com/content/abstract/scopus_id/85085386556,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85085386556&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85085386556&origin=inward,NIH, +,Nath,Article,Clinical Case Reports,Neurotoxicities associated with checkpoint inhibitors: Two case reports and a review of the literature,Andrea B. Apolo;Lauren B. Reoma;Nicole N. Davarpanah;Martha Quezado;Lisa M. Cordes;Billel Gasmi;Omar I. Khan;Avindra Nath,2020-01-01,10.1002/ccr3.2534,,85075748697,2-s2.0-85075748697,0,https://api.elsevier.com/content/abstract/scopus_id/85075748697,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85075748697&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85075748697&origin=inward,NIH,24-32 +,Nath,Article,Annals of Clinical and Translational Neurology,Neurological manifestations of Erdheim–Chester Disease,Bernadette R. Gochuico;Camilo Toro;Fady Hannah-Shmouni;William A. Gahl;Louisa C. Boyd;Juvianee I. Estrada-Veras;Neval Ozkaya;Tanya Lehky;Kevin J. O’Brien;Rahul H. Dave;Avner Meoded;Avindra Nath,2020-01-01,10.1002/acn3.51014,32227455,85082407052,2-s2.0-85082407052,0,https://api.elsevier.com/content/abstract/scopus_id/85082407052,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85082407052&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85082407052&origin=inward,, +,Nath,Article,AIDS,Presence of Tat and transactivation response element in spinal fluid despite antiretroviral therapy,Ned Sacktor;Joseph Snow;Joseph Steiner;Lisa J. Henderson;Ulisses A. Santamaria;Bryan R. Smith;Tory P. Johnson;Robert A. Barclay;Fatah Kashanchi;Lauren Bowen Reoma;Catherine Demarino;Justin McArthur;Avindra Nath;Scott Letendre;Muzna Bachani,2019-12-01,10.1097/QAD.0000000000002268,31789815,85075953371,2-s2.0-85075953371,8,https://api.elsevier.com/content/abstract/scopus_id/85075953371,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85075953371&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85075953371&origin=inward,NINDS,S145-S157 +,Nath,Review,Brain Research,Involvement of organelles and inter-organellar signaling in the pathogenesis of HIV-1 associated neurocognitive disorder and Alzheimer's disease,Nabab Khan;Jonathan D. Geiger;Norman J. Haughey;Avindra Nath,2019-11-01,10.1016/j.brainres.2019.146389,31425679,85070934250,2-s2.0-85070934250,0,https://api.elsevier.com/content/abstract/scopus_id/85070934250,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85070934250&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85070934250&origin=inward,, +,Nath,Article,Journal of Neuropathology and Experimental Neurology,Neuroinflammation and not tauopathy is a predominant pathological signature of nodding syndrome,Martin Lammens;Geoffrey Akena;Richard Idro;Robert Colebunders;Samir Kumar-Singh;An Hotterbeekx;Joneé Taylor;Robert Lukande;Pamela R. Akun;Francis Olwa;Avindra Nath,2019-11-01,10.1093/jnen/nlz090,31553445,85073655124,2-s2.0-85073655124,7,https://api.elsevier.com/content/abstract/scopus_id/85073655124,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85073655124&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85073655124&origin=inward,ERC,1049-1058 +,Nath,Article,Annals of Neurology,Chronic Dengue Virus Panencephalitis in a Patient with Progressive Dementia with Extrapyramidal Features,Jonathan Howard;Camilo Toro;Myoung Hwa Lee;Juyun Kim;Carlos A. Pardo;Matija Snuderl;Craig Blackstone;C. Christopher Lau;Jeffrey Kowalak;Tory P. Johnson;Ilya Kister;Sanjay Kottapalli;Arline Faustin;Kory R. Johnson;James Weisfeld-Adams;Avindra Nath;Lauren B. Reoma;Stephen S. Whitehead;Steven Galetta;William A. Gahl;H. Benjamin Larman;Daniel Monaco,2019-11-01,10.1002/ana.25588,31461177,85072194617,2-s2.0-85072194617,3,https://api.elsevier.com/content/abstract/scopus_id/85072194617,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85072194617&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85072194617&origin=inward,"SOM, JHU",695-703 +,Nath,Article,Cell Reports,"Postmortem Cortex Samples Identify Distinct Molecular Subtypes of ALS: Retrotransposon Activation, Oxidative Stress, and Activated Glia",Frank Baas;Timothy M. Miller;Andrea Malaspina;Vivianna M. Van Deerlin;Suvankar Pal;Zachary Simmons;Jennifer Phillips-Cremins;Mary Poss;Towfique Raj;John Crary;Hemali Phatnani;Bin Zhang;John Ravits;Edward B. Lee;Molly G. Hammell;Eran Hornstein;Lyle W. Ostrow;Daniel J. MacGowan;Gregory A. Cox;Samantha Fennessey;Nikolaos A. Patsopoulos;Ophir Shalem;Brent T. Harris;Oliver H. Tam;Siddharthan Chandran;Dhruv Sareen;Eleonora Aronica;James R. Broach;Oleg Butovsky;Efthimios Dardiotis;Pietro Fratta;Justin Kwan;Josh Dubnau;Leonidas Stefanis;Robert Bowser;Ernest Fraenkel;Nazem Atassi;Ximena Arcila-Londono;Steve Finkbeiner;Delphine Fagegaltier;Colin Smith;Molly Gale Hammell;Sabrina Paganoni;Avindra Nath;Terry Heiman-Patterson;Noah Zaitlen;Matt Harms;James D. Berry;Darius J. Adams;Robert Baloh;Duyang Kim;Regina Shaw;Nikolay V. Rozhkov;Dale J. Lange;Nadia Propp;Leslie M. Thompson;Suma Babu;Neil A. Shneider;Isabel Hubbard;Marc Gotkine,2019-10-29,10.1016/j.celrep.2019.09.066,31665631,85074157599,2-s2.0-85074157599,9,https://api.elsevier.com/content/abstract/scopus_id/85074157599,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85074157599&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85074157599&origin=inward,CZI,1164-1177.e5 +,Nath,Erratum,Journal of NeuroVirology,"Correction to: Astrocytes as an HIV CNS reservoir: highlights and reflections of an NIMH-sponsored symposium (Journal of NeuroVirology, (2018), 24, 6, (665-669), 10.1007/s13365-018-0691-8)",Lena Al-Harthi;Jeymohan Joseph;Avindra Nath,2019-08-01,10.1007/s13365-019-00726-1,31041681,85065259823,2-s2.0-85065259823,1,https://api.elsevier.com/content/abstract/scopus_id/85065259823,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85065259823&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85065259823&origin=inward,,616 +,Nath,Letter,Acta neuropathologica communications,Technical considerations in detection of HERV-K in amyotrophic lateral sclerosis: selection of controls and the perils of qPCR,Wenxue Li;Marta Garcia-Montojo;Avindra Nath,2019-07-03,10.1186/s40478-019-0753-z,31269986,85069267321,2-s2.0-85069267321,2,https://api.elsevier.com/content/abstract/scopus_id/85069267321,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85069267321&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85069267321&origin=inward,NINDS,101 +,Nath,Review,Academic Medicine,Future directions of training physician–scientists: Reimagining and remeasuring the workforce,John D. Heiss;Wyatt P. Bensken;Omar I. Khan;Avindra Nath,2019-05-01,10.1097/ACM.0000000000002581,30640263,85065305243,2-s2.0-85065305243,0,https://api.elsevier.com/content/abstract/scopus_id/85065305243,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85065305243&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85065305243&origin=inward,NIH,659-663 +,Nath,Article,mBio,Neuroinflammatory changes in relation to cerebrospinal fluid viral load in simian immunodeficiency virus encephalitis,Falguni Basuli;Swati Shah;Kenta Matsuda;Cheri A. Lee;William Schreiber-Stainthorp;Dragan Maric;Paul Wakim;Dima A. Hammoud;Sanhita Sinharay;Michele Di Mascio;Siva Muthusamy;Vanessa Hirsch;Dianne E. Lee;William C. Reid;Avindra Nath,2019-05-01,10.1128/mBio.00970-19,31138753,85067115727,2-s2.0-85067115727,0,https://api.elsevier.com/content/abstract/scopus_id/85067115727,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85067115727&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85067115727&origin=inward,NIH, +,Nath,Letter,New England Journal of Medicine,Treatment of progressive multifocal leukoencephalopathy with pembrolizumab,Klaus Warnatz;Bodo Grimbacher;Cornelius Weiller;Steve Holland;Sebastian Rauer;Horst Urbach;Reinhard Marks;Avindra Nath,2019-04-25,10.1056/NEJMc1817193,30969507,85064860482,2-s2.0-85064860482,18,https://api.elsevier.com/content/abstract/scopus_id/85064860482,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85064860482&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85064860482&origin=inward,,1676-1677 +,Nath,Article,New England Journal of Medicine,A longitudinal study of Ebola sequelae in Liberia,Bonnie Dighero-Kemp;Michael C. Sneller;Moses Badio;Elizabeth S. Higgs;Justin Varughese;Rachel J. Bishop;Allen O. Eghrari;Cavan Reilly;Kenneth S. Jensen;James D. Neaton;H. Clifford Lane;Mosoka P. Fallah;Kumblytee L. Johnson;Lisa E. Hensley;Kaylie Tuznik;Dehkontee Gayedyu-Dennis;Soka J. Moses;Avindra Nath,2019-03-07,10.1056/NEJMoa1805435,30855742,85062697714,2-s2.0-85062697714,23,https://api.elsevier.com/content/abstract/scopus_id/85062697714,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85062697714&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85062697714&origin=inward,NEI,924-934 +,Nath,Article,AIDS,HIV brain latency as measured by CSF BcL11b relates to disrupted brain cellular energy in virally suppressed HIV infection,Michael D. Lovelace;Matthew J. Lennon;Lucette A. Cysique;Caroline D. Rae;Bruce J. Brew;Thomas M. Gates;Tory P. Johnson;Simon P. Jones;Avindra Nath;Lauriane Jugé,2019-03-01,10.1097/QAD.0000000000002076,30475266,85060905958,2-s2.0-85060905958,5,https://api.elsevier.com/content/abstract/scopus_id/85060905958,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85060905958&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85060905958&origin=inward,OAR,433-441 +,Nath,Article,Seminars in Neurology,Parasitic Infections of the Nervous System,Oscar H. Del Brutto;Hector H. Garcia;Avindra Nath,2019-01-01,10.1055/s-0039-1693036,31378871,85070390834,2-s2.0-85070390834,1,https://api.elsevier.com/content/abstract/scopus_id/85070390834,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85070390834&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85070390834&origin=inward,,358-368 +,Nath,Article,Frontiers in Psychiatry,Potential mechanism for HIV-associated depression: Upregulation of serotonin transporters in SIV-infected macaques detected by 11c-DASB PET,Kenta Matsuda;Swati Shah;Vanessa Hirsch;William Schreiber-Stainthorp;Paul Wakim;Michele Di Mascio;Sanhita Sinharay;Dima A. Hammoud;Siva Muthusamy;Dianne Lee;Avindra Nath,2019-01-01,10.3389/fpsyt.2019.00362,,85068116224,2-s2.0-85068116224,0,https://api.elsevier.com/content/abstract/scopus_id/85068116224,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85068116224&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85068116224&origin=inward,NIH, +,Nath,Article,British Journal of Psychiatry,Treatment-resistant depression and peripheral C-reactive protein,Edward T. Bullmore;Peter De Boer;Carmine M. Pariante;Valeria Mondelli;Declan N.C. Jones;Wayne C. Drevets;Linda Pointon;Philip J. Cowen;Jonathan Cavanagh;Neil A. Harrison;Samuel R. Chamberlain,2019-01-01,10.1192/bjp.2018.66,29764522,85058889774,2-s2.0-85058889774,46,https://api.elsevier.com/content/abstract/scopus_id/85058889774,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85058889774&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85058889774&origin=inward,J&J,11-19 +,Nugent,Article,Consciousness and Cognition,Metacognition and emotion – How accurate perception of own biases relates to positive feelings and hedonic capacity,Pawel Kleka;Hanna Brycz;Allison C. Nugent;Joanna E. Szczepanik;Agnieszka Fanslau;Carlos A. Zarate,2020-07-01,10.1016/j.concog.2020.102936,32416543,85084468406,2-s2.0-85084468406,0,https://api.elsevier.com/content/abstract/scopus_id/85084468406,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85084468406&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85084468406&origin=inward,NARSAD, +,Nugent,Erratum,Neuropsychopharmacology,"Correction: Ketamine metabolites, clinical response, and gamma power in a randomized, placebo-controlled, crossover trial for treatment-resistant major depression (Neuropsychopharmacology, (2020), 45, 8, (1398-1404), 10.1038/s41386-020-0663-6)",Bashkim Kadriu;Jomy George;Lilian Adeojo;Todd D. Gould;Cristan A. Farmer;Jacqueline Lovett;Ruin Moaddel;Allison C. Nugent;Lawrence T. Park;Jessica R. Gilbert;Peixiong Yuan;Carlos A. Zarate,2020-07-01,10.1038/s41386-020-0699-7,32376872,85085076323,2-s2.0-85085076323,0,https://api.elsevier.com/content/abstract/scopus_id/85085076323,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85085076323&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85085076323&origin=inward,,1405 +,Nugent,Article,Neuropsychopharmacology,"Ketamine metabolites, clinical response, and gamma power in a randomized, placebo-controlled, crossover trial for treatment-resistant major depression",Bashkim Kadriu;Jomy George;Lilian Adeojo;Todd D. Gould;Cristan A. Farmer;Jacqueline Lovett;Ruin Moaddel;Allison C. Nugent;Lawrence T. Park;Jessica R. Gilbert;Peixiong Yuan;Carlos A. Zarate,2020-07-01,10.1038/s41386-020-0663-6,32252062,85083440937,2-s2.0-85083440937,3,https://api.elsevier.com/content/abstract/scopus_id/85083440937,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85083440937&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85083440937&origin=inward,NARSAD,1398-1404 +,Nugent,Article,"Brain, Behavior, and Immunity","Childhood trauma, HPA axis activity and antidepressant response in patients with depression",Daniela Enache;Edward T. Bullmore;Anna P. McLaughlin;Zuzanna Zajkowska;Nicole Mariani;Naghmeh Nikkheslat;Carmine M. Pariante;Linda Pointon;Valeria Mondelli;Philip J. Cowen;Giulia Lombardo;Maria A. Nettis;Jonathan Cavanagh;Neil A. Harrison;Caitlin Hastings,2020-07-01,10.1016/j.bbi.2019.11.024,31794798,85076844294,2-s2.0-85076844294,2,https://api.elsevier.com/content/abstract/scopus_id/85076844294,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85076844294&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85076844294&origin=inward,NIHR,229-237 +,Nugent,Article,Addiction,Genetic liability to ADHD and substance use disorders in individuals with ADHD,Esben Agerbo;Merete Nordentoft;Ole Mors;Anders D. Børglum;Theresa Wimberley;Søren Dalsgaard;Ditte Demontis;Anita Thapar;Thomas Damm Als;David Hougaard;Cæcilie Ottosen;Preben Bo Mortensen;Lucy Riglin;Jonas Bybjerg-Grauholm;Thomas Werge;Marie Bækvad Hansen;Henriette Thisted Horsdal;Kate Langley;Isabell Brikell,2020-07-01,10.1111/add.14910,31803957,85078053867,2-s2.0-85078053867,1,https://api.elsevier.com/content/abstract/scopus_id/85078053867,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85078053867&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85078053867&origin=inward,WT,1368-1377 +,Nugent,Article,Frontiers in Psychiatry,The Effect of Ketamine on Electrophysiological Connectivity in Major Depressive Disorder,Prejaas K. Tewarie;Matthew J. Brookes;Allison C. Nugent;Elizabeth D. Ballard;Jessica R. Gilbert;Carlos A. Zarate,2020-06-10,10.3389/fpsyt.2020.00519,,85087025785,2-s2.0-85087025785,0,https://api.elsevier.com/content/abstract/scopus_id/85087025785,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85087025785&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85087025785&origin=inward,NIMH, +,Nugent,Article,Neuron,A Cluster of Autism-Associated Variants on X-Linked NLGN4X Functionally Resemble NLGN4Y,Alexander W. Lehr;Thien A. Nguyen;Yan Li;Katherine W. Roche;Kunwei Wu;John D. Badger;Julie L. Lauzon;Tongguang Wang;Kareem A. Zaghloul;Wei Lu;Audrey Thurm;Michael A. Bemben;Saurabh Pandey;Mahim Jain,2020-06-03,10.1016/j.neuron.2020.03.008,32243781,85085311548,2-s2.0-85085311548,1,https://api.elsevier.com/content/abstract/scopus_id/85085311548,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85085311548&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85085311548&origin=inward,NIMH,759-768.e7 +,Nugent,Article,Neuropsychopharmacology,Evaluating global brain connectivity as an imaging marker for depression: influence of preprocessing strategies and placebo-controlled ketamine treatment,Bashkim Kadriu;Anahit Mkrtchian;Allison C. Nugent;Jennifer W. Evans;Carlos A. Zarate;Christoph Kraus,2020-05-01,10.1038/s41386-020-0624-0,31995812,85079180564,2-s2.0-85079180564,5,https://api.elsevier.com/content/abstract/scopus_id/85079180564,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85079180564&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85079180564&origin=inward,NARSAD,982-989 +,Nugent,Erratum,Brain Imaging and Behavior,"Correction to: Mapping anticipatory anhedonia: an fMRI study (Brain Imaging and Behavior, (2019), 13, 6, (1624-1634), 10.1007/s11682-019-00084-w)",Jessica L. Reed;Allison C. Nugent;Carl W. Lejuez;Elizabeth D. Ballard;Joanna E. Szczepanik;Jennifer W. Evans;Carlos A. Zarate,2020-04-01,10.1007/s11682-019-00131-6,31172359,85067023923,2-s2.0-85067023923,0,https://api.elsevier.com/content/abstract/scopus_id/85067023923,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85067023923&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85067023923&origin=inward,,640 +,Nugent,Article,Biological Psychiatry: Cognitive Neuroscience and Neuroimaging,Magnetoencephalographic Correlates of Suicidal Ideation in Major Depression,Allison C. Nugent;Elizabeth D. Ballard;Jessica R. Gilbert;Christina S. Galiano;Carlos A. Zarate,2020-03-01,10.1016/j.bpsc.2019.11.011,31928949,85077719703,2-s2.0-85077719703,1,https://api.elsevier.com/content/abstract/scopus_id/85077719703,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85077719703&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85077719703&origin=inward,FNIH,354-363 +,Nugent,Review,Human Brain Mapping,What we learn about bipolar disorder from large-scale neuroimaging: Findings and future directions from the ENIGMA Bipolar Disorder Working Group,Mary L. Phillips;Xavier Caseras;Rodrigo Machado-Vieira;Erick J. Canales-Rodríguez;Andreas Jansen;Josselin Houenou;Unn K. Haukvik;Marcella Bellani;Erlend Bøen;Michael Bauer;Eduard Vieta;Irene Bollettini;Giuseppe Delvecchio;Dara M. Cannon;Marcio G. Soeiro-de-Souza;Lisa T. Eyler;Édouard Duchesnay;Roel A. Ophoff;Beny Lafer;Bradley J. MacIntosh;Leila Nabulsi;Ana M. Díaz-Zuluaga;Elisa M.T. Melloni;Sara Poletti;Melissa E. Pauling;Ling Li Zeng;Bartholomeus C.M. Haarman;Colm McDonald;Carlos López-Jaramillo;Jose M. Goikolea;Danai Dima;Giulia Tronchin;Fabiano Nery;Igor Nenadic;Derrek P. Hibar;Rachel M. Brouwer;Raymond Salvador;Tomas Paus;Kang Sim;Torbjørn Elvsåshagen;Neeltje E.M. van Haren;Yann Quidé;Silvia Alonso-Lana;Tomas Hajek;Francesco Benedetti;Tilo T.J. Kircher;Michael Berk;Orwa Dandash;Miho Ota;Bronwyn J. Overs;Philip B. Mitchell;Sophia Frangou;Dominik Grotegerd;Jorge Almeida;Henrik Walter;Cara Altimus;Udo Dannlowski;Scott C. Fears;Bernd Kramer;Edith Pomarol-Clotet;Dag Alnæs;Melissa J. Green;Chantal Henry;Viola Oertel;Christian Knöchel;Victoria Ives-Deliperi;Aart H. Schene;Julian A. Pineda-Zapata;Maria M. Rive;Christoph Abé;Allison C. Nugent;Sophia I. Thomopoulos;Joaquim Radua;Paolo Brambilla;Hilary P. Blumberg;Theodore D. Satterthwaite;Carrie E. Bearden;Yash Patel;Gloria Roberts;Bernhard T. Baune;Arnaud Pouchon;Salvador Sarró;Mircea Polosan;David C. Glahn;Janice M. Fullerton;Sonja M.C. de Zwarte;Martin Alda;Caterina del Mar Bonnin;Mikael Landén;Daniel L. Pham;Ingrid Agartz;Christopher R.K. Ching;Amy C. Bilderbeck;Tristram A. Lett;Tiril P. Gurholt;Abraham Nunes;Pauline Favre;Henricus G. Ruhe;Fleur M. Howells;Oliver Gruber,2020-01-01,10.1002/hbm.25098,,85088655322,2-s2.0-85088655322,0,https://api.elsevier.com/content/abstract/scopus_id/85088655322,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85088655322&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85088655322&origin=inward,, +,Nugent,Erratum,Molecular Psychiatry,"Correction: Genome-wide gene-environment analyses of major depressive disorder and reported lifetime traumatic experiences in UK Biobank (Molecular Psychiatry, (2020), 10.1038/s41380-019-0546-6)",Julien Bryois;Yuri Milaneschi;Maciej Trzaskowski;Shing Wan Choi;Gregory E. Crawford;Stefan Herms;Lili Milani;Jakob Grove;Tim B. Bigdeli;Carsten Horn;Nick Craddock;Sara Mostafavi;Marcus Ising;Robert M. Maier;Isaac S. Kohane;Christopher Hübel;Hamdi Mbarek;Sandra Van der Auwera;Mark J. Adams;Jonas Bybjerg-Grauholm;Scott D. Gordon;Francis M. Mondimore;Farnush Farhadi Hassan Kiadeh;Georg Homuth;Ian Jones;Marie Bækvad-Hansen;Tracy M. Air;Eric Jorgenson;David M. Howard;Enda M. Byrne;Stephan Ripke;Esben Agerbo;Rick Jansen;Donald J. MacIntyre;Thalia C. Eley;Eske M. Derks;Niamh Mullins;Jane Hvarregaard Christensen;Abdel Abdellaoui;Per Hoffmann;Fernando S. Goes;Christine Søholm Hansen;Ian B. Hickie;Mark James Adams;Zoltán Kutalik;Erin C. Dunn;Conor V. Dolan;David M. Hougaard;Lynsey S. Hall;Franziska Degenhardt;Christel M. Middeldorp;Wolfgang Maier;Toni Kim Clarke;Yihan Li;Warren W. Kretzschmar;Baptiste Couvy-Duchesne;Michael Gill;Elisabeth B. Binder;Valentina Escott-Price;Wouter J. Peyrot;Naomi R. Wray;Ian J. Deary;Jonathan R.I. Coleman;Grant W. Montgomery;Thomas F. Hansen;Nese Direk;Penelope A. Lind;Katrina A.S. Davis;Na Cai;Evelin Mihailov;Dean F. MacKinnon;Divya Mehta;Jerome C. Foo;James A. Knowles;Lucía Colodro-Conde;Donald M. Lyall;Lisa A. Jones;Manuel Mattheisen;Silviu Alin Bacanu;Henriette N. Buttenschøn;Enrique Castelao;Josef Frank;Hilary K. Finucane;Carol Kan;Aartjan T.F. Beekman;Julia Kraft;Jouke Jan Hottenga;Gail Davies;Patrick McGrath;Héléna A. Gaspar;Kirstin L. Purves;Peter McGuffin;Jonathan Marchini;Till F.M. Andlauer;Andreas J. Forstner;Sarah E. Medland;Karmel W. Choi;Christopher Rayner,2020-01-01,10.1038/s41380-020-0779-4,32424234,85084993846,2-s2.0-85084993846,0,https://api.elsevier.com/content/abstract/scopus_id/85084993846,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85084993846&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85084993846&origin=inward,, +,Nugent,Article,Molecular Psychiatry,Association of polygenic score for major depression with response to lithium in patients with bipolar disorder,Norio Ozaki;Stephane Jamain;Sebastian Kliwicki;Urs Heilbronner;Jean Pierre Kahn;Maciej Trzaskowski;Claire O’Donovan;Cristiana Cruceanu;Hsi Chung Chen;Alexandre Dayer;Peter Falkai;Stefan Herms;Joanna M. Biernacka;Nina Dalkner;James B. Potash;Tatyana Shekhtman;Maria Grigoroiu-Serbanescu;Tim B. Bigdeli;Sergi Papiol;John R. Kelsoe;J. Raymond DePaulo;Julie S. Garnham;Fasil Tekola-Ayele;Scott R. Clark;Armin Birner;Bruno Étain;Mark J. Adams;Francis M. Mondimore;Marie Bækvad-Hansen;Tracy M. Air;Enda M. Byrne;Stephan Ripke;Esben Agerbo;Sébastien Gard;Catharina Lavebratt;Micah Cearns;Abdel Abdellaoui;Per Hoffmann;Urban Ösby;Gonzalo Laje;Fernando S. Goes;Caterina Chillotti;Po Hsiu Kuo;Esther Jiménez;Klaus Oliver Schubert;Marion Leboyer;Bárbara Arias;Ichiro Kusumi;Jean Michel Aubry;Franziska Degenhardt;Susanne Bengesser;Mark A. Frye;Yi Hsiang Hsu;Tomas Novák;Andrea Pfennig;Susan G. Leckband;Elisabeth B. Binder;Louise Frisen;Naomi R. Wray;Nirmala Akula;Marina Mitjans;Abesh Kumar Bhattacharjee;Paul Grof;Lina Martinsson;Tadafumi Kato;Layla Kassem;Andreas Reif;Piotr M. Czerski;Clara Brichant-Petitjean;Mirko Manchia;Alfonso Tortorella;Michael J. McCarthy;Maria Del Zompo;Caroline M. Nievergelt;Barbara König;Raffaella Ardau;Palmiero Monteleone;Susan L. McElroy;Sarah Kittel-Schneider;Markus M. Nöthen;Liping Hou;Antonio Benabarre;Manuel Mattheisen;Janice M. Fullerton;Silviu Alin Bacanu;Pablo Cervantes;Lena Backlund;Andrea Hofmann;Mikael Landén;Aartjan T.F. Beekman;Mazda Adli;Azmeraw T. Amare;Frank Bellivier;Francesc Colom;Kazufumi Akiyama;Sven Cichon;Till F.M. Andlauer;Joanna Hauser;Andreas J. Forstner;Ryota Hashimoto,2020-01-01,10.1038/s41380-020-0689-5,,85081737215,2-s2.0-85081737215,1,https://api.elsevier.com/content/abstract/scopus_id/85081737215,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85081737215&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85081737215&origin=inward,EUR, +,Nugent,Review,BMC Psychiatry,"Research on the pathophysiology, treatment, and prevention of suicide: Practical and ethical issues",Elizabeth D. Ballard;Lawrence T. Park;Carlos A. Zarate;Allison C. Nugent,2019-11-01,10.1186/s12888-019-2301-6,31675949,85074325264,2-s2.0-85074325264,1,https://api.elsevier.com/content/abstract/scopus_id/85074325264,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85074325264&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85074325264&origin=inward,, +,Nugent,Article,Molecular Psychiatry,Synaptic and transcriptionally downregulated genes are associated with cortical thickness differences in autism,Edward T. Bullmore;Simon Baron-Cohen;Rafael Romero-Garcia;Richard A.I. Bethlehem;Varun Warrier,2019-07-01,10.1038/s41380-018-0023-7,29483624,85042541350,2-s2.0-85042541350,15,https://api.elsevier.com/content/abstract/scopus_id/85042541350,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85042541350&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85042541350&origin=inward,,1053-1064 +,Nugent,Article,Molecular Psychiatry,Ketamine has distinct electrophysiological and behavioral effects in depressed and healthy subjects,Todd D. Gould;Ruin Moaddel;Allison C. Nugent;Elizabeth D. Ballard;Lawrence T. Park;Nancy E. Brutsche;Carlos A. Zarate,2019-07-01,10.1038/s41380-018-0028-2,29487402,85042565493,2-s2.0-85042565493,40,https://api.elsevier.com/content/abstract/scopus_id/85042565493,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85042565493&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85042565493&origin=inward,,1040-1052 +Y,Pereira,Article,NeuroImage,Imaging the spontaneous flow of thought: Distinct periods of cognition contribute to dynamic functional connectivity during rest,Peter A. Bandettini;Francisco Pereira;Daniel A. Handwerker;Natasha Topolski;César Caballero-Gaudes;Javier Gonzalez-Castillo,2019-11-15,10.1016/j.neuroimage.2019.116129,31461679,85071438369,2-s2.0-85071438369,1,https://api.elsevier.com/content/abstract/scopus_id/85071438369,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85071438369&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85071438369&origin=inward,NIMH, +,Pereira,Article,Journal of Vision,Subtle predictive movements reveal actions regardless of social context,Ray Gonzalez;Maryam Vaziri-Pashkam;Charles Y. Zheng;Emalie G. McMahon;Francisco Pereira;Leslie G. Ungerleider,2019-01-01,10.1167/19.7.16,31355865,85070377579,2-s2.0-85070377579,1,https://api.elsevier.com/content/abstract/scopus_id/85070377579,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85070377579&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85070377579&origin=inward,NIMH,1-16 +,Pierpaoli,Article,Scientific Reports,Hypoplasia of cerebellar afferent networks in Down syndrome revealed by DTI-driven tensor based morphometry,Neda Sadeghi;M. Okan Irfanoglu;Liv S. Clasen;Carlo Pierpaoli;Catherine J. Stoodley;Elizabeth Adeyemi;Amritha Nayak;Nancy Raitano Lee,2020-12-01,10.1038/s41598-020-61799-1,32214129,85082483311,2-s2.0-85082483311,0,https://api.elsevier.com/content/abstract/scopus_id/85082483311,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85082483311&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85082483311&origin=inward,NIBIB, +,Pierpaoli,Article,NeuroImage,Image processing and analysis methods for the Adolescent Brain Cognitive Development Study,Marsha Lopez;Roger Little;M. Alejandra Infante;Joshua Kuperman;Anthony Steven Dick;David N. Kennedy;W. Kyle Simmons;Carolina Makowski;Lindsay M. Squeglia;Sean N. Hatton;Richard Watts;Linda B. Cottler;Kevin Conway;Gloria Reeves;Christian Hopfer;Mary Soules;Darrick T. Sturgeon;Donald J. Hagler;Vani Pariyadath;Kristina Uban;Carlo Pierpaoli;Thomas Ernst;Bonnie J. Nagel;Kevin Patrick;Scott Peltier;John K. Hewitt;Antonio Noronha;Katia D. Howlett;Andrew S. Nencka;Angela R. Laird;Meyer Glantz;Hugh P. Garavan;Christine Cloak;Megan Herting;Rahul Desikan;M. Daniela Cornejo;Kara Bagot;Octavio Ruiz de Leon;Hauke Bartsch;Jerzy Bodurka;Naomi Friedman;Aimee Goldstone;Susan Y. Bookheimer;John A. Matochik;Anders J. Perrone;Monica D. Rosenberg;Dana L. Wolff-Hughes;Marie T. Banich;Devin Prouty;Kilian M. Pohl;Amanda Sheffield Morris;Wesley K. Thompson;Susan RB Weiss;Eric A. Earl;Luke W. Hyde;James M. Bjork;Elizabeth R. Sowell;Thanh T. Trinh;Ruben P. Alvarez;Jazmin Diaz;Joseph Sakai;Michael C. Riedel;Rebecca DelCarmen-Wiggins;Steve Heeringa;Florence J. Breslin;Matthew T. Sutherland;Jonathan R. Polimeni;Joanna Jacobus;Raul Gonzalez;B. J. Casey;Mirella Dapretto;Will M. Aklin;Michael C. Neale;Leo Sugrue;Jody Tanabe;Deanna M. Barch;Oscar Miranda-Dominguez;Michael P. Harms;Linda Chang;Fiona C. Baker;Chelsea S. Sicat;Elizabeth Hoffman;Samuel W. Hawes;Sarah W. Feldstein Ewing;Damien A. Fair;Laura Hilmer;Adriana Galvan;Paul D. Shilling;Andre van der Kouwe;Susan F. Tapert;Martin P. Paulus;Adolf Pfefferbaum;Mary M. Heitzeg;Kevin M. Gray;Christopher J. Pung;Sara Jo Nixon;Feng Xue;Jay Giedd;Mariana Sanchez;Yi Li,2019-11-15,10.1016/j.neuroimage.2019.116091,31415884,85072244119,2-s2.0-85072244119,17,https://api.elsevier.com/content/abstract/scopus_id/85072244119,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85072244119&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85072244119&origin=inward,NIH, +,Pierpaoli,Article,Nature Genetics,Gene expression imputation across multiple brain regions provides insights into schizophrenia risk,Hiroyoshi Toyoshiba;Srdjan Djurovic;Ronald Y.L. Chen;Sarah E. Bergen;Lambertus L. Klein;Peter A. Holmans;Nadine Cohen;Chang Gyu Hahn;Johan Eriksson;Richard A. Belliveau;Elizabeth Bevilacqua;Benjamin A. Logsdon;Tim B. Bigdeli;Nick Craddock;Wiepke Cahn;Eric R. Gamazon;Kai How Farh;Barbara K. Lipska;Laurent Essioux;Michael Davidson;Raquel E. Gur;Keisuke Hirai;Martin Begemann;Stephan Ripke;Esben Agerbo;Weiqing Wang;Siow Ann Chong;Nancy G. Buccola;Donald W. Black;Peter Eichhammer;Stanley V. Catts;Noa Carrera;Eric F.C. Cheung;Kimberly D. Chambert;Elodie Drapeau;Joseph D. Buxbaum;Tune H. Pers;Shaun Purcell;Silviu A. Bacanu;Hailiang Huang;Benjamin M. Neale;Laura M. Huckins;David Curtis;Richard Bruggeman;Paul Cormican;Gabriel Hoffman;Gary Donohoe;Margot Albus;Guiqing Cai;Franziska Degenhardt;William Byerley;Dimitris Dikeos;Judit Bene;James Boocock;Rita M. Cantor;Raymond C.K. Chan;Jurgen Del Favero;Hardik R. Shah;Douglas M. Ruderfer;Brendan Bulik-Sullivan;David A. Collier;Dominique Campion;Madeline Alexander;James J. Crowley;James T.R. Walters;Eric Schadt;Wei Cheng;Naser Durmishi;Phil Lee;Vahram Haroutunian;Milind C. Mahajan;Farooq Amin;Menachem Fromer;Frank Dudbridge;Randy L. Buckner;Hoang T. Nguyen;Veera M. Rajagopal;Panos Roussos;Robin Kramer;Ditte Demontis;David A. Lewis;C. Robert Cloninger;Enrico Domenici;Thomas D. Als;Mette A. Peters;Kristen K. Dang;Timothy Dinan;Ingrid Agartz;Lara M. Mangravite;Jessica S. Johnson;Thanneer M. Perumal;Kenneth L. Davis;Aiden Corvin;Amanda Dobbyn;Kiran Girdhar;Eric Y.H. Chen;Jubao Duan;David Cohen;Vaughan J. Carr;Antonio F. Pardiñas,2019-04-01,10.1038/s41588-019-0364-4,30911161,85063585118,2-s2.0-85063585118,29,https://api.elsevier.com/content/abstract/scopus_id/85063585118,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85063585118&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85063585118&origin=inward,IDPH,659-674 +,Pierpaoli,Article,Psychological Medicine,"Detecting schizophrenia at the level of the individual: Relative diagnostic value of whole-brain images, connectome-wide functional connectivity and graph-based metrics",Su Lui;Gary Donohoe;Aiden Corvin;Cristina Scarpazza;Andrea Mechelli;David O. Mothersill;Jonathan Young;Sandra Vieira;Celso Arango;Gong Qiyong;Du Lei;Edward Bullmore;Xiaoqi Huang;Michael Gill;Philip McGuire;Machteld Marcelis;Walter H.L. Pinaya;Therese Van Amelsvoort,2019-01-01,10.1017/S0033291719001934,,85070682486,2-s2.0-85070682486,5,https://api.elsevier.com/content/abstract/scopus_id/85070682486,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85070682486&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85070682486&origin=inward,, +,Pierpaoli,Article,Molecular Psychiatry,A major role for common genetic variation in anxiety disorders,Andrew M. McIntosh;Merete Nordentoft;Ole Mors;Thalia C. Eley;Anders D. Børglum;Manuel Mattheisen;John M. Hettema;Sandra M. Meier;Jonathan R.I. Coleman;David Hougaard;Shing Wan Cho;Carol Kan;Gerome Breen;Kristin K. Nicodemus;J. Jürgen Deckert;Christopher Hübel;Rosa Cheesman;Preben Bo Mortensen;Héléna A. Gaspar;Kirstin L. Purves;Katrina A.S. Davis;Jonas Bybjerg-Grauholm;Thomas Werge;Matthew Hotopf;Marie Bækvad-Hansen;Christopher Rayner,2019-01-01,10.1038/s41380-019-0559-1,,85075328965,2-s2.0-85075328965,12,https://api.elsevier.com/content/abstract/scopus_id/85075328965,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85075328965&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85075328965&origin=inward,FNIH, +,Pine,Article,Behaviour Research and Therapy,Neural mechanisms underlying heterogeneous expression of threat-related attention in social anxiety,Nathan A. Fox;Travis C. Evans;Daniel S. Pine;Jennifer C. Britton;Yair Bar-Haim,2020-09-01,10.1016/j.brat.2020.103657,32682075,85087950578,2-s2.0-85087950578,0,https://api.elsevier.com/content/abstract/scopus_id/85087950578,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85087950578&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85087950578&origin=inward,NIMH, +,Pine,Editorial,American Journal of Psychiatry,2019 Articles of import and Impact,Ned H. Kalin;Carolyn Rodriguez;Madhukar Trivedi;Kathleen T. Brady;Daniel S. Pine;Elisabeth Binder;Shapir Rosenberg;David A. Lewis,2020-01-01,10.1176/appi.ajp.2019.19111124,31892299,85077438480,2-s2.0-85077438480,0,https://api.elsevier.com/content/abstract/scopus_id/85077438480,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85077438480&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85077438480&origin=inward,,17-19 +,Pine,Review,Human Brain Mapping,ENIGMA-anxiety working group: Rationale for and organization of large-scale neuroimaging studies of anxiety disorders,Janna Marie Bas-Hoogendam;Kevin Hilbert;Anita Harrewijn;Moji Aghajani;Paul M. Thompson;Dick J. Veltman;Anderson M. Winkler;Gabrielle F. Freitag;Dan J. Stein;Nic J.A. van der Wee;Sophia I. Thomopoulos;Ulrike Lueken;Daniel S. Pine;Neda Jahanshad;Nynke A. Groenewold,2020-01-01,10.1002/hbm.25100,,85087404076,2-s2.0-85087404076,0,https://api.elsevier.com/content/abstract/scopus_id/85087404076,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85087404076&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85087404076&origin=inward,, +,Pine,Article,Journal of Clinical Child and Adolescent Psychology,Associations Between Anxious and Depressive Symptoms and the Recognition of Vocal Socioemotional Expressions in Youth,Michele Morningstar;Melanie A. Dirks;Brent I. Rappaport;Daniel S. Pine;Eric E. Nelson,2019-05-04,10.1080/15374416.2017.1350963,28820619,85027842611,2-s2.0-85027842611,5,https://api.elsevier.com/content/abstract/scopus_id/85027842611,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85027842611&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85027842611&origin=inward,NIMH,491-500 +,Rapoport,Article,Molecular Psychiatry,Missense variants in ATP1A3 and FXYD gene family are associated with childhood-onset schizophrenia,Priscille Gerardin;Patrick A. Dion;Claudine Laurent;Vladimir Ferrafiat;Amirthagowri Ambalavanan;Guy A. Rouleau;Dan Spiegelman;Judith Rapoport;Alice Goldenberg;David Cohen;Boris Chaumette;Alexandre Dionne-Laporte,2020-04-01,10.1038/s41380-018-0103-8,29895895,85048372347,2-s2.0-85048372347,10,https://api.elsevier.com/content/abstract/scopus_id/85048372347,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85048372347&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85048372347&origin=inward,,821-830 +,Rapoport,Review,Child and Adolescent Psychiatric Clinics of North America,Childhood-Onset Schizophrenia and Early-onset Schizophrenia Spectrum Disorders: An Update,Nitin Gogtay;Shari Thomas;David I. Driver;Judith L. Rapoport,2020-01-01,10.1016/j.chc.2019.08.017,31708054,85074513250,2-s2.0-85074513250,2,https://api.elsevier.com/content/abstract/scopus_id/85074513250,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85074513250&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85074513250&origin=inward,,71-90 +,Rapoport,Article,Journal of Sleep Research,Sleep neurophysiology in childhood onset schizophrenia,Ashura Buckley;Kerstin Hoedlmoser;David I. Driver;Andjela Markovic;Judith L. Rapoport;Diane Dillard-Broadnax;Peter A. Gochman;Leila Tarokh,2020-01-01,10.1111/jsr.13039,,85083968939,2-s2.0-85083968939,0,https://api.elsevier.com/content/abstract/scopus_id/85083968939,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85083968939&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85083968939&origin=inward,, +,Rapoport,Article,Nature Genetics,Neuronal impact of patient-specific aberrant NRXN1α splicing,Erin Flaherty;Alesia Antoine;P. J.Michael Deans;Gintaras Deikus;Megan Fitzgerald;Khaled Alganem;Judith Rapoport;Madeline Halpern;Gabriel E. Hoffman;Hardik Shah;Natalie Barretto;Robert McCullumsmith;Michael B. Fernando;Peter Gochman;Esther Cheng;Nadine Schrode;Ian Ladran;Shijia Zhu;Robert Sebra;Kristen J. Brennand;Nadejda M. Tsankova;Gang Fang;Nancy Francoeur,2019-12-01,10.1038/s41588-019-0539-z,31784728,85075779019,2-s2.0-85075779019,4,https://api.elsevier.com/content/abstract/scopus_id/85075779019,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85075779019&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85075779019&origin=inward,ISMMS,1679-1690 +,Rapoport,Article,Translational Psychiatry,Reduced neonatal brain-derived neurotrophic factor is associated with autism spectrum disorders,Michael Christiansen;Ole Mors;Nis Borbye-Lorenzen;Jonas Bybjerg-Grauholm;Preben Bo Mortensen;Thomas Werge;Merethe Nordentoft;David Michael Hougaard;Christian Munch Hagen;Anders Børglum;Marie Bækvad-Hansen;Kristin Skogstrand,2019-12-01,10.1038/s41398-019-0587-2,31591381,85073078772,2-s2.0-85073078772,5,https://api.elsevier.com/content/abstract/scopus_id/85073078772,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85073078772&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85073078772&origin=inward,NNF, +,Rapoport,Article,Translational Psychiatry,NRXN1 is associated with enlargement of the temporal horns of the lateral ventricles in psychosis,Dung T. Hoang;Balaji Narayanan;Jonathan Spring;Philip Henson;Shashwath A. Meda;Nicolas R. Bolo;Peter Buckley;Carol Tamminga;Ney Alliey-Rodriguez;Neeraj Tandon;Madeline Klinger;Lucas Coppes;Godfrey Pearlson;David C. Glahn;Judith Rapoport;Sarah Keedy;Matcheri S. Keshavan;Steven McCarroll;Olivia Lutz;Brett A. Clementz;Chunyu Liu;John A. Sweeney;Uzma Nawaz;Rebecca Shafee;Huma Asif;Rachal R. Hegde;Tamar A. Grey;Jaya Padmanabhan;Victor Zeng;Jeffrey R. Bishop;Rebekka Lencer;David Curtis;Deepthi Bannai;Katherine Reis;Siyuan Liu;Elena I. Ivleva;Judith A. Badner;James L. Reilly;Diane Gage;Elliot S. Gershon;Scot Hill,2019-12-01,10.1038/s41398-019-0564-9,31530798,85072270340,2-s2.0-85072270340,1,https://api.elsevier.com/content/abstract/scopus_id/85072270340,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85072270340&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85072270340&origin=inward,NIMH, +Y,Raznahan,Article,Nature Communications,Transcriptomic and cellular decoding of regional brain vulnerability to neurogenetic disorders,Fran√ßois M. Lalonde;Richard A.I. Bethlehem;Liv S. Clasen;Siyuan Liu;Franti≈°ek V√°≈°a;Konrad Wagstyl;Declan G. Murphy;Petra E. V√©rtes;Daniel H. Geschwind;Damon Polioudakis;Joan C. Han;Sarah E. Morgan;Rafael Romero-Garcia;Ajay Nadig;Jonathan D. Blumenthal;Armin Raznahan;Luis de la Torre-Ubieta;Jakob Seidlitz;Casey Paquola;Edward T. Bullmore;Nancy R. Lee;Boris Bernhardt,2020-12-01,10.1038/s41467-020-17051-5,32620757,85087425878,2-s2.0-85087425878,0,https://api.elsevier.com/content/abstract/scopus_id/85087425878,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85087425878&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85087425878&origin=inward,NICHD, +,Raznahan,Article,Biological Psychiatry,Reciprocal Copy Number Variations at 22q11.2 Produce Distinct and Convergent Neurobehavioral Impairments Relevant for Schizophrenia and Autism Spectrum Disorder,Rachel K. Jonas;Gerhard Helleman;Ariana Vajdi;Amy Lin;Leila Kushan-Wells;Carrie E. Bearden;Lyle Kingsbury;Armin Raznahan;Laura Pacheco Hansen;Maria Jalbrzikowski,2020-08-01,10.1016/j.biopsych.2019.12.028,32143830,85081326717,2-s2.0-85081326717,1,https://api.elsevier.com/content/abstract/scopus_id/85081326717,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85081326717&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85081326717&origin=inward,NIMH,260-272 +Y,Raznahan,Article,"American Journal of Medical Genetics, Part C: Seminars in Medical Genetics",Sex chromosome aneuploidy alters the relationship between neuroanatomy and cognition,Ethan Whitman;Liv S. Clasen;Fran√ßois M. Lalonde;Siyuan Liu;Allysa Warling;Jonathan D. Blumenthal;Armin Raznahan;Kathleen Wilson,2020-06-01,10.1002/ajmg.c.31795,32515138,85086159262,2-s2.0-85086159262,0,https://api.elsevier.com/content/abstract/scopus_id/85086159262,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85086159262&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85086159262&origin=inward,NIH,493-505 +Y,Raznahan,Article,Neuron,Individual Variation in Functional Topography of Association Networks in Youth,Zaixu Cui;Tyler M. Moore;David R. Roalf;Christos Davatzikos;Desmond J. Oathes;Azeez Adebimpe;Russell T. Shinohara;Cedric H. Xia;Hongming Li;Daniel H. Wolf;Raquel E. Gur;Bart Larsen;Danielle S. Bassett;Armin Raznahan;Yong Fan;Matt Cieslak;Graham L. Baum;Damien A. Fair;Theodore D. Satterthwaite;Ruben C. Gur;Aaron F. Alexander-Bloch,2020-04-22,10.1016/j.neuron.2020.01.029,32078800,85081542531,2-s2.0-85081542531,4,https://api.elsevier.com/content/abstract/scopus_id/85081542531,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85081542531&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85081542531&origin=inward,,340-353.e8 +Y,Raznahan,Article,Cerebral Cortex,Altered Sex Chromosome Dosage Induces Coordinated Shifts in Cortical Anatomy and Anatomical Covariance,Anastasia Xenophontos;Liv S. Clasen;Jakob Seidlitz;Siyuan Liu;Aaron Alexander-Bloch;Jay N. Giedd;Jonathan D. Blumenthal;Armin Raznahan,2020-04-14,10.1093/cercor/bhz235,31828307,85083913416,2-s2.0-85083913416,3,https://api.elsevier.com/content/abstract/scopus_id/85083913416,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85083913416&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85083913416&origin=inward,,2215-2228 +,Raznahan,Article,Proceedings of the National Academy of Sciences of the United States of America,Imaging local genetic influences on cortical folding,Gil D. Hoftman;Godfrey Pearlson;Laura Almasyr;Amanda Rodrigue;Zhixin Lu;Harald H.H. G√∂rring;Josephine Mollon;David C. Glahn;Russell T. Shinohara;Aaron F. Alexander-Bloch;Siyuan Liu;Emma Knowles;Raquel E. Gur;Simon N. Vandekar;John Blangero;Danielle S. Bassett;Armin Raznahan;Samuel R. Matthias;Jakob Seidlitz;Theodore D. Satterthwaite;Joanne E. Curran;Peter T. Fox,2020-03-31,10.1073/pnas.1912064117,32170019,85082749827,2-s2.0-85082749827,0,https://api.elsevier.com/content/abstract/scopus_id/85082749827,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85082749827&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85082749827&origin=inward,NIH,7430-7436 +Y,Raznahan,Note,Molecular Psychiatry,Greater cortical thickness in individuals with ASD,Gabriel A. Devenyi;Michael D. Spencer;Rosemary J. Holt;Michael C. Craig;Michael V. Lombardo;Min Tae M. Park;Declan G.M. Murphy;Jason P. Lerch;Meng Chuan Lai;Evdokia Anagnostou;John Suckling;Stephanie Tullo;Amber N.V. Ruigrok;Christine Ecker;M. Mallar Chakravarty;Rhoshel Lenroot;Lindsay R. Chura;Raihaan Patel;Armin Raznahan;Jurgen Germann;Simon Baron-Cohen;Elizabeth Smith;Audrey Thurm;Margot J. Taylor;Saashi A. Bedford;Edward T. Bullmore;Dorothea L. Floris,2020-03-01,10.1038/s41380-020-0691-y,32103162,85080043547,2-s2.0-85080043547,0,https://api.elsevier.com/content/abstract/scopus_id/85080043547,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85080043547&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85080043547&origin=inward,,507-508 +,Raznahan,Article,NeuroImage,"The genetics of cortical myelination in young adults and its relationships to cerebral surface area, cortical thickness, and intelligence: A magnetic resonance imaging study of twins and families: Genetics of Cortical Myelination, Area, Thickness, and Intelligence",Armin Raznahan;Michael C. Neale;Siyuan Liu;J. Eric Schmitt,2020-02-01,10.1016/j.neuroimage.2019.116319,31678229,85075464173,2-s2.0-85075464173,2,https://api.elsevier.com/content/abstract/scopus_id/85075464173,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85075464173&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85075464173&origin=inward,NIMH, +,Raznahan,Article,Proceedings of the National Academy of Sciences of the United States of America,Development of structure‚Äìfunction coupling in human brain networks during youth,Zaixu Cui;David R. Roalf;Tyler M. Moore;Kosha Ruparel;Philip A. Cook;Desmond J. Oathes;Russell T. Shinohara;Cedric H. Xia;Raquel E. Gur;Richard F. Betzel;Rastko Ciric;Bart Larsen;Danielle S. Bassett;Armin Raznahan;Matthew Cieslak;Graham L. Baum;Theodore D. Satterthwaite;Ruben C. Gur;Aaron F. Alexander-Bloch,2020-01-07,10.1073/pnas.1912034117,31874926,85077497083,2-s2.0-85077497083,4,https://api.elsevier.com/content/abstract/scopus_id/85077497083,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85077497083&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85077497083&origin=inward,Penn,771-778 +,Raznahan,Note,Neuropsychopharmacology,"Advancing equity, diversity, and inclusion in the American College of Neuropsychopharmacology (ACNP): advances, challenges, and opportunities to accelerate progress",Dorothy Hatsukami;James C. Anthony;Armin Raznahan;Sherecce Fields;Carlos A. Zarate;Richard De La Garza;Jack E. Henningfield;Carlos A. Bola√±os-Guzm√°n;Sandra D. Comer;Lawrence S. Brown;Debra Furr-Holden;Albert Garcia-Romeu,2020-01-01,10.1038/s41386-020-0784-y,,85088859688,2-s2.0-85088859688,0,https://api.elsevier.com/content/abstract/scopus_id/85088859688,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85088859688&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85088859688&origin=inward,, +Y,Raznahan,Article,NeuroImage,Sex-biased trajectories of amygdalo-hippocampal morphology change over human development,Liv S. Clasen;M. Mallar Chakravarty;Russell T. Shinohara;Jakob Seidlitz;Ari M. Fish;Cassidy L. McDermott;Francois Lalonde;Paul K. Reardon;Ajay Nadig;Jonathan D. Blumenthal;Armin Raznahan;Catherine Mankiw;Jason P. Lerch,2020-01-01,10.1016/j.neuroimage.2019.116122,31470127,85074153626,2-s2.0-85074153626,6,https://api.elsevier.com/content/abstract/scopus_id/85074153626,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85074153626&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85074153626&origin=inward,NIH, +Y,Raznahan,Article,Cerebral Cortex,The Dynamic Associations between Cortical Thickness and General Intelligence are Genetically Mediated,Liv S. Clasen;Michael C. Neale;Greg L. Wallace;Joshua N. Pritikin;J. Eric Schmitt;Jay N. Giedd;Armin Raznahan;Nancy Raitano Lee,2019-12-17,10.1093/cercor/bhz007,30715232,85075462723,2-s2.0-85075462723,4,https://api.elsevier.com/content/abstract/scopus_id/85075462723,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85075462723&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85075462723&origin=inward,NIEHS,4743-4752 +,Raznahan,Article,Nature Medicine,A framework for the investigation of rare genetic disorders in neuropsychiatry,Alan Anticevic;Thomas Lehner;Joseph Hostyk;Jennifer G. Mulle;Sebastien Jacquemont;David C. Glahn;Christa L. Martin;Jonathan Sebat;Raquel E. Gur;Sergiu P. Pasca;Carrie E. Bearden;Ricardo Dolmetsch;Andres Moreno-De-Luca;Daniel H. Geschwind;David B. Goldstein;Stephan J. Sanders;Paul Avillach;David H. Ledbetter;Elise Douard;Anne Pariser;Rodney Samaco;Mustafa Sahin;Armin Raznahan;Audrey Thurm;Meera E. Modi;Guoping Feng,2019-10-01,10.1038/s41591-019-0581-5,31548702,85073086752,2-s2.0-85073086752,9,https://api.elsevier.com/content/abstract/scopus_id/85073086752,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85073086752&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85073086752&origin=inward,NIMH,1477-1487 +,Raznahan,Article,Journal of Craniofacial Surgery,Comparison of Three-Dimensional Surface Imaging Systems Using Landmark Analysis,William A. Gahl;Denise K. Liberton;Rashmi Mishra;Margaret Beach;Irini Manoli;Janice S. Lee;Armin Raznahan,2019-09-01,10.1097/SCS.0000000000005795,31335576,85071514202,2-s2.0-85071514202,1,https://api.elsevier.com/content/abstract/scopus_id/85071514202,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85071514202&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85071514202&origin=inward,NIH,1869-1872 +,Raznahan,Review,Neuropsychopharmacology,Sex differences in the developing brain: insights from multimodal neuroimaging,Theodore D. Satterthwaite;Armin Raznahan;Antonia N. Kaczkurkin,2019-01-01,10.1038/s41386-018-0111-z,29930385,85048782995,2-s2.0-85048782995,22,https://api.elsevier.com/content/abstract/scopus_id/85048782995,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85048782995&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85048782995&origin=inward,NARSAD,71-85 +Y,Reich,Article,Brain : a journal of neurology,Multiple sclerosis lesions in motor tracts from brain to cervical cord: spatial distribution and correlation with disability,Masaaki Hori;Jennifer Lefeuvre;Jean Pelletier;Clarisse Carra-Dalliere;Virginie Callot;Charley Gros;Jason Talbott;Pierre Labauge;Julien Cohen-Adad;Renxin Chu;Tobias Granberg;Xavier Ayrignac;Jérôme De Seze;Rohit Bakshi;Atef Badji;Yasuhiko Tachibana;Maria A. Rocca;Anne Kerbrat;Massimo Filippi;Raphaël Chouteau;Daniel S. Reich;Kouhei Kamiya;Bertrand Audoin;Nicolas Collongues;Adil Maarouf;Elise Bannier;Russell Ouellette;Francesca Galassi;Lydia Chougar;Leszek Stawiarz;Govind Nair;Josefina Maranzano;Jan Hillert;Gilles Edan;Paola Valsasina;Benoit Combès,2020-07-01,10.1093/brain/awaa162,32572488,85088255790,2-s2.0-85088255790,0,https://api.elsevier.com/content/abstract/scopus_id/85088255790,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85088255790&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85088255790&origin=inward,,2089-2105 +,Reich,Article,Molecular Psychiatry,Genome-wide gene-environment analyses of major depressive disorder and reported lifetime traumatic experiences in UK Biobank,Julien Bryois;Yuri Milaneschi;Maciej Trzaskowski;Shing Wan Choi;Gregory E. Crawford;Stefan Herms;Lili Milani;Jakob Grove;Tim B. Bigdeli;Carsten Horn;Nick Craddock;Sara Mostafavi;Marcus Ising;Robert M. Maier;Isaac S. Kohane;Christopher Hübel;Hamdi Mbarek;Sandra Van der Auwera;Mark J. Adams;Jonas Bybjerg-Grauholm;Scott D. Gordon;Francis M. Mondimore;Farnush Farhadi Hassan Kiadeh;Georg Homuth;Ian Jones;Marie Bækvad-Hansen;Tracy M. Air;Eric Jorgenson;David M. Howard;Enda M. Byrne;Stephan Ripke;Esben Agerbo;Rick Jansen;Donald J. MacIntyre;Thalia C. Eley;Eske M. Derks;Niamh Mullins;Jane Hvarregaard Christensen;Abdel Abdellaoui;Per Hoffmann;Fernando S. Goes;Christine Søholm Hansen;Ian B. Hickie;Mark James Adams;Zoltán Kutalik;Erin C. Dunn;Conor V. Dolan;David M. Hougaard;Lynsey S. Hall;Franziska Degenhardt;Christel M. Middeldorp;Wolfgang Maier;Toni Kim Clarke;Yihan Li;Warren W. Kretzschmar;Baptiste Couvy-Duchesne;Michael Gill;Elisabeth B. Binder;Valentina Escott-Price;Wouter J. Peyrot;Naomi R. Wray;Ian J. Deary;Jonathan R.I. Coleman;Grant W. Montgomery;Thomas F. Hansen;Nese Direk;Penelope A. Lind;Katrina A.S. Davis;Na Cai;Evelin Mihailov;Dean F. MacKinnon;Divya Mehta;Jerome C. Foo;James A. Knowles;Lucía Colodro-Conde;Donald M. Lyall;Lisa A. Jones;Manuel Mattheisen;Silviu Alin Bacanu;Henriette N. Buttenschøn;Enrique Castelao;Josef Frank;Hilary K. Finucane;Carol Kan;Aartjan T.F. Beekman;Julia Kraft;Jouke Jan Hottenga;Gail Davies;Patrick McGrath;Héléna A. Gaspar;Kirstin L. Purves;Peter McGuffin;Jonathan Marchini;Till F.M. Andlauer;Andreas J. Forstner;Sarah E. Medland;Karmel W. Choi;Christopher Rayner,2020-07-01,10.1038/s41380-019-0546-6,31969693,85078355026,2-s2.0-85078355026,7,https://api.elsevier.com/content/abstract/scopus_id/85078355026,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85078355026&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85078355026&origin=inward,NIHR,1430-1446 +,Reich,Article,Multiple Sclerosis Journal,Gadolinium should always be used to assess disease activity in MS – Yes,Cristina Granziera;Daniel S. Reich,2020-06-01,10.1177/1352458520911174,32484018,85085876994,2-s2.0-85085876994,1,https://api.elsevier.com/content/abstract/scopus_id/85085876994,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85085876994&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85085876994&origin=inward,NINDS,765-766 +,Reich,Review,Muscle and Nerve,The Use of Telehealth to Enhance Care in ALS and other Neuromuscular Disorders,Zachary Simmons;Andrew Geronimo;Anne Haulman;Amit Chahwala,2020-06-01,10.1002/mus.26838,32297678,85083459301,2-s2.0-85083459301,1,https://api.elsevier.com/content/abstract/scopus_id/85083459301,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85083459301&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85083459301&origin=inward,NIH,682-691 +,Reich,Article,Cell Stem Cell,Problems and Pitfalls of Identifying Remyelination in Multiple Sclerosis,Dwight E. Bergles;Benedetta Bodini;Daniel S. Reich;Catherine Lubetzki;Sarah Foerster;Bjoern Neumann;Luke L. Lairson;Chao Zhao;Robin J.M. Franklin;Bernard Zalc;Ragnhildur Thóra Káradóttir;Bruno Stankoff,2020-05-07,10.1016/j.stem.2020.03.017,32386552,85084118366,2-s2.0-85084118366,1,https://api.elsevier.com/content/abstract/scopus_id/85084118366,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85084118366&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85084118366&origin=inward,AMRF,617-619 +Y,Reich,Article,JAMA Neurology,Paramagnetic Rim Sign in Radiologically Isolated Syndrome,Pascal Sati;Daniel S. Reich;Aditya Bharatha;Jiwon Oh;Melanie Guenette;Suradech Suthiphosuwan;Martina Absinta,2020-05-01,10.1001/jamaneurol.2020.0124,32150224,85081654331,2-s2.0-85081654331,0,https://api.elsevier.com/content/abstract/scopus_id/85081654331,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85081654331&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85081654331&origin=inward,NIH,653-655 +Y,Reich,Article,NMR in Biomedicine,CVSnet: A machine learning approach for automated central vein sign assessment in multiple sclerosis,João Jorge;Francesco La Rosa;Pascal Sati;Renaud Du Pasquier;Daniel S. Reich;Cristina Granziera;Pietro Maggi;Reto Meuli;Tobias Kober;Mário João Fartaria;Jonas Richiardi;Martina Absinta;Meritxell Bach Cuadra,2020-05-01,10.1002/nbm.4283,32125737,85081028361,2-s2.0-85081028361,0,https://api.elsevier.com/content/abstract/scopus_id/85081028361,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85081028361&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85081028361&origin=inward,CNHF, +,Reich,Review,Journal of Neuroimaging,Imaging Mechanisms of Disease Progression in Multiple Sclerosis: Beyond Brain Atrophy,Julien Cohen-Adad;Daniel M. Harrison;Gülin Öz;Russell T. Shinohara;George R.Wayne Moore;Jiwon Oh;Zhengxin Cai;Eric C. Klawiter;Susan A. Gauthier;Daniel Ontaneda;Nancy L. Sicotte;Cornelia Laule;William D. Rooney;Daniel Pelletier;Daniel S. Reich;Sarah A. Morrow;Peter A. Calabresi;Riley Bove;Roland G. Henry;Francesca Bagnato;Seth A. Smith,2020-05-01,10.1111/jon.12700,,85084836258,2-s2.0-85084836258,0,https://api.elsevier.com/content/abstract/scopus_id/85084836258,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85084836258&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85084836258&origin=inward,NINDS,251-266 +,Reich,Article,Pediatric Neurology,Diffusion Tensor Imaging Abnormalities in the Uncinate Fasciculus and Inferior Longitudinal Fasciculus in Phelan-McDermid Syndrome,Latha Soorya;Craig Powell;Craig M. Powell;Alexander Kolevzon;Benoit Scherrer;Ellen Hanson;Julia Bassell;Elizabeth Berry Kravis;Simon K. Warfield;Elizabeth Berry-Kravis;Jonathan A. Bernstein;Joseph D. Buxbaum;Mustafa Sahin;Siddharth Srivastava;Simon Warfield;Jennifer M. Phillips;Rajna Filip-Dhima;Stormi P. White;Kush Kapur;Kira Dies;Audrey Thurm;Paige Siper;Anna K. Prohl,2020-05-01,10.1016/j.pediatrneurol.2020.01.006,32107139,85080031211,2-s2.0-85080031211,0,https://api.elsevier.com/content/abstract/scopus_id/85080031211,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85080031211&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85080031211&origin=inward,NICHD,24-31 +Y,Reich,Article,Multiple Sclerosis Journal,The “central vein sign” in patients with diagnostic “red flags” for multiple sclerosis: A prospective multicenter 3T study,Pascal Sati;Daniel S. Reich;Massimo Filippi;Renaud Du Pasquier;Pietro Maggi;Bernard Dachy;Luca Massacesi;Caroline Pot;Reto Meuli;Marie Théaudin;Martina Absinta;Gaetano Perrotta,2020-04-01,10.1177/1352458519876031,31536435,85073936532,2-s2.0-85073936532,7,https://api.elsevier.com/content/abstract/scopus_id/85073936532,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85073936532&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85073936532&origin=inward,CNHF,421-432 +,Reich,Article,Human Brain Mapping,Integrating machining learning and multimodal neuroimaging to detect schizophrenia at the level of the individual,Su Lui;Gary Donohoe;Aiden Corvin;Cristina Scarpazza;Andrea Mechelli;David O. Mothersill;Jonathan Young;Sandra Vieira;Celso Arango;Du Lei;Qiyong Gong;Ed Bullmore;Philip McGuire;Xiaoqi Huang;Therese van Amelsvoort;Machteld Marcelis;Walter H.L. Pinaya,2020-04-01,10.1002/hbm.24863,31737978,85075436723,2-s2.0-85075436723,2,https://api.elsevier.com/content/abstract/scopus_id/85075436723,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85075436723&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85075436723&origin=inward,WT,1119-1135 +,Reich,Article,Journal of Neuro-Oncology,A genome-wide association study on medulloblastoma,Michael Grotzer;Jerzy Nowak;Roberta McKean-Cowdin;Carl Wibom;Jessica Barrington-Trimis;Martin Röösli;Michaela Prochazka;Joachim Schüz;Maral Adel Fahmideh;Maria Feychting;Ashley S. Margol;Beatrice Melin;Ching C. Lau;Lisa Mirabello;Rebekah J. Kennedy;Christoffer Johansen;Danuta Januszkiewicz-Lewandowska;W. James Gauderman;Susan Searles Nielsen;Anna M. Dahlin;Long T. Hung;Birgitta Lannering;Lisbeth S. Schmidt;Shahab Asgharzadeh;Michael E. Scheurer;Marta Fichna;David M. Hougaard;Jonas Bybjerg-Grauholm;Tone Eggen;Janis Yee;Ulrika Andersson;Lars Klæboe;Ulf Hjalmars;Tore Tynes;Astrid Sehested;Isabelle Deltour;Kristina Kjaerheim;Claudia Kuehni,2020-04-01,10.1007/s11060-020-03424-9,32056145,85079528189,2-s2.0-85079528189,0,https://api.elsevier.com/content/abstract/scopus_id/85079528189,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85079528189&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85079528189&origin=inward,VR,309-315 +,Reich,Article,Proceedings of the National Academy of Sciences of the United States of America,Imaging local genetic influences on cortical folding,Amanda Rodrigue;Theodore D. Satterthwaite;Godfrey Pearlson;David C. Glahn;Russell T. Shinohara;Aaron F. Alexander-Bloch;Peter T. Fox;Simon N. Vandekar;Laura Almasyr;Joanne E. Curran;Danielle S. Bassett;John Blangero;Gil D. Hoftman;Jakob Seidlitz;Zhixin Lu;Siyuan Liu;Armin Raznahan;Samuel R. Matthias;Josephine Mollon;Raquel E. Gur;Harald H.H. Görring;Emma Knowles,2020-03-31,10.1073/pnas.1912064117,32170019,85082749827,2-s2.0-85082749827,0,https://api.elsevier.com/content/abstract/scopus_id/85082749827,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85082749827&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85082749827&origin=inward,NIH,7430-7436 +,Reich,Article,Immunity,Targeted Complement Inhibition at Synapses Prevents Microglial Synaptic Engulfment and Synapse Loss in Demyelinating Disease,Seung Kwon Ha;Jonathan Jung;Rejani B. Kunjamma;Sebastian Werneburg;Daniel S. Reich;Guangping Gao;Leif A. Havton;Natalia P. Biscola;Nicholas J. Luciano;Brian Popko;Cory M. Willis;Stephen J. Crocker;Dorothy P. Schafer,2020-01-14,10.1016/j.immuni.2019.12.004,31883839,85077636150,2-s2.0-85077636150,6,https://api.elsevier.com/content/abstract/scopus_id/85077636150,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85077636150&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85077636150&origin=inward,NINDS,167-182.e7 +,Reich,Article,Proceedings of the National Academy of Sciences of the United States of America,Development of structure–function coupling in human brain networks during youth,Theodore D. Satterthwaite;Zaixu Cui;Richard F. Betzel;Russell T. Shinohara;Bart Larsen;Matthew Cieslak;Ruben C. Gur;Aaron F. Alexander-Bloch;Desmond J. Oathes;Rastko Ciric;Danielle S. Bassett;Tyler M. Moore;David R. Roalf;Philip A. Cook;Armin Raznahan;Cedric H. Xia;Graham L. Baum;Raquel E. Gur;Kosha Ruparel,2020-01-07,10.1073/pnas.1912034117,31874926,85077497083,2-s2.0-85077497083,3,https://api.elsevier.com/content/abstract/scopus_id/85077497083,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85077497083&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85077497083&origin=inward,Penn,771-778 +Y,Reich,Article,Statistical Methods in Medical Research,Experimental design and sample size considerations in longitudinal magnetic resonance imaging-based biomarker detection for multiple sclerosis,Daniel S. Reich;Matthew K. Schindler;Blake E. Dewey;Ani Eloyan;Russell T. Shinohara;Menghan Hu,2020-01-01,10.1177/0962280220904392,32070238,85081693515,2-s2.0-85081693515,0,https://api.elsevier.com/content/abstract/scopus_id/85081693515,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85081693515&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85081693515&origin=inward,, +,Reich,Article,Multiple Sclerosis Journal,Five-year longitudinal changes in quantitative spinal cord MRI in multiple sclerosis,Peter A. Calabresi;Peter van Zijl;Min Chen;Marie Diener-West;Daniel S. Reich;Jiwon Oh;Estelle Seyman;Blake Dewey;Jerry Prince;Suradech Suthiphosuwan;Kateryna Cybulsky,2020-01-01,10.1177/1352458520923970,,85085701874,2-s2.0-85085701874,0,https://api.elsevier.com/content/abstract/scopus_id/85085701874,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85085701874&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85085701874&origin=inward,MSSOC, +,Reich,Article,NeuroImage,Sex-biased trajectories of amygdalo-hippocampal morphology change over human development,Jakob Seidlitz;Jonathan D. Blumenthal;Jason P. Lerch;Armin Raznahan;M. Mallar Chakravarty;Liv S. Clasen;Paul K. Reardon;Catherine Mankiw;Ari M. Fish;Francois Lalonde;Cassidy L. McDermott;Ajay Nadig;Russell T. Shinohara,2020-01-01,10.1016/j.neuroimage.2019.116122,31470127,85074153626,2-s2.0-85074153626,6,https://api.elsevier.com/content/abstract/scopus_id/85074153626,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85074153626&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85074153626&origin=inward,NIH, +,Reich,Article,Annals of Neurology,Fatal encephalopathy with wild-type JC virus and ruxolitinib therapy,Daniel S. Reich;Marta Quezado;Jamie Solis;Erin Beck;Govind Nair;Phuong Vu;Kory Johnson;Maria Chiara Monaco;Christopher Julius Trindade;Stephen M. Hewitt;Marta Garcia Montojo;Richard Childs;Lauren Bowen Reoma;Omar I. Khan;Avindra Nath,2019-12-01,10.1002/ana.25608,31600832,85074280688,2-s2.0-85074280688,4,https://api.elsevier.com/content/abstract/scopus_id/85074280688,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85074280688&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85074280688&origin=inward,NIH,878-884 +,Reich,Article,Translational Psychiatry,Effects of familial risk and stimulant drug use on the anticipation of monetary reward: an fMRI study,Edward T. Bullmore;Karen D. Ersche;Alanna L. Just;Trevor W. Robbins;Dana G. Smith;Chun Meng,2019-12-01,10.1038/s41398-019-0399-4,30718492,85061026181,2-s2.0-85061026181,4,https://api.elsevier.com/content/abstract/scopus_id/85061026181,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85061026181&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85061026181&origin=inward,WT, +Y,Reich,Review,Brain,Assessment of lesions on magnetic resonance imaging in multiple sclerosis: practical guidelines,Achim Gass;Massimo Filippi;Daniel S. Reich;Catherine Lubetzki;Anthony Traboulsee;Maria A. Rocca;Mike P. Wattjes;Paolo Preziosa;Nicola De Stefano;Jeroen J.G. Geurts;Brenda L. Banwell;Ahmed T. Toosy;Olga Ciccarelli;Friedemann Paul;Frederik Barkhof;Brian G. Weinshenker;Tarek A. Yousry,2019-07-01,10.1093/brain/awz144,31209474,85068522090,2-s2.0-85068522090,20,https://api.elsevier.com/content/abstract/scopus_id/85068522090,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85068522090&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85068522090&origin=inward,FISM,1858-1875 +,Reich,Article,Nature Neuroscience,Genome-wide association study implicates CHRNA2 in cannabis use disorder,Esben Agerbo;Merete Nordentoft;Veera Manikandan Rajagopal;Ole Mors;Anders D. Børglum;Ditte Demontis;Allan Timmermann;Thorarinn Tyrfingsson;Jane Hvarregaard Christensen;Thomas D. Als;Mark J. Daly;Mette Nyegaard;Valgerdur Runarsdottir;Jakob Grove;Kalle Leppälä;Gunnar W. Reginsson;Eli A. Stahl;Carsten Hjorthøj;Per Qvist;Laura M. Huckins;Kari Stefansson;Hreinn Stefansson;Preben Bo Mortensen;Daniel F. Gudbjartsson;David M. Hougaard;Jonas Bybjerg-Grauholm;Jonatan Pallesen;Thomas Werge;Thorgeir E. Thorgeirsson;Marie Bækvad-Hansen,2019-07-01,10.1038/s41593-019-0416-1,31209380,85067847434,2-s2.0-85067847434,11,https://api.elsevier.com/content/abstract/scopus_id/85067847434,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85067847434&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85067847434&origin=inward,NHGRI,1066-1074 +,Reich,Article,Autism,Neural self-representation in autistic women and association with ‘compensatory camouflaging’,Bonnie Auyeung;Anthony J. Bailey;Greg Pasco;Patrick F. Bolton;Simon Baron-Cohen;Eileen M. Daly;Diane Mullins;Meng Chuan Lai;Peter Jezzard;Sarah Carrington;Bhismadev Chakrabarti;Francesca Happé;Rose Stewart;Patrick Johnston;John Suckling;Declan G.M. Murphy;Susan A. Sadek;Christine Ecker;Clodagh M. Murphy;Sally J. Wheelwright;Steven C. Williams;Michael C. Craig;Amber N.V. Ruigrok;Debbie Spain;Edward T. Bullmore;Anya Madden;Michael V. Lombardo;Sean C.L. Deoni;Peter Szatmari;Julian Henty;Marco Catani;Derek K. Jones,2019-07-01,10.1177/1362361318807159,30354191,85059531695,2-s2.0-85059531695,16,https://api.elsevier.com/content/abstract/scopus_id/85059531695,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85059531695&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85059531695&origin=inward,OBI,1210-1223 +,Reich,Article,Nature Neuroscience,Compulsivity and impulsivity traits linked to attenuated developmental frontostriatal myelination trajectories,Peter B. Jones;Edward T. Bullmore;Peter Fonagy;Ulman Lindenberger;Raymond J. Dolan;Michael Moutoussis;Ian M. Goodyer;Gabriel Ziegler;Tobias U. Hauser,2019-06-01,10.1038/s41593-019-0394-3,31086316,85065786093,2-s2.0-85065786093,11,https://api.elsevier.com/content/abstract/scopus_id/85065786093,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85065786093&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85065786093&origin=inward,WT,992-999 +,Reich,Article,Journal of Affective Disorders,Post-traumatic stress following military deployment: Genetic associations and cross-disorder genetic correlations,Ole A. Andreassen;Murray B. Stein;David M. Hougaard;Jonas Bybjerg-Grauholm;Adam X. Maihofer;Thomas Werge;Wesley K. Thompson;Caroline M. Nievergelt;Robert J. Ursano;Yunpeng Wang;Søren B. Andersen;Marie Bækvad-Hansen;Karen Inge Karstoft,2019-06-01,10.1016/j.jad.2019.04.070,30999091,85064147578,2-s2.0-85064147578,0,https://api.elsevier.com/content/abstract/scopus_id/85064147578,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85064147578&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85064147578&origin=inward,NIH,350-357 +Y,Reich,Article,Statistics in Biosciences,A Spatio-Temporal Model for Longitudinal Image-on-Image Regression,Arnab Hazra;Brian J. Reich;Daniel S. Reich;Ana Maria Staicu;Russell T. Shinohara,2019-04-15,10.1007/s12561-017-9206-z,,85031898757,2-s2.0-85031898757,0,https://api.elsevier.com/content/abstract/scopus_id/85031898757,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85031898757&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85031898757&origin=inward,NIH,22-46 +,Reich,Review,Neurology,Imaging outcome measures of neuroprotection and repair in MS: A consensus statement from NAIMS,Youngjin Yoo;Leorah Freeman;Flavia Nelson;Russell T. Shinohara;Anthony Traboulsee;Jiwon Oh;Rohit Bakshi;Eric C. Klawiter;Alexander Rauscher;Ciprian Crainiceanu;Shannon Kolind;Daniel Ontaneda;Nancy L. Sicotte;Susan Gauthier;Daniel Pelletier;Daniel S. Reich;Mathilde Inglese;Daniel Schwartz;Peter A. Calabresi;Tarek Yousry;Christina Azevedo;Pascal Sati;Sridar Narayanan;Ravi S. Menon;Ian Tagge;Yunyan Zhang;Roland Henry;David K.B. Li;Govind Nair;Douglas L. Arnold;Caterina Mainero;Yi Wang;Blake Dewey;Martina Absinta;William Rooney,2019-03-12,10.1212/WNL.0000000000007099,30787160,85062886285,2-s2.0-85062886285,9,https://api.elsevier.com/content/abstract/scopus_id/85062886285,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85062886285&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85062886285&origin=inward,CIHR,519-533 +,Reich,Article,Nature Genetics,Identification of common genetic risk variants for autism spectrum disorder,Srdjan Djurovic;Julien Bryois;Maciej Trzaskowski;Xinyi Xu;Gregory E. Crawford;Karin Dellenvall;Kathryn Roeder;Jakob Grove;Evald Saemundsen;Tim B. Bigdeli;Nick Craddock;Elise B. Robinson;Mads V. Hollegaard;Jesper Buchhave Poulsen;Mark J. Adams;Jonas Bybjerg-Grauholm;Carsten Bøcker Pedersen;Bernie Devlin;Farnush Farhadi Hassan Kiadeh;Marie Bækvad-Hansen;Tracy M. Air;Enda M. Byrne;Stephan Ripke;Esben Agerbo;Christina M. Hultman;Jennifer Reichert;Julian Maller;Christine S. Hansen;Thalia C. Eley;Eske M. Derks;Jacqueline I. Goldstein;Raymond K. Walters;Abdel Abdellaoui;Swapnil Awashti;Joseph D. Buxbaum;Abraham Reichenberg;Joanna Martin;Hailiang Huang;Mads Engel Hauberg;Duncan S. Palmer;Beate St Pourcain;Erin C. Dunn;Conor V. Dolan;Francesco Bettella;Franziska Degenhardt;Claire Churchhouse;Terje Nærland;Lambertus Klei;Ole A. Andreassen;Marianne Giørtz Pedersen;Toni Kim Clarke;Sven Sandin;Baptiste Couvy-Duchesne;Rich Belliveau;Daniel P. Howrigan;Elisabeth B. Binder;Douglas H.R. Blackwood;Valentina Escott-Price;Kimberly Chambert;Hyejung Won;Naomi R. Wray;Ian J. Deary;Jonathan R.I. Coleman;Silvia De Rubeis;Timothy dPoterba;Christine R. Stevens;Richard Anney;Nese Direk;George Davey Smith;F. Kyle Satterstrom;Na Cai;Lucía Colodro-Conde;Panos Roussos;Stacy Steinberg;Ditte Demontis;Manuel Mattheisen;Patrick F. Sullivan;Karola Rehnström;Silviu Alin Bacanu;Henriette N. Buttenschøn;Enrique Castelao;G. Bragi Walters;Thomas D. Als;Alicia R. Martin;Hilary K. Finucane;Mette Nyegaard;Aarno Palotie;Aartjan T.F. Beekman;Per Qvist;Hreinn Stefansson;Gail Davies;Ashley L. Dumont;Felecia Cerrato;Jane H. Christensen;Sigrun Hope;Jonatan Pallesen;Jennifer L. Moran;Till F.M. Andlauer;Andreas J. Forstner;Patrick Turley,2019-03-01,10.1038/s41588-019-0344-8,30804558,85062110842,2-s2.0-85062110842,170,https://api.elsevier.com/content/abstract/scopus_id/85062110842,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85062110842&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85062110842&origin=inward,,431-444 +,Reich,Review,The Lancet Neurology,Spinal cord involvement in multiple sclerosis and neuromyelitis optica spectrum disorders,Claudia Gandini Wheeler-Kingshott;Jerome De Sèze;Giancarlo Comi;Myla Goldman;Ruth Ann Marrie;David Miller;Michael Levy;Izlem Izbudak;Per Soelberg Sorensen;Jeffrey A. Cohen;Burkhard Becher;Olga Ciccarelli;Brenda Banwell;Sandra Vukusic;Brian G. Weinshenker;Kazuo Fujihara;Carsten Lukas;Fred Lublin;Bruce Trapp;Peter Calabresi;Bruce Bebo;Stephen Reingold;Olaf Stuve;Anthony Traboulsee;Jorge Correale;Eoin Flanagan;Mark Freedman;Anke Henning;Hans Peter Hartung;Claudia Lucchinetti;Stephen C. Reingold;Friedemann Paul;Junqian Xu;Alexander Brandt;Maria Trojano;Alex Rovira;Cornelia Laule;Bernard Uitdehaag;Maria Sormani;Sebastien Ourselin;Daniel Pelletier;Benjamin Greenberg;Maria Assunta Rocca;Jean Philippe Ranjeva;François Bethoux;Claudia Chien;Hans Lassmann;Jeffrey Cohen;Nicola De Stefano;Mar Tintoré;Franz Fazekas;Daniel Reich;Xavier Montalban;Brian Weinshenker;Alan Thompson;Steven Galetta;Emmanuelle Waubant;Jeremy Chatway;Maria Pia Amato;Regina Schlaerger;Ludwig Kappos;Bernhard Hemmer;Frederik Barkhof;Aaron Miller;Tanuja Chitnis;Wallace Brownlee;Ellen Mowry,2019-02-01,10.1016/S1474-4422(18)30460-5,30663608,85060049167,2-s2.0-85060049167,23,https://api.elsevier.com/content/abstract/scopus_id/85060049167,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85060049167&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85060049167&origin=inward,NIHR,185-197 +,Reich,Article,Neurobiology of Aging,Strong and specific associations between cardiovascular risk factors and white matter micro- and macrostructure in healthy aging,David Troy;Gillian Amery;Liana Amunts;Lauren Bates;Diane Rowland;Rafael Henriques;John Sargeant;Hayley Fisher;Carol Brayne;Aldabra Stoddart;Fiona E. Matthews;Anne Barcroft;Kamen Tsvetanov;Edward T. Bullmore;Abdur Mustafa;Patricia Johnston;Laura Villis;Jaya Hillman;Maggie Squire;Darren Price;Anna McCarrey;Tim Dalgleish;William D. Marslen-Wilson;Kim Norman;Delia Fuhrmann;Marta Correia;Simon Davis;Karen Campbell;David Samu;Geoff Hale;Meredith A. Shafto;Jonathan Dowrick;Melissa Fair;Janna van Belle;David Nesbitt;Nitin Williams;Jessica Penrose;Amanda Castle;Dan Barnes;Alison McMinn;Frances Johnson;Adarsh Grewal;Rogier Kievit;Fiona Roby;Tibor Auer;Andrew Hilton;Emma Green;Jodie Allen;Cheryl Stone;James B. Rowe;Rogier A. Kievit;Joanne Mitchell;Sofia Gerbase;Stanimira Georgieva;Teresa Cheung;Beth Parkin;Rhodri Cusack;Tina Emery;Linda Geerligs;Cheryl Dias;Marie Dixon;Andrew Gadie;Thea Kavanagh-Williamson;Tracy Thompson;Meredith Shafto;Magdalena Kwasniewska;Lu Gao;Jason R. Taylor;John Duncan;Richard N. Henson;Lorraine K. Tyler;Anna Goulding;Claire Hanley;Andrew C. Calder;Beth Stevens;Matthias Treder;Ozlem Yazlik;Sharon Erzinlioglu,2019-02-01,10.1016/j.neurobiolaging.2018.10.005,30415127,85056188453,2-s2.0-85056188453,6,https://api.elsevier.com/content/abstract/scopus_id/85056188453,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85056188453&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85056188453&origin=inward,BBSRC,46-55 +,Reich,Article,Frontiers in Neurology,In-vivoMRI reveals changes to intracerebral vasculature caliber in HIV infection,Paba M. De Alwis;Chuen Yen Lau;Daniel S. Reich;Joseph Snow;Sally Steinbach;Caryn Morse;Edmund Tramont;Govind Nair;Bryan R. Smith;Tianxia Wu;Stanley I. Rapoport;Cristah Artrip;Avindra Nath,2019-01-01,10.3389/fneur.2019.00687,,85069149573,2-s2.0-85069149573,0,https://api.elsevier.com/content/abstract/scopus_id/85069149573,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85069149573&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85069149573&origin=inward,OAR, +,Reich,Article,American Journal of Psychiatry,Brain imaging of the cortex in ADHD: A coordinated analysis of large-scale clinical and population-based samples,Gregor Kohls;Alysa E. Doyle;Anders M. Dale;Alasdair Vance;Joseph Biederman;Joao P. Guimaraes;Bernd Kardatzki;Alexandr Baranov;Rosa Nicolau;Ivanei E. Bramati;David Coghill;Dmitry Kapilushniy;Neil A. Harrison;Eileen Oberwelland Weiss;Lizanne J.S. Schweren;Yannis Paloyelis;Thomas Frodl;Susanne Walitza;Tiffany M. Chaim-Avancini;Mariam Zentis;Anastasia Solovieva;Georg G. Von Polier;Annette Conzelmann;Martine Hoogman;Marie F. Høvik;Fernanda Tovar-Moll;Anouk Schrantee;Mara Cercignani;Tinatin Gogberashvili;Kaylita C. Chantiluke;Terry L. Jernigan;Hazel McCarthy;Leanne Tamm;Neda Jahanshad;Leyla Namazova-Baranova;Sarah Hohmann;Clare Kelly;Gustavo Sudre;Lena Schwarz;Dirk J. Heslenfeld;Mitul A. Mehta;Katya Rubia;Yolanda Vives-Gilabert;Tim J. Silk;Paulo Mattos;Geraldo F. Busatto;Maarten Mennes;Hanan El Marroun;Thomas Wolfers;Matt C. Gabel;Philip Asherson;Jochen Seitz;Eric A. Earl;Yuliya N. Yoncheva;Norbert Skokauskas;Kerstin Konrad;Elena Shumskaya;Mark A. Bellgrove;Ana I. Cubillo;Georgii Karkashadze;Ramona Baur-Streubel;Anna Calvo;Andreas J. Fallgatter;Sabin Khadka;Andreas Reif;Pedro G.P. Rosa;Jan Haavik;Klaus Peter Lesch;Sara Lera-Miguel;Ruth L. O'Gorman Tuura;Anastasia Christakou;Jeffery N. Epstein;Thomas Ethofer;Marcel P. Zwiers;Catharina A. Hartman;Patrick De Zeeuw Oranje;Marcus V. Zanetti;Tonya White;Stephanie E. Novotny;Kathrin C. Zierhut;Paul Pauli;Daniel Brandeis;Sarah Baumeister;Ryan Muetzel;Anatoly Anikin;Juan Carlos Soliva Vila;Sara Ambrosino;Tobias Banaschewski;Liesbeth Reneman;Georg C. Ziegler;Charles B. Malpas;Francisco X. Castellanos;Mario R. Louza;Jonna Kuntsi;Kerstin J. Plessen;Theo G.M. van Erp;Silvia Brem;Bob Oranje;Luisa Lazaro;Astri J. Lundervold,2019-01-01,10.1176/appi.ajp.2019.18091033,31014101,85069237582,2-s2.0-85069237582,24,https://api.elsevier.com/content/abstract/scopus_id/85069237582,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85069237582&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85069237582&origin=inward,,531-542 +,Reich,Erratum,Nature Genetics,"Publisher Correction: Common schizophrenia alleles are enriched in mutation-intolerant genes and in regions under strong background selection (Nature Genetics, (2018), 50, 3, (381-389), 10.1038/s41588-018-0059-2)",Srdjan Djurovic;Steven A. McCarroll;Ole Mors;Reiner Heun;Christine Herold;Paul Hollingworth;Leon Hubbard;James H. MacCabe;Jakob Grove;Markus Nothen;Carlos Cruchaga;Amy Lynham;Kiran Mantripragada;Jonas Bybjerg-Grauholm;Carsten Bøcker Pedersen;Milica Pejovic-Milovancevic;Dmitriy Drichel;Marie Bækvad-Hansen;Teimuraz Silagadze;Pamela Sklar;Enda M. Byrne;Stephan Ripke;Esben Agerbo;Armando Caballero;Thalia C. Eley;Peter Holmans;Michael O’Donovan;Noa Carrera;Janet Johnston;Gerome Breen;Christine Søholm Hansen;John Powell;Laura M. Huckins;David M. Hougaard;Nicholas G. Martin;Peter Passmore;John C. Morris;Sophie E. Legge;Ole A. Andreassen;Marianne Giørtz Pedersen;Wolfgang Maier;Robert Plomin;Jaspreet Pahwa;André Lacour;Amy Gerrish;Valentina Escott-Price;Douglas M. Ruderfer;Daniel H. Geschwind;Bernadette McGuinness;Hyejung Won;Naomi R. Wray;Charlene Thomas;Udo Dannlowski;Engilbert Sigurdsson;Michelle Lupton;Stephen Todd;Marian L. Hamshere;Sarah Tosato;Simon Lovestone;Naser Durmishi;Preben Bo Mortensen;Thomas Werge;Alison Goate;Vera Golimbet;Denise Harold;Caroline Hayward;Andrew M. McIntosh;Merete Nordentoft;Jade Chapman;Nicola Denning;Darren Cameron;Stacy Steinberg;Anders D. Børglum;Bernhard T. Baune;Tim Becker;Manuel Mattheisen;Petroula Proitsi;Sarah Taylor;Thomas D. Als;Kevin Mayo;David Craig;Richard Abraham;Elliott Rees;Enrique Santiago;Eli A. Stahl;Jun Han;Sophie Bishop;Espen Molden;Rebecca Sims;Alfredo Ramirez;Andrew J. Pocklington;Kari Stefansson;Hreinn Stefansson;David J. Porteous;Frank Jessen;Britta Schurmann;Petra Nowotny;Antonio F. Pardiñas,2019-01-01,10.1038/s41588-019-0450-7,31160808,85066976804,2-s2.0-85066976804,2,https://api.elsevier.com/content/abstract/scopus_id/85066976804,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85066976804&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85066976804&origin=inward,, +,Reich,Article,Brain,CSF1R inhibitor JNJ-40346527 attenuates microglial proliferation and neurodegeneration in P301S mice,Naghmeh Nikkheslat;Marta Vicente-Rodriguez;Amrit Mudher;Gayle Wittenberg;Alejo Nevado;Anna McLaughlin;Niels Plath;Caroline O'Hagan;Zuzanna Zajkowska;Karen Randall;Francois Gastambide;Edward T. Bullmore;H. W.G.M. Boddeke;Linda J. Pointon;Federico Turkheimer;Wayne C. Drevets;Marta M. Correia;V. Hugh Perry;Juliane Obst;Jeffrey S. Nye;Anna L. Crofts;Karen Husted Adams;Phil Murphy;Nicole Mariani;Karolien Grauwen;Angharad R. Morgan;Nigel Austin;Christine A. Parker;Elena Ribe;Jai Patel;Murray Sutherland;Ciara O'Donnell;Carmine M. Pariante;Catherine Deith;Caitlin Hastings;Renzo Mancuso;Annamaria Cattaneo;Valeria Mondelli;Jan Egebjerg;Eva Daniela Ruiz;Maria Nettis;Hartmuth Kolb;Diana Cash;Ross Jeggo;John Isaac;Peter St George Hyslop;Guy B. Williams;Junaid Bhatti;Mary Ellen Lynall;Peter De Boer;Paul Scouller;Alison McColl;B. Paul Morgan;Shahid Khan;Nisha Singh;Madeleine Cleal;John McClean;Elena Pipi;Claire A. Leckey;Samuel Touchard;Laura Winchester;Andrew McPherson;John Kemp;Christina Maurice;Clara Theunis;Petra Vertes;Simon Lovestone;Samuel J. Chamberlain;Declan Jones;Lorinda Turner;Declan N.C. Jones;Tobias C. Wood;Jonathan Cavanagh;Anindya Bhattacharya;Clare Knight;Gemma Fryatt;Manfred G. Kitzbichler;Jill C. Richardson;Courtney Worrell;Diego Gómez-Nicola;Caleb Webber;Hannah Sheridan;Jill Richardson;Andrew C. Foster;Heidi Byrom;Camilla Simmons;Victoria Van Loo;Hans Eriksson;Nick Carruthers;Gareth J. Barker;Scott Farmer;Jimena Monzón-Sandoval;Amber Dickinson;Barry Widmer;Antony Gee;Tom Jacobs,2019-01-01,10.1093/brain/awz241,31504240,85072716789,2-s2.0-85072716789,7,https://api.elsevier.com/content/abstract/scopus_id/85072716789,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85072716789&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85072716789&origin=inward,OxBRC,3243-3264 +,Schmidt,Article,Archives of Women's Mental Health,"Transdermal estradiol for postpartum depression: results from a pilot randomized, double-blind, placebo-controlled study",Pedro E. Martinez;Lynnette K. Nieman;Linda A. Schenkel;David R. Rubinow;Howard J. Li;Peter J. Schmidt;Xiaobai Li,2020-06-01,10.1007/s00737-019-00991-3,31372757,85070104836,2-s2.0-85070104836,0,https://api.elsevier.com/content/abstract/scopus_id/85070104836,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85070104836&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85070104836&origin=inward,NIH,401-412 +,Schmidt,Article,"American Journal of Medical Genetics, Part C: Seminars in Medical Genetics",Sex chromosome aneuploidy alters the relationship between neuroanatomy and cognition,Jonathan D. Blumenthal;Siyuan Liu;Kathleen Wilson;Armin Raznahan;Liv S. Clasen;Ethan Whitman;François M. Lalonde;Allysa Warling,2020-06-01,10.1002/ajmg.c.31795,32515138,85086159262,2-s2.0-85086159262,0,https://api.elsevier.com/content/abstract/scopus_id/85086159262,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85086159262&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85086159262&origin=inward,NIH,493-505 +,Schmidt,Review,Neuropsychopharmacology,Sex differences and the neurobiology of affective disorders,Peter J. Schmidt;David R. Rubinow,2019-01-01,10.1038/s41386-018-0148-z,30061743,85052597674,2-s2.0-85052597674,26,https://api.elsevier.com/content/abstract/scopus_id/85052597674,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85052597674&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85052597674&origin=inward,NIH,111-128 +,Schmidt,Editorial,Muscle and Nerve,Telemedicine to innovate amyotrophic lateral sclerosis multidisciplinary care: The time has come,Zachary Simmons;Sabrina Paganoni,2019-01-01,10.1002/mus.26311,30066337,85058785442,2-s2.0-85058785442,6,https://api.elsevier.com/content/abstract/scopus_id/85058785442,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85058785442&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85058785442&origin=inward,,3-5 +,Shaw,Article,Scientific Reports,Using virtual reality to define the mechanisms linking symptoms with cognitive deficits in attention deficit hyperactivity disorder,Philip Shaw;Barrington Quarrie;Susan Persky;Wendy Sharp;William D. Kistler;Aman Mangalmurti,2020-12-01,10.1038/s41598-019-56936-4,31953449,85078063783,2-s2.0-85078063783,0,https://api.elsevier.com/content/abstract/scopus_id/85078063783,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85078063783&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85078063783&origin=inward,NHGRI, +,Shaw,Review,Human Brain Mapping,Consortium neuroscience of attention deficit/hyperactivity disorder and autism spectrum disorder: The ENIGMA adventure,Pieter J. Hoekstra;Oscar Vilarroya;Sarah Durston;Jane McGrath;Sara Calderoni;Ilan Dinstein;Joseph A. King;Beatriz Luna;David Coghill;Stefan Ehrlich;Clodagh Murphy;Filippo Muratori;Christine Deruelle;Thomas Frodl;Eugenio H. Grevet;Christine Ecker;Susanne Walitza;Guillaume Auzias;Louise Gallagher;Annette Conzelmann;Clyde Francks;Martine Hoogman;Celso Arango;Joel T. Nigg;J. Antoni Ramos-Quiroga;Rosa Calvo;Leanne Tamm;Neda Jahanshad;Yanli Zhang-James;Merel C. Postema;Katya Rubia;Jason P. Lerch;Barbara Franke;Tomas Paus;Tim J. Silk;Paulo Mattos;Jacqueline Fitzgerald;Geraldo F. Busatto;Paul M. Thompson;Marlene Behrmann;Kerstin Konrad;Marieke Klein;Mark A. Bellgrove;Georgii Karkashadze;Alessandra Retico;Stephen V. Faraone;Andreas Reif;Pedro G.P. Rosa;Ting Li;Jan Haavik;Jan K. Buitelaar;Klaus Peter Lesch;Ruth L. O'Gorman Tuura;Jaap Oosterlaan;Odile A. van den Heuvel;Jeffery N. Epstein;Mara Parellada;Eileen Oberwelland-Weiss;Yash Patel;Paul Pauli;Daniel Brandeis;Eileen Daly;Philip Shaw;Premika Boedhoe;Joost Janssen;Daan van Rooij;Claiton H.D. Bau;Damien A. Fair;Tobias Banaschewski;Liesbeth Reneman;Francisco X. Castellanos;Mario R. Louza;Christine M. Freitag;Jonna Kuntsi;Kerstin J. Plessen;Iva Ilioska;Silvia Brem;Evdokia Anagnostou;Luisa Lazaro;Kirsten O'Hearn,2020-01-01,10.1002/hbm.25029,32420680,85084801312,2-s2.0-85084801312,0,https://api.elsevier.com/content/abstract/scopus_id/85084801312,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85084801312&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85084801312&origin=inward,, +,Shaw,Article,Psychological Medicine,Mapping the neuroanatomic substrates of cognition in familial attention deficit hyperactivity disorder,Philip Shaw;Gustavo Sudre;Steven Kasparek;Saadia Choudhury;Wendy Sharp;Rachel Muster,2019-03-01,10.1017/S0033291718001241,29792238,85047352313,2-s2.0-85047352313,1,https://api.elsevier.com/content/abstract/scopus_id/85047352313,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85047352313&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85047352313&origin=inward,,590-597 +,Shen,Article,Osteoarthritis and Cartilage,RNA-seq analysis of chondrocyte transcriptome reveals genetic heterogeneity in LG/J and SM/J murine strains,J. M. Cheverud;J. Shen;L. Cai;X. Duan;M. F. Rai;R. J. O'Keefe;E. J. Schmidt;E. D. Tycksen,2020-04-01,10.1016/j.joca.2020.01.001,31945456,85078929390,2-s2.0-85078929390,0,https://api.elsevier.com/content/abstract/scopus_id/85078929390,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85078929390&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85078929390&origin=inward,NIAMS,516-527 +,Shen,Note,Molecular Psychiatry,Greater cortical thickness in individuals with ASD,Dorothea L. Floris;Lindsay R. Chura;Simon Baron-Cohen;Raihaan Patel;Rhoshel Lenroot;Meng Chuan Lai;M. Mallar Chakravarty;Rosemary J. Holt;Elizabeth Smith;Stephanie Tullo;Saashi A. Bedford;Declan G.M. Murphy;John Suckling;Christine Ecker;Margot J. Taylor;Michael D. Spencer;Michael C. Craig;Amber N.V. Ruigrok;Jason P. Lerch;Edward T. Bullmore;Armin Raznahan;Michael V. Lombardo;Jurgen Germann;Gabriel A. Devenyi;Evdokia Anagnostou;Audrey Thurm;Min Tae M. Park,2020-03-01,10.1038/s41380-020-0691-y,32103162,85080043547,2-s2.0-85080043547,0,https://api.elsevier.com/content/abstract/scopus_id/85080043547,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85080043547&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85080043547&origin=inward,,507-508 +,Shen,Article,JCI Insight,Dnmt3b ablation impairs fracture repair through upregulation of Notch pathway,Cuicui Wang;Peijian Tong;Taotao Xu;Regis O’Keefe;Jianjun Guan;Yousef Abu-Amer;Hongting Jin;Jie Shen;Jun Ying,2020-02-13,10.1172/jci.insight.131816,32051335,85081672419,2-s2.0-85081672419,0,https://api.elsevier.com/content/abstract/scopus_id/85081672419,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85081672419&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85081672419&origin=inward,NIH, +,Shen,Article,Journal of Neurodevelopmental Disorders,Psychiatric illness and regression in individuals with Phelan-McDermid syndrome,Brittany McLarney;Audrey Thurm;Alexander Kolevzon;Teresa M. Kohlenberg;Catalina Betancur;M. Pilar Trelles,2020-02-12,10.1186/s11689-020-9309-6,32050889,85079336071,2-s2.0-85079336071,1,https://api.elsevier.com/content/abstract/scopus_id/85079336071,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85079336071&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85079336071&origin=inward,, +,Shen,Article,Proceedings of the National Academy of Sciences of the United States of America,Conservative and disruptive modes of adolescent change in human brain functional connectivity,Peter B. Jones;Jakob Seidlitz;František Váša;Edward T. Bullmore;Peter Fonagy;Raymond J. Dolan;Manfred G. Kitzbichler;Ameera X. Patel;Prantik Kundu;Petra E. Vértes;Rafael Romero-Garcia;Kirstie J. Whitaker;Matilde M. Vaghi;Ian M. Goodyer,2020-02-11,10.1073/pnas.1906144117,31992644,85079320982,2-s2.0-85079320982,2,https://api.elsevier.com/content/abstract/scopus_id/85079320982,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85079320982&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85079320982&origin=inward,NIHR,3248-3253 +,Shen,Article,Journal of Orthopaedic Research,Peripheral Blood Stem Cell Therapy Does Not Improve Outcomes of Femoral Head Osteonecrosis With Cap-Shaped Separated Cartilage Defect,Di Chen;Peijian Tong;Quanwei Ding;Regis J. O'Keefe;Pinger Wang;Hongting Jin;Jie Shen;Jun Ying,2020-02-01,10.1002/jor.24471,31520480,85076543018,2-s2.0-85076543018,2,https://api.elsevier.com/content/abstract/scopus_id/85076543018,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85076543018&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85076543018&origin=inward,ZJTCM,269-276 +,Shen,Article,Muscle and Nerve,Primary lateral sclerosis (PLS) functional rating scale: PLS-specific clinimetric scale,Lorne Zinman;Stephen Scelsa;Erik P. Pioro;Zachary Simmons;Madison Gilmore;David Walk;Eric Sorenson;Yasushi Y. Kisanuki;Sharon Nations;Mary Kay Floeter;Ghazala Hayat;Bjorn Oskarsson;Omar Jawdat;Jonathan Hupf;Christina Nicole Fournier;J. Americo M. Fernandes Filho;Sabrina Paganoni;Hiroshi Mitsumoto;Terry Heiman-Patterson;Codruta Chiuzan;Brittany McHale;Lauren Elman;Yuan Zhang;Nicholas Maragakis;Daragh Heitzman;Nanette Joyce,2020-02-01,10.1002/mus.26765,31758557,85077028533,2-s2.0-85077028533,3,https://api.elsevier.com/content/abstract/scopus_id/85077028533,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85077028533&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85077028533&origin=inward,CYTK,163-172 +,Shen,Review,Journal of Orthopaedic Translation,Runx2 plays a central role in Osteoarthritis development,Di Chen;Zhen Zou;Regis J. O'Keefe;Dongyeon J. Kim;Jie Shen,2020-01-01,10.1016/j.jot.2019.11.008,,85083722602,2-s2.0-85083722602,0,https://api.elsevier.com/content/abstract/scopus_id/85083722602,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85083722602&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85083722602&origin=inward,NIH, +,Shen,Article,JCI Insight,Inhibition of 4-aminobutyrate aminotransferase protects against injury-induced osteoarthritis in mice,Cuicui Wang;Audrey McAlinden;Taotao Xu;Regis J. O'Keefe;Jie Shen;Jun Ying,2019-09-19,10.1172/jci.insight.128568,31534049,85072655136,2-s2.0-85072655136,2,https://api.elsevier.com/content/abstract/scopus_id/85072655136,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85072655136&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85072655136&origin=inward,NIH, +,Stringaris,Article,European Journal of Psychotraumatology,Complex post-traumatic stress symptoms in female adolescents: the role of emotion dysregulation in impairment and trauma exposure after an acute sexual assault,Sophie Khadr;Russell M. Viner;Venetia Clarke;Kia Chong Chua;Patrick Smith;Laia Villalta;Tami Kramer;Argyris Stringaris,2020-12-31,10.1080/20008198.2019.1710400,,85077686165,2-s2.0-85077686165,1,https://api.elsevier.com/content/abstract/scopus_id/85077686165,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85077686165&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85077686165&origin=inward,, +,Stringaris,Review,Psychoneuroendocrinology,Associations between brain activity and endogenous and exogenous cortisol – A systematic review,Simone Pisano;Katharina Clore-Gronenborn;Anita Harrewijn;Daniel S. Pine;Sarah M. Jackson;Pablo Vidal-Ribas;Argyris Stringaris,2020-10-01,10.1016/j.psyneuen.2020.104775,32592873,85086995654,2-s2.0-85086995654,0,https://api.elsevier.com/content/abstract/scopus_id/85086995654,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85086995654&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85086995654&origin=inward,NIH, +,Stringaris,Article,Journal of Child and Adolescent Psychopharmacology,Self-Efficacy As a Target for Neuroscience Research on Moderators of Treatment Outcomes in Pediatric Anxiety,Melissa A. Brotman;Krystal M. Lewis;Emily L. Jones;Elise Cardinale;Chika Matsumoto;Daniel S. Pine;Ellen Leibenluft;Andrea L. Gold;Argyris Stringaris,2020-05-01,10.1089/cap.2019.0130,32167803,85084720715,2-s2.0-85084720715,0,https://api.elsevier.com/content/abstract/scopus_id/85084720715,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85084720715&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85084720715&origin=inward,,205-214 +,Stringaris,Article,Addiction Biology,Heavy drinking in adolescents is associated with change in brainstem microstructure and reward sensitivity,Marie Laure Paillère Martinot;Ruben Miranda;André Galinowski;Irina Filippi;Luise Poustka;Tahmine Fadai;Hugh Garavan;Herta Flor;Betteke M. van Noort;Sabina Millenet;Corinna Isensee;Michael N. Smolka;Patricia Conrod;Robert Whelan;Hervé Lemaitre;Jani Penttilä;Vincent Frouin;Juergen Gallinat;Yvonne Grimmer;Penny Gowland;Anna Cattrell;Henrik Walter;Jean Luc Martinot;Rüdiger Brühl;Uli Bromberg;Erin Burke Quinlan;Sarah Jurk;Tobias Banaschewski;Sarah Hohmann;Christian Büchel;Sylvane Desrivières;Gunter Schumann;Juliane H. Fröhner;Andreas Heinz;Frauke Nees;Argyris Stringaris;Viola Kappel;Andreas Becker;Maren Struve;Eric Artiges;Arun L.W. Bokde;Dimitri Papadopoulos-Orfanos;Robert Goodman,2020-05-01,10.1111/adb.12781,31328396,85069739278,2-s2.0-85069739278,0,https://api.elsevier.com/content/abstract/scopus_id/85069739278,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85069739278&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85069739278&origin=inward,FRC, +,Stringaris,Article,NeuroImage,Sex effects on structural maturation of the limbic system and outcomes on emotional regulation during adolescence,Nora C. Vetter;Eva Menningen;Irina Filippi;Betteke van Noort;Hélène Vulser;Hervé Lemaître;Michael N. Smolka;Patricia Conrod;Dimitri Papadopoulos Orfanos;Henrik Walter;Vincent Frouin;Jani Penttilä;Marie Laure Paillère-Martinot;Yvonne Grimmer;Anna Cattrell;Jean Luc Martinot;Uli Bromberg;Rubén Miranda;Sarah Jurk;Veronika Ziesch;Gunter Schumann;Argyris Stringaris;Jurgen Gallinat;Eric Artiges;Pauline Bezivin Frere,2020-04-15,10.1016/j.neuroimage.2019.116441,31811901,85078193630,2-s2.0-85078193630,1,https://api.elsevier.com/content/abstract/scopus_id/85078193630,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85078193630&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85078193630&origin=inward,ANR, +,Stringaris,Article,Cerebral Cortex,Altered Sex Chromosome Dosage Induces Coordinated Shifts in Cortical Anatomy and Anatomical Covariance,Jakob Seidlitz;Jonathan D. Blumenthal;Siyuan Liu;Armin Raznahan;Liv S. Clasen;Aaron Alexander-Bloch;Anastasia Xenophontos;Jay N. Giedd,2020-04-14,10.1093/cercor/bhz235,31828307,85083913416,2-s2.0-85083913416,3,https://api.elsevier.com/content/abstract/scopus_id/85083913416,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85083913416&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85083913416&origin=inward,,2215-2228 +,Stringaris,Editorial,Neurology,In defense of the AAN position on lawful physician-hastened death,Robert M. Pascuzzi;Richard J. Bonnie;Julie A. Kurek;Michael A. Williams;Justin A. Sattin;James A. Russell;Matthew Kirschen;William D. Graf;Daniel G. Larriviere;Leon G. Epstein;Zachary Simmons;Lynne Taylor;Matthew Rizzo;Robin Conwit,2020-04-14,10.1212/WNL.0000000000009237,32179699,85085040486,2-s2.0-85085040486,0,https://api.elsevier.com/content/abstract/scopus_id/85085040486,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85085040486&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85085040486&origin=inward,,641-643 +,Stringaris,Review,Journal of Child Psychology and Psychiatry and Allied Disciplines,Annual Research Review: Defining and treating pediatric treatment-resistant depression,Michael H. Bloch;David A. Brent;Jennifer B. Dwyer;Argyris Stringaris,2020-03-01,10.1111/jcpp.13202,32020643,85079068611,2-s2.0-85079068611,1,https://api.elsevier.com/content/abstract/scopus_id/85079068611,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85079068611&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85079068611&origin=inward,AFSP,312-332 +,Stringaris,Article,Neuropsychopharmacology,Association between irritability and suicidal ideation in three clinical trials of adults with major depressive disorder,Abu Minhajuddin;Katharina Kircanski;Madhukar Trivedi;Cherise Chin Fatt;Manish K. Jha;Ellen Leibenluft;Argyris Stringaris,2020-01-01,10.1038/s41386-020-0769-x,,85087856134,2-s2.0-85087856134,0,https://api.elsevier.com/content/abstract/scopus_id/85087856134,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85087856134&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85087856134&origin=inward,, +,Stringaris,Article,Behavior Therapy,The Clinician Affective Reactivity Index: Validity and Reliability of a Clinician-Rated Assessment of Irritability,Michal Clayton;Melissa A. Brotman;Katharina Kircanski;Sofia I. Cardenas;Kenneth E. Towbin;Courtney Agorsor;Daniel S. Pine;Ellen Leibenluft;Hong Bui;Simone P. Haller;Argyris Stringaris,2020-01-01,10.1016/j.beth.2019.10.005,32138938,85077980964,2-s2.0-85077980964,0,https://api.elsevier.com/content/abstract/scopus_id/85077980964,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85077980964&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85077980964&origin=inward,NIMH, +,Stringaris,Article,Journal of Abnormal Child Psychology,The Role of Paternal Accommodation of Paediatric OCD Symptoms: Patterns and Implications for Treatment Outcomes,Benedetta Monzani;David Mataix-Cols;Cynthia Turner;Isobel Heyman;Georgina Krebs;Caroline Stokes;Pablo Vidal-Ribas;Argyris Stringaris,2020-01-01,10.1007/s10802-020-00678-9,,85088107056,2-s2.0-85088107056,0,https://api.elsevier.com/content/abstract/scopus_id/85088107056,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85088107056&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85088107056&origin=inward,NIH, +,Stringaris,Article,Molecular Psychiatry,Linked patterns of biological and environmental covariation with brain structure in adolescence: a population-based longitudinal study,Corinna Insensee;Marie Laure Paillère Martinot;Luise Poustka;Amirhossein Modabbernia;Alex Ing;Gaelle E. Doucet;Hugh Garavan;Herta Flor;Betteke M. van Noort;Sabina Millenet;Bernd Ittermann;Sophia Frangou;Michael N. Smolka;Robert Whelan;Antoine Grigis;Dimitri Papadopoulos Orfanos;Jani Penttilä;Henrik Walter;Penny Gowland;Yvonne Grimmer;Jean Luc Martinot;Abraham Reichenberg;Erin Burke Quinlan;Tobias Banaschewski;Tomáš Paus;Sylvane Desrivières;Gunter Schumann;Gareth J. Barker;Juliane H. Fröhner;Andreas Heinz;Dominik A. Moser;Frauke Nees;Argyris Stringaris;Eric Artiges;Arun L.W. Bokde;Andreas Becker,2020-01-01,10.1038/s41380-020-0757-x,32444868,85085341287,2-s2.0-85085341287,0,https://api.elsevier.com/content/abstract/scopus_id/85085341287,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85085341287&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85085341287&origin=inward,Inserm, +,Stringaris,Article,Biological Psychiatry,Schizotypy-Related Magnetization of Cortex in Healthy Adolescence Is Colocated With Expression of Schizophrenia-Related Genes,Peter B. Jones;Umar Toseeb;Kalia Cleridou;Junaid Bhatti;Ayesha Alrumaithi;Aislinn Bowler;Kirstie Whitaker;Alexandra Hopkins;Pasco Fearon;Tobias Hauser;Emma Davies;Peter Fonagy;Rogier Kievit;Michelle St Clair;Ciara O'Donnell;Sarah Birt;Barry Widmer;Edward Bullmore;Hina Dadabhoy;Becky Inkster;Ashlyn Firkins;Harriet Mills;Rafael Romero-Garcia;Kirstie J. Whitaker;Cinly Ooi;Jenny Scott;Anne Laura van Harmelen;Sara Pantaleone;John Suckling;Christina Maurice;Sarah E. Morgan;Jessica Memarzia;Danae Kokorikou;Janchai King;Michael Moutoussis;Elizabeth Harding;Matilde Vaghi;Jakob Seidlitz;Ian Goodyer;Edward T. Bullmore;Gita Prabhu;Raymond J. Dolan;Laura Villis;Sharon Neufeld;Daniel Isaacs;Peter Jones;Cleo McIntosh;Petra E. Vértes;Raymond Dolan;Sian Granville;Ian M. Goodyer,2020-01-01,10.1016/j.biopsych.2019.12.005,32029217,85078843287,2-s2.0-85078843287,1,https://api.elsevier.com/content/abstract/scopus_id/85078843287,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85078843287&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85078843287&origin=inward,WT, +,Stringaris,Editorial,Journal of Child Psychology and Psychiatry and Allied Disciplines,Editorial: Are computers going to take over: implications of machine learning and computational psychiatry for trainees and practising clinicians,Argyris Stringaris,2019-12-01,10.1111/jcpp.13168,31724195,85074959312,2-s2.0-85074959312,1,https://api.elsevier.com/content/abstract/scopus_id/85074959312,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85074959312&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85074959312&origin=inward,,1251-1253 +,Stringaris,Article,Muscle & nerve,Thank you to our reviewers,Zachary Simmons,2019-12-01,10.1002/mus.26285,31729058,85075086064,2-s2.0-85075086064,0,https://api.elsevier.com/content/abstract/scopus_id/85075086064,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85075086064&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85075086064&origin=inward,,816-818 +,Stringaris,Article,Nature Human Behaviour,Identification of neurobehavioural symptom groups based on shared brain mechanisms,Ole A. Andreassen;Philipp G. Sämann;Marie Laure Paillère Martinot;Betteke van Noort;Luise Poustka;Edward D. Barker;Philip A. Spechler;Alex Ing;Thomas Wolfers;Tahmine Fadai;Hugh Garavan;Herta Flor;Andreas Meyer-Lindenberg;Congying Chu;Tianye Jia;Sabina Millenet;Bernd Ittermann;Michael N. Smolka;Patricia Conrod;Robert Whelan;Andre Marquand;Hervé Lemaitre;Dimitri Papadopoulos Orfanos;Jani Penttilä;Vincent Frouin;Penny Gowland;Yvonne Grimmer;Jean Luc Martinot;Henrik Walter;Jan Buitelaar;Elisabeth Binder;Trevor W. Robbins;Ingrid Agartz;Uli Bromberg;Gabriel Robert;Erin Burke Quinlan;Tobias Banaschewski;Francesca Biondo;Nicole Tay;Christian Büchel;Sylvane Desrivières;Gunter Schumann;Andreas Heinz;Ilya M. Veer;John Ashburner;Frauke Nees;Argyris Stringaris;Viola Kappel;Maren Struve;Arun L.W. Bokde,2019-12-01,10.1038/s41562-019-0738-8,31591521,85076447002,2-s2.0-85076447002,4,https://api.elsevier.com/content/abstract/scopus_id/85076447002,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85076447002&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85076447002&origin=inward,BMBF,1306-1318 +,Stringaris,Article,Translational Psychiatry,"Disentangling polygenic associations between attention-deficit/hyperactivity disorder, educational attainment, literacy and language",Marianne Giørtz Pedersen;Stephan Ripke;Esben Agerbo;Merete Nordentoft;Julian Maller;Christine S. Hansen;Ole Mors;Timothy Poterba;Anders D. Børglum;Chin Yang Shapland;Søren Dalsgaard;Ditte Demontis;Rich Belliveau;Daniel P. Howrigan;Manuel Mattheisen;Thomas Damm Als;Kimberly Chambert;Raymond K. Walters;Jennifer Moran;Mark J. Daly;Stephen Burgess;Alicia R. Martin;Ashley Dumont;Joanna Martin;Jakob Grove;Marie Bækved-Hansen;Jacqueline Goldstein;Hailiang Huang;Benjamin M. Neale;Elise B. Robinson;Christine Stevens;Mads V. Hollegaard;Patrick Turley;Stephen V. Faraone;Mads Engel Hauberg;Duncan S. Palmer;Aysu Okbay;George Davey Smith;F. Kyle Satterstrom;Felecia Cerrato;Preben Bo Mortensen;Jesper Buchhave Poulsen;Beate St Pourcain;Evie Stergiakouli;David M. Hougaard;Jonas Bybjerg-Grauholm;Jonatan Pallesen;Carsten Bøcker Pedersen;Thomas Werge;Philip S. Dale;Claire Churchhouse;Simon E. Fisher;Ellen Verhoef,2019-12-01,10.1038/s41398-018-0324-2,30679418,85060519969,2-s2.0-85060519969,3,https://api.elsevier.com/content/abstract/scopus_id/85060519969,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85060519969&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85060519969&origin=inward,WT, +,Stringaris,Article,Scientific Reports,Brain-behaviour modes of covariation in healthy and clinically depressed young people,Peter B. Jones;Umar Toseeb;Kalia Cleridou;Junaid Bhatti;Ayesha Alrumaithi;Aislinn Bowler;Manfred G. Kitzbichler;Kirstie Whitaker;Ciara O’Donnell;Alexandra Hopkins;Pasco Fearon;Matilde M. Vaghi;Tobias Hauser;Emma Davies;Peter Fonagy;Rogier Kievit;Rick A. Adams;Michelle St Clair;Sarah Birt;Barry Widmer;Hina Dadabhoy;Becky Inkster;Maria J. Rosa;Ashlyn Firkins;Harriet Mills;Rafael Romero-Garcia;Cinly Ooi;Jenny Scott;Anne Laura van Harmelen;Sara Pantaleone;František Váša;John Suckling;Agoston Mihalik;Christina Maurice;Raymond Dolan;Jessica Memarzia;Danae Kokorikou;Janchai King;Liana Portugal;Michael Moutoussis;Janaina Mourão-Miranda;Elizabeth Harding;Edward T. Bullmore;Laura Villis;Daniel Isaacs;Sharon Neufeld;Cleo McIntosh;Petra E. Vértes;Fabio S. Ferreira;Gita Prabhu;Joao M. Monteiro;Sian Granville;Ian M. Goodyer;Gabriel Ziegler,2019-12-01,10.1038/s41598-019-47277-3,31395894,85070600382,2-s2.0-85070600382,5,https://api.elsevier.com/content/abstract/scopus_id/85070600382,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85070600382&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85070600382&origin=inward,CLAHRC GM, +,Stringaris,Article,Scientific Reports,Perceptual and conceptual processing of visual objects across the adult lifespan,Cheryl Dias;David Troy;Anna McCarrey;Gillian Amery;Alison McMinn;Liana Amunts;Lauren Bates;Marie Dixon;Tim Dalgleish;Diane Rowland;Andrew Gadie;Rafael Henriques;Frances Johnson;Hayley Fisher;Thea Kavanagh-Williamson;John Sargeant;William D. Marslen-Wilson;Adarsh Grewal;Kim Norman;Tracy Thompson;Carol Brayne;Meredith Shafto;Rogier Kievit;Magdalena Kwasniewska;Aldabra Stoddart;Marta Correia;Fiona Roby;Tibor Auer;Lu Gao;Jason R. Taylor;Simon Davis;Andrew Hilton;Karen Campbell;Emma Green;John Duncan;Richard N. Henson;Fiona E. Matthews;Jodie Allen;Cheryl Stone;James B. Rowe;Lorraine K. Tyler;David Samu;Anne Barcroft;Joanne Mitchell;Sofia Gerbase;Geoff Hale;Anna Goulding;Amanda Castle;Stanimira Georgieva;Teresa Cheung;Beth Parkin;Jonathan Dowrick;Melissa Fair;Rhodri Cusack;Janna van Belle;Claire Hanley;Edward T. Bullmore;Andrew C. Calder;Abdur Mustafa;Patricia Johnston;Laura Villis;Sharon Erzinçlioglu;Nitin Williams;Kamen A. Tsvetanov;Tina Emery;Beth Stevens;Jessica Penrose;Rose Bruffaerts;Matthias Treder;Ozlem Yazlik;Dan Barnes;Jaya Hillman;Alex Clarke;Maggie Squire;Linda Geerligs;Darren Price,2019-12-01,10.1038/s41598-019-50254-5,31551468,85072600494,2-s2.0-85072600494,2,https://api.elsevier.com/content/abstract/scopus_id/85072600494,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85072600494&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85072600494&origin=inward,BBSRC, +,Stringaris,Article,Nature Communications,International meta-analysis of PTSD genome-wide association studies identifies sex- and ancestry-specific genetic risk loci,Murray B. Stein;Bekh Bradley;Paul A. Arbisi;Jessica Maples-Keller;Anders M. Dale;Mark J. Daly;Joel Gelernter;Eric Otto Johnson;Daniel F. Levey;Shareefa Dalvie;Allison C. Provost;David Forbes;Lauren A.M. Lebois;Norah C. Feeny;Charles Marmar;Laramie E. Duncan;Michael J. Lyons;Charles Gillespie;Anthony P. King;Mark W. Logue;Jonas Bybjerg-Grauholm;Richard A. Bryant;Scott D. Gordon;Aferdita Goci Uka;Ian Jones;Dewleen G. Baker;Marie Bækvad-Hansen;Megan Brashear;Torsten Klengel;Carol E. Franz;Tanja Jovanovic;Karen Inge Karstoft;David Michael Hougaard;Dragan Babić;Guia Guffanti;Adriana Lori;Xue Jun Qin;Gerome Breen;Elbert Geuze;Jonathan I. Bisson;Adam X. Maihofer;Henry R. Kranzler;Michelle F. Dennis;Søren B. Andersen;Douglas L. Delahanty;Katharina Domschke;Jürgen Deckert;Bruce R. Lawford;Alexandra Evans;Allison E. Aiello;Ole A. Andreassen;Miro Jakovljevic;Sarah D. Linnstaedt;Seth G. Disner;Elizabeth A. Bolger;Ananda B. Amstadter;Bozo Lugonja;Janine D. Flory;Andrew Ratanatharathorn;William S. Kremen;Laura J. Bierut;Supriya Harnal;Catrin E. Lewis;Katy Torres;Michael A. Hauser;Jonathan R.I. Coleman;Renato Polimanti;Alma Dzubur-Kulenovic;Angela C. Bustamante;Elizabeth G. Atkinson;Joseph R. Calabrese;Andrew C. Heath;Sian M.J. Hemmings;José M. Caldas- de- Almeida;Caroline M. Nievergelt;Ronald C. Kessler;Jurjen J. Luykx;Christopher R. Erbes;Rasha Hammamieh;Anders D. Børglum;Melanie E. Garrett;Nathan A. Kimbrel;Nastassja Koen;Chia Yen Chen;Lindsay A. Farrer;Bizu Gelaye;Alicia R. Martin;Marti Jett;Lynn M. Almli;Angela G. Junglen;Nikolaos P. Daskalakis;Jean C. Beckham;Allison E. Ashley-Koch;S. Bryn Austin;Milissa L. Kaufman;Alaptagin Khan;Esmina Avdibegovic;Karmel W. Choi;Sandro Galea;Marco P. Boks,2019-12-01,10.1038/s41467-019-12576-w,31594949,85073062147,2-s2.0-85073062147,18,https://api.elsevier.com/content/abstract/scopus_id/85073062147,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85073062147&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85073062147&origin=inward,AAL, +,Stringaris,Review,Zeitschrift fur Kinder- und Jugendpsychiatrie und Psychotherapie,Reward processing in adolescent depression across neuroimaging modalities: A review,Georgia O’Callaghan;Argyris Stringaris,2019-11-01,10.1024/1422-4917/a000663,30957688,85074676470,2-s2.0-85074676470,2,https://api.elsevier.com/content/abstract/scopus_id/85074676470,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85074676470&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85074676470&origin=inward,NIMH,535-541 +,Stringaris,Letter,European Journal of Human Genetics,Response to “Newborn dried blood spot samples in Denmark: the hidden figures of secondary use and research participation”,Jonas Bybjerg-Grauholm;David Michael Hougaard;Michael Christiansen;Bent Nørgaard-Pedersen,2019-11-01,10.1038/s41431-019-0437-y,31253879,85068145801,2-s2.0-85068145801,1,https://api.elsevier.com/content/abstract/scopus_id/85068145801,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85068145801&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85068145801&origin=inward,,1625-1627 +,Stringaris,Article,Biological Psychiatry: Cognitive Neuroscience and Neuroimaging,Bidirectional Associations Between Stress and Reward Processing in Children and Adolescents: A Longitudinal Neuroimaging Study,Anita Harrewijn;Nathan A. Fox;Aria D. Vitale;Hanna Keren;Daniel S. Pine;Brenda Benson;Pablo Vidal-Ribas;Argyris Stringaris,2019-10-01,10.1016/j.bpsc.2019.05.012,31324591,85072598688,2-s2.0-85072598688,2,https://api.elsevier.com/content/abstract/scopus_id/85072598688,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85072598688&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85072598688&origin=inward,NIMH,893-901 +,Stringaris,Article,Frontiers in Psychiatry,Promotion of Wellbeing for Children of Parents With Mental Illness: A Model Protocol for Research and Intervention,Giulia Signorini;Camilla Lauritzen;Charlotte Reedtz;Richard Musil;Thomas Schulze;Philippe Conus;Michael Berk;Geneviève Piché;Giovanni de Girolamo;Allan H. Young;Therese van Amelsvoort;Floor van Santvoort;Karin van Doesum;Argyris Stringaris,2019-09-06,10.3389/fpsyt.2019.00606,,85072828438,2-s2.0-85072828438,1,https://api.elsevier.com/content/abstract/scopus_id/85072828438,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85072828438&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85072828438&origin=inward,UiT, +,Stringaris,Article,Assessment,Extending the Construct Network of Trait Disinhibition to the Neuroimaging Domain: Validation of a Bridging Scale for Use in the European IMAGEN Project,Marie Laure Paillère Martinot;Betteke van Noort;Luise Poustka;Hugh Garavan;Tahmine Fadai;Herta Flor;Bernd Ittermann;Jens Foell;Michael N. Smolka;Laura E. Drislane;Robert Whelan;Patricia Conrod;Dimitri Papadopoulos Orfanos;James R. Yancey;Vincent Frouin;Penny Gowland;Jean Luc Martinot;Henrik Walter;Yvonne Grimmer;Erin Burke Quinlan;Uli Bromberg;Tobias Banaschewski;Christian Büchel;Sylvane Desrivières;Gunter Schumann;Andreas Heinz;Juliane H. Fröhner;Frauke Nees;Christopher J. Patrick;Argyris Stringaris;Maren Struve;Sarah J. Brislin;Arun L.W. Bokde;Angela Heinrich,2019-06-01,10.1177/1073191118759748,29557190,85044347238,2-s2.0-85044347238,6,https://api.elsevier.com/content/abstract/scopus_id/85044347238,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85044347238&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85044347238&origin=inward,Inserm,567-581 +,Stringaris,Article,Alzheimer's and Dementia,Inflammatory biomarkers in Alzheimer's disease plasma,Naghmeh Nikkheslat;Iwona Kłoszewska;Gayle Wittenberg;Anna McLaughlin;Pieter Jelle Visser;Stephanie Vos;Caroline O'Hagan;Gwendoline Peyratout;Karen Randall;Isabelle Bos;Edward T. Bullmore;Alberto Lleó;H. W.G.M. Boddeke;Linda J. Pointon;Federico Turkheimer;Wayne C. Drevets;Marta M. Correia;Jeffrey S. Nye;Hikka Soininen;Anna L. Crofts;Patrizia Mecocci;Lutz Frölich;Phil Murphy;Nicole Mariani;Rik Vandenberghe;Angharad R. Morgan;Olivier Blin;Christine A. Parker;Silvey Gabel;Isabel Sala;Jai Patel;Murray Sutherland;Ciara O'Donnell;Carmine M. Pariante;Mikel Tainta-Cuezva;Catherine Deith;Caitlin Hastings;Annamaria Cattaneo;Valeria Mondelli;Karen Meersmans;Peter Johannsen;Maria Nettis;Hartmuth Kolb;Diana Cash;Lars Bertram;Julius Popp;Peter St George Hyslop;John Isaac;Guy B. Williams;Junaid Bhatti;Mary Ellen Lynall;Paul Scouller;Alison McColl;B. Paul Morgan;Frederik Barkhof;Shahid Khan;John McClean;José Luis Molinuevo;Claire A. Leckey;Samuel Touchard;Giovanni Frisoni;Andrew McPherson;John Kemp;Christina Maurice;Philip Scheltens;Henrik Zetterberg;Petra Vertes;Simon Lovestone;Samuel J. Chamberlain;Declan Jones;Johannes Streffer;Lorinda Turner;Jonathan Cavanagh;Anindya Bhattacharya;Claire Leckey;Anders Wallin;Clare Knight;Manfred G. Kitzbichler;Jill C. Richardson;Valerija Dobricic;Hannah Sheridan;Jill Richardson;Andrew C. Foster;Alejo J. Nevado-Holgado;Heidi Byrom;Cristina Legido-Quigley;Sarah Westwood;Peter de Boer;Sebastiaan Engelborghs;Petronella Kettunen;Pablo Martinez-Lage;Nick Carruthers;Gareth J. Barker;Charlotte Teunissen;Scott Farmer;Lars Olof Wahlund;Amber Dickinson;Magda Tsolaki;Barry Widmer;Antony Gee,2019-06-01,10.1016/j.jalz.2019.03.007,31047856,85064805360,2-s2.0-85064805360,16,https://api.elsevier.com/content/abstract/scopus_id/85064805360,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85064805360&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85064805360&origin=inward,WT,776-787 +,Stringaris,Erratum,Nature Genetics,"Publisher Correction: Gene expression imputation across multiple brain regions provides insights into schizophrenia risk (Nature Genetics, (2019), 51, 4, (659-674), 10.1038/s41588-019-0364-4)",Hiroyoshi Toyoshiba;Srdjan Djurovic;Ronald Y.L. Chen;Sarah E. Bergen;Lambertus L. Klein;Peter A. Holmans;Nadine Cohen;Chang Gyu Hahn;Johan Eriksson;Richard A. Belliveau;Elizabeth Bevilacqua;Benjamin A. Logsdon;Tim B. Bigdeli;Nick Craddock;Wiepke Cahn;Eric R. Gamazon;Kai How Farh;Barbara K. Lipska;Laurent Essioux;Michael Davidson;Raquel E. Gur;Keisuke Hirai;Martin Begemann;Stephan Ripke;Esben Agerbo;Weiqing Wang;Siow Ann Chong;Nancy G. Buccola;Donald W. Black;Peter Eichhammer;Stanley V. Catts;Noa Carrera;Eric F.C. Cheung;Kimberly D. Chambert;Elodie Drapeau;Joseph D. Buxbaum;Tune H. Pers;Shaun Purcell;Silviu A. Bacanu;Hailiang Huang;Benjamin M. Neale;Laura M. Huckins;David Curtis;Richard Bruggeman;Paul Cormican;Gabriel Hoffman;Gary Donohoe;Margot Albus;Guiqing Cai;Franziska Degenhardt;William Byerley;Dimitris Dikeos;Judit Bene;James Boocock;Rita M. Cantor;Raymond C.K. Chan;Jurgen Del Favero;Hardik R. Shah;Douglas M. Ruderfer;Brendan Bulik-Sullivan;David A. Collier;Dominique Campion;Madeline Alexander;James J. Crowley;James T.R. Walters;Eric Schadt;Wei Cheng;Naser Durmishi;Phil Lee;Vahram Haroutunian;Milind C. Mahajan;Farooq Amin;Menachem Fromer;Frank Dudbridge;Randy L. Buckner;Hoang T. Nguyen;Veera M. Rajagopal;Panos Roussos;Robin Kramer;Ditte Demontis;David A. Lewis;C. Robert Cloninger;Enrico Domenici;Thomas D. Als;Mette A. Peters;Kristen K. Dang;Timothy Dinan;Ingrid Agartz;Lara M. Mangravite;Jessica S. Johnson;Thanneer M. Perumal;Kenneth L. Davis;Aiden Corvin;Amanda Dobbyn;Kiran Girdhar;Eric Y.H. Chen;Jubao Duan;David Cohen;Vaughan J. Carr;Antonio F. Pardiñas,2019-06-01,10.1038/s41588-019-0435-6,31086353,85065757972,2-s2.0-85065757972,0,https://api.elsevier.com/content/abstract/scopus_id/85065757972,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85065757972&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85065757972&origin=inward,,1068 +,Stringaris,Editorial,Muscle and Nerve,Guidelines for authors: A view from the editor's desk,Zachary Simmons,2019-02-01,10.1002/mus.26399,30549059,85059588922,2-s2.0-85059588922,0,https://api.elsevier.com/content/abstract/scopus_id/85059588922,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85059588922&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85059588922&origin=inward,,147-148 +,Stringaris,Article,American Journal of Psychiatry,Identifying novel types of irritability using a developmental genetic approach,Kate Tilling;Lucy Riglin;Olga Eyre;Daniel S. Pine;George Davey Smith;Ellen Leibenluft;Michael C. O’Donovan;Anita Thapar;Ajay K. Thapar;Argyris Stringaris,2019-01-01,10.1176/appi.ajp.2019.18101134,31256611,85070309459,2-s2.0-85070309459,4,https://api.elsevier.com/content/abstract/scopus_id/85070309459,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85070309459&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85070309459&origin=inward,WT,635-642 +,Stringaris,Editorial,Journal of the American Academy of Child and Adolescent Psychiatry,Probing the Irritability−Suicidality Nexus,Pablo Vidal-Ribas;Argyris Stringaris,2019-01-01,10.1016/j.jaac.2018.08.014,30577933,85058513073,2-s2.0-85058513073,1,https://api.elsevier.com/content/abstract/scopus_id/85058513073,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85058513073&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85058513073&origin=inward,,18-19 +,Swedo,Article,Frontiers in Psychiatry,Autoantibody Biomarkers for Basal Ganglia Encephalitis in Sydenham Chorea and Pediatric Autoimmune Neuropsychiatric Disorder Associated With Streptococcal Infections,Ivana Kawikova;Madeleine W. Cunningham;Kathy Alvarez;Susan E. Swedo;Sean Reim;Jennifer L. Chain;Kyle Williams;Rebecca Bentley;Paul Grant;Julie A. Stoner;Adita Mascaro-Blanco;James F. Leckman;Rebecca Hommer,2020-06-24,10.3389/fpsyt.2020.00564,,85087690834,2-s2.0-85087690834,0,https://api.elsevier.com/content/abstract/scopus_id/85087690834,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85087690834&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85087690834&origin=inward,NIMH, +,Swedo,Article,Autism,"The Gestalt of functioning in autism spectrum disorder: Results of the international conference to develop final consensus International Classification of Functioning, Disability and Health core sets",Mats Granlund;Bruce Tonge;Lonnie Zwaigenbaum;Virginia Wong;Soheil Mahdi;John E. Robison;Susan Swedo;Sven Bölte;Wolfgang Segerer;Petrus J. de Vries;Cory Shulman;Melissa Selb,2019-02-01,10.1177/1362361318755522,29378422,85041576618,2-s2.0-85041576618,25,https://api.elsevier.com/content/abstract/scopus_id/85041576618,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85041576618&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85041576618&origin=inward,VR,449-467 +,Theodore,Article,Epilepsy Research,Individualizing the definition of seizure clusters based on temporal clustering analysis,Sharon Chiang;Sheryl R. Haut;Maxime O. Baud;William H. Theodore;Vikram R. Rao;Robert Moss;Daniel M. Goldenholz;Victor Ferastraoaru,2020-07-01,10.1016/j.eplepsyres.2020.106330,32305858,85083239781,2-s2.0-85083239781,0,https://api.elsevier.com/content/abstract/scopus_id/85083239781,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85083239781&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85083239781&origin=inward,TSA, +,Theodore,Editorial,Muscle and Nerve,Terminology in Neuromuscular Electrodiagnostic Medicine and Ultrasound: Time for an Update,Ulf Ziemann;Zachary Simmons,2020-07-01,10.1002/mus.26870,32337740,85085564248,2-s2.0-85085564248,0,https://api.elsevier.com/content/abstract/scopus_id/85085564248,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85085564248&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85085564248&origin=inward,,1 +,Theodore,Editorial,Clinical Neurophysiology,Terminology in neuromuscular electrodiagnostic medicine and ultrasound: Time for an update,Ulf Ziemann;Zachary Simmons,2020-07-01,10.1016/j.clinph.2020.03.015,32337740,85085306499,2-s2.0-85085306499,0,https://api.elsevier.com/content/abstract/scopus_id/85085306499,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85085306499&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85085306499&origin=inward,,1655 +,Theodore,Article,Epilepsia,Prospective validation study of an epilepsy seizure risk system for outpatient evaluation,Sharon Chiang;Jonathan K. Kleen;Marina Vannucci;Jay Gavvala;William H. Theodore;Robert Moss;Vikram R. Rao;Zulfi Haneef;John M. Stern;Daniel M. Goldenholz,2020-01-01,10.1111/epi.16397,31792970,85076111669,2-s2.0-85076111669,3,https://api.elsevier.com/content/abstract/scopus_id/85076111669,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85076111669&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85076111669&origin=inward,BIDMC,29-38 +,Theodore,Letter,Epilepsia,Response to commentary on recommendations for the use of structural MRI in the care of patients with epilepsy: A consensus report from the ILAE Neuroimaging Task Force,Neda Bernasconi;Robert Edward Hogan;Graeme Jackson;Paolo Federico;Anna E. Vaudano;Philippe Ryvlin;Matthias Koepp;William Theodore;Ravnoor S. Gill;Fernando Cendes;Andrea Bernasconi;Ingmar Blümcke;Angelo Labate,2019-10-01,10.1111/epi.16324,31468504,85073125733,2-s2.0-85073125733,0,https://api.elsevier.com/content/abstract/scopus_id/85073125733,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85073125733&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85073125733&origin=inward,,2143-2144 +,Theodore,Article,"American Journal of Medical Genetics, Part A",Fragile X syndrome in a male with methylated premutation alleles and no detectable methylated full mutation alleles,Carolyn B. Smith;Inna Loutaev;Sarah L. Nolin;Xiaohua Ding;Karen Usdin;Bruce Hayward;Audrey Thurm,2019-10-01,10.1002/ajmg.a.61286,31356000,85071996776,2-s2.0-85071996776,2,https://api.elsevier.com/content/abstract/scopus_id/85071996776,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85071996776&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85071996776&origin=inward,NIMH,2132-2137 +,Theodore,Article,Journal of Craniofacial Surgery,Comparison of Three-Dimensional Surface Imaging Systems Using Landmark Analysis,Margaret Beach;Rashmi Mishra;Armin Raznahan;Irini Manoli;Janice S. Lee;William A. Gahl;Denise K. Liberton,2019-09-01,10.1097/SCS.0000000000005795,31335576,85071514202,2-s2.0-85071514202,1,https://api.elsevier.com/content/abstract/scopus_id/85071514202,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85071514202&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85071514202&origin=inward,NIH,1869-1872 +,Theodore,Article,Brain Structure and Function,Structural brain network of gifted children has a more integrated and versatile topology,Edward T. Bullmore;Núria Bargalló;Rafael Romero-Garcia;Josep M. Serra-Grabulosa;Jordi Solé-Casals;Gemma Vilaseca;Núria Vilaró;Ana Adan,2019-09-01,10.1007/s00429-019-01914-9,31250156,85068328608,2-s2.0-85068328608,4,https://api.elsevier.com/content/abstract/scopus_id/85068328608,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85068328608&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85068328608&origin=inward,MINECO,2373-2383 +,Theodore,Review,Epilepsy Research,Infection with HHV-6 and its role in epilepsy,William H. Theodore;Steven Jacobson;Luca Bartolini;William D. Gaillard,2019-07-01,10.1016/j.eplepsyres.2019.03.016,30953871,85063693844,2-s2.0-85063693844,1,https://api.elsevier.com/content/abstract/scopus_id/85063693844,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85063693844&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85063693844&origin=inward,EF,34-39 +,Theodore,Editorial,Journal of the American Academy of Child and Adolescent Psychiatry,The Need for a Developmentally Based Measure of Social Communication Skills,Aaron Kaat;Stelios Georgiades;Somer Bishop;Audrey Thurm;Stephen Kanne;Cristan Farmer,2019-06-01,10.1016/j.jaac.2018.12.010,31130206,85066035363,2-s2.0-85066035363,1,https://api.elsevier.com/content/abstract/scopus_id/85066035363,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85066035363&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85066035363&origin=inward,NICHD,555-560 +,Thomas,Article,Journal of Cerebral Blood Flow and Metabolism,Guidelines for the content and format of PET brain data in publications and archives: A consensus paper,Stefan Appelhoff;Sami Zoghbi;Guy Bormans;Roger N. Gunn;Ramin Parsey;Doris Doudet;Ciprian Catana;Todd Ogden;Sune H. Keller;Maqsood Yaqub;Richard E. Carson;Mark Slifstein;Rupert Lanzenberger;Thomas E. Nichols;Tetsuya Suhara;Granville J. Matheson;Francesca Zanderigo;J. John Mann;Pedro Rosa-Neto;Julie Price;Gaia Rizzo;Adriaan A. Lammertsma;Peter Herscovitch;Antony D. Gee;Henry Huang;Jeih San Liow;Mattia Veronese;Mark Lubberink;Ronald Boellaard;Dean F. Wong;Robert B. Innis;Martin Nørgaard;Douglas N. Greve;Chul H. Lyoo;Peter S. Talbot;Melanie Ganz;Adam Thomas;Victor W. Pike;Talakad G. Lohith;Peter J.H. Scott;Graham Searle;Gitte M. Knudsen;Christer Halldin;Martin Schain,2020-08-01,10.1177/0271678X20905433,32065076,85081976410,2-s2.0-85081976410,2,https://api.elsevier.com/content/abstract/scopus_id/85081976410,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85081976410&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85081976410&origin=inward,NIMH,1576-1585 +,Thomas,Article,PLoS Biology,Behavioral flexibility is associated with changes in structure and function distributed across a frontal cortical network in macaques,Georgios K. Papageorgiou;Jackson Smith;Andrew H. Bell;Matthew F.S. Rushworth;Jesper Anderson;Jérôme Sallet;Mary Ann P. Noonan;Adam Thomas;Bashir Ahmed;Léa Roumazeilles;Steven Cuell;Mark E. Walton;Kristine Krug;Rogier B. Mars;Mark J. Buckley;Franz X. Neubert;Jill X. O'Reilly,2020-05-01,10.1371/journal.pbio.3000605,32453728,85085981788,2-s2.0-85085981788,1,https://api.elsevier.com/content/abstract/scopus_id/85085981788,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85085981788&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85085981788&origin=inward,BBSRC, +,Ungerleider,Note,Cognitive Neuropsychology,From visual awareness to consciousness without sensory input: The role of spontaneous brain activity,Shruti Japee;Leslie G. Ungerleider;Romain Quentin;Marine Vernet,2020-05-18,10.1080/02643294.2020.1731442,32093525,85085566392,2-s2.0-85085566392,1,https://api.elsevier.com/content/abstract/scopus_id/85085566392,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85085566392&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85085566392&origin=inward,NIMH,216-219 +Y,Ungerleider,Article,NeuroImage,Anterior superior temporal sulcus is specialized for non-rigid facial motion in both monkeys and humans,Molly Flessert;Shruti Japee;Hui Zhang;Leslie G. Ungerleider;Andrea Stacy,2020-01-01,10.1016/j.neuroimage.2020.116878,,85084490123,2-s2.0-85084490123,0,https://api.elsevier.com/content/abstract/scopus_id/85084490123,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85084490123&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85084490123&origin=inward,NIMH, +,Ungerleider,Article,Scientific Reports,Intranasal oxytocin selectively modulates the behavior of rhesus monkeys in an expression matching task,Molly Flessert;Ning Liu;Leslie G. Ungerleider;Jessica Taubert,2019-12-01,10.1038/s41598-019-51422-3,31645593,85074099902,2-s2.0-85074099902,0,https://api.elsevier.com/content/abstract/scopus_id/85074099902,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85074099902&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85074099902&origin=inward,NIMH, +,Ungerleider,Article,Neuropsychologia,Endogenous visuospatial attention increases visual awareness independent of visual discrimination sensitivity,Savannah Lokey;Valentinos Zachariou;Shruti Japee;Leslie G. Ungerleider;Sara Ahmed;Marine Vernet,2019-05-01,10.1016/j.neuropsychologia.2017.08.015,28807647,85027969530,2-s2.0-85027969530,5,https://api.elsevier.com/content/abstract/scopus_id/85027969530,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85027969530&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85027969530&origin=inward,NIMH,297-304 +,Ungerleider,Article,Journal of Comparative Neurology,Time course of cytochrome oxidase blob plasticity in the primary visual cortex of adult monkeys after retinal laser lesions,Sandra S. Pereira;Ana Karla J. Amorim;Juliana G.M. Soares;Leslie G. Ungerleider;Mariana F. Farias;Ricardo Gattass,2019-02-15,10.1002/cne.24434,29574781,85045406098,2-s2.0-85045406098,1,https://api.elsevier.com/content/abstract/scopus_id/85045406098,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85045406098&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85045406098&origin=inward,CNPq,600-613 +,Wassermann,Article,Scientific Reports,Mendelian randomization implies no direct causal association between leukocyte telomere length and amyotrophic lateral sclerosis,Cristina Razquin;Christopher M. Morris;Julie van der Zee;John R. Hodges;James Uphill;Elisa Rubino;Maria Serpente;Jordi Clarimón;Peter R. Schofield;Sandro Sorbi;Michael C. Tierney;Johannes C.M. Schlachetzki;John Q. Trojanowski;Giacomina Rossi;Carlos Cruchaga;Jørgen E. Nielsen;Barbara Borroni;Alberto Lleó;William S. Brooks;Alexander Kurz;Isabelle Leber;Pietro Pietrini;Ekaterina Rogaeva;Ging Yuek R. Hsiung;Elio Scarpini;Fabrizio Tagliavini;Diego Albani;Johannes Attems;Christine Van Broeckhoven;Gilles Gasparoni;Evelyn Jaros;Michael A. Nalls;Bernd Ibach;Daniela Galimberti;Rafael Blesa;Ian R.A. Mackenzie;Giorgio Giaccone;Alessandro Padovani;Alan J. Thomas;Janine Diehl-Schmid;Véronique Golfier;Giuliano Binetti;Matthias Riemenschneider;Ting Wang;Dena G. Hernandez;Peter St George-Hyslop;Vivianna M. Van Deerlin;Yixin Gao;Roberta Ghidoni;Karin Nilsson;Irene Piaceri;Jordan Grafman;Alexis Brice;Edward D. Huey;Murray Grossman;Lauren Bartley;Adaikalavan Ramasamy;Glenda M. Halliday;Raffaele Ferrari;James B. Rowe;Chiara Fenoglio;Benedetta Nacmias;Atik Baborie;Innocenzo Rainero;Adrian Danek;Stefano F. Cappa;Martine Vercelletto;Robert Perneczky;Timothy D. Griffiths;Eric Haan;Isabel Hernández;Manuel Mayhaus;Agustín Ruiz;Carol Dobson-Stone;Lorenzo Pinessi;Ian G. McKeith;Elena Alonso;Nigel J. Cairns;Pau Pastor;Lena E. Hjermind;Silvia Bagnoli;Elizabeth Thompson;Maria Landqvist Waldö;John Collinge;Jonathan D. Rohrer;Luisa Benussi;Panagiotis Alexopoulos;Sabrina Pichler;Gianluigi Forloni;Simon Mead;Sara Ortega-Cubero;Didier Hannequin;Eric M. Wassermann;John B.J. Kwok;Xinghao Yu;Marc Cruts;David M.A. Mann;Mercè Boada;Christer Nilsson;Olivier Piguet,2020-12-01,10.1038/s41598-020-68848-9,32699404,85088385622,2-s2.0-85088385622,0,https://api.elsevier.com/content/abstract/scopus_id/85088385622,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85088385622&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85088385622&origin=inward,PAPD, +,Wassermann,Article,Nature Communications,A phenome-wide association and Mendelian Randomisation study of polygenic risk for depression in UK Biobank,Julien Bryois;Yuri Milaneschi;Maciej Trzaskowski;Gregory E. Crawford;Stefan Herms;Michael J. Owen;Lili Milani;Jakob Grove;Tim B. Bigdeli;Carsten Horn;Nick Craddock;Sara Mostafavi;Marcus Ising;Robert M. Maier;Isaac S. Kohane;Hamdi Mbarek;Mark J. Adams;Jonas Bybjerg-Grauholm;Scott D. Gordon;Francis M. Mondimore;Farnush Farhadi Hassan Kiadeh;Georg Homuth;W. David Hill;Ian Jones;Marie Bækvad-Hansen;Tracy M. Air;Eric Jorgenson;David M. Howard;Enda M. Byrne;Stephan Ripke;Esben Agerbo;Rick Jansen;Donald J. MacIntyre;Thalia C. Eley;Eske M. Derks;Niamh Mullins;Jane Hvarregaard Christensen;Abdel Abdellaoui;Per Hoffmann;Fernando S. Goes;Christine Søholm Hansen;Ian B. Hickie;Dale R. Nyholt;Zoltán Kutalik;Erin C. Dunn;Conor V. Dolan;David M. Hougaard;Lynsey S. Hall;Franziska Degenhardt;Christel M. Middeldorp;Hogni Oskarsson;Wolfgang Maier;Toni Kim Clarke;Yihan Li;Warren W. Kretzschmar;Michel G. Nivard;Baptiste Couvy-Duchesne;Michael Gill;Elisabeth B. Binder;Valentina Escott-Price;Naomi R. Wray;Ian J. Deary;Jonathan R.I. Coleman;Grant W. Montgomery;Thomas F. Hansen;Nese Direk;Penelope A. Lind;Na Cai;Evelin Mihailov;Dean F. MacKinnon;Divya Mehta;Jerome C. Foo;James A. Knowles;Xueyi Shen;Andrew M. McIntosh;Lucía Colodro-Conde;Paul F. O’Reilly;Lisa A. Jones;Manuel Mattheisen;Matthias Nauck;Silviu Alin Bacanu;Henriette N. Buttenschøn;Enrique Castelao;Josef Frank;Hilary K. Finucane;Bernard Ng;Aartjan T.F. Beekman;Julia Kraft;Jouke Jan Hottenga;Gail Davies;Patrick McGrath;Héléna A. Gaspar;Jonathan Marchini;Till F.M. Andlauer;Andreas J. Forstner;Sarah E. Medland;Peter McGuffin,2020-12-01,10.1038/s41467-020-16022-0,32385265,85084721245,2-s2.0-85084721245,0,https://api.elsevier.com/content/abstract/scopus_id/85084721245,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85084721245&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85084721245&origin=inward,RCPE, +,Wassermann,Erratum,Acta Neuropathologica,"Correction to: A nonsynonymous mutation in PLCG2 reduces the risk of Alzheimer’s disease, dementia with Lewy bodies and frontotemporal dementia, and increases the likelihood of longevity (Acta Neuropathologica, (2019), 138, 2, (237-250), 10.1007/s00401-019-02026-8)",Estrella Morenas-Rodríguez;G. M. Halliday;Javier Simon-Sanchez;Jeanne E. Savage;Eloy Rodríguez Rodríguez;Christopher M. Morris;Michael J. Keogh;M. Landqvist Waldö;G. Y.R. Hsiung;A. Ramasamy;Bernard Jeune;I. G. McKeith;Kristel R. van Eijk;A. J. Thomas;S. Mead;R. Ferrari;Sven J. van der Lee;James W. Ironside;J. D. Rohrer;Michael Wagner;D. G. Hernandez;Florian Then Bergh;M. Synofzik;Anna Zettergren;Marc Hulsman;Alberto Lleó;B. Borroni;K. Nilsson;Iris Jansen;Daniel Alcolea;C. M. Morris;A. Baborie;Jonas Mengel-From;Xue Wang;E. D. Huey;L. Benussi;Carmen Lage;Martin Scherer;D. M.A. Mann;C. Cruchaga;Sonia Moreno-Grau;Kaj Blennow;Adelina Orellana;Lyduine E. Collij;M. Serpente;Ingmar Skoog;Itziar de Rojas;G. Forloni;J. C. van Swieten;C. Dobson-Stone;O. Piguet;E. Scarpini;I. R.A. Mackenzie;J. Grafman;Olivia J. Conway;E. Thompson;Miren Zulaica;G. Binetti;A. Padovani;Najada Stringa;D. Galimberti;J. Attems;Henrik Zetterberg;Luca Kleineidam;Olga Pletnikova;N. J. Cairns;Manuel A. Friese;Isabel Hernández;Niccolo Tesi;Samantha L. Strickland;I. Leber;Marianne Nygaard;M. A. Nalls;Ignacio Illán-Gala;Minerva M. Carrasquillo;J. R. Hodges;Juan Fortea;P. R. Schofield;C. Nilsson;Pau Pastor;C. Fenoglio;E. M. Wassermann;Wei Wei;Heinz Wiendl;J. B.J. Kwok;T. D. Griffiths;Jason A. Chen;Bart N.M. van Berckel;P. Pietrini;L. Bartley;R. Ghidoni;Begoña Indakoetxea;R. Blesa;D. Albani;Erik van den Akker;Steffi Riedel-Heller;Till F.M. Andlauer;Monica Diez-Fairen;Nina Beker;Cornelis Blauwendraat,2020-05-01,10.1007/s00401-019-02107-8,31955222,85078622953,2-s2.0-85078622953,0,https://api.elsevier.com/content/abstract/scopus_id/85078622953,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85078622953&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85078622953&origin=inward,JPND,959-962 +,Wassermann,Article,Neuron,Individual Variation in Functional Topography of Association Networks in Youth,Theodore D. Satterthwaite;Daniel H. Wolf;Zaixu Cui;Yong Fan;Russell T. Shinohara;Bart Larsen;Christos Davatzikos;Azeez Adebimpe;Hongming Li;Ruben C. Gur;Aaron F. Alexander-Bloch;Damien A. Fair;Desmond J. Oathes;Matt Cieslak;Danielle S. Bassett;Tyler M. Moore;David R. Roalf;Armin Raznahan;Cedric H. Xia;Graham L. Baum;Raquel E. Gur,2020-04-22,10.1016/j.neuron.2020.01.029,32078800,85081542531,2-s2.0-85081542531,4,https://api.elsevier.com/content/abstract/scopus_id/85081542531,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85081542531&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85081542531&origin=inward,,340-353.e8 +,Wassermann,Review,Neuropsychologia,Competitive and cooperative interactions between medial temporal and striatal learning systems,Joel L. Voss;Michael Freedberg;Andrew C. Toader;Eric M. Wassermann,2020-01-01,10.1016/j.neuropsychologia.2019.107257,31733236,85075204131,2-s2.0-85075204131,0,https://api.elsevier.com/content/abstract/scopus_id/85075204131,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85075204131&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85075204131&origin=inward,CNRM, +,Wassermann,Article,Journal of Intellectual Disability Research,"Concordance of the Vineland Adaptive Behavior Scales, second and third editions",V. H. Bal;C. Chlebowski;C. Farmer;D. Adedipe;A. Thurm,2020-01-01,10.1111/jir.12691,31657503,85074661247,2-s2.0-85074661247,1,https://api.elsevier.com/content/abstract/scopus_id/85074661247,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85074661247&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85074661247&origin=inward,NICHD,18-26 +,Wassermann,Note,Muscle and Nerve,Optimizing Telemedicine to Facilitate ALS Clinical Trials,Michael T. Pulley;James D. Berr;Zachary Simmons;Sabrina Paganon;Raghav Govindarajan,2020-01-01,10.1002/mus.26921,32415876,85085750634,2-s2.0-85085750634,0,https://api.elsevier.com/content/abstract/scopus_id/85085750634,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85085750634&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85085750634&origin=inward,, +,Wassermann,Article,PLoS ONE,Identifying site- and stimulation-specific TMS-evoked EEG potentials using a quantitative cosine similarity metric,Jack A. Reeves;Michael Freedberg;Kareem A. Zaghloul;Eric M. Wassermann;Sara J. Hussain,2020-01-01,10.1371/journal.pone.0216185,31929531,85077765373,2-s2.0-85077765373,1,https://api.elsevier.com/content/abstract/scopus_id/85077765373,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85077765373&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85077765373&origin=inward,, +,Wassermann,Conference Paper,IFMBE Proceedings,A Novel Technique to Trigger High Beta and Low Gamma Activity in Patients with Schizophrenia,Eric Wassermann;Ovidiu C. Banea;Alec Shaw;Sigurjón B. Stefansson;Eysteinn Ívarsson;Paolo Gargiulo;Aníta Ósk Georgsdóttir;Aron D. Jónasson;Brynja B. Magnúsdóttir,2020-01-01,10.1007/978-3-030-31635-8_129,,85075863981,2-s2.0-85075863981,0,https://api.elsevier.com/content/abstract/scopus_id/85075863981,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85075863981&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85075863981&origin=inward,,1064-1070 +,Wassermann,Article,Biological Psychiatry,Reciprocal Copy Number Variations at 22q11.2 Produce Distinct and Convergent Neurobehavioral Impairments Relevant for Schizophrenia and Autism Spectrum Disorder,Maria Jalbrzikowski;Gerhard Helleman;Lyle Kingsbury;Ariana Vajdi;Armin Raznahan;Carrie E. Bearden;Rachel K. Jonas;Laura Pacheco Hansen;Amy Lin;Leila Kushan-Wells,2020-08-01,10.1016/j.biopsych.2019.12.028,32143830,85081326717,2-s2.0-85081326717,1,https://api.elsevier.com/content/abstract/scopus_id/85081326717,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85081326717&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85081326717&origin=inward,NIMH,260-272 +,Wassermann,Review,Neuromodulation,"Transcranial Magnetic Stimulation for Pain, Headache, and Comorbid Depression: INS-NANS Expert Consensus Panel Review and Recommendation",Eric Wassermann;Prasad Shirvalkar;Brian Kopell;Albert Leung;Robert Levy;Richard Bermudes;Michael Vaninetti;Robert Chen;Lawrence Poree;Joshua Kuluva,2020-01-01,10.1111/ner.13094,32212288,85083372475,2-s2.0-85083372475,0,https://api.elsevier.com/content/abstract/scopus_id/85083372475,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85083372475&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85083372475&origin=inward,, +,Wassermann,Article,Journal of Child Psychology and Psychiatry and Allied Disciplines,Sex differences in scores on standardized measures of autism symptoms: a multisite integrative data analysis,Stelios Georgiades;Young Shin Kim;Amy N. Esler;Cristan A. Farmer;Sheila S. Ghods;Stephen M. Kanne;Catherine Lord;Amy M. Shui;Somer L. Bishop;Audrey Thurm;Aaron J. Kaat,2020-01-01,10.1111/jcpp.13242,,85083650031,2-s2.0-85083650031,1,https://api.elsevier.com/content/abstract/scopus_id/85083650031,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85083650031&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85083650031&origin=inward,, +,Wassermann,Conference Paper,IFMBE Proceedings,P50 and P300 Event Related Potentials in Patients with Schizophrenia Recorded from High-Density EEG,Viktor D. Jónasson;Brynja B. Magnusdóttir;Ovidiu C. Banea;Eric Wassermann;Rún Friðriksdóttir;Sara Marcu;Eysteinn Ívarsson;Paolo Gargiulo;Elena Pegolo;Magnús Haraldsson;Aron D. Jónasson,2020-01-01,10.1007/978-3-030-31635-8_130,,85075900508,2-s2.0-85075900508,0,https://api.elsevier.com/content/abstract/scopus_id/85075900508,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85075900508&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85075900508&origin=inward,,1071-1077 +,Wassermann,Article,Scientific Reports,Genetic variation across RNA metabolism and cell death gene networks is implicated in the semantic variant of primary progressive aphasia,Bruce L. Miller;M. Boada;Natasha Z.R. Steele;G. M. Halliday;J. Collinge;L. Pinessi;G. Y.R. Hsiung;A. Ramasamy;P. Alexopoulos;William W. Seeley;A. J. Thomas;S. Mead;J. B. Rowe;A. Ruiz;A. Lleó;J. D. Rohrer;D. G. Hernandez;S. Ortega-Cubero;M. C. Tierney;John Hardy;P. St George-Hyslop;Sergio E. Baranzini;B. Borroni;K. Nilsson;E. Alonso;J. Q. Trojanowski;Patrick Lewis;C. M. Morris;Luke W. Bonham;A. Baborie;A. Danek;E. Rubino;E. D. Huey;L. Benussi;D. M.A. Mann;C. Cruchaga;Ethan G. Geier;E. Haan;A. Kurz;I. Rainero;Claudia Manzoni;V. M. Van Deerlin;M. Serpente;R. Perneczky;G. Forloni;J. Uphill;Zachary A. Miller;C. Dobson-Stone;O. Piguet;C. Razquin;E. Scarpini;Parastoo Momeni;I. R.A. Mackenzie;J. Grafman;J. van der Zee;Jennifer S. Yokoyama;Maria Luisa Gorno-Tempini;E. Thompson;Rahul S. Desikan;G. Binetti;Raffaele Ferrari;A. Padovani;D. Galimberti;J. Attems;M. Grossman;N. J. Cairns;Iris Broce;P. Pastor;Celeste M. Karch;Christopher P. Hess;E. Jaros;I. Leber;M. A. Nalls;J. R. Hodges;Natalie L. Wen;D. Hannequin;M. Landqvist Waldö;P. R. Schofield;J. Clarimón;C. Nilsson;C. Fenoglio;G. Rossi;E. M. Wassermann;E. Rogaeva;J. Diehl-Schmid;J. B.J. Kwok;T. D. Griffiths;G. Giaccone;C. Van Broeckhoven;P. Pietrini;S. F. Cappa;L. Bartley;R. Ghidoni;M. Cruts;R. Blesa;D. Albani;F. Tagliavini;J. C.M. Schlachetzki;I. Hernández;I. G. McKeith,2019-12-01,10.1038/s41598-019-46415-1,31350420,85069717816,2-s2.0-85069717816,0,https://api.elsevier.com/content/abstract/scopus_id/85069717816,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85069717816&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85069717816&origin=inward,RSNA, +,Wassermann,Article,Nature Communications,Integrated analysis of environmental and genetic influences on cord blood DNA methylation in new-borns,Julien Bryois;Sonja Entringer;Jesper Krogh;Maciej Trzaskowski;Siri E. Håberg;Marius Lahti-Pulkkinen;Gregory E. Crawford;Stefan Herms;Jakob Grove;Tim B. Bigdeli;Carsten Horn;Nick Craddock;Hannele Laivuori;Shareefa Dalvie;Marcus Ising;Robert M. Maier;Kieran J. O’Donnell;Isaac S. Kohane;Eero Kajantie;Mark J. Adams;Jonas Bybjerg-Grauholm;Scott D. Gordon;Pathik D. Wadhwa;Farnush Farhadi Hassan Kiadeh;Georg Homuth;Marie Bækvad-Hansen;Tracy M. Air;Wenche Nystad;Eric Jorgenson;Enda M. Byrne;Stephan Ripke;Esben Agerbo;Rick Jansen;Donald J. MacIntyre;Thalia C. Eley;Eske M. Derks;Pia M. Villa;Jane Hvarregaard Christensen;Abdel Abdellaoui;Ivan Kondofersky;Per Hoffmann;Meaghan J. Jones;Fernando S. Goes;Heather J. Zar;Christine Søholm Hansen;Ian B. Hickie;Zoltán Kutalik;Erin C. Dunn;Conor V. Dolan;David M. Hougaard;Lynsey S. Hall;Franziska Degenhardt;Nikola S. Müller;Michael S. Kobor;Toni Kim Clarke;Warren W. Kretzschmar;Yihan Li;Stephanie J. London;Baptiste Couvy-Duchesne;Michael Gill;Douglas H.R. Blackwood;Valentina Escott-Price;Naomi R. Wray;Ian J. Deary;Jonathan R.I. Coleman;Michael J. Meaney;Thomas F. Hansen;Nese Direk;Penelope A. Lind;Na Cai;Dean F. MacKinnon;Rebecca M. Reynolds;James A. Knowles;Dan J. Stein;Lucía Colodro-Conde;Gökçen Eraslan;Manuel Mattheisen;Nastassja Koen;Silviu Alin Bacanu;Henriette N. Buttenschøn;Enrique Castelao;Karestan C. Koenen;Josef Frank;David T.S. Lin;Hilary K. Finucane;Julie L. MacIsaac;Darina Czamara;Aartjan T.F. Beekman;Julia Kraft;Fabian J. Theis;Jouke Jan Hottenga;Esa Hämäläinen;Gail Davies;Héléna A. Gaspar;Till F.M. Andlauer;Jari Lahti;Elika Garg;Andreas J. Forstner;Christian M. Page;Claudia Buss,2019-12-01,10.1038/s41467-019-10461-0,31186427,85067229888,2-s2.0-85067229888,11,https://api.elsevier.com/content/abstract/scopus_id/85067229888,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85067229888&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85067229888&origin=inward,SAMRC, +,Wassermann,Article,Neurology,Motor cortex inhibition and modulation in children with ADHD,Paul S. Horn;Kathryn Hirabayashi;Stewart H. Mostofsky;Deanna Crocetti;Ernest V. Pedapati;Eric M. Wassermann;David A. Huddleston;Donald L. Gilbert;Steve W. Wu,2019-08-06,10.1212/WNL.0000000000007899,31315973,85071069777,2-s2.0-85071069777,2,https://api.elsevier.com/content/abstract/scopus_id/85071069777,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85071069777&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85071069777&origin=inward,TAA,E599-E610 +,Wassermann,Article,eNeuro,Persistent enhancement of hippocampal network connectivity by parietal rTMS is reproducible,Jack A. Reeves;Joel L. Voss;Molly S. Hermiller;Michael Freedberg;Eric M. Wassermann;Andrew C. Toader,2019-01-01,10.1523/ENEURO.0129-19.2019,31591137,85073489418,2-s2.0-85073489418,2,https://api.elsevier.com/content/abstract/scopus_id/85073489418,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85073489418&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85073489418&origin=inward,NINDS, +,Wassermann,Article,Neuromodulation,Optimizing Hippocampal-Cortical Network Modulation via Repetitive Transcranial Magnetic Stimulation: A Dose-Finding Study Using the Continual Reassessment Method,Eunhee Kim;Jack A. Reeves;Joel L. Voss;Dietrich Haubenberger;Molly S. Hermiller;Michael Freedberg;Eric M. Wassermann;Ying Kuen Cheung;Andrew C. Toader,2019-01-01,10.1111/ner.13052,31667947,85074771625,2-s2.0-85074771625,0,https://api.elsevier.com/content/abstract/scopus_id/85074771625,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85074771625&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85074771625&origin=inward,NIMH, +,Wassermann,Article,Cancer Epidemiology Biomarkers and Prevention,"Genetic Variants in the 9p21.3 Locus Associated with Glioma Risk in Children, Adolescents, and Young Adults: A case–control study",Christina M. Hultman;David M. Hougaard;Anna M. Dahlin;Jonas Bybjerg-Grauholm;Beatrice Melin;Carl Wibom;Ulrika Andersson;Ulf Hjalmars;Isabelle Deltour;Anna K. Kahler;Robert Karlsson,2019-01-01,10.1158/1055-9965.EPI-18-1026,31040135,85068755478,2-s2.0-85068755478,0,https://api.elsevier.com/content/abstract/scopus_id/85068755478,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85068755478&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85068755478&origin=inward,VR,1252-1258 +,Wassermann,Article,Nature Genetics,Discovery of the first genome-wide significant risk loci for attention deficit/hyperactivity disorder,Richard J.L. Anney;Herbert Royers;Timothy Poterba;Alysa E. Doyle;Ana Miranda;Joseph Biederman;Michael J. Owen;Astrid Dempfle;Olafur O. Gudmundsson;Jakob Grove;Elise B. Robinson;Mads V. Hollegaard;Tobias J. Banaschewski;Jobst Meyer;Jesper Buchhave Poulsen;Jonas Bybjerg-Grauholm;Stefan Johansson;Carsten Bøcker Pedersen;Marie Bækvad-Hansen;Stephan Ripke;Esben Agerbo;Christine S. Hansen;Amaia Hervas;Jacqueline I. Goldstein;Claiton Bau;Peter Holmans;Raymond K. Walters;Gísli Baldursson;T. Trang Nguyen;Jennifer Moran;Ashley Dumont;Joanna Martin;Maria Jesús Arranz;Mara Hutz;Jasmin Romanos;Tobias J. Renner;Hailiang Huang;Lindsey Kent;Mads Engel Hauberg;Sarah Hohmann;Duncan S. Palmer;Aisling Mulligan;James J. McGough;Freimer Nelson;Ziarih Hawi;Fernando Mulas;Nicholas G. Martin;Claire Churchhouse;Marcella Rietschel;Gerd Lehmkuhl;Marianne Giørtz Pedersen;Nanda Lambregts-Rommelse;Alice Charach;Michael Gill;Rich Belliveau;Daniel P. Howrigan;Manuel Föcker;Kimberly Chambert;Margaret J. Wright;Özgür Albayrak;Robert D. Oades;Hyejung Won;Jennifer Crosbie;Eugenio Grevet;Michael C. O’Donovan;Beate Herpertz-Dahlmann;Frank Middletion;F. Kyle Satterstrom;Christine Freitag;Marta Ribasés;Jan K. Buitelaar;Sandra K. Loo;Nicholas Eriksson;Marcel Romanos;Haukur Palmason;Josep Antoni Ramos-Quiroga;Richard P. Ebstein;Sarah Kittel-Schneider;Michael Gandal;Ditte Demontis;Manuel Mattheisen;G. Bragi Walters;Thomas D. Als;Alicia R. Martin;Abel Ickowitz;Eric Mick;Nina Roth Mota;Christine Stevens;Olga Rivero;Hreinn Stefansson;Felecia Cerrato;Miguel Casas;Anke Hinney;Josephine Elia;Johannes Hebebrand;Aribert Rothenberger;Jonatan Pallesen;Julian B. Maller;Patrick Turley;Katrina L. Grasby,2019-01-01,10.1038/s41588-018-0269-7,30478444,85057436335,2-s2.0-85057436335,258,https://api.elsevier.com/content/abstract/scopus_id/85057436335,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85057436335&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85057436335&origin=inward,H2020,63-75 +,Wassermann,Article,Biological Psychiatry: Cognitive Neuroscience and Neuroimaging,Association of Whole-Genome and NETRIN1 Signaling Pathway–Derived Polygenic Risk Scores for Major Depressive Disorder and White Matter Microstructure in the UK Biobank,Julien Bryois;Yuri Milaneschi;Jesper Krogh;Stephen M. Lawrie;Maciej Trzaskowski;Gregory E. Crawford;Stefan Herms;Michael J. Owen;Lili Milani;Jakob Grove;Tim B. Bigdeli;Carsten Horn;Miruna C. Barbu;Nick Craddock;Sara Mostafavi;Mandy Johnstone;Marcus Ising;Robert M. Maier;Isaac S. Kohane;Hamdi Mbarek;Chris S. Haley;Mark J. Adams;Jonas Bybjerg-Grauholm;Scott D. Gordon;Francis M. Mondimore;Farnush Farhadi Hassan Kiadeh;Georg Homuth;Marie Bækvad-Hansen;Tracy M. Air;Eric Jorgenson;Enda M. Byrne;Stephan Ripke;Esben Agerbo;Rick Jansen;Donald J. MacIntyre;Thalia C. Eley;Eske M. Derks;Niamh Mullins;Jane Hvarregaard Christensen;Abdel Abdellaoui;Per Hoffmann;Fernando S. Goes;Christine Søholm Hansen;Ian B. Hickie;Dale R. Nyholt;Zoltán Kutalik;Erin C. Dunn;Conor V. Dolan;David M. Hougaard;Lynsey S. Hall;Franziska Degenhardt;Christel M. Middeldorp;Hogni Oskarsson;Wolfgang Maier;Toni Kim Clarke;Yihan Li;Warren W. Kretzschmar;Michel G. Nivard;Baptiste Couvy-Duchesne;Michael Gill;Douglas H.R. Blackwood;Elisabeth B. Binder;Valentina Escott-Price;Naomi R. Wray;Ian J. Deary;Jonathan R.I. Coleman;Grant W. Montgomery;Thomas F. Hansen;Nese Direk;Penelope A. Lind;Na Cai;Evelin Mihailov;Dean F. MacKinnon;Divya Mehta;James A. Knowles;Xueyi Shen;Jude Gibson;Simon R. Cox;Lucía Colodro-Conde;Manuel Mattheisen;Matthias Nauck;Silviu Alin Bacanu;Henriette N. Buttenschøn;Enrique Castelao;Josef Frank;Hilary K. Finucane;Bernard Ng;Aartjan T.F. Beekman;Julia Kraft;Yanni Zeng;Paul F. O'Reilly;Jouke Jan Hottenga;Gail Davies;Patrick McGrath;Héléna A. Gaspar;Jonathan Marchini;Till F.M. Andlauer;Andreas J. Forstner;Sarah E. Medland;Peter McGuffin,2019-01-01,10.1016/j.bpsc.2018.07.006,,85052912914,2-s2.0-85052912914,6,https://api.elsevier.com/content/abstract/scopus_id/85052912914,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85052912914&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85052912914&origin=inward,RCPE,91-100 +,Wassermann,Article,Molecular Psychiatry,Bipolar multiplex families have an increased burden of common risk variants for psychiatric disorders,Srdjan Djurovic;Matthew Flickinger;Sarah E. Bergen;Maciej Trzaskowski;Anders M. Dale;Cristiana Cruceanu;Peter A. Holmans;Erlend Bøen;Huda Akil;Michael Bauer;Stefan Herms;Monika Budde;Fermin Perez Perez;Fabian Streit;J. Raymond DePaulo;Yunpeng Wang;Simone de Jong;Yolanda de Diego-Otero;Jonas Bybjerg-Grauholm;Carsten Bøcker Pedersen;Francisco J. Cabaleiro Fabeiro;Jens Treutlein;Marie Bækvad-Hansen;Nelson B. Freimer;Francisco del Río Noriega;Liam Abbott;Stephan Ripke;Esben Agerbo;Claudia Giambartolomei;Diego Albani;Christiaan A. de Leeuw;Verneri Antilla;Per Hoffmann;Katrin Gade;Adebayo Anjorin;Jurgen Del-Favero;Vassily Trubetskoy;Gerome Breen;Tune H. Pers;Ashley Dumont;Liz Forty;Marco Boks;Jose Guzman-Parra;Margit Burmeister;Maria José González;Christine Fraser;Louise Frisén;Andrew McQuillin;Guillermo Orozco Diaz;Jack D. Barchas;Franziska Degenhardt;Claire Churchhouse;William Byerley;Diane Gage;Manolis Kogevinas;Tatiana M. Foroud;Jesus Haro González;Stefanie Heilmann-Heimbach;William Coryell;Torbjørn Elvsåshagen;James Boocock;Toni Kim Clarke;William Bunney;Danfeng Chen;Ney Alliey-Rodriguez;Valentina Escott-Price;Kimberly Chambert;Jonathan R.I. Coleman;Richard Belliveau;Piotr M. Czerski;Jennifer M.Whitehead Pavlides;Amanda L. Dobbyn;Stephanie H. Witt;Judith A. Badner;Chun Chieh Fan;Jerome C. Foo;Stacy Steinberg;Julie Garnham;Manuel Mattheisen;Susana Gil Flores;Miquel Casas;Josef Frank;Thomas D. Als;Jana Strohmaier;Pablo Cervantes;Nicholas Bass;Berta Moreno-Küstner;Eli A. Stahl;Sascha B. Fischer;David W. Craig;Felecia Cerrato;Alexander W. Charney;Héléna A. Gaspar;Sven Cichon;Swapnil Awasthi;Till F.M. Andlauer;Georg Auburger;Andreas J. Forstner,2019-01-01,10.1038/s41380-019-0558-2,31712721,85075169356,2-s2.0-85075169356,1,https://api.elsevier.com/content/abstract/scopus_id/85075169356,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85075169356&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85075169356&origin=inward,DFG, +,Wassermann,Article,Database,Large expert-curated database for benchmarking document similarity detection in biomedical literature search,William Bradshaw;Brian P. Dalrymple;Olivier Terrier;Sandeep C. Sabnis;Neil Tuttle;Daniel Prieto;Oliver J. Gurney-Champion;Nitin Kumar;David J. Harvey;Aik Choon Tan;Yael Gelfer;Christopher McCrum;Robert Siebers;Sebastiaan Werten;Kok H. Tan;Long Yang;Radu Tamaian;Pawel Miotla;Nicholas A. Kurniawan;Karen A. Boehme;Thilo Muth;Zarrin Basharat;Hyemin Han;Dominik G. Grimm;Mark Bleackley;Thomas Liehr;Darius Widera;Ene Choo Tan;Santhilal Subhash;Marco Tofani;Adrian Meule;Johan Bengtsson-Palme;Joonas H. Kauppila;Raman Dhariwal;Mark J. van Raaij;Marco Cascella;Vincent D. Costa;Peter Brown;Willy A. Flegel;Olivier Pourret;Yaoqi Zhou;Lukasz Kurgan;Douglas P. Gladue;Natalia Echeverría;Antoine Danchin;Walter Fierz;Tuomas Eerola;Martin S. Staege;Brett Nixon;Evangelos Evangelou;Zuzanna Bukowy-Bieryllo;Carl S. Goodyear;Hari P. Devkota;Hannes Klump;Farid Rahimi;Henrik Nilsson;Paul Perco;Cong Cong Yin;Barthelemy Diouf;Said E.D.R. Amer;Grace Ng;Felix J. Hüttner;Arun R. Chandrasekaran;Peter Brenneisen;Páraic O. Cuív;Felix Ehret;Luca G. Campana;Chongxing Zhang;Tomislav Cernava;Giuseppe Riva;James A.L. Brown;Brooke A. Ammerman;Andy W.K. Yeung;Junpeng Zhang;Konstantinos Voskarides;Oliver Blanck;Mohamed A. El-Esawi;Xiaolei Zhang;Fabian Filipp;Paul A. Cobine;Pragashnie Govender;Marcus D. Hartmann;Francesco Marinello;Swapna V. Daulatabad;Carlos O. Sorzano;Alan W.C. Liew;Wenfeng Xia;Koichi Ogami;Taeok Bae;Simon S. Smith;Ruud P.M. Dings;Zhanwu Dai;Gabriel M.F. Almeida;David Lalaouna;Michael S. Engel;Ken Honjo;Zhongheng Zhang;Oliver Bosch;Hannes Sallmon;Elvis Martis,2019-01-01,10.1093/database/baz085,,85082592913,2-s2.0-85082592913,0,https://api.elsevier.com/content/abstract/scopus_id/85082592913,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85082592913&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85082592913&origin=inward,,1-67 +,Zarate,Review,Bipolar Disorders,What is the optimal serum level for lithium in the maintenance treatment of bipolar disorder? A systematic review and recommendations from the ISBD/IGSLI Task Force on treatment with lithium,Willem A. Nolen;René E. Nielsen;Gin S. Malhi;Rasmus W. Licht;Carlos Zarate;Eduard Vieta;Ralph W. Kupka;Allan H. Young;Mauricio Tohen;Ross J. Baldessarini;Emanuel Severus,2019-01-01,10.1111/bdi.12805,31112628,85067871028,2-s2.0-85067871028,17,https://api.elsevier.com/content/abstract/scopus_id/85067871028,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85067871028&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85067871028&origin=inward,NIHR,394-409 \ No newline at end of file diff --git a/data/interim/output_file.csv b/data/interim/output_file.csv new file mode 100644 index 0000000..279ebce --- /dev/null +++ b/data/interim/output_file.csv @@ -0,0 +1,1223 @@ +Title,PI,Authors,Date,Cited-By Count,Source Title,Page Range,DOI,PubMed ID,Scopus ID,EID,Type,Funding Agency,Abstract Link,Scopus Link,Cited-By Link +Multiple Brain Networks Mediating Stimulus-Pain Relationships in Humans,Atlas,Martin A. Lindquist;Lauren Y. Atlas;Stephan Geuter;Leonie Koban;Liane Schmidt;Tor D. Wager;Anjali Krishnan;Mathieu Roy;Elizabeth A. Reynolds Losin,2020-06-01,0,"Cerebral cortex (New York, N.Y. : 1991)",4204-4219,10.1093/cercor/bhaa048,32219311,85085904590,2-s2.0-85085904590,Article,,https://api.elsevier.com/content/abstract/scopus_id/85085904590,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85085904590&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85085904590&origin=inward +Pain-Evoked Reorganization in Functional Brain Networks,Atlas,Bin Hu;Marieke Jepma;Pavel Goldstein;Lauren Y. Atlas;Weihao Zheng;Zhijun Yao;Liane Schmidt;Choong Wan Woo;Tor D. Wager;Anjali Krishnan;Mathieu Roy,2020-05-14,0,Cerebral Cortex,2804-2822,10.1093/cercor/bhz276,31813959,85084961318,2-s2.0-85084961318,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85084961318,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85084961318&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85084961318&origin=inward +Flawed methodology undermines conclusions about opioid-induced pleasure: implications for psychopharmacology,Atlas,Lauren Y. Atlas;Siri Leknes,2020-03-01,1,British Journal of Anaesthesia,e29-e33,10.1016/j.bja.2019.10.006,31753290,85079089444,2-s2.0-85079089444,Letter,ERC,https://api.elsevier.com/content/abstract/scopus_id/85079089444,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85079089444&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85079089444&origin=inward +The Confidence Database,Atlas,Marcin Koculak;Jiwon Yeon;Marios G. Philiastides;Julian Matthews;Troy C. Dildine;Justin Kantner;Liang Luo;Futing Zou;Xinming Xu;Gerit Pfuhl;Marine Hainguerlot;Vincent de Gardelle;Kobe Desender;Michael Pereira;Manuel Rausch;Başak Akdoğan;William T. Adler;Shuo Wang;Zuzanna Skóra;Peter D. Kvam;Marta Siedlecka;Audrey Mazancieux;Karen Davranche;Jérôme Sackur;Xiao Hu;Indrit Bègue;Matt Jaquiery;Denis O’Hora;Qun Ye;Gabriel Reyes;Medha Shekhar;Kit S. Double;Alan L.F. Lee;Ariel Zylberberg;Chien Ming Lo;Nadia Haddara;Lauren Y. Atlas;Fernanda Prieto;Antonio Martin;Torin K. Clark;Rachel N. Denison;Tricia X.F. Seow;Brian Maniscalco;Ji Won Bang;Andrey Chetverikov;David Soto;Iñaki Iturrate;Gabriel Weindel;Mahiko Konishi;Christina Koß;Thibault Gajdos;Maxine T. Sherman;Maël Lebreton;Sai Sun;Karolina M. Lempert;Elisa Filevich;Daniel M. Merfeld;Christoph T. Weidemann;Marion Rouault;Fuat Balcı;Kaitlyn Fallow;Damian P. Birney;Polina Arbuzova;Nathan Faivre;Dobromir Rahnev;Tzu Yu Hsu;Eleanor R. Palser;Joshua Calder-Travis;Borysław Paulewicz;Sabina Gherman;Sébastien Massoni;Jeroen J.A. van Boxtel;Samuel Recht;Saeedeh Sadeghi;Michał Wierzchoń;Chen Song;Timothy F. Brady;Sze Chai Kwok;Regan M. Gallagher;Caroline Peters;David Aguilar-Lleyda;Yalçın A. Duyan;Jason Samaha,2020-03-01,1,Nature Human Behaviour,317-325,10.1038/s41562-019-0813-1,32015487,85079153540,2-s2.0-85079153540,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85079153540,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85079153540&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85079153540&origin=inward +"Distinguishing pain from nociception, salience, and arousal: How autonomic nervous system activity can improve neuroimaging tests of specificity",Atlas,Lauren Y. Atlas;In Seon Lee;Elizabeth A. Necka,2020-01-01,1,NeuroImage,,10.1016/j.neuroimage.2019.116254,31604122,85073474430,2-s2.0-85073474430,Article,NCCIH,https://api.elsevier.com/content/abstract/scopus_id/85073474430,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85073474430&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85073474430&origin=inward +The need for diversity in research on facial expressions of pain,Atlas,Lauren Y. Atlas;Troy C. Dildine,2019-08-01,1,Pain,1901-1902,10.1097/j.pain.0000000000001593,31335658,85070462787,2-s2.0-85070462787,Letter,,https://api.elsevier.com/content/abstract/scopus_id/85070462787,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85070462787&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85070462787&origin=inward +Reply to Zaman et al.,Atlas,Lauren Y. Atlas;Dominik Mischkowski,2019-06-01,0,Pain,1485-1486,10.1097/j.pain.0000000000001572,31107419,85066951542,2-s2.0-85066951542,Letter,NIH,https://api.elsevier.com/content/abstract/scopus_id/85066951542,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85066951542&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85066951542&origin=inward +Pain or nociception? Subjective experience mediates the effects of acute noxious heat on autonomic responses - Corrected and republished,Atlas,Dominik Mischkowski;Troy C. Dildine;Lauren Y. Atlas;Esther E. Palacios-Barrios;Lauren Banker,2019-06-01,3,Pain,1469-1481,10.1097/j.pain.0000000000001573,31107415,85066955792,2-s2.0-85066955792,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85066955792,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85066955792&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85066955792&origin=inward +"How instructions shape aversive learning: higher order knowledge, reversal learning, and the role of the amygdala",Atlas,Lauren Y. Atlas,2019-04-01,5,Current Opinion in Behavioral Sciences,121-129,10.1016/j.cobeha.2018.12.008,,85060104256,2-s2.0-85060104256,Review,NCCIH,https://api.elsevier.com/content/abstract/scopus_id/85060104256,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85060104256&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85060104256&origin=inward +Is placebo analgesia for heat pain a sensory effect? An exploratory study on minimizing the influence of response bias,Atlas,Claire M. Laubacher;Lauren Y. Atlas;Emily A. Richards;Matthew Grossman;Laura K. Case;M. Catherine Bushnell;Scott Parker,2019-01-01,0,Neurobiology of Pain,,10.1016/j.ynpai.2018.09.001,,85064096377,2-s2.0-85064096377,Article,NCCIH,https://api.elsevier.com/content/abstract/scopus_id/85064096377,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85064096377&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85064096377&origin=inward +Large expert-curated database for benchmarking document similarity detection in biomedical literature search,Atlas,Elvis Martis;Hyemin Han;Olivier Pourret;Thilo Muth;Yael Gelfer;Cong Cong Yin;Brian P. Dalrymple;Kok H. Tan;Henrik Nilsson;Konstantinos Voskarides;Vincent D. Costa;Alan W.C. Liew;Simon S. Smith;David Lalaouna;Junpeng Zhang;Francesco Marinello;Oliver Bosch;William Bradshaw;Gabriel M.F. Almeida;Long Yang;Brooke A. Ammerman;Chongxing Zhang;Antoine Danchin;Pawel Miotla;Barthelemy Diouf;Adrian Meule;Natalia Echeverría;Ken Honjo;Grace Ng;Mohamed A. El-Esawi;Paul Perco;Zhongheng Zhang;Hannes Klump;Zarrin Basharat;Felix J. Hüttner;Brett Nixon;Luca G. Campana;Said E.D.R. Amer;Tuomas Eerola;Arun R. Chandrasekaran;Páraic O. Cuív;Aik Choon Tan;Dominik G. Grimm;Lukasz Kurgan;Neil Tuttle;Nicholas A. Kurniawan;Thomas Liehr;Robert Siebers;Hari P. Devkota;Ruud P.M. Dings;Sebastiaan Werten;Marco Cascella;Peter Brenneisen;David J. Harvey;Pragashnie Govender;Felix Ehret;James A.L. Brown;Christopher McCrum;Evangelos Evangelou;Nitin Kumar;Karen A. Boehme;Sandeep C. Sabnis;Olivier Terrier;Andy W.K. Yeung;Wenfeng Xia;Darius Widera;Raman Dhariwal;Oliver Blanck;Taeok Bae;Xiaolei Zhang;Zhanwu Dai;Koichi Ogami;Marcus D. Hartmann;Martin S. Staege;Mark J. van Raaij;Daniel Prieto;Farid Rahimi;Zuzanna Bukowy-Bieryllo;Marco Tofani;Ene Choo Tan;Oliver J. Gurney-Champion;Santhilal Subhash;Swapna V. Daulatabad;Michael S. Engel;Radu Tamaian;Joonas H. Kauppila;Carlos O. Sorzano;Paul A. Cobine;Mark Bleackley;Yaoqi Zhou;Walter Fierz;Giuseppe Riva;Hannes Sallmon;Fabian Filipp;Douglas P. Gladue;Carl S. Goodyear;Peter Brown;Johan Bengtsson-Palme;Tomislav Cernava;Willy A. Flegel,2019-01-01,0,Database,1-67,10.1093/database/baz085,,85082592913,2-s2.0-85082592913,Article,,https://api.elsevier.com/content/abstract/scopus_id/85082592913,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85082592913&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85082592913&origin=inward +"The Neuroscience of Pain: Biobehavioral, Developmental, and Psychosocial Mechanisms Relevant to Intervention Targets",Atlas,Lauren Y. Atlas;Mustafa alʼAbsi,2018-11-01,1,Psychosomatic medicine,788-790,10.1097/PSY.0000000000000642,30395102,85056287158,2-s2.0-85056287158,Editorial,,https://api.elsevier.com/content/abstract/scopus_id/85056287158,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85056287158&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85056287158&origin=inward +Anticipatory Effects on Perceived Pain: Associations With Development and Anxiety,Atlas,Troy C. Dildine;Ellen Leibenluft;Daniel S. Pine;Kenneth E. Towbin;Esther E. Palacios-Barrios;Rany Abend;Julia S. Feldman;Lauren Y. Atlas;Andrea L. Gold;Kalina J. Michalska,2018-11-01,1,Psychosomatic medicine,853-860,10.1097/PSY.0000000000000608,29851868,85056253946,2-s2.0-85056253946,Article,NCCIH,https://api.elsevier.com/content/abstract/scopus_id/85056253946,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85056253946&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85056253946&origin=inward +Pain Neuroimaging in Humans: A Primer for Beginners and Non-Imagers,Atlas,Lauren Y. Atlas;Tim V. Salomons;Massieh Moayedi,2018-09-01,5,Journal of Pain,961.e1-961.e21,10.1016/j.jpain.2018.03.011,29608974,85048799279,2-s2.0-85048799279,Article,IASP,https://api.elsevier.com/content/abstract/scopus_id/85048799279,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85048799279&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85048799279&origin=inward +Implications of placebo and nocebo effects for clinical practice: Expert consensus,Atlas,Claudia Carvalho;Paul Enck;Regine Klinger;Andrea W.M. Evers;Tor D. Wager;Katja Weimer;Jeremy Howick;Ulrike Bingel;John M. Kelley;Irving Kirsch;Jens Gaab;Karin Meissner;Ted J. Kaptchuk;Marco Annoni;Amir Raz;Fabrizio Benedetti;Ben Colagiuri;Luana Colloca;Bruce E. Wampold;Andrew L. Geers;Lene Vase;Charlotte Blease;Kaya J. Peerdeman;Christian Büchel;Vitaly Napadow;Lauren Y. Atlas;Winfried Rief;Katja Wiech;Alia J. Crum;Karin B. Jensen,2018-08-01,77,Psychotherapy and Psychosomatics,204-210,10.1159/000490354,29895014,85048528421,2-s2.0-85048528421,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85048528421,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85048528421&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85048528421&origin=inward +Pain or nociception? Subjective experience mediates the effects of acute noxious heat on autonomic responses,Atlas,Dominik Mischkowski;Troy C. Dildine;Lauren Y. Atlas;Esther E. Palacios-Barrios;Lauren Banker,2018-04-01,9,Pain,699-711,10.1097/j.pain.0000000000001132,29251663,85053901804,2-s2.0-85053901804,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85053901804,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85053901804&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85053901804&origin=inward +Prepared stimuli enhance aversive learning without weakening the impact of verbal instructions,Atlas,Lauren Y. Atlas;Elizabeth A. Phelps,2018-02-01,9,Learning and Memory,100-104,10.1101/lm.046359.117,29339561,85041221624,2-s2.0-85041221624,Article,NCCIH,https://api.elsevier.com/content/abstract/scopus_id/85041221624,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85041221624&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85041221624&origin=inward +The Role of Social and Interpersonal Factors in Placebo Analgesia,Atlas,Lauren Y. Atlas;Elizabeth A. Necka,2018-01-01,4,International Review of Neurobiology,161-179,10.1016/bs.irn.2018.01.006,29681323,85042655026,2-s2.0-85042655026,Chapter,,https://api.elsevier.com/content/abstract/scopus_id/85042655026,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85042655026&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85042655026&origin=inward +Intention to learn modulates the impact of reward and punishment on sequence learning,Baker,Chris I. Baker;Adam Steel;Charlotte J. Stagg,2020-12-01,0,Scientific Reports,,10.1038/s41598-020-65853-w,32483289,85085854297,2-s2.0-85085854297,Article,WT,https://api.elsevier.com/content/abstract/scopus_id/85085854297,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85085854297&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85085854297&origin=inward +The Human Posterior Superior Temporal Sulcus Samples Visual Space Differently From Other Face-Selective Regions,Baker,Amy Pilkington;David Pitcher;Leslie G. Ungerleider;Lionel Rauth;Chris Baker;Dwight J. Kravitz,2020-03-21,3,"Cerebral cortex (New York, N.Y. : 1991)",778-785,10.1093/cercor/bhz125,31264693,85074469445,2-s2.0-85074469445,Article,,https://api.elsevier.com/content/abstract/scopus_id/85074469445,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85074469445&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85074469445&origin=inward +Boundaries Extend and Contract in Scene Memory Depending on Image Properties,Baker,Wilma A. Bainbridge;Chris I. Baker,2020-02-03,1,Current Biology,537-543.e3,10.1016/j.cub.2019.12.004,31983637,85078482896,2-s2.0-85078482896,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85078482896,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85078482896&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85078482896&origin=inward +"Recent advances in understanding object recognition in the human brain: Deep neural networks, temporal dynamics, and context",Baker,Chris Baker;Susan G. Wardle,2020-01-01,0,F1000Research,,10.12688/f1000research.22296.1,32566136,85086870175,2-s2.0-85086870175,Review,,https://api.elsevier.com/content/abstract/scopus_id/85086870175,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85086870175&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85086870175&origin=inward +Memorability of words in arbitrary verbal associations modulates memory retrieval in the anterior temporal lobe,Baker,Weizhen Xie;Kareem A. Zaghloul;Wilma A. Bainbridge;Chris I. Baker;Sara K. Inati,2020-01-01,0,Nature Human Behaviour,,10.1038/s41562-020-0901-2,,85087025590,2-s2.0-85087025590,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85087025590,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85087025590&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85087025590&origin=inward +Drawings of real-world scenes during free recall reveal detailed object and spatial information in memory,Baker,Wilma A. Bainbridge;Chris I. Baker;Elizabeth H. Hall,2019-12-01,8,Nature Communications,,10.1038/s41467-018-07830-6,30602785,85059503402,2-s2.0-85059503402,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85059503402,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85059503402&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85059503402&origin=inward +Memorability of photographs in subjective cognitive decline and mild cognitive impairment: Implications for cognitive assessment,Baker,Laura Dobisch;Arturo Cardenas-Blanco;Frederic Brosseron;Klaus Fliessbach;Janna Rudolph;Hartmut Schütze;Christoph Laske;Michael Heneka;Anja Schneider;Annika Spottke;David Berron;Coraline Metzger;Katharina Buerger;Frank Jessen;Michael Wagner;Josef Priller;Eike Jakob Spruth;Claudia Bartels;Ingo Kilimann;Chris I. Baker;Martina Buchmann;Daniel Janowitz;Steffen Wolfsgruber;Daniel Bittner;Emrah Düzel;Slawek Altenstein;Siyao Li;Wilma A. Bainbridge;Dominik Diesing;Wenzel Glanz;Barbara Kofler;Jens Wiltfang;Stefan Teipel;Oliver Peters,2019-12-01,2,"Alzheimer's and Dementia: Diagnosis, Assessment and Disease Monitoring",610-618,10.1016/j.dadm.2019.07.005,,85071610785,2-s2.0-85071610785,Article,DZNE,https://api.elsevier.com/content/abstract/scopus_id/85071610785,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85071610785&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85071610785&origin=inward +Scene Perception in the Human Brain,Baker,Chris I. Baker;Russell A. Epstein,2019-09-15,7,Annual Review of Vision Science,373-397,10.1146/annurev-vision-091718-014809,31226012,85072266392,2-s2.0-85072266392,Review,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85072266392,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85072266392&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85072266392&origin=inward +Differential Representations of Perceived and Retrieved Visual Information in Hippocampus and Cortex,Baker,Chris I. Baker;Sue Hyun Lee;Dwight J. Kravitz,2019-09-13,2,Cerebral Cortex,4452-4461,10.1093/cercor/bhy325,30590463,85072026868,2-s2.0-85072026868,Article,NARSAD,https://api.elsevier.com/content/abstract/scopus_id/85072026868,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85072026868&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85072026868&origin=inward +Similarity judgments and cortical visual responses reflect different properties of object and scene categories in naturalistic images,Baker,Chris I. Baker;Iris I.A. Groen;Marcie L. King;Adam Steel;Dwight J. Kravitz,2019-08-15,4,NeuroImage,368-382,10.1016/j.neuroimage.2019.04.079,31054350,85065390290,2-s2.0-85065390290,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85065390290,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85065390290&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85065390290&origin=inward +Distinct subdivisions of human medial parietal cortex support recollection of people and places,Baker,Adrian W. Gilmore;Chris I. Baker;Alexis Kidder;Edward H. Silson;Adam Steel,2019-07-01,4,eLife,,10.7554/eLife.47391,31305238,85070789103,2-s2.0-85070789103,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85070789103,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85070789103&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85070789103&origin=inward +Differential impact of reward and punishment on functional connectivity after skill learning,Baker,Chris I. Baker;Edward H. Silson;Adam Steel;Charlotte J. Stagg,2019-04-01,1,NeuroImage,95-105,10.1016/j.neuroimage.2019.01.009,30630080,85059851109,2-s2.0-85059851109,Article,WT,https://api.elsevier.com/content/abstract/scopus_id/85059851109,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85059851109&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85059851109&origin=inward +Finding the baby in the bath water – evidence for task-specific changes in resting state functional connectivity evoked by training,Baker,Gang Chen;Chris I. Baker;Cibu Thomas;Aaron Trefler;Adam Steel,2019-03-01,0,NeuroImage,524-538,10.1016/j.neuroimage.2018.12.038,30578926,85059115445,2-s2.0-85059115445,Article,NIBIB,https://api.elsevier.com/content/abstract/scopus_id/85059115445,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85059115445&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85059115445&origin=inward +A posterior–anterior distinction between scene perception and scene construction in human medial parietal cortex,Baker,Adrian W. Gilmore;Chris I. Baker;Sarah E. Kalinowski;Alex Martin;Alexis Kidder;Edward H. Silson;Adam Steel,2019-01-23,7,Journal of Neuroscience,705-717,10.1523/JNEUROSCI.1219-18.2018,30504281,85060371320,2-s2.0-85060371320,Article,,https://api.elsevier.com/content/abstract/scopus_id/85060371320,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85060371320&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85060371320&origin=inward +Scenes in the Human Brain: Comparing 2D versus 3D Representations,Baker,Chris I. Baker;Iris I.A. Groen,2019-01-02,0,Neuron,8-10,10.1016/j.neuron.2018.12.014,30605658,85058693165,2-s2.0-85058693165,Short Survey,,https://api.elsevier.com/content/abstract/scopus_id/85058693165,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85058693165&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85058693165&origin=inward +Revealing interpretable object representations from human behavior,Baker,Chris I. Baker;Martin N. Hebart;Charles Y. Zheng;Francisco Pereira,2019-01-01,2,"7th International Conference on Learning Representations, ICLR 2019",,,,85083951659,2-s2.0-85083951659,Conference Paper,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85083951659,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85083951659&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85083951659&origin=inward +"THINGS: A database of 1,854 object concepts and more than 26,000 naturalistic object images",Baker,Chris I. Baker;Anna Corriveau;Adam H. Dickter;Caitlin Van Wicklin;Wan Y. Kwok;Alexis Kidder;Martin N. Hebart,2019-01-01,1,PLoS ONE,,10.1371/journal.pone.0223792,31613926,85073476140,2-s2.0-85073476140,Article,,https://api.elsevier.com/content/abstract/scopus_id/85073476140,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85073476140&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85073476140&origin=inward +Visual responsiveness in sensorimotor cortex is increased following amputation and reduced after mirror therapy,Baker,Lindsay Hussey-Anderson;Sharon Weeks;Emily Bilger;Jack W. Tsao;Annie W.Y. Chan;Chris I. Baker;Paul F. Pasquina;Sarah Griffin;Viktoria Elkis,2019-01-01,1,NeuroImage: Clinical,,10.1016/j.nicl.2019.101882,31226622,85067362998,2-s2.0-85067362998,Article,CIB,https://api.elsevier.com/content/abstract/scopus_id/85067362998,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85067362998&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85067362998&origin=inward +"Correction: Differential sampling of visual space in ventral and dorsal early visual cortex(The Journal of Neuroscience, (2018), 28, 2294-2303)",Baker,Chris I. Baker;Edward H. Silson;Richard C. Reynolds;Dwight J. Kravitz,2018-10-24,0,Journal of Neuroscience,9303-9309,10.1523/JNEUROSCI.2307-18.2018,,85055545562,2-s2.0-85055545562,Erratum,,https://api.elsevier.com/content/abstract/scopus_id/85055545562,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85055545562&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85055545562&origin=inward +New advances in encoding and decoding of brain signals,Baker,Marcel van Gerven;Chris I. Baker,2018-10-15,2,NeuroImage,1-3,10.1016/j.neuroimage.2018.06.064,29960086,85049332695,2-s2.0-85049332695,Editorial,,https://api.elsevier.com/content/abstract/scopus_id/85049332695,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85049332695&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85049332695&origin=inward +Deconstructing multivariate decoding for the study of brain function,Baker,Chris I. Baker;Martin N. Hebart,2018-10-15,46,NeuroImage,4-18,10.1016/j.neuroimage.2017.08.005,28782682,85027250284,2-s2.0-85027250284,Review,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85027250284,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85027250284&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85027250284&origin=inward +Bayesian population receptive field modelling,Baker,Will Penny;Chris Ian Baker;Peter Zeidman;Dietrich Samuel Schwarzkopf;Edward Harry Silson,2018-10-15,13,NeuroImage,173-187,10.1016/j.neuroimage.2017.09.008,28890416,85029565496,2-s2.0-85029565496,Article,WT,https://api.elsevier.com/content/abstract/scopus_id/85029565496,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85029565496&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85029565496&origin=inward +"The temporal evolution of conceptual object representations revealed through models of behavior, semantics and deep neural networks",Baker,B. B. Bankson;I. I.A. Groen;M. N. Hebart;C. I. Baker,2018-09-01,10,NeuroImage,172-182,10.1016/j.neuroimage.2018.05.037,29777825,85047414025,2-s2.0-85047414025,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85047414025,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85047414025&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85047414025&origin=inward +Statistical power comparisons at 3T and 7T with a GO / NOGO task,Baker,Joseph Leshin;Peter A. Bandettini;Chris I. Baker;Daniel Glen;Christian Grillon;Nicholas Balderston;Jeffrey Yen-Ting Liu;Monique Ernst;Richard Reynolds;Gang Chen;Salvatore Torrisi,2018-07-15,4,NeuroImage,100-110,10.1016/j.neuroimage.2018.03.071,29621615,85052626935,2-s2.0-85052626935,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85052626935,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85052626935&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85052626935&origin=inward +Comparing clinical perimetry and population receptive field measures in patients with choroideremia,Baker,Aimee Willett;Denise J. Pearson;Chris I. Baker;Leona W. Serrano;Andreas M. Rauschecker;Tomas S. Aleman;Albert M. Maguire;Jean Bennett;Manzar Ashtari;Edward H. Silson,2018-07-01,1,Investigative Ophthalmology and Visual Science,3249-3258,10.1167/iovs.18-23929,29971442,85049603413,2-s2.0-85049603413,Article,,https://api.elsevier.com/content/abstract/scopus_id/85049603413,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85049603413&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85049603413&origin=inward +Impact of time-of-day on diffusivity measures of brain tissue derived from diffusion tensor imaging,Baker,Amrita Nayak;Chris I. Baker;Neda Sadeghi;Cibu Thomas;Aaron Trefler;Carlo Pierpaoli;Joelle Sarlls,2018-06-01,11,NeuroImage,25-34,10.1016/j.neuroimage.2018.02.026,29458189,85042380945,2-s2.0-85042380945,Article,NIBIB,https://api.elsevier.com/content/abstract/scopus_id/85042380945,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85042380945&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85042380945&origin=inward +Transcranial magnetic stimulation to the occipital place area biases gaze during scene viewing,Baker,Jennifer R. Henry;George L. Malcolm;Edward H. Silson;Chris I. Baker,2018-05-08,1,Frontiers in Human Neuroscience,,10.3389/fnhum.2018.00189,,85046888794,2-s2.0-85046888794,Article,,https://api.elsevier.com/content/abstract/scopus_id/85046888794,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85046888794&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85046888794&origin=inward +Distinct contributions of functional and deep neural network features to representational similarity of scenes in human brain and behavior,Baker,Christopher Baldassano;Diane M. Beck;Chris I. Baker;Iris I.A. Groen;Li Fei-Fei;Michelle R. Greene,2018-03-07,31,eLife,,10.7554/eLife.32962,29513219,85045639406,2-s2.0-85045639406,Article,,https://api.elsevier.com/content/abstract/scopus_id/85045639406,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85045639406&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85045639406&origin=inward +Differential sampling of visual space in ventral and dorsal early visual cortex,Baker,Chris I. Baker;Edward H. Silson;Richard C. Reynolds;Dwight J. Kravitz,2018-02-28,9,Journal of Neuroscience,2294-2303,10.1523/JNEUROSCI.2717-17.2018,29382711,85042873910,2-s2.0-85042873910,Article,,https://api.elsevier.com/content/abstract/scopus_id/85042873910,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85042873910&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85042873910&origin=inward +The representational dynamics of task and object processing in humans,Baker,Brett B. Bankson;Radoslaw M. Cichy;Chris I. Baker;Assaf Harel;Martin N. Hebart,2018-01-31,27,eLife,,10.7554/eLife.32816,29384473,85042082335,2-s2.0-85042082335,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85042082335,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85042082335&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85042082335&origin=inward +The temporal dynamics of scene processing: A multifaceted EEG investigation,Baker,Chris I. Baker;Iris I.A. Groen;Leon Y. Deouell;Assaf Harel;Dwight J. Kravitz,2016-09-12,13,eNeuro,,10.1523/ENEURO.0139-16.2016,27699208,85031907783,2-s2.0-85031907783,Article,,https://api.elsevier.com/content/abstract/scopus_id/85031907783,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85031907783&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85031907783&origin=inward +Facing up to stereotypes,Baker,Chris I. Baker;Martin N. Hebart,2016-05-26,0,Nature neuroscience,763-764,10.1038/nn.4309,27227362,85027469385,2-s2.0-85027469385,Review,,https://api.elsevier.com/content/abstract/scopus_id/85027469385,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85027469385&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85027469385&origin=inward +Visual cues for attention following in rhesus monkeys,Baker,David I. Perrett;Erika N. Lorincz;Christopher I. Baker,2013-01-01,4,Picture Perception in Animals,344-372,10.4324/9780203782880-19,,85076080320,2-s2.0-85076080320,Chapter,,https://api.elsevier.com/content/abstract/scopus_id/85076080320,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85076080320&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85076080320&origin=inward +"Untangling the relatedness among correlations, part III: Inter-subject correlation analysis through Bayesian multilevel modeling for naturalistic scanning",Bandettini,Peter A. Bandettini;Xianggui Qu;Peter J. Molfese;Paul A. Taylor;Robert W. Cox;Emily S. Finn;Gang Chen,2020-08-01,2,NeuroImage,,10.1016/j.neuroimage.2019.116474,31884057,85077746474,2-s2.0-85077746474,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85077746474,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85077746474&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85077746474&origin=inward +Idiosynchrony: From shared responses to individual differences during naturalistic neuroimaging,Bandettini,Peter A. Bandettini;Peter J. Molfese;Dylan Nielson;Emily S. Finn;Arman Y. Khojandi;Daniel A. Handwerker;Enrico Glerean,2020-07-15,1,NeuroImage,,10.1016/j.neuroimage.2020.116828,32276065,85083213520,2-s2.0-85083213520,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85083213520,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85083213520&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85083213520&origin=inward +Fast detection and reduction of local transient artifacts in resting-state fMRI,Bandettini,Peter A. Bandettini;Hang Joon Jo;Richard C. Reynolds;Robert W. Cox;Irena Balzekas;Stephen J. Gotts;Alex Martin;Daniel A. Handwerker,2020-05-01,0,Computers in Biology and Medicine,,10.1016/j.compbiomed.2020.103742,32421647,85083039076,2-s2.0-85083039076,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85083039076,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85083039076&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85083039076&origin=inward +Sub-millimeter fMRI reveals multiple topographical digit representations that form action maps in human motor cortex,Bandettini,Sriranga Kashyap;Laurentius Huber;Dimo Ivanov;Peter A. Bandettini;Emily S. Finn;Natalia Petridou;Daniel R. Glen;Sean Marrett;Daniel A. Handwerker;Marlene Bönstrup;Benedikt A. Poser;Jozien Goense,2020-03-01,2,NeuroImage,,10.1016/j.neuroimage.2019.116463,31862526,85076716317,2-s2.0-85076716317,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85076716317,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85076716317&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85076716317&origin=inward +Integrated VASO and perfusion contrast: A new tool for laminar functional MRI,Bandettini,Peter A. Bandettini;Larentius Huber;Linqing Li;Yuhui Chai;Benedikt A. Poser,2020-02-15,1,NeuroImage,,10.1016/j.neuroimage.2019.116358,31740341,85075905478,2-s2.0-85075905478,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85075905478,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85075905478&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85075905478&origin=inward +Layer-dependent functional connectivity methods,Bandettini,Kamil Uludag;Laurentius Huber;Tony Stöcker;Seong Gi Kim;Peter A. Bandettini;Emily S. Finn;Yuhui Chai;Rüdiger Stirnberg;Rainer Goebel;Sean Marrett;So Hyun Han;Benedikt A. Poser,2020-01-01,0,Progress in Neurobiology,,10.1016/j.pneurobio.2020.101835,32512115,85086426599,2-s2.0-85086426599,Review,IBS,https://api.elsevier.com/content/abstract/scopus_id/85086426599,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85086426599&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85086426599&origin=inward +A deconvolution algorithm for multi-echo functional MRI: Multi-echo Sparse Paradigm Free Mapping,Bandettini,Peter A. Bandettini;Puja Panwar;Javier Gonzalez-Castillo;Stefano Moia;César Caballero-Gaudes,2019-11-15,1,NeuroImage,,10.1016/j.neuroimage.2019.116081,31419613,85070906384,2-s2.0-85070906384,Article,MSCA,https://api.elsevier.com/content/abstract/scopus_id/85070906384,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85070906384&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85070906384&origin=inward +Imaging the spontaneous flow of thought: Distinct periods of cognition contribute to dynamic functional connectivity during rest,Bandettini,Peter A. Bandettini;Javier Gonzalez-Castillo;César Caballero-Gaudes;Daniel A. Handwerker;Natasha Topolski;Francisco Pereira,2019-11-15,1,NeuroImage,,10.1016/j.neuroimage.2019.116129,31461679,85071438369,2-s2.0-85071438369,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85071438369,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85071438369&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85071438369&origin=inward +Layer-dependent activity in human prefrontal cortex during working memory,Bandettini,Laurentius Huber;Peter A. Bandettini;Peter J. Molfese;Emily S. Finn;David C. Jangraw,2019-10-01,5,Nature Neuroscience,1687-1695,10.1038/s41593-019-0487-z,31551596,85072613366,2-s2.0-85072613366,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85072613366,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85072613366&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85072613366&origin=inward +Visual temporal frequency preference shows a distinct cortical architecture using fMRI,Bandettini,Peter A. Bandettini;Peter J. Molfese;Javier Gonzalez-Castillo;Andrew Hall;Yuhui Chai;Sean Marrett;Daniel A. Handwerker;Elisha P. Merriam,2019-08-15,1,NeuroImage,13-23,10.1016/j.neuroimage.2019.04.048,31015027,85064646526,2-s2.0-85064646526,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85064646526,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85064646526&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85064646526&origin=inward +Layer-specific activation of sensory input and predictive feedback in the human primary somatosensory cortex,Bandettini,Laurentius Huber;Peter A. Bandettini;Peter J. Molfese;Yinghua Yu;Yoshimichi Ejima;David C. Jangraw;Jinglong Wu;Daniel A. Handwerker;Jiajia Yang;Gang Chen,2019-05-15,3,Science Advances,,10.1126/sciadv.aav9053,31106273,85065887483,2-s2.0-85065887483,Article,JSPS,https://api.elsevier.com/content/abstract/scopus_id/85065887483,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85065887483&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85065887483&origin=inward +Efficacy of different dynamic functional connectivity methods to capture cognitively relevant information,Bandettini,Sunanda Mitra;Peter A. Bandettini;Javier Gonzalez-Castillo;Daniel A. Handwerker;Hua Xie;Charles Y. Zheng;Vince D. Calhoun,2019-03-01,7,NeuroImage,502-514,10.1016/j.neuroimage.2018.12.037,30576850,85059153793,2-s2.0-85059153793,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85059153793,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85059153793&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85059153793&origin=inward +Deep neural network predicts emotional responses of the human brain from functional magnetic resonance imaging,Bandettini,Hyun Chul Kim;Jong Hwan Lee;Peter A. Bandettini,2019-02-01,6,NeuroImage,607-627,10.1016/j.neuroimage.2018.10.054,30366076,85057456558,2-s2.0-85057456558,Article,,https://api.elsevier.com/content/abstract/scopus_id/85057456558,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85057456558&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85057456558&origin=inward +Trait paranoia shapes inter-subject synchrony in brain activity during an ambiguous social narrative,Bandettini,Peter A. Bandettini;Emily S. Finn;R. Todd Constable;Philip R. Corlett;Gang Chen,2018-12-01,18,Nature Communications,,10.1038/s41467-018-04387-2,29795116,85047518450,2-s2.0-85047518450,Article,NSF,https://api.elsevier.com/content/abstract/scopus_id/85047518450,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85047518450&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85047518450&origin=inward +Towards a new approach to reveal dynamical organization of the brain using topological data analysis,Bandettini,Peter A. Bandettini;Javier Gonzalez-Castillo;Allan L. Reiss;Gunnar Carlsson;Manish Saggar;Olaf Sporns;Gary Glover,2018-12-01,41,Nature Communications,,10.1038/s41467-018-03664-4,29643350,85045255547,2-s2.0-85045255547,Article,NARSAD,https://api.elsevier.com/content/abstract/scopus_id/85045255547,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85045255547&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85045255547&origin=inward +Task-based dynamic functional connectivity: Recent findings and open questions,Bandettini,Javier Gonzalez-Castillo;Peter A. Bandettini,2018-10-15,50,NeuroImage,526-533,10.1016/j.neuroimage.2017.08.006,28780401,85027128247,2-s2.0-85027128247,Review,NIH,https://api.elsevier.com/content/abstract/scopus_id/85027128247,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85027128247&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85027128247&origin=inward +Ultra-high resolution blood volume fMRI and BOLD fMRI in humans at 9.4 T: Capabilities and challenges,Bandettini,Sriranga Kashyap;Laurentius Huber;Peter A. Bandettini;Dimo Ivanov;Desmond H.Y. Tse;Kâmil Uludağ;David C. Jangraw;Benedikt A. Poser;Christopher J. Wiggins,2018-09-01,9,NeuroImage,769-779,10.1016/j.neuroimage.2018.06.025,29890330,85048900242,2-s2.0-85048900242,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85048900242,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85048900242&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85048900242&origin=inward +A temporal deconvolution algorithm for multiecho functional MRI,Bandettini,Cesar Caballero Gaudes;Javier Gonzalez-Castillo;Peter A. Bandettini,2018-05-23,1,Proceedings - International Symposium on Biomedical Imaging,608-611,10.1109/ISBI.2018.8363649,,85048070005,2-s2.0-85048070005,Conference Paper,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85048070005,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85048070005&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85048070005&origin=inward +Frequency-dependent tACS modulation of BOLD signal during rhythmic visual stimulation,Bandettini,Jingwei Sheng;Jia Hong Gao;Peter A. Bandettini;Yuhui Chai,2018-05-01,5,Human Brain Mapping,2111-2120,10.1002/hbm.23990,29389051,85041181548,2-s2.0-85041181548,Article,NSFC,https://api.elsevier.com/content/abstract/scopus_id/85041181548,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85041181548&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85041181548&origin=inward +The integration of functional brain activity from adolescence to adulthood,Bandettini,Ellen Leibenluft;Wen Ming Luh;Peter A. Bandettini;Daniel S. Pine;Prantik Kundu;Sophia Frangou;Monique Ernst;Dana Rosen;Brenda E. Benson,2018-04-04,7,Journal of Neuroscience,3559-3570,10.1523/JNEUROSCI.1864-17.2018,29487126,85051138382,2-s2.0-85051138382,Article,,https://api.elsevier.com/content/abstract/scopus_id/85051138382,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85051138382&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85051138382&origin=inward +Ridding fMRI data of motion-related influences: Removal of signals with distinct spatial and physical bases in multiecho data,Bandettini,Jonathan D. Power;Mark Plitt;Peter A. Bandettini;Prantik Kundu;Stephen J. Gotts;Valerie Voon;Alex Martin,2018-02-27,55,Proceedings of the National Academy of Sciences of the United States of America,E2105-E2114,10.1073/pnas.1720985115,29440410,85042642542,2-s2.0-85042642542,Article,,https://api.elsevier.com/content/abstract/scopus_id/85042642542,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85042642542&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85042642542&origin=inward +A functional connectivity-based neuromarker of sustained attention generalizes to predict recall in a reading task,Bandettini,Peter A. Bandettini;Puja Panwar;Javier Gonzalez-Castillo;David C. Jangraw;Monica D. Rosenberg;Daniel A. Handwerker;Merage Ghane,2018-02-01,18,NeuroImage,99-109,10.1016/j.neuroimage.2017.10.019,29031531,85032791586,2-s2.0-85032791586,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85032791586,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85032791586&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85032791586&origin=inward +Quantitative deconvolution of fmri data with multi-echo sparse paradigm free mapping,Bandettini,Javier Gonzalez-Castillo;Stefano Moia;César Caballero-Gaudes;Peter A. Bandettini,2018-01-01,1,Lecture Notes in Computer Science (including subseries Lecture Notes in Artificial Intelligence and Lecture Notes in Bioinformatics),311-319,10.1007/978-3-030-00931-1_36,,85053871149,2-s2.0-85053871149,Conference Paper,,https://api.elsevier.com/content/abstract/scopus_id/85053871149,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85053871149&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85053871149&origin=inward +Distributed weight consolidation: A brain segmentation case study,Bandettini,Peter Bandettini;John A. Lee;Dylan Nielson;Satrajit S. Ghosh;Patrick McClure;Jakub R. Kaczmarzyk;Charles Y. Zheng;Francisco Pereira,2018-01-01,1,Advances in Neural Information Processing Systems,4093-4103,,,85064820043,2-s2.0-85064820043,Conference Paper,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85064820043,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85064820043&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85064820043&origin=inward +Time-varying whole-brain functional network connectivity coupled to task engagement,Bandettini,Eswar Damaraju;Sunanda Mitra;Peter A. Bandettini;Javier Gonzalez-Castillo;Daniel A. Handwerker;Xiangyu Liu;Hua Xie;Gang Chen;Vince D. Calhoun,2018-01-01,2,Network Neuroscience,49-66,10.1162/netn_a_00051,,85079468253,2-s2.0-85079468253,Article,NSF,https://api.elsevier.com/content/abstract/scopus_id/85079468253,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85079468253&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85079468253&origin=inward +High-Resolution CBV-fMRI Allows Mapping of Laminar Activity and Connectivity of Cortical Input and Output in Human M1,Bandettini,Carsten Stüber;Laurentius Huber;Dimo Ivanov;Peter A. Bandettini;Maria Guidi;Javier Gonzalez-Castillo;Andrew Hall;David C. Jangraw;Sean Marrett;Daniel A. Handwerker;Benedikt A. Poser;Gang Chen;Jozien Goense,2017-12-20,61,Neuron,1253-1263.e7,10.1016/j.neuron.2017.11.005,29224727,85038221196,2-s2.0-85038221196,Article,EC,https://api.elsevier.com/content/abstract/scopus_id/85038221196,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85038221196&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85038221196&origin=inward +"Time-Resolved Resting-State Functional Magnetic Resonance Imaging Analysis: Current Status, Challenges, and New Directions",Bandettini,Gustavo Deco;Peter Bandettini;Vince Calhoun;Shella Keilholz;Cesar Caballero-Gaudes,2017-10-01,30,Brain Connectivity,465-481,10.1089/brain.2017.0543,28874061,85031756535,2-s2.0-85031756535,Review,,https://api.elsevier.com/content/abstract/scopus_id/85031756535,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85031756535&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85031756535&origin=inward +Temporal interpolation alters motion in fMRI scans: Magnitudes and consequences for artifact detection,Bandettini,Jonathan D. Power;Mark Plitt;Peter A. Bandettini;Prantik Kundu;Alex Martin,2017-09-01,20,PLoS ONE,,10.1371/journal.pone.0182939,28880888,85029004682,2-s2.0-85029004682,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85029004682,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85029004682&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85029004682&origin=inward +"Functional neuroimaging: An introduction to the technology, methodology, interpretation, and applications",Bandettini,Fernando Zelaya;Tamara A. Russell;Peter A. Bandettini;Rodrigo A. Bressan,2003-01-01,5,Neuroimaging in Psychiatry,1-50,10.3109/9780203508343-2,,85083255756,2-s2.0-85083255756,Chapter,,https://api.elsevier.com/content/abstract/scopus_id/85083255756,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85083255756&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85083255756&origin=inward +Composite Hydrogel Model of Cartilage Predicts Its Load-Bearing Ability,Basser,Ferenc Horkay;Peter J. Basser,2020-12-01,0,Scientific Reports,,10.1038/s41598-020-64917-1,32415132,85084787739,2-s2.0-85084787739,Article,NSF,https://api.elsevier.com/content/abstract/scopus_id/85084787739,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85084787739&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85084787739&origin=inward +Retaining information from multidimensional correlation MRI using a spectral regions of interest generator,Basser,Daniel P. Perl;Dan Benjamini;Michal E. Komlosh;Kristofor Pas;Peter J. Basser,2020-12-01,1,Scientific Reports,,10.1038/s41598-020-60092-5,32094400,85079806695,2-s2.0-85079806695,Article,NICHD,https://api.elsevier.com/content/abstract/scopus_id/85079806695,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85079806695&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85079806695&origin=inward +Feasibility of filter-exchange imaging (FEXI) in measuring different exchange processes in human brain,Basser,Chaoliang Sun;Ruiliang Bai;Peter Basser;Hui Liang;Zhaoqing Li;Yi Cheng Hsu,2020-10-01,1,NeuroImage,,10.1016/j.neuroimage.2020.117039,32534125,85086676983,2-s2.0-85086676983,Article,NICHD,https://api.elsevier.com/content/abstract/scopus_id/85086676983,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85086676983&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85086676983&origin=inward +Real-time measurement of diffusion exchange rate in biological tissue,Basser,Melanie Falgairolle;Dan Benjamini;Rea Ravin;Nathan H. Williamson;Peter J. Basser;Michael J. O'Donovan;Teddy X. Cai,2020-08-01,0,Journal of Magnetic Resonance,,10.1016/j.jmr.2020.106782,,85087884082,2-s2.0-85087884082,Article,NIGMS,https://api.elsevier.com/content/abstract/scopus_id/85087884082,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85087884082&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85087884082&origin=inward +Measuring conduction velocity distributions in peripheral nerves using neurophysiological techniques,Basser,Sinisa Pajevic;Felipe Vial;Giorgio Leodori;Alexandru V. Avram;Mark Hallett;Peter J. Basser;Zhen Ni,2020-07-01,0,Clinical Neurophysiology,1581-1588,10.1016/j.clinph.2020.04.008,32417700,85084586854,2-s2.0-85084586854,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85084586854,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85084586854&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85084586854&origin=inward +Multidimensional correlation MRI,Basser,Dan Benjamini;Peter J. Basser,2020-01-01,0,NMR in Biomedicine,,10.1002/nbm.4226,31909516,85078238001,2-s2.0-85078238001,Article,,https://api.elsevier.com/content/abstract/scopus_id/85078238001,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85078238001&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85078238001&origin=inward +Magnetic resonance measurements of cellular and sub-cellular membrane structures in live and fixed neural tissue,Basser,Melanie Falgairolle;Dave Ide;Dan Benjamini;Ruiliang Bai;Michael J. O’donovan;Hellmut Merkle;Rea Ravin;Nathan H. Williamson;Dvir Blivis;Peter J. Basser;Nima S. Ghorashi;Teddy X. Cai,2019-12-01,4,eLife,,10.7554/eLife.51101,31829935,85077588305,2-s2.0-85077588305,Article,ZJU,https://api.elsevier.com/content/abstract/scopus_id/85077588305,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85077588305&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85077588305&origin=inward +Erratum: Regulation of myelin structure and conduction velocity by perinodal astrocytes (Proceedings of the National Academy of Sciences of the United States of America (2018) 115 (11832–11837) DOI: 10.1073/pnas.1811013115),Basser,Dong Ho Woo;Sinisa Pajevic;Jeffrey C. Smith;R. Douglas Fields;Olena Bukalo;William C. Huffman;Vanja Lazarevic;Dipankar J. Dutta;Philip R. Lee;Peter J. Basser;Hiroaki Wake;Shahriar SheikhBahaei,2019-06-18,0,Proceedings of the National Academy of Sciences of the United States of America,12574,10.1073/pnas.1908361116,31182569,85067842616,2-s2.0-85067842616,Erratum,,https://api.elsevier.com/content/abstract/scopus_id/85067842616,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85067842616&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85067842616&origin=inward +Water mobility spectral imaging of the spinal cord: Parametrization of model-free Laplace MRI,Basser,Dan Benjamini;Peter J. Basser,2019-02-01,4,Magnetic Resonance Imaging,187-193,10.1016/j.mri.2018.12.001,30584915,85059102417,2-s2.0-85059102417,Article,NICHD,https://api.elsevier.com/content/abstract/scopus_id/85059102417,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85059102417&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85059102417&origin=inward +Brain active transmembrane water cycling measured by MR is associated with neuronal activity,Basser,Charles S. Springer;Dietmar Plenz;Ruiliang Bai;Peter J. Basser,2019-02-01,9,Magnetic Resonance in Medicine,1280-1295,10.1002/mrm.27473,30194797,85052920558,2-s2.0-85052920558,Article,ZJU,https://api.elsevier.com/content/abstract/scopus_id/85052920558,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85052920558&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85052920558&origin=inward +A novel MRI phantom to study interstitial fluid transport in the glymphatic system,Basser,F. Horkay;N. W. Williamson;P. J. Basser;E. B. Hutchinson;M. E. Komlosh;D. Benjamini,2019-02-01,3,Magnetic Resonance Imaging,181-186,10.1016/j.mri.2018.10.007,30343124,85055481361,2-s2.0-85055481361,Article,NICHD,https://api.elsevier.com/content/abstract/scopus_id/85055481361,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85055481361&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85055481361&origin=inward +Measuring non-parametric distributions of intravoxel mean diffusivities using a clinical MRI scanner,Basser,Peter J. Basser;Alexandru V. Avram;Joelle E. Sarlls,2019-01-15,4,NeuroImage,255-262,10.1016/j.neuroimage.2018.10.030,30326294,85055324723,2-s2.0-85055324723,Article,NICHD,https://api.elsevier.com/content/abstract/scopus_id/85055324723,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85055324723&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85055324723&origin=inward +Effects of mono- and divalent cations on the structure and thermodynamic properties of polyelectrolyte gels,Basser,Ferenc Horkay;Matan Mussel;Peter J. Basser,2019-01-01,3,Soft Matter,4153-4161,10.1039/c9sm00464e,31062008,85066250667,2-s2.0-85066250667,Article,NICHD,https://api.elsevier.com/content/abstract/scopus_id/85066250667,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85066250667&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85066250667&origin=inward +Generalized mean apparent propagator MRI to measure and image advective and dispersive flows in medicine and biology,Basser,Michal E. Komlosh;Nathan H. Williamson;Dan Benjamini;Peter J. Basser,2019-01-01,3,IEEE Transactions on Medical Imaging,11-20,10.1109/TMI.2018.2852259,30010549,85049995497,2-s2.0-85049995497,Article,,https://api.elsevier.com/content/abstract/scopus_id/85049995497,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85049995497&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85049995497&origin=inward +Rapid detection of the presence of diffusion exchange,Basser,Dan Benjamini;Michal E. Komlosh;Nathan H. Williamson;Peter J. Basser;Teddy X. Cai,2018-12-01,6,Journal of Magnetic Resonance,17-22,10.1016/j.jmr.2018.10.004,30340203,85054868783,2-s2.0-85054868783,Article,NIBIB,https://api.elsevier.com/content/abstract/scopus_id/85054868783,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85054868783&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85054868783&origin=inward +Regulation of myelin structure and conduction velocity by perinodal astrocytes,Basser,Dong Ho Woo;Sinisa Pajevic;Jeffrey C. Smith;R. Douglas Fields;Olena Bukalo;William C. Huffman;Vanja Lazarevic;Dipankar J. Dutta;Philip R. Lee;Peter J. Basser;Hiroaki Wake;Shahriar SheikhBahaei,2018-11-13,36,Proceedings of the National Academy of Sciences of the United States of America,11832-11837,10.1073/pnas.1811013115,30373833,85056547062,2-s2.0-85056547062,Article,CIT,https://api.elsevier.com/content/abstract/scopus_id/85056547062,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85056547062&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85056547062&origin=inward +Ionic effects in semi-dilute biopolymer solutions: A small angle scattering study,Basser,Erik Geissler;Ferenc Horkay;Anne Marie Hecht;Peter J. Basser,2018-10-28,7,Journal of Chemical Physics,,10.1063/1.5028351,30384682,85050117972,2-s2.0-85050117972,Article,,https://api.elsevier.com/content/abstract/scopus_id/85050117972,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85050117972&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85050117972&origin=inward +"Fast, Na + /K + pump driven, steady-state transcytolemmal water exchange in neuronal tissue: A study of rat brain cortical cultures",Basser,Charles S. Springer;Dietmar Plenz;Ruiliang Bai;Peter J. Basser,2018-06-01,16,Magnetic Resonance in Medicine,3207-3217,10.1002/mrm.26980,29106751,85043360027,2-s2.0-85043360027,Article,,https://api.elsevier.com/content/abstract/scopus_id/85043360027,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85043360027&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85043360027&origin=inward +Director Field Analysis (DFA): Exploring Local White Matter Geometric Structure in Diffusion MRI,Basser,Jian Cheng;Peter J. Basser,2018-01-01,2,Medical Image Analysis,112-128,10.1016/j.media.2017.10.003,29054037,85031508276,2-s2.0-85031508276,Article,NICHD,https://api.elsevier.com/content/abstract/scopus_id/85031508276,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85031508276&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85031508276&origin=inward +A Nanoindentation Approach to Assess the Mechanical Properties of Heterogeneous Biological Tissues with Poorly Defined Surface Characteristics,Basser,Preethi Chandran;Ferenc Horkay;Emilios K. Dimitriadis;Peter J. Basser,2018-01-01,0,ACS Symposium Series,265-290,10.1021/bk-2018-1296.ch014,,85052625113,2-s2.0-85052625113,Conference Paper,NICHD,https://api.elsevier.com/content/abstract/scopus_id/85052625113,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85052625113&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85052625113&origin=inward +Microstructure and dynamic properties of aggrecan assemblies,Basser,Erik Geissler;Ferenc Horkay;Anne Marie Hecht;Peter J. Basser,2018-01-01,1,MRS Advances,1589-1595,10.1557/adv.2018.10,,85049358461,2-s2.0-85049358461,Conference Paper,NSF,https://api.elsevier.com/content/abstract/scopus_id/85049358461,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85049358461&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85049358461&origin=inward +Erratum: Microstructure and dynamic properties of aggrecan assemblies (MRS Advances (2018) DOI: 10.1557/adv.2018.10),Basser,Erik Geissler;Anne Marie Hecht;Ferec Horkay;Peter J. Basser,2018-01-01,0,MRS Advances,1609,10.1557/adv.2018.433,,85047262833,2-s2.0-85047262833,Erratum,,https://api.elsevier.com/content/abstract/scopus_id/85047262833,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85047262833&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85047262833&origin=inward +Single- and Multiple-Shell Uniform Sampling Schemes for Diffusion MRI Using Spherical Codes,Basser,Jian Cheng;Pew Thian Yap;Dinggang Shen;Peter J. Basser,2018-01-01,2,IEEE Transactions on Medical Imaging,185-199,10.1109/TMI.2017.2756072,28952937,85030709350,2-s2.0-85030709350,Article,NICHD,https://api.elsevier.com/content/abstract/scopus_id/85030709350,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85030709350&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85030709350&origin=inward +On quantifying local geometric structures of fiber tracts,Basser,Haogang Zhu;Ruiliang Bai;Tao Liu;Dacheng Tao;Jicong Zhang;Peter J. Basser;Jian Cheng;Feng Shi,2018-01-01,0,Lecture Notes in Computer Science (including subseries Lecture Notes in Artificial Intelligence and Lecture Notes in Bioinformatics),392-400,10.1007/978-3-030-00931-1_45,,85053924947,2-s2.0-85053924947,Conference Paper,NICHD,https://api.elsevier.com/content/abstract/scopus_id/85053924947,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85053924947&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85053924947&origin=inward +Magnetic resonance microdynamic imaging reveals distinct tissue microenvironments,Basser,Dan Benjamini;Peter J. Basser,2017-12-01,20,NeuroImage,183-196,10.1016/j.neuroimage.2017.09.033,28943412,85029940428,2-s2.0-85029940428,Article,NICHD,https://api.elsevier.com/content/abstract/scopus_id/85029940428,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85029940428&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85029940428&origin=inward +Eigenvalues of random matrices with isotropic gaussian noise and the design of diffusion tensor imaging experiments,Basser,Sinisa Pajevic;Dario Gasbarra;Peter J. Basser,2017-01-01,0,SIAM Journal on Imaging Sciences,1511-1548,10.1137/16M1098693,,85032934042,2-s2.0-85032934042,Article,,https://api.elsevier.com/content/abstract/scopus_id/85032934042,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85032934042&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85032934042&origin=inward +Cartilage: Multiscale Structure and Biomechanical Properties,Basser,Erik Geissler;Ferenc Horkay;Anne Marie Hecht;Peter J. Basser,2016-01-01,0,MRS Advances,509-519,10.1557/adv.2016.184,,85041564801,2-s2.0-85041564801,Conference Paper,NSF,https://api.elsevier.com/content/abstract/scopus_id/85041564801,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85041564801&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85041564801&origin=inward +Simple harmonic oscillator based reconstruction and estimation for one-dimensional Q-space magnetic resonance (1D-SHORE),Basser,Cheng Guan Koay;Evren Özarslan;Peter J. Basser,2013-01-01,0,Applied and Numerical Harmonic Analysis,373-399,10.1007/978-0-8176-8379-5_19,,85047422423,2-s2.0-85047422423,Chapter,NICHD,https://api.elsevier.com/content/abstract/scopus_id/85047422423,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85047422423&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85047422423&origin=inward +A Theoretical Model for Magneto-Acoustic Imaging of Bioelectric Currents,Basser,John P. Wikswo;Bradley J. Roth;Peter J. Basser,1994-01-01,72,IEEE Transactions on Biomedical Engineering,723-728,10.1109/TBME.1994.6492304,7927394,85047691107,2-s2.0-85047691107,Article,,https://api.elsevier.com/content/abstract/scopus_id/85047691107,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85047691107&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85047691107&origin=inward +Dissecting transcriptomic signatures of neuronal differentiation and maturation using iPSCs,Berman,Daniel J. Hoeppner;Keri Martinowich;Leonardo Collado-Torres;Emily E. Burke;Kamel Shibbani;Ba Doi N. Phan;Nicola Micali;Richard E. Straub;Joo Heon Shin;Alan J. Cross;Andrew E. Jaffe;Anandita Rajpurohit;Joel E. Kleinman;Nicholas J. Brandon;Roland W. Bürli;Karen F. Berman;Joshua G. Chenoweth;Marcelo Diaz Bustamante;Gregory R. Hamersky;Amritha Jaishankar;Thomas M. Hyde;James C. Barrow;William S. Ulrich;Alana Sellers;Cristian Valencia;Carlo Colantuoni;Daniel J. Hiler;Suel Kee Kim;Ronald D.G. McKay;Yanhong Wang;Amanda J. Price;Brady J. Maher;Huei Ying Chen;Jose A. Apud;Daniel R. Weinberger;Stephen A. Semick;Stephanie C. Page,2020-12-01,2,Nature Communications,,10.1038/s41467-019-14266-z,31974374,85078161735,2-s2.0-85078161735,Article,,https://api.elsevier.com/content/abstract/scopus_id/85078161735,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85078161735&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85078161735&origin=inward +Subcortical Signatures of Hemizygosity and Psychosis in 22q11.2 Deletion Syndrome: Finding Common Ground in Rare Genetic Variation,Berman,Karen F. Berman;Michael D. Gregory;Daniel P. Eisenberg,2020-07-01,0,The American journal of psychiatry,564-566,10.1176/appi.ajp.2020.20050598,32605438,85087420322,2-s2.0-85087420322,Editorial,,https://api.elsevier.com/content/abstract/scopus_id/85087420322,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85087420322&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85087420322&origin=inward +Distinct Polygenic Score Profiles in Schizophrenia Subgroups with Different Trajectories of Cognitive Development,Berman,Sofia R. Zaidman;Karen F. Berman;Dwight Dickinson;Daniel P. Eisenberg;Michael D. Gregory;Evan J. Giangrande,2020-04-01,3,American Journal of Psychiatry,298-307,10.1176/appi.ajp.2019.19050527,31838871,85083160174,2-s2.0-85083160174,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85083160174,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85083160174&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85083160174&origin=inward +Longitudinal Positron Emission Tomography of Dopamine Synthesis in Subjects with GBA1 Mutations,Berman,Catherine Groden;Ellen Sidransky;Jenny Kim;Shannon E. Grogans;Daniel P. Eisenberg;Joseph C. Masdeu;Michael D. Gregory;Angela M. Ianni;Grisel Lopez;Karen F. Berman,2020-04-01,0,Annals of Neurology,652-657,10.1002/ana.25692,32030791,85082093516,2-s2.0-85082093516,Article,NHGRI,https://api.elsevier.com/content/abstract/scopus_id/85082093516,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85082093516&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85082093516&origin=inward +Epigenetic intersection of BDNF Val66Met genotype with premenstrual dysphoric disorder transcriptome in a cross-species model of estradiol add-back,Berman,Francis S. Lee;Neelima Dubey;Howard Li;Jordan Marrocco;Gordon H. Petty;Peter J. Schmidt;Bruce S. McEwen;David Goldman;Jessica Hoffman;Nathan R. Einhorn;Karen F. Berman,2020-03-01,4,Molecular Psychiatry,572-583,10.1038/s41380-018-0274-3,30356121,85055471339,2-s2.0-85055471339,Article,HDRF,https://api.elsevier.com/content/abstract/scopus_id/85055471339,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85055471339&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85055471339&origin=inward +KCNH2-3.1 mediates aberrant complement activation and impaired hippocampal-medial prefrontal circuitry associated with working memory deficits,Berman,Jingxian Wu;Joo Heon Shin;Joseph H. Callicott;Nina Rajpurohit;Yankai Jia;Wei Xia;Xinjian Li;Vijay Sadashivaiah;Fengyu Zhang;Qiang Chen;Ming Ren;Karen F. Berman;Kuan Hong Wang;Zhonghua Hu;Jian Zhu;Andrew Jaffe;Venkata S. Mattay;Daniel Paredes;Qingjun Tian;Daniel R. Weinberger;Sunny Lang Qin;Yingbo Li;Shujuan Zhu;Feng Yang,2020-01-01,0,Molecular Psychiatry,206-229,10.1038/s41380-019-0530-1,31570775,85073989509,2-s2.0-85073989509,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85073989509,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85073989509&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85073989509&origin=inward +Sequence Variation Associated with SLC12A5 Gene Expression Is Linked to Brain Structure and Function in Healthy Adults,Berman,J. Shane Kippenhan;Daniel Y. Rubinstein;Michael D. Gregory;Richard Coppola;Joseph H. Callicott;Venkata S. Mattay;Karen F. Berman,2019-12-17,1,Cerebral Cortex,4654-4661,10.1093/cercor/bhy344,30668668,85067258780,2-s2.0-85067258780,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85067258780,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85067258780&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85067258780&origin=inward +Williams syndrome hemideletion and LIMK1 variation both affect dorsal stream functional connectivity,Berman,Philip D. Kohn;J. Shane Kippenhan;Maxwell L. Elliott;Jasmin B. Czarapata;Carolyn B. Mervis;Daniel P. Eisenberg;Michael D. Gregory;Ranjani Prabhakaran;Tiffany Nash;Katherine Roe;Karen F. Berman,2019-12-01,0,Brain,3963-3974,10.1093/brain/awz323,31687737,85076124431,2-s2.0-85076124431,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85076124431,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85076124431&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85076124431&origin=inward +Evaluation of incidental pelvic fluid in relation to physiological changes in healthy pubescent children using pelvic magnetic resonance imaging,Berman,S. Mojdeh Mirmomen;Pedro E. Martinez;Jack A. Yanovski;Peter J. Schmidt;Ashkan A. Malayeri;Mohammadhadi Bagheri;Ahmad Shafiei;Faraz Farhadi;Ashkan Tadayoni;Karen F. Berman,2019-05-01,0,Pediatric Radiology,784-790,10.1007/s00247-019-04355-y,30859244,85065841558,2-s2.0-85065841558,Article,,https://api.elsevier.com/content/abstract/scopus_id/85065841558,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85065841558&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85065841558&origin=inward +Connections With Connections: Dopaminergic Correlates of Neural Network Properties,Berman,Karen F. Berman;Daniel P. Eisenberg,2019-03-01,0,Biological Psychiatry,366-367,10.1016/j.biopsych.2019.01.001,30732679,85060538494,2-s2.0-85060538494,Note,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85060538494,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85060538494&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85060538494&origin=inward +Polygenic risk score increases schizophrenia liability through cognition-relevant pathways,Berman,Stacey Cherny;Timothea Toulopoulou;Xiaowei Zhang;Dwight Dickinson;Pak Sham;Richard E. Straub;Daniel R. Weinberger;Karen F. Berman,2019-02-01,12,Brain,471-485,10.1093/brain/awy279,30535067,85060790821,2-s2.0-85060790821,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85060790821,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85060790821&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85060790821&origin=inward +Dysregulated protocadherin-pathway activity as an intrinsic defect in induced pluripotent stem cell–derived cortical interneurons from subjects with schizophrenia,Berman,Haneul Noh;Bruce M. Cohen;Teagan Parsons;James M. Park;Peiyan Ni;Kelvin Zheng;Richard E. Straub;Sarah E. Cote;Christine Nguyen;Leonard M. Eisenberg;Takeshi Yagi;Teruyoshi Hirayama;Thomas A. Lanz;Dost Ongur;Elizabeth Noyes;Patric K. Stanton;Karen F. Berman;Changhong Yin;Hae Young Kim;Kevin C. Eggan;Roy H. Perlis;Donna L. McPhie;Weihua Huang;Alexander A. Moghadam;Sangmi Chung;Emi Fukuda;Sulagna Ghosh;Jun Hyeong Cho;Woong Bin Kim;Judith L. Rapoport;Joyce Zhao;Zhicheng Shao;Joshua J. Park;Joseph T. Coyle;Jose Apud;Daniel R. Weinberger;Hualin Simon Xi,2019-02-01,17,Nature Neuroscience,229-242,10.1038/s41593-018-0313-z,30664768,85060492176,2-s2.0-85060492176,Article,,https://api.elsevier.com/content/abstract/scopus_id/85060492176,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85060492176&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85060492176&origin=inward +"Ovarian hormones, genes, and the brain: the case of estradiol and the brain-derived neurotrophic factor (BDNF) gene",Berman,Shau Ming Wei;Karen F. Berman,2019-01-01,0,Neuropsychopharmacology,223-224,10.1038/s41386-018-0223-5,30287883,85056636437,2-s2.0-85056636437,Note,MJFF,https://api.elsevier.com/content/abstract/scopus_id/85056636437,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85056636437&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85056636437&origin=inward +"Bridging imaging, genetics, and diagnosis in a coupled low-dimensional framework",Berman,William Ulrich;Qiang Chen;Archana Venkataraman;Sayan Ghosal;Venkata S. Mattay;Aaron L. Goldman;Daniel R. Weinberger;Karen F. Berman,2019-01-01,0,Lecture Notes in Computer Science (including subseries Lecture Notes in Artificial Intelligence and Lecture Notes in Bioinformatics),647-655,10.1007/978-3-030-32251-9_71,,85075680805,2-s2.0-85075680805,Conference Paper,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85075680805,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85075680805&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85075680805&origin=inward +A generative-predictive framework to capture altered brain activity in fMRI and its association with genetic risk: Application to Schizophrenia,Berman,William Ulrich;Qiang Chen;Archana Venkataraman;Sayan Ghosal;Venkata S. Mattay;Aaron L. Goldman;Daniel R. Weinberger;Karen F. Berman,2019-01-01,0,Progress in Biomedical Optics and Imaging - Proceedings of SPIE,,10.1117/12.2511220,,85068327144,2-s2.0-85068327144,Conference Paper,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85068327144,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85068327144&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85068327144&origin=inward +Association of a Schizophrenia-Risk Nonsynonymous Variant with Putamen Volume in Adolescents: A Voxelwise and Genome-Wide Association Study,Berman,Robin M. Murray;Qiang Luo;Gabriel H. Robert;Fei Li;Wenjia Wang;Herta Flor;Tomáš Paus;Christine Macare;Frauke Nees;Joseph H. Callicott;Michael N. Smolka;Jean François Dartigues;Vincent Frouin;Erin Burke Quinlan;Qiang Chen;Christophe Tzourio;Arun L.W. Bokde;Gunter Schumann;Fabrice Crivello;Luise Poustka;Jing Cui;Eric Artiges;Henrik Walter;Ferath Kherif;Karen F. Berman;Bernd Ittermann;Dimitri Papadopoulos Orfanos;Tianye Jia;Penny Gowland;Robert Whelan;Venkata S. Mattay;Lena Palaniyappan;Jean Luc Martinot;Tobias Banaschewski;Christian Büchel;Hugh Garavan;Juliane H. Fröhner;Mickaël Guedj;Zdenka Pausova;Jianfeng Feng;Marie Laure Paillère-Martinot;Sylvane Desrivières;Andreas Heinz;Daniel R. Weinberger,2019-01-01,7,JAMA Psychiatry,,10.1001/jamapsychiatry.2018.4126,30649180,85060250936,2-s2.0-85060250936,,,https://api.elsevier.com/content/abstract/scopus_id/85060250936,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85060250936&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85060250936&origin=inward +Role of gamma-amino-butyric acid in the dorsal anterior cingulate in age-associated changes in cognition,Berman,Yan Zhang;Dwight Dickinson;Christian Meyer;Jan Willem van der Veen;Ryan Kelly;Jun Shen;Stefano Marenco;Daniel R. Weinberger;Karen F. Berman,2018-10-01,3,Neuropsychopharmacology,2285-2291,10.1038/s41386-018-0134-5,30050047,85050669547,2-s2.0-85050669547,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85050669547,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85050669547&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85050669547&origin=inward +Convergence of placenta biology and genetic risk for schizophrenia article,Berman,Giovanna Punzi;Alessandro Bertolino;Richard E. Straub;Annamaria Porcelli;Stefano Marenco;Ryota Hashimoto;Gianluca Ursini;Qiang Chen;Andrew E. Jaffe;Martin Begemann;Hannelore Ehrenreich;Emily G. Hamilton;Karen F. Berman;Giancarlo Maddalena;Giuseppe Blasi;Michael F. Egan;Joshua F. Robinson;Carlo Colantuoni;Marina Mitjans;Jan Seidel;Dan Rujescu;Hidenaga Yanamori;Daniel R. Weinberger,2018-06-01,62,Nature Medicine,792-801,10.1038/s41591-018-0021-y,29808008,85047823512,2-s2.0-85047823512,Article,DFG,https://api.elsevier.com/content/abstract/scopus_id/85047823512,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85047823512&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85047823512&origin=inward +A method for determining haploid and triploid genotypes and their association with vascular phenotypes in Williams syndrome and 7q11.23 duplication syndrome,Berman,Bhaskar Kolachana;Carolyn B. Mervis;Dwight Dickinson;Daniel P. Eisenberg;Michael D. Gregory;Tiffany Nash;Yin Yao;Karen F. Berman,2018-04-04,0,BMC Medical Genetics,,10.1186/s12881-018-0563-3,29614955,85044847934,2-s2.0-85044847934,Article,,https://api.elsevier.com/content/abstract/scopus_id/85044847934,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85044847934&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85044847934&origin=inward +Schizophrenia polygenic risk score predicts mnemonic hippocampal activity,Berman,Adrienne L. Romer;Qiang Chen;Karleigh Mezeivtch;Venkata S. Mattay;Ena Xiao;Karen F. Berman;Alessandro Bertolino;Richard E. Straub;Joseph H. Callicott;Ahmad R. Hariri;Giulio Pergola;Daniel R. Weinberger;Annchen R. Knodt;Giuseppe Blasi;Gianluca Ursini,2018-04-01,11,Brain,1218-1228,10.1093/brain/awy004,29415119,85048236504,2-s2.0-85048236504,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85048236504,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85048236504&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85048236504&origin=inward +Interaction of childhood urbanicity and variation in dopamine genes alters adult prefrontal function as measured by functional magnetic resonance imaging (fMRI),Berman,Enrico D’Ambrosio;Ann Reifman;Justin Sturm;Raffaella Romano;Karen F. Berman;Barbara E. Spencer;Alessandro Bertolino;Jesse Hochheiser;Amanda B. Zheutlin;Stefano Marenco;Joseph H. Callicott;Daniel R. Weinberger;Jessica L. Reed;Giuseppe Blasi;Gianluca Ursini,2018-04-01,4,PLoS ONE,,10.1371/journal.pone.0195189,29634738,85045237650,2-s2.0-85045237650,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85045237650,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85045237650&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85045237650&origin=inward +Reduced Functional Brain Activation and Connectivity During a Working Memory Task in Childhood-Onset Schizophrenia,Berman,Lorie Shora;Liv S. Clasen;Diane D. Broadnax;Kirsten E.S. Craddock;Peter Gochman;Francois M. Lalonde;Rebecca A. Berman;Judith L. Rapoport;Siyuan Liu;Frances F. Loeb;Xueping Zhou;Karen F. Berman,2018-03-01,6,Journal of the American Academy of Child and Adolescent Psychiatry,166-174,10.1016/j.jaac.2017.12.009,29496125,85042493353,2-s2.0-85042493353,Article,,https://api.elsevier.com/content/abstract/scopus_id/85042493353,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85042493353&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85042493353&origin=inward +Attacking Heterogeneity in Schizophrenia by Deriving Clinical Subgroups from Widely Available Symptom Data,Berman,Danielle N. Pratt;Karen F. Berman;Meilin Grunnagle;Dwight Dickinson;Joseph H. Callicott;Jennifer Orel;Daniel R. Weinberger;Evan J. Giangrande,2018-01-01,15,Schizophrenia Bulletin,101-113,10.1093/schbul/sbx039,28369611,85040826042,2-s2.0-85040826042,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85040826042,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85040826042&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85040826042&origin=inward +BDNF Val66Met polymorphism tunes frontolimbic circuitry during affective contextual learning,Berman,J. Shane Kippenhan;Mbemba Jabbi;Philip Kohn;Bhaskar Kolachana;Raghav Mattay;Brett Cropp;Tiffany Nash;Joseph C. Masdeu;Karen F. Berman,2017-11-15,3,NeuroImage,373-383,10.1016/j.neuroimage.2017.08.080,28867340,85030319360,2-s2.0-85030319360,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85030319360,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85030319360&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85030319360&origin=inward +Late-Onset Alzheimer's Disease Polygenic Risk Profile Score Predicts Hippocampal Function,Berman,Qiang Chen;Kaitlin Healy;Ena Xiao;Bhaskar Kolachana;Karen F. Berman;Brad Zoltick;Hao Yang Tan;Dwight Dickinson;Saumitra Das;Joseph H. Callicott;Venkata S. Mattay;Daniel R. Weinberger;Aaron L. Goldman,2017-11-01,6,Biological Psychiatry: Cognitive Neuroscience and Neuroimaging,673-679,10.1016/j.bpsc.2017.08.004,29560901,85031098005,2-s2.0-85031098005,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85031098005,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85031098005&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85031098005&origin=inward +Presynaptic Dopamine Synthesis Capacity in Schizophrenia and Striatal Blood Flow Change during Antipsychotic Treatment and Medication-Free Conditions,Berman,Philip D. Kohn;Catherine E. Hegarty;Lisa Yankowitz;Karen F. Berman;Angela M. Ianni;Dani Y. Rubinstein;Michael D. Gregory;Daniel Paul Eisenberg;José A. Apud,2017-10-01,7,Neuropsychopharmacology,2232-2241,10.1038/npp.2017.67,28387222,85029291764,2-s2.0-85029291764,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85029291764,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85029291764&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85029291764&origin=inward +Genetic model of MS severity predicts future accumulation of disability,Bielekova,Makoto Tanigawa;Dena Hernandez;Christopher Barbour;Bibiana Bielekova;Katherine Sun;Ann Marie Weideman;Kayla C. Jackson;Peter Kosa,2020-01-01,0,Annals of Human Genetics,1-10,10.1111/ahg.12342,31396954,85070717159,2-s2.0-85070717159,Article,HHS,https://api.elsevier.com/content/abstract/scopus_id/85070717159,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85070717159&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85070717159&origin=inward +Quantifications of CSF Apoptotic Bodies Do Not Provide Clinical Value in Multiple Sclerosis,Bielekova,John Park;Bibiana Bielekova;Peter R. Williamson;Ruturaj Masvekar;Jordan Mizrahi,2019-11-26,0,Frontiers in Neurology,,10.3389/fneur.2019.01241,,85076683499,2-s2.0-85076683499,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85076683499,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85076683499&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85076683499&origin=inward +"Intrathecal, Not Systemic Inflammation Is Correlated With Multiple Sclerosis Severity, Especially in Progressive Multiple Sclerosis",Bielekova,Kayla Jackson;Christopher R. Barbour;Bibiana Bielekova;Joshua L. Milstein;Peter Kosa,2019-11-22,0,Frontiers in Neurology,,10.3389/fneur.2019.01232,,85076673218,2-s2.0-85076673218,Article,NIAID,https://api.elsevier.com/content/abstract/scopus_id/85076673218,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85076673218&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85076673218&origin=inward +CSF inflammatory biomarkers responsive to treatment in progressive multiple sclerosis capture residual inflammation associated with axonal damage,Bielekova,Rikke Ratzer;Lars Börnsen;Mika Komori;Finn Sellebjerg;Marina Rode von Essen;Jeppe Romme Christensen;Bibi Bielekova,2019-06-01,5,Multiple Sclerosis Journal,937-946,10.1177/1352458518774880,29775134,85047437818,2-s2.0-85047437818,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85047437818,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85047437818&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85047437818&origin=inward +Daclizumab therapy for multiple sclerosis,Bielekova,Bibiana Bielekova,2019-05-01,3,Cold Spring Harbor Perspectives in Medicine,,10.1101/cshperspect.a034470,29661806,85065520676,2-s2.0-85065520676,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85065520676,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85065520676&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85065520676&origin=inward +Body Mass Index in Multiple Sclerosis modulates ceramide-induced DNA methylation and disease course,Bielekova,Kamilah Castro;Maria Petracca;Emily Y. Chen;Dirk Trauner;Bibiana Bielekova;Michael A. Kiebish;Ilana Katz Sand;Achilles Ntranos;Mario Amatruda;Corey T. Watson;Matilde Inglese;Peter Kosa;Johannes Morstein;Patrizia Casaccia,2019-05-01,6,EBioMedicine,392-410,10.1016/j.ebiom.2019.03.087,30981648,85064274027,2-s2.0-85064274027,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85064274027,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85064274027&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85064274027&origin=inward +Pediatric CNS-isolated hemophagocytic lymphohistiocytosis,Bielekova,William A. Gahl;Alyssa L. Kennedy;Mark P. Gorman;Michelle A. Lee;Christine N. Duncan;Bibiana Bielekova;Leslie A. Benson;Lauren A. Henderson;Hojun Li;Sanda Alexandrescu;Ariane Soldatos;Isaac H. Solomon;Kimberly J. Davies;Amy P. Hsu;Robert P. Sundel;Jennifer Murphy;Steven M. Holland;Michael J. Rivkin;Barbara A. Degar;Leslie E. Lehmann,2019-05-01,5,Neurology: Neuroimmunology and NeuroInflammation,,10.1212/NXI.0000000000000560,,85065021977,2-s2.0-85065021977,Article,NHGRI,https://api.elsevier.com/content/abstract/scopus_id/85065021977,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85065021977&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85065021977&origin=inward +Central nervous system–restricted familial hemophagocytic lymphohistiocytosis responds to hematopoietic cell transplantation,Bielekova,Christine N. Duncan;Ariane Soldatos;Alyssa L. Kennedy;Jennifer Murphy;Bibiana Bielekova;Barbara A. Degar;Isaac H. Solomon;Leslie A. Benson;Mark P. Gorman;Lauren A. Henderson;Hojun Li;Kimberly J. Davies;Michelle A. Lee;Leslie E. Lehmann;Sanda Alexandrescu,2019-02-26,3,Blood Advances,503-507,10.1182/bloodadvances.2018027417,30760465,85061587048,2-s2.0-85061587048,Article,ASH,https://api.elsevier.com/content/abstract/scopus_id/85061587048,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85061587048&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85061587048&origin=inward +Cerebrospinal fluid biomarkers link toxic astrogliosis and microglial activation to multiple sclerosis severity,Bielekova,Christopher Barbour;Tianxia Wu;Bibiana Bielekova;Valentina Fossati;Ruturaj Masvekar;Peter Kosa,2019-02-01,2,Multiple Sclerosis and Related Disorders,34-43,10.1016/j.msard.2018.11.032,30553167,85058143144,2-s2.0-85058143144,Article,NIAID,https://api.elsevier.com/content/abstract/scopus_id/85058143144,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85058143144&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85058143144&origin=inward +Gender Inequities in the Multiple Sclerosis Community: A Call for Action,Bielekova,Ruth Ann Marrie;Yunyan Zhang;Carolyn Bevan;Frauke Zipp;Lauren Krupp;Idanis Berrios Morales;Patricia Coyle;Luanne M. Metz;Lisa F. Barcellos;Jennifer Graves;Kerstin Hellwig;Bibi Bielekova;Dalia Dimitri;Soe Mar;Nancy Monson;Sarah A. Morrow;Jiwon Oh;Jill Conway;Tamara Castillo-Trivino;Etty (Tika) Benveniste;Mariko Kita;Mary Rensel;Monica J. Carson;Hanne Harbo;Maria Pia Amato;Laure Michel;Catherine Lubetzki;Caroline Papeix;Ingrid Van der Mei;Tanuja Chitnis;Jacqueline Palace;Judith Grinspan;Jodie M. Burton;Dina Jacobs;Laura Piccio;Olga Ciccarelli;Riley Bove;Carolina Ionete;Matilde Inglese;Cornelia Laule;Claire Riley;Ellen Mowry;Julia Pakpoor;Sandra Vukusic;Katherine Whartenby;Prue Plummer;Giulia Bommarito;Helen Tremlett;Joan M. Goverman;Orla Gray;Rebecca Spain;Elaine Kingwell;Vilija Jokubaitis;Fabienne Brilot-Turville;Carrie Hersh;Amy T. Waldman;Annette M. Langer-Gould;Katerina Akassoglou;Jennifer Orthmann Murphy;Myla D. Goldman;Emmanuelle Leray;Nasrin Asgari;Erin E. Longbrake;Valerie Block;Christine Lebrun-Frenay;Ruth Dobson;Silvia Tenembaum;Robyn M. Lucas;Teri Schreiner;Ann Yeh;Jacqueline A. Quandt;Emmanuelle Waubant;Lilyana Amezcua;Bianca Weinstock-Guttman;Mar Tintore;Leigh Charvet;Le H. Hua;Elizabeth Crabtree;Maria Petracca;Ilana Katz Sand;Anne H. Cross;Fiona Costello;Leslie Benson;Eve E. Kelland;Seema K. Tiwari-Woodruff;Laura Airas;Anneke Van der Walt;Elisabeth Gulowsen Celius;Nancy Sicotte;Margaret Burnett;Afsaneh Shirani;Rosa Cortese;Maria Pia Sormani;May H. Han;Maria Trojano;Rana Zabad;Rhonda Voskuhl;Vijay Yadav;Christina J. Azevedo,2018-12-01,6,Annals of Neurology,958-959,10.1002/ana.25359,30387521,85058893204,2-s2.0-85058893204,Letter,,https://api.elsevier.com/content/abstract/scopus_id/85058893204,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85058893204&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85058893204&origin=inward +NeurEx: digitalized neurological examination offers a novel high-resolution disability scale,Bielekova,Mark Greenwood;Christopher Barbour;Bibiana Bielekova;Mary Sandford;Alison Wichman;Peter Kosa,2018-10-01,2,Annals of Clinical and Translational Neurology,1241-1249,10.1002/acn3.640,,85053069106,2-s2.0-85053069106,Article,"DIR, NIAID",https://api.elsevier.com/content/abstract/scopus_id/85053069106,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85053069106&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85053069106&origin=inward +Identifying and quantifying neurological disability via smartphone,Bielekova,Bibiana Bielekova;Alexandra K. Boukhvalova;Thomas Harris;Atif Memon;Emily Kowalczyk;Alison Wichman;Peter Kosa;Mary A. Sandford,2018-09-04,4,Frontiers in Neurology,,10.3389/fneur.2018.00740,,85053033246,2-s2.0-85053033246,Article,NIAID,https://api.elsevier.com/content/abstract/scopus_id/85053033246,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85053033246&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85053033246&origin=inward +Intrathecal B cells in MS have significantly greater lymphangiogenic potential compared to B cells derived from non-MS subjects,Bielekova,Tianxia Wu;Simone C. Wuest;Bibiana Bielekova;Peter Kosa;Quangang Xu;Elena Romm;Kayla C. Jackson;Jason Stein,2018-07-20,3,Frontiers in Neurology,,10.3389/fneur.2018.00554,,85050349425,2-s2.0-85050349425,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85050349425,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85050349425&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85050349425&origin=inward +Neuroimmune disorders of the central nervous system in children in the molecular era,Bielekova,Sean Pittock;Russel C. Dale;Amy Waldman;Robert C. Tasker;William Gaillard;Benjamin Greenberg;Susanne Benseler;Mark Gorman;E. Ann Yeh;Carlos A. Pardo;Bibi Bielekova;Ariane Soldatos;Yael Hacohen;Ann Hyslop;Elizabeth Wells;Adeline Vanderver;Beau Ances;Josep Dalmau;Jan M. Tillema;Brenda Banwell;Amit Bar-Or,2018-07-01,14,Nature Reviews Neurology,433-445,10.1038/s41582-018-0024-9,29925924,85048707895,2-s2.0-85048707895,Review,PCORI,https://api.elsevier.com/content/abstract/scopus_id/85048707895,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85048707895&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85048707895&origin=inward +"Erratum to: Neuroimmune disorders of the central nervous system in children in the molecular era (Nature Reviews Neurology, (2018), 14, 7, (433-445), 10.1038/s41582-018-0024-9)",Bielekova,William McDow;Sean Pittock;Roger Packer;Gilbert Vezina;Russel C. Dale;Amy Waldman;David Schleyer;Robert C. Tasker;Ursula Utz;William Gaillard;Benjamin Greenberg;Susanne Benseler;Ilana Kahn;Mark Gorman;Stephanie Schleyer;E. Ann Yeh;Peter Shibuya;Carlos A. Pardo;Irene Cortese;Bibi Bielekova;Ariane Soldatos;Yael Hacohen;Racquel Farias-Moeller;Avindra Nath;Ann Hyslop;William McClintock;Jessica Carpenter;Elizabeth Wells;Adeline Vanderver;Beau Ances;Josep Dalmau;Nathan Dean;Raphaela Goldbach-Mansky;Bennett Lavenstein;Jan M. Tillema;Jennifer Murphy;Brenda Banwell;William Gallentine;David Wessel;Tova Ronis;Amit Bar-Or;Carol Glaser,2018-07-01,0,Nature Reviews Neurology,749,10.1038/s41582-018-0077-9,30442924,85056647453,2-s2.0-85056647453,Erratum,,https://api.elsevier.com/content/abstract/scopus_id/85056647453,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85056647453&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85056647453&origin=inward +The effects of interleukin-2 on immune response regulation,Bielekova,Ryan S. Waters;Tomas Gedeon;Bibiana Bielekova;Justin S.A. Perry;Sun Pil Han,2018-03-01,11,Mathematical Medicine and Biology,79-119,10.1093/imammb/dqw021,28339682,85046635874,2-s2.0-85046635874,Article,NSF,https://api.elsevier.com/content/abstract/scopus_id/85046635874,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85046635874&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85046635874&origin=inward +Meta-analysis of the age-dependent efficacy of multiple sclerosis treatments,Bielekova,Mark Greenwood;Bibiana Bielekova;Marco Aurelio Tapia-Maltos;Kory Johnson;Ann Marie Weideman,2017-11-10,36,Frontiers in Neurology,,10.3389/fneur.2017.00577,,85033574423,2-s2.0-85033574423,Article,COI,https://api.elsevier.com/content/abstract/scopus_id/85033574423,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85033574423&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85033574423&origin=inward +New multiple sclerosis disease severity scale predicts future accumulation of disability,Bielekova,Kayla Jackson;Mark Greenwood;Christopher Barbour;Bibiana Bielekova;Mika Komori;Marco Aurelio Tapia-Maltos;Tan Tran;Kory Johnson;Ann Marie Weideman;Alison Wichman;Peter Kosa,2017-11-10,8,Frontiers in Neurology,,10.3389/fneur.2017.00598,,85033555578,2-s2.0-85033555578,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85033555578,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85033555578&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85033555578&origin=inward +Molecular-based diagnosis of multiple sclerosis and its progressive stage,Bielekova,Mark Greenwood;Makoto Tanigawa;Christopher Barbour;Yue Wang;Tianxia Wu;Bibiana Bielekova;Mika Komori;Keith Tan;Ronald Herbst;Panagiotis Douvaras;Valentina Fossati;Kory Johnson;Ruturaj Masvekar;Peter Kosa,2017-11-01,13,Annals of Neurology,795-812,10.1002/ana.25083,29059494,85034422486,2-s2.0-85034422486,Article,JSPS,https://api.elsevier.com/content/abstract/scopus_id/85034422486,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85034422486&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85034422486&origin=inward +"Promise, Progress, and Pitfalls in the Search for Central Nervous System Biomarkers in Neuroimmunological Diseases: A Role for Cerebrospinal Fluid Immunophenotyping",Bielekova,Bibiana Bielekova;Michael R. Pranzatelli,2017-01-01,5,Seminars in Pediatric Neurology,229-239,10.1016/j.spen.2017.08.001,29103430,85029844291,2-s2.0-85029844291,Article,,https://api.elsevier.com/content/abstract/scopus_id/85029844291,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85029844291&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85029844291&origin=inward +Spinal arachnoiditis as a complication of cryptococcal meningoencephalitis in non-HIV previously healthy adults,Bielekova,Lindsey B. Rosen;Sarah K. Browne;Dima A. Hammoud;Charu Ramaprasad;Peter R. Williamson;Bibiana Bielekova;Mika Komori;Yen Chih Lin;John E. Bennett;Anil A. Panackal;Elena Romm;Peter Kosa;Bettina C. Fries;Omar Khan,2017-01-01,14,Clinical Infectious Diseases,275-283,10.1093/cid/ciw739,28011613,85027442574,2-s2.0-85027442574,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85027442574,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85027442574&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85027442574&origin=inward +"Alcohol Use Disorder, But Not Cannabis Use Disorder, Symptomatology in Adolescents Is Associated With Reduced Differential Responsiveness to Reward Versus Punishment Feedback During Instrumental Learning",Blair,Ru Zhang;Jennie Lukoff;Karina S. Blair;R. James R. Blair;Johannah Bashford-Largo;Kathleen I. Crum;Stuart F. White;Soonjo Hwang;Joseph Aloi;Francesca M. Filbey;Matthew Dobbertin;Erin Carollo,2020-06-01,0,Biological Psychiatry: Cognitive Neuroscience and Neuroimaging,610-618,10.1016/j.bpsc.2020.02.003,32299790,85083112575,2-s2.0-85083112575,Article,AACAP,https://api.elsevier.com/content/abstract/scopus_id/85083112575,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85083112575&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85083112575&origin=inward +"Investigating Sex Differences in Emotion Recognition, Learning, and Regulation Among Youths With Conduct Disorder",Blair,Areti Smaragdi;Leonidas Papadakos;Roberta Dochnal;Christina Stadler;Amaia Hervas;Zacharias Kalogerakis;Fernando Aguirregomoscorta-Menéndez;Roberta Clanton;Beate Herpertz-Dahlmann;Rosalind Baker;Mara Pirlympou;Sarah Baumann;Ruth Pauli;Katharina Ackermann;Linda Kersten;Stephane A. De Brito;Anka Bernhard;Helena Oldenhof;Lisette van den Boogaard;Martin Prätzlich;Graeme Fairchild;Karen Gonzalez-Madruga;Aranzazu Fernández-Rivas;Gregor Kohls;Réka Siklósi;Dimitris Dikeos;Arne Popma;Eva Sesma-Pardo;Christine M. Freitag;Malou Gundlach;Kerstin Konrad;Lucres Jansen;James R. Blair;Harriet Cornwell;Aitana Bigorra;Wolfgang Scharke;Anne Martinelli;Jack C. Rogers;Iñaki Kerexeta-Lizeaga,2020-02-01,3,Journal of the American Academy of Child and Adolescent Psychiatry,263-273,10.1016/j.jaac.2019.04.003,31026574,85071985460,2-s2.0-85071985460,Article,CD,https://api.elsevier.com/content/abstract/scopus_id/85071985460,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85071985460&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85071985460&origin=inward +Modeling the Comorbidity of Cannabis Abuse and Conduct Disorder/Conduct Problems from a Cognitive Neuroscience Perspective,Blair,R. James Blair,2020-01-02,1,Journal of Dual Diagnosis,3-21,10.1080/15504263.2019.1668099,31608811,85076497530,2-s2.0-85076497530,Review,,https://api.elsevier.com/content/abstract/scopus_id/85076497530,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85076497530&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85076497530&origin=inward +"Recent neuro-imaging findings with respect to conduct disorder, callous-unemotional traits and psychopathy",Blair,Ru Zhang;Robert James R. Blair,2020-01-01,0,Current Opinion in Psychiatry,45-50,10.1097/YCO.0000000000000559,31725420,85076126170,2-s2.0-85076126170,Review,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85076126170,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85076126170&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85076126170&origin=inward +Alcohol use disorder and cannabis use disorder symptomatology in adolescents is associated with dysfunction in neural processing of future events,Blair,Abraham D. Killanin;R. James Blair;Karina S. Blair;Harma Meffert;Alita Mobley;Stuart F. White;Kathleen I. Crum;Soonjo Hwang;Laura C. Thornton;Joseph Aloi;Francesca M. Filbey;Patrick M. Tyler;Kayla Pope,2020-01-01,0,Addiction Biology,,10.1111/adb.12885,,85080930791,2-s2.0-85080930791,Article,,https://api.elsevier.com/content/abstract/scopus_id/85080930791,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85080930791&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85080930791&origin=inward +Alcohol use disorder and cannabis use disorder symptomatology in adolescents are differentially related to dysfunction in brain regions supporting face processing,Blair,Emily K. Leiker;Karina S. Blair;Francesca Filbey;Harma Meffert;Brittany K. Taylor;Heba Abdel-Rahim;Patrick M. Tyler;R. James R. Blair;Stuart F. White;Joseph Aloi;Laura C. Thornton;Niraj Shah;Matthew Dobbertin;Kayla Pope,2019-10-30,1,Psychiatry Research - Neuroimaging,62-71,10.1016/j.pscychresns.2019.09.004,31541926,85072302321,2-s2.0-85072302321,Article,,https://api.elsevier.com/content/abstract/scopus_id/85072302321,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85072302321&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85072302321&origin=inward +Psychometrics of a Brief Trauma Symptom Screen for Youth in Residential Care,Blair,W. Alex Mason;R. James Blair;Mary B. Chmelka;Irina Patwardan;Heba Abdel-Rahim;Kimberly Johnson;Patrick M. Tyler;Niraj Shah;Matthew Dobbertin;Kayla Pope,2019-10-01,2,Journal of Traumatic Stress,753-763,10.1002/jts.22442,31441982,85070061983,2-s2.0-85070061983,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85070061983,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85070061983&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85070061983&origin=inward +Threat Responsiveness as a Function of Cannabis and Alcohol Use Disorder Severity,Blair,Robert James R. Blair;Emily K. Leiker;Jennie Lukoff;Matt Dobbertin;Francesca Filbey;Karina S. Blair;Stuart F. White;Laura C. Thornton;Kimberly Johnson;Patrick M. Tyler,2019-08-01,5,Journal of Child and Adolescent Psychopharmacology,526-534,10.1089/cap.2019.0004,31170004,85071782104,2-s2.0-85071782104,Article,,https://api.elsevier.com/content/abstract/scopus_id/85071782104,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85071782104&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85071782104&origin=inward +Cognitive and neural facets of dissociation in a traumatized population,Blair,Robert J. Blair;Sindhuja Surapaneni;Bekh Bradley;Tricia Z. King;Negar Fani;Tanja Jovanovic;Kerry J. Ressler;Abigail Powers;Sanne Van Rooij;Raven A. Hardy;Greg J. Siegle,2019-08-01,0,Emotion,863-875,10.1037/emo0000466,30124316,85051988122,2-s2.0-85051988122,Article,BWF,https://api.elsevier.com/content/abstract/scopus_id/85051988122,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85051988122&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85051988122&origin=inward +"Attentional control abnormalities in posttraumatic stress disorder: Functional, behavioral, and structural correlates",Blair,James R. Blair;Sindhuja Surapaneni;Bekh Bradley;Tricia Z. King;Negar Fani;Tanja Jovanovic;Stuart F. White;Tim D. Ely;Kerry J. Ressler;Cherita Clendinen;Abigail Powers;Raven A. Hardy,2019-06-15,5,Journal of Affective Disorders,343-351,10.1016/j.jad.2019.04.098,31078834,85065843515,2-s2.0-85065843515,Article,EMCF,https://api.elsevier.com/content/abstract/scopus_id/85065843515,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85065843515&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85065843515&origin=inward +"Genetic underpinnings of callous-unemotional traits and emotion recognition in children, adolescents, and emerging adults",Blair,Ellen Leibenluft;R. James Blair;Daniel S. Pine;John M. Hettema;Roxann Roberson-Nay;Lance M. Rappaport;Melissa A. Brotman;Ashlee A. Moore,2019-06-01,5,Journal of Child Psychology and Psychiatry and Allied Disciplines,638-645,10.1111/jcpp.13018,30779145,85061913341,2-s2.0-85061913341,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85061913341,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85061913341&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85061913341&origin=inward +Fronto-parietal mirror neuron system modeling: Visuospatial transformations support imitation learning independently of imitator perspective,Blair,James A. Reggia;Hyuk Oh;Rodolphe J. Gentili;Allen R. Braun,2019-06-01,2,Human Movement Science,121-141,10.1016/j.humov.2018.05.013,30219273,85053116646,2-s2.0-85053116646,Article,UMD,https://api.elsevier.com/content/abstract/scopus_id/85053116646,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85053116646&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85053116646&origin=inward +Association of Different Types of Childhood Maltreatment With Emotional Responding and Response Control Among Youths,Blair,Kathleen Crum;Emily K. Leiker;Jennie Lukoff;R. James Blair;Karina S. Blair;Harma Meffert;Brittany K. Taylor;Patrick M. Tyler;Heba Abdel-Rahim;Stuart F. White;Seth Pollak;Joseph Aloi;Kimberly Johnson;Laura C. Thornton;Niraj Shah;Matthew Dobbertin;Kayla Pope,2019-05-03,2,JAMA network open,e194604,10.1001/jamanetworkopen.2019.4604,31125109,85066866364,2-s2.0-85066866364,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85066866364,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85066866364&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85066866364&origin=inward +What role can cognitive neuroscience play in violence prevention?,Blair,R. J.R. Blair,2019-05-01,1,Aggression and Violent Behavior,158-164,10.1016/j.avb.2019.02.008,,85061362475,2-s2.0-85061362475,Review,,https://api.elsevier.com/content/abstract/scopus_id/85061362475,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85061362475&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85061362475&origin=inward +The genetic underpinnings of callous-unemotional traits: A systematic research review,Blair,R. James Blair;Roxann Roberson-Nay;Ashlee A. Moore;John M. Hettema,2019-05-01,5,Neuroscience and Biobehavioral Reviews,85-97,10.1016/j.neubiorev.2019.02.018,30817934,85062210960,2-s2.0-85062210960,Review,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85062210960,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85062210960&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85062210960&origin=inward +Changing Views on the Salience Network in Response to Data on Exposure to Assault,Blair,Robert James R. Blair,2019-04-01,0,Biological Psychiatry: Cognitive Neuroscience and Neuroimaging,331-332,10.1016/j.bpsc.2019.02.002,30961833,85063534958,2-s2.0-85063534958,Note,,https://api.elsevier.com/content/abstract/scopus_id/85063534958,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85063534958&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85063534958&origin=inward +"Intensity, not emotion: The role of poverty in emotion labeling ability in middle childhood",Blair,Pilyoung Kim;Julia Dmitrieva;Robert James Blair;Andrew Erhart,2019-04-01,2,Journal of Experimental Child Psychology,131-140,10.1016/j.jecp.2018.12.009,30655098,85059800101,2-s2.0-85059800101,Article,NICHD,https://api.elsevier.com/content/abstract/scopus_id/85059800101,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85059800101&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85059800101&origin=inward +Differential dysfunctions related to alcohol and cannabis use disorder symptoms in reward and error-processing neuro-circuitries in adolescents,Blair,Kathryn O. Adams;Abraham D. Killanin;Karina S. Blair;Francesca Filbey;Harma Meffert;R. James R. Blair;Stuart F. White;Laura C. Thornton;Soonjo Hwang;Kathleen I. Crum;Joseph Aloi;Patrick M. Tyler;Kayla Pope,2019-04-01,5,Developmental Cognitive Neuroscience,,10.1016/j.dcn.2019.100618,30710868,85060739115,2-s2.0-85060739115,Article,UNMC,https://api.elsevier.com/content/abstract/scopus_id/85060739115,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85060739115&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85060739115&origin=inward +Overt social interaction and resting state in young adult males with autism: Core and contextual neural features,Blair,John E. Ingeholm;Lauren Kenworthy;Yisheng Xu;Siyuan Liu;Stephen J. Gotts;Gregory L. Wallace;Alex Martin;Cameron D. Riddell;Allen R. Braun;Kyle Jasmin,2019-03-01,4,Brain,808-822,10.1093/brain/awz003,30698656,85062493242,2-s2.0-85062493242,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85062493242,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85062493242&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85062493242&origin=inward +Sleep extension reduces pain sensitivity,Blair,Allen Braun;Phillip J. Quartana;Angela M. Yarnell;Janna Mantua;Allison J. Brager;Lonique Moore;Guido Simonelli;Maria St Pierre;Thomas J. Balkin;Mary Gad;Vincent F. Capaldi,2019-02-01,5,Sleep Medicine,172-176,10.1016/j.sleep.2018.10.023,30580190,85058655719,2-s2.0-85058655719,Article,MRMC,https://api.elsevier.com/content/abstract/scopus_id/85058655719,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85058655719&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85058655719&origin=inward +Applying a Cognitive Neuroscience Perspective to Disruptive Behavior Disorders: Implications for Schools,Blair,Stuart F. White;Patrick M. Tyler;Ronald W. Thompson;R. J.R. Blair,2019-01-02,3,Developmental Neuropsychology,17-42,10.1080/87565641.2017.1334782,29432037,85041909528,2-s2.0-85041909528,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85041909528,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85041909528&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85041909528&origin=inward +Dysfunctional neurocognition in individuals with clinically significant psychopathic traits,Blair,Robert James R. Blair,2019-01-01,1,Dialogues in Clinical Neuroscience,291-299,10.31887/DCNS.2019.21.3/rblair,31749653,85075523607,2-s2.0-85075523607,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85075523607,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85075523607&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85075523607&origin=inward +Threat-of-shock decreases emotional interference on affective stroop performance in healthy controls and anxiety patients,Blair,James R. Blair;Tiffany R. Lago;Amanda Thongdarong;Karina S. Blair;Christian Grillon;Monique Ernst;Gabriella Alvarez,2019-01-01,0,European Journal of Neuroscience,,10.1111/ejn.14624,31738835,85076359264,2-s2.0-85076359264,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85076359264,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85076359264&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85076359264&origin=inward +Segregating sustained attention from response inhibition in ADHD: An fMRI study,Blair,Mary L. Botkin;Ian Parsley;Harma Meffert;Patrick M. Tyler;Soonjo Hwang;Anna K. Erway;R. J.R. Blair;Kayla Pope,2019-01-01,1,NeuroImage: Clinical,,10.1016/j.nicl.2019.101677,30682530,85060270974,2-s2.0-85060270974,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85060270974,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85060270974&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85060270974&origin=inward +A Developmental Twin Study of Emotion Recognition and Its Negative Affective Clinical Correlates,Blair,Dever M. Carney;Michael C. Neale;Ellen Leibenluft;James Blair;John M. Hettema;Daniel S. Pine;Roxann Roberson-Nay;Lance M. Rappaport;Melissa A. Brotman;Brad Verhulst,2018-12-01,4,Journal of the American Academy of Child and Adolescent Psychiatry,925-933.e3,10.1016/j.jaac.2018.05.028,30522738,85057844261,2-s2.0-85057844261,Article,NCRR,https://api.elsevier.com/content/abstract/scopus_id/85057844261,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85057844261&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85057844261&origin=inward +Dysfunctional social reinforcement processing in disruptive behavior disorders: An functional magnetic resonance imaging study,Blair,Brigette Vaughan;Susan Y. Bookheimer;Harma Meffert;Soonjo Hwang;Stephen Sinclair;Michelle R. Van Tieghem;R. J.R. Blair,2018-11-01,0,Clinical Psychopharmacology and Neuroscience,449-460,10.9758/cpn.2018.16.1.449,,85055857189,2-s2.0-85055857189,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85055857189,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85055857189&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85055857189&origin=inward +Moderation of prior exposure to trauma on the inverse relationship between callous-unemotional traits and amygdala responses to fearful expressions: An exploratory study,Blair,Mary L. Botkin;Anna K. Erway;Venkata Kolli;Harma Meffert;Patrick M. Tyler;R. James R. Blair;Stuart F. White;Laura C. Thornton;Kayla Pope,2018-11-01,7,Psychological Medicine,2530-2540,10.1017/S0033291718000156,29428004,85041899282,2-s2.0-85041899282,Article,,https://api.elsevier.com/content/abstract/scopus_id/85041899282,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85041899282&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85041899282&origin=inward +Rat behavior and dopamine release are modulated by conspecific distress,Blair,Vadim Kashtelyan;Matthew R. Roesch;Matthew A. Myers;Shir Kantor;Robel T. Tesfay;Henok T. Girma;R. James R. Blair;Elizabeth A. Green;Meredith G. Pecukonis;Danielle Potemri;Dave A. Lagowala;Michael S. Walters;Adam C. Zhao;Brian Lee;Bharadwaja S. Chappa;Joseph F. Cheer;Nina T. Lichtenberg,2018-11-01,3,eLife,,10.7554/eLife.38090,30484770,85057232027,2-s2.0-85057232027,Article,,https://api.elsevier.com/content/abstract/scopus_id/85057232027,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85057232027&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85057232027&origin=inward +Increased cognitive control and reduced emotional interference is associated with reduced PTSD symptom severity in a trauma-exposed sample: A preliminary longitudinal study,Blair,James R. Blair;Michelle E. Costanzo;Stuart F. White;Alita M. Mobley;Michael J. Roy;Laura C. Thornton,2018-08-30,5,Psychiatry Research - Neuroimaging,7-12,10.1016/j.pscychresns.2018.06.006,29935441,85048713583,2-s2.0-85048713583,Article,CNRM,https://api.elsevier.com/content/abstract/scopus_id/85048713583,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85048713583&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85048713583&origin=inward +The role of ventral striatum in reward-based attentional bias,Blair,Isaiah Sypher;Joseph Leshin;Harma Meffert;R. James R. Blair;Elizabeth Penner;Michelle R. VanTieghem,2018-06-15,1,Brain Research,89-97,10.1016/j.brainres.2018.03.036,29625117,85044986051,2-s2.0-85044986051,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85044986051,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85044986051&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85044986051&origin=inward +Looming Threats and Animacy: Reduced Responsiveness in Youth with Disrupted Behavior Disorders,Blair,Joseph Leshin;James R. Blair;Harma Meffert;Stuart F. White;Roberta Clanton;Soonjo Hwang;Stephen Sinclair;Dionne Coker-Appiah;Laura C. Thornton,2018-05-01,2,Journal of Abnormal Child Psychology,741-754,10.1007/s10802-017-0335-0,28776147,85026816540,2-s2.0-85026816540,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85026816540,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85026816540&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85026816540&origin=inward +Traits of empathy and anger: Implications for psychopathy and other disorders associated with aggression,Blair,R. J.R. Blair,2018-04-19,16,Philosophical Transactions of the Royal Society B: Biological Sciences,,10.1098/rstb.2017.0155,29483341,85043346738,2-s2.0-85043346738,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85043346738,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85043346738&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85043346738&origin=inward +The neurodevelopmental basis of early childhood disruptive behavior: Irritable and callous phenotypes as exemplars,Blair,Ellen Leibenluft;R. James Blair;Daniel S. Pine;Lauren S. Wakschlag;Margaret J. Briggs-Gowan;Susan B. Perlman,2018-02-01,43,American Journal of Psychiatry,114-130,10.1176/appi.ajp.2017.17010045,29145753,85041683740,2-s2.0-85041683740,Review,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85041683740,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85041683740&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85041683740&origin=inward +Adolescents show differential dysfunctions related to Alcohol and Cannabis Use Disorder severity in emotion and executive attention neuro-circuitries,Blair,Kathryn O. Adams;Abraham D. Killanin;Karina S. Blair;Francesca Filbey;Harma Meffert;R. James R. Blair;Kathleen I. Crum;Stuart F. White;Laura C. Thornton;Alita M. Mobley;Joseph Aloi;Patrick M. Tyler;Kayla Pope,2018-01-01,20,NeuroImage: Clinical,782-792,10.1016/j.nicl.2018.06.005,29988822,85048301925,2-s2.0-85048301925,Article,UNMC,https://api.elsevier.com/content/abstract/scopus_id/85048301925,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85048301925&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85048301925&origin=inward +Neural correlates of conventional and harm/welfare-based moral decision-making,Blair,Kelly Kimiko Leong;Larry P. Nucci;R. James R. Blair;Stuart F. White;Judith G. Smetana;Hui Zhao,2017-12-01,5,"Cognitive, Affective and Behavioral Neuroscience",1114-1128,10.3758/s13415-017-0536-6,28952137,85029905175,2-s2.0-85029905175,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85029905175,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85029905175&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85029905175&origin=inward +A neurocomputational investigation of reinforcement-based decision making as a candidate latent vulnerability mechanism in maltreated children,Blair,Ferdinand Hoffmann;Stuart White;Arjun Sethi;Amy L. Palmer;R. James R. Blair;Essi Viding;Vanessa B. Puetz;Mattia I. Gerin;Eamon J. McCrory,2017-12-01,9,Development and Psychopathology,1689-1705,10.1017/S095457941700133X,29162176,85040550188,2-s2.0-85040550188,Article,ESRC,https://api.elsevier.com/content/abstract/scopus_id/85040550188,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85040550188&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85040550188&origin=inward +Valence specific response reversal deficits and risk for mania,Blair,Anna Feiss;Andrew Peckham;James Blair;Sheri L. Johnson,2017-10-01,0,Motivation and Emotion,661-670,10.1007/s11031-017-9633-7,,85028877118,2-s2.0-85028877118,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85028877118,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85028877118&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85028877118&origin=inward +Neurodevelopmental changes in social reinforcement processing: A functional magnetic resonance imaging study,Blair,Susan Y. Bookheimer;James Blair;Harma Meffert;Stuart F. White;Soonjo Hwang;Stephen Sinclair;Michelle R. VanTieghem,2017-01-01,1,Clinical Psychopharmacology and Neuroscience,369-381,10.9758/cpn.2017.15.4.369,,85032722348,2-s2.0-85032722348,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85032722348,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85032722348&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85032722348&origin=inward +The processing of animacy information is disrupted as a function of callous-unemotional traits in youth with disruptive behavior disorders,Blair,Christopher J. Adalio;Elizabeth A. Penner;Harma Meffert;R. James R. Blair;Zachary T. Nolan;Stuart F. White;Soonjo Hwang;Stephen Sinclair;Laura C. Thornton,2017-01-01,1,NeuroImage: Clinical,498-506,10.1016/j.nicl.2017.08.024,28971003,85028930061,2-s2.0-85028930061,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85028930061,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85028930061&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85028930061&origin=inward +Psychopathy,Blair,Stuart F. White;James R. Blair,2015-03-26,0,International Encyclopedia of the Social & Behavioral Sciences: Second Edition,451-456,10.1016/B978-0-08-097086-8.56032-2,,85043430709,2-s2.0-85043430709,Chapter,,https://api.elsevier.com/content/abstract/scopus_id/85043430709,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85043430709&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85043430709&origin=inward +Ventrolateral prefrontal cortex activation and attentional bias in response to angry faces in adolescents with generalized anxiety disorder,Blair,Brendan P. Bradley;Ellen Leibenluft;Karin Mogg;Eric E. Nelson;Dennis S. Charney;Daniel S. Pine;Christopher S. Monk;R. James R. Blair;Erin B. McClure;Monique Ernst;Gang Chen,2006-01-01,322,American Journal of Psychiatry,1091-1097,10.1176/ajp.2006.163.6.1091,16741211,85047695174,2-s2.0-85047695174,Article,,https://api.elsevier.com/content/abstract/scopus_id/85047695174,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85047695174&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85047695174&origin=inward +The role of the inferior parietal lobule in writer's cramp,Bushnell,Silvina G. Horovitz;Megan Bradson;Traian Popa;Felipe Vial-Undurraga;Tianxia Wu;Giorgio Leodori;Mark Hallett;Jacob Parker;M. C. Bushnell;Eleni Frangos;Shabbir Hussain I. Merchant,2020-06-01,0,Brain : a journal of neurology,1766-1779,10.1093/brain/awaa138,32428227,85086683004,2-s2.0-85086683004,Article,,https://api.elsevier.com/content/abstract/scopus_id/85086683004,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85086683004&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85086683004&origin=inward +Attitudes and Perceptions Toward Authorized Deception: A Pilot Comparison of Healthy Controls and Fibromyalgia Patients,Bushnell,Brian T. Walitt;Brenda L. Justement;Marta Ceko;Patrick Korb;Luana Colloca;Emily A. Richards;Eleni Frangos;Susan J. Goo;M. Catherine Bushnell,2020-04-01,0,"Pain medicine (Malden, Mass.)",794-802,10.1093/pm/pnz081,31009537,85083003316,2-s2.0-85083003316,Article,,https://api.elsevier.com/content/abstract/scopus_id/85083003316,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85083003316&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85083003316&origin=inward +Prevalence and Profile of High-Impact Chronic Pain in the United States,Bushnell,Linda Porter;Mark H. Pitcher;Michael Von Korff;M. Catherine Bushnell,2019-02-01,33,Journal of Pain,146-160,10.1016/j.jpain.2018.07.006,30096445,85052998300,2-s2.0-85052998300,Article,,https://api.elsevier.com/content/abstract/scopus_id/85052998300,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85052998300&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85052998300&origin=inward +Persistent inflammatory pain alters sexually-motivated behavior in male rats,Bushnell,Michael Lehmann;Farid Tarum;Mark Henry Pitcher;M. Catherine Bushnell,2019-01-01,1,Behavioural Brain Research,380-389,10.1016/j.bbr.2018.09.001,30205121,85053775612,2-s2.0-85053775612,Article,NCCIH,https://api.elsevier.com/content/abstract/scopus_id/85053775612,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85053775612&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85053775612&origin=inward +Unique Autonomic Responses to Pain in Yoga Practitioners,Bushnell,Chantal Villemure;Valerie A. Cotton;M. Catherine Bushnell;Lucie A. Low,2018-11-01,2,Psychosomatic medicine,791-798,10.1097/PSY.0000000000000587,29620560,85056284755,2-s2.0-85056284755,Article,NCCIH,https://api.elsevier.com/content/abstract/scopus_id/85056284755,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85056284755&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85056284755&origin=inward +PIEZO2 mediates injury-induced tactile pain in mice and humans,Bushnell,Ruby Lam;Taylor Gordon;Carsten G. Bönnemann;Diana Bharucha-Goebel;Aaron Necaise;A. Reghan Foley;James H. Thompson;Alexander T. Chesler;Sandra Donkervoort;Arnab Barik;Marcin Szczot;Laura Case;Jaquette Liljencrantz;Dimah Saade;Nima Ghitani;M. Catherine Bushnell,2018-10-10,32,Science Translational Medicine,,10.1126/scitranslmed.aat9892,30305456,85054778666,2-s2.0-85054778666,Article,,https://api.elsevier.com/content/abstract/scopus_id/85054778666,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85054778666&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85054778666&origin=inward +Chronic neuropathic pain reduces opioid receptor availability with associated anhedonia in rat,Bushnell,Dale O. Kiesewetter;Petra Schweinhardt;Scott J. Thompson;Laura S. Stone;Xiaoyuan Chen;Gang Niu;Farid Tarum;Mark H. Pitcher;M. Catherine Bushnell,2018-09-01,17,Pain,1856-1866,10.1097/j.pain.0000000000001282,29794614,85059569255,2-s2.0-85059569255,Article,NCCIH,https://api.elsevier.com/content/abstract/scopus_id/85059569255,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85059569255&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85059569255&origin=inward +Do the psychological effects of vagus nerve stimulation partially mediate vagal pain modulation?,Bushnell,Emily A. Richards;Eleni Frangos;M. Catherine Bushnell,2017-01-01,4,Neurobiology of Pain,37-45,10.1016/j.ynpai.2017.03.002,,85054421842,2-s2.0-85054421842,Short Survey,NCCIH,https://api.elsevier.com/content/abstract/scopus_id/85054421842,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85054421842&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85054421842&origin=inward +Pain affect encoded in human anterior cingulate but not somatosensory cortex,Bushnell,Gary H. Duncan;Donald D. Price;Benoit Carrier;M. Catherine Bushnell;Pierre Rainville,2017-01-01,0,"Hypnosis: Theory, Research and Application",345-348,10.4324/9781315252858-35,,85077247097,2-s2.0-85077247097,Chapter,,https://api.elsevier.com/content/abstract/scopus_id/85077247097,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85077247097&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85077247097&origin=inward +Utilization of the DSM-5 Self-Rated Level 1 Cross-Cutting Symptom Measure-Adult to Screen Healthy Volunteers for Research Studies,Chung,Margaret Rose Mahoney;Joyce Y. Chung;Kalene Dehaut;Susanna Sung;Stephen Sinclair;Cristan Farmer,2020-04-01,0,Psychiatry Research,,10.1016/j.psychres.2020.112822,32086029,85079516238,2-s2.0-85079516238,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85079516238,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85079516238&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85079516238&origin=inward +The feasibility and value of parent input when evaluating the mental health of young adults with and without cancer,Chung,Joyce Y. Chung;Lori S. Wiener;Elizabeth L. Clayton;Hiroe Hu;Maryland Pao,2020-01-01,0,Psycho-Oncology,,10.1002/pon.5348,32022347,85080068174,2-s2.0-85080068174,Article,,https://api.elsevier.com/content/abstract/scopus_id/85080068174,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85080068174&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85080068174&origin=inward +Trends in MD/PhD Graduates Entering Psychiatry: Assessing the Physician-Scientist Pipeline,Chung,Joyce Y. Chung;Maria A. Oquendo;Harold Alan Pincus;Mark Chavez;Sean X. Luo;Joshua A. Gordon;Melissa R. Arbuckle,2018-06-01,1,Academic Psychiatry,346-353,10.1007/s40596-017-0870-6,29302928,85046827661,2-s2.0-85046827661,Article,,https://api.elsevier.com/content/abstract/scopus_id/85046827661,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85046827661&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85046827661&origin=inward +Phase-dependent transcranial magnetic stimulation of the lesioned hemisphere is accurate after stroke,Cohen,Sara J. Hussain;Leonardo G. Cohen;Ethan R. Buch;Christoph Zrenner;Margaret K. Hayward;Farah Fourcand;Ulf Ziemann;William Hayward,2020-09-01,0,Brain Stimulation,1354-1357,10.1016/j.brs.2020.07.005,32687898,85088372149,2-s2.0-85088372149,Letter,BMS,https://api.elsevier.com/content/abstract/scopus_id/85088372149,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85088372149&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85088372149&origin=inward +Transcranial direct current stimulation facilitates response inhibition through dynamic modulation of the fronto-basal ganglia network,Cohen,Rita Volochayev;Leonardo G. Cohen;Wen Tung Wang;John A. Butman;Marco Sandrini;Oluwole Awosika;Benjamin Xu,2020-01-01,4,Brain Stimulation,96-104,10.1016/j.brs.2019.08.004,31422052,85070537877,2-s2.0-85070537877,Article,CNRM,https://api.elsevier.com/content/abstract/scopus_id/85070537877,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85070537877&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85070537877&origin=inward +Beta rhythm events predict corticospinal motor output,Cohen,Sara J. Hussain;Marlene Bönstrup;Leonardo G. Cohen,2019-12-01,0,Scientific Reports,,10.1038/s41598-019-54706-w,31797890,85076058922,2-s2.0-85076058922,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85076058922,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85076058922&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85076058922&origin=inward +To jump or not to jump - The Bereitschaftspotential required to jump into 192-meter abyss,Cohen,L. G. Cohen;M. Nann;S. R. Soekadar;L. Deecke,2019-12-01,3,Scientific Reports,,10.1038/s41598-018-38447-w,30783174,85061779705,2-s2.0-85061779705,Article,NARSAD,https://api.elsevier.com/content/abstract/scopus_id/85061779705,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85061779705&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85061779705&origin=inward +Low-Frequency Brain Oscillations Track Motor Recovery in Human Stroke,Cohen,Lutz Krawinkel;Leonardo G. Cohen;Christian Gerloff;Bastian Cheng;Jan Feldheim;Marlene Bönstrup;Götz Thomalla;Robert Schulz,2019-12-01,1,Annals of Neurology,853-865,10.1002/ana.25615,31604371,85074583387,2-s2.0-85074583387,Article,GIF,https://api.elsevier.com/content/abstract/scopus_id/85074583387,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85074583387&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85074583387&origin=inward +Differential brain mechanisms of selection and maintenance of information during working memory,Cohen,Leonardo G. Cohen;Ethan R. Buch;Etienne Sallard;Nathan Fishman;Ryan Thompson;Jean Rémi King;Romain Quentin,2019-05-08,6,Journal of Neuroscience,3728-3740,10.1523/JNEUROSCI.2764-18.2019,30833510,85064906426,2-s2.0-85064906426,Article,Bettencourt-Schueller Foundation,https://api.elsevier.com/content/abstract/scopus_id/85064906426,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85064906426&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85064906426&origin=inward +Reversing working memory decline in the elderly,Cohen,Leonardo G. Cohen;Romain Quentin,2019-05-01,0,Nature Neuroscience,686-688,10.1038/s41593-019-0386-3,30962629,85064892708,2-s2.0-85064892708,Article,,https://api.elsevier.com/content/abstract/scopus_id/85064892708,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85064892708&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85064892708&origin=inward +Transcutaneous spinal direct current stimulation improves locomotor learning in healthy humans,Cohen,Rita Volochayev;Leonardo G. Cohen;Ryan M. Thompson;Tianxia Wu;Mary Kay Floeter;Mark Hallett;Nathan Fishman;Oluwole O. Awosika;Marco Sandrini,2019-05-01,3,Brain Stimulation,628-634,10.1016/j.brs.2019.01.017,30733143,85060924277,2-s2.0-85060924277,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85060924277,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85060924277&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85060924277&origin=inward +A Rapid Form of Offline Consolidation in Skill Learning,Cohen,Leonardo G. Cohen;Iñaki Iturrate;Ryan Thompson;Gabriel Cruciani;Marlene Bönstrup;Nitzan Censor,2019-04-22,10,Current Biology,1346-1351.e4,10.1016/j.cub.2019.02.049,30930043,85064387976,2-s2.0-85064387976,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85064387976,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85064387976&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85064387976&origin=inward +Plasticity and recovery of function,Cohen,Leonardo G. Cohen;Romain Quentin;Oluwole Awosika,2019-01-01,0,Handbook of Clinical Neurology,473-483,10.1016/B978-0-12-804281-6.00025-2,31590747,85072793082,2-s2.0-85072793082,Chapter,,https://api.elsevier.com/content/abstract/scopus_id/85072793082,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85072793082&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85072793082&origin=inward +Sensorimotor oscillatory phase-power interaction gates resting human corticospinal output,Cohen,Sara J. Hussain;Leonardo G. Cohen;Ethan Buch;Christoph Zrenner;Ryan Thompson;Ulf Ziemann;Gabriel Cruciani;Marlene Bönstrup;Leonardo Claudino;Gina Norato,2019-01-01,2,Cerebral Cortex,3766-3777,10.1093/cercor/bhy255,30496352,85066067275,2-s2.0-85066067275,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85066067275,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85066067275&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85066067275&origin=inward +Brain-Machine Interface in Chronic Stroke: Randomized Trial Long-Term Follow-up,Cohen,Fabricio L. Brasil;Leonardo G. Cohen;Ander Ramos-Murguialday;Woosang Cho;Eliana Garcia-Cossio;Marco R. Curado;Giulia Liberati;Andrea Caria;Özge Yilmaz;Doris Broetz;Niels Birbaumer,2019-01-01,12,Neurorehabilitation and Neural Repair,,10.1177/1545968319827573,30722727,85061497143,2-s2.0-85061497143,Article,,https://api.elsevier.com/content/abstract/scopus_id/85061497143,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85061497143&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85061497143&origin=inward +Susceptibility of consolidated procedural memory to interference is independent of its active task-based retrieval,Cohen,Leonardo G. Cohen;Bradley R. King;Arnaud Boutin;Basile Pinsard;Julien Doyon;Avi Karni;Geneviève Albouy;Ella Gabitov;Julie Carrier;Stuart M. Fogel;Nitzan Censor,2019-01-01,1,PLoS ONE,,10.1371/journal.pone.0210876,30653576,85060135661,2-s2.0-85060135661,Article,PBC,https://api.elsevier.com/content/abstract/scopus_id/85060135661,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85060135661&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85060135661&origin=inward +Erratum: Correction: Brain-Computer Interface-Based Communication in the Completely Locked-In State (PLoS biology (2017) 15 1 (e1002593)),Cohen,Leonardo G. Cohen;Stefano Silvoni;Ujwal Chaudhary;Niels Birbaumer;Bin Xia,2018-12-01,0,PLoS biology,e3000089,10.1371/journal.pbio.3000089,30540741,85058608442,2-s2.0-85058608442,Erratum,,https://api.elsevier.com/content/abstract/scopus_id/85058608442,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85058608442&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85058608442&origin=inward +Distributed cortical structural properties contribute to motor cortical excitability and inhibition,Cohen,Leonardo G. Cohen;Virginia López-Alonso;Sook Lei Liew;Eran Dayan,2018-11-01,2,Brain Structure and Function,3801-3812,10.1007/s00429-018-1722-1,30078148,85051567776,2-s2.0-85051567776,Article,MECD,https://api.elsevier.com/content/abstract/scopus_id/85051567776,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85051567776&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85051567776&origin=inward +Repetitive Peripheral Sensory Stimulation and Upper Limb Performance in Stroke: A Systematic Review and Meta-analysis,Cohen,Leonardo G. Cohen;Arnaldo Alves da Silva;Wanderley Marques Bernardo;Juliana Conti;Sarah Monteiro dos Anjos;Adriana Bastos Conforto;André G. Machado,2018-10-01,3,Neurorehabilitation and Neural Repair,863-871,10.1177/1545968318798943,30198383,85054888505,2-s2.0-85054888505,Review,FIC,https://api.elsevier.com/content/abstract/scopus_id/85054888505,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85054888505&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85054888505&origin=inward +Rigor and reproducibility in research with transcranial electrical stimulation: An NIMH-sponsored workshop,Cohen,Adam J. Woods;Michele Pearson;Dylan J. Edwards;Andre R. Brunoni;Colleen Loo;Pejman Sehatpour;Vincent P. Clark;Judith M. Rumsey;Zhi De Deng;Leigh E. Charvet;Leonardo G. Cohen;Emily S. Kappenman;Lucas C. Parra;David P. McMullen;Jacek Dmochowski;David Sommers;Antonio Mantovani;Kelvin O. Lim;Marom Bikson;Jessica D. Richardson;Eric M. Wassermann;Gozde Unal;Sarah H. Lisanby;Flavio Frohlich,2018-05-01,55,Brain Stimulation,465-480,10.1016/j.brs.2017.12.008,29398575,85041557529,2-s2.0-85041557529,Review,NICHD,https://api.elsevier.com/content/abstract/scopus_id/85041557529,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85041557529&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85041557529&origin=inward +A preliminary comparison of motor learning across different non-invasive brain stimulation paradigms shows no consistent modulations,Cohen,Leonardo G. Cohen;Sook Lei Liew;Virginia Lopez-Alonso;Binith Cheeran;Mitsunari Abe;Marco Sandrini;Miguel Fernández del Olmo,2018-04-23,10,Frontiers in Neuroscience,,10.3389/fnins.2018.00253,,85046069907,2-s2.0-85046069907,Article,,https://api.elsevier.com/content/abstract/scopus_id/85046069907,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85046069907&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85046069907&origin=inward +Transcranial Direct Current Stimulation Enhances Motor Skill Learning but Not Generalization in Chronic Stroke,Cohen,Cornelius Weiller;Leonardo G. Cohen;Heidi M. Schambra;Annika Schoechlin-Marx;Janine Reis;Brita Fritsch;Manuela Hamoudi,2018-04-01,8,Neurorehabilitation and Neural Repair,295-308,10.1177/1545968318769164,29683030,85047553344,2-s2.0-85047553344,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85047553344,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85047553344&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85047553344&origin=inward +Combined Brain and Peripheral Nerve Stimulation in Chronic Stroke Patients With Moderate to Severe Motor Impairment,Cohen,Sarah M. Anjos;Leonardo G. Cohen;Isabella S. Menezes;Inara L. Siqueira;Ela B. Plow;Paul Hunter Peckham;Juliana Conti;André G. Machado;Adriana B. Conforto;Eduardo A. Mello,2018-02-01,10,Neuromodulation,176-183,10.1111/ner.12717,29067749,85041699482,2-s2.0-85041699482,Article,,https://api.elsevier.com/content/abstract/scopus_id/85041699482,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85041699482&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85041699482&origin=inward +Longitudinal Structural and Functional Differences Between Proportional and Poor Motor Recovery After Stroke,Cohen,Leonardo G. Cohen;Ethan R. Buch;Adrian G. Guggisberg;Armin Schnider;Pierre Nicolo,2017-12-01,14,Neurorehabilitation and Neural Repair,1029-1041,10.1177/1545968317740634,29130824,85038558985,2-s2.0-85038558985,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85038558985,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85038558985&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85038558985&origin=inward +Lasting deficit in inhibitory control with mild traumatic brain injury,Cohen,Rita Volochayev;Leonardo G. Cohen;Dzung L. Pham;Sarah Levy;John A. Butman;Marco Sandrini;Oluwole Awosika;Benjamin Xu,2017-12-01,8,Scientific Reports,,10.1038/s41598-017-14867-y,29097755,85032925823,2-s2.0-85032925823,Article,CNRM,https://api.elsevier.com/content/abstract/scopus_id/85032925823,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85032925823&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85032925823&origin=inward +Re-stepping into the same river: Competition problem rather than a reconsolidation failure in an established motor skill,Cohen,Leonardo G. Cohen;Bradley R. King;Arnaud Boutin;Basile Pinsard;Julien Doyon;Habib Benali;Avi Karni;Geneviève Albouy;Ella Gabitov;Julie Carrier;Stuart M. Fogel;Nitzan Censor,2017-12-01,5,Scientific Reports,,10.1038/s41598-017-09677-1,28839217,85028359636,2-s2.0-85028359636,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85028359636,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85028359636&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85028359636&origin=inward +Temporal similarity perfusion mapping: A standardized and model-free method for detecting perfusion deficits in stroke,Cohen,Shreyansh Shah;Leonardo G. Cohen;Ziad S. Saad;Reinoud P.H. Bokkers;Robert W. Cox;Richard C. Reynolds;Lawrence L. Latour;Matthew A. Edwardson;Tyler Brown;Daniel R. Glen;Sunbin Song,2017-10-01,4,PLoS ONE,,10.1371/journal.pone.0185552,28973000,85030650983,2-s2.0-85030650983,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85030650983,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85030650983&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85030650983&origin=inward +Biomarkers of Stroke Recovery: Consensus-Based Core Recommendations from the Stroke Recovery and Rehabilitation Roundtable*,Cohen,Charlotte Rosso;Leonardo G. Cohen;Alexandre R. Carter;D. Michele Basso;David A. Copland;Nick S. Ward;Leeanne M. Carey;Steven C. Cramer;Rebecca J. Fisher;Kathryn S. Hayward;Cathy M. Stinear;Alex P. Leff;Jane M. Maguire;Lara A. Boyd,2017-10-01,37,Neurorehabilitation and Neural Repair,864-876,10.1177/1545968317732680,29233071,85038390132,2-s2.0-85038390132,Article,HSF,https://api.elsevier.com/content/abstract/scopus_id/85038390132,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85038390132&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85038390132&origin=inward +Neuroplasticity,Cohen,Leonardo G. Cohen;Esteban Fridman;Pablo A. Celnikl;Michael J. Makey,2017-03-10,0,Neuroprosthetics: Theory and Practice: Second Edition,192-212,10.1142/9789813207158_0008,,85059495417,2-s2.0-85059495417,Chapter,,https://api.elsevier.com/content/abstract/scopus_id/85059495417,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85059495417&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85059495417&origin=inward +Modulation of cortical function and plasticity in the human brain,Cohen,Leonardo G. Cohen;Friedhelm Hummel;Christian Gerloff,2005-01-01,3,Neural Plasticity in Adult Somatic Sensory-Motor Systems,207-226,,,85031210708,2-s2.0-85031210708,Chapter,,https://api.elsevier.com/content/abstract/scopus_id/85031210708,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85031210708&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85031210708&origin=inward +Checkpoint inhibitors for the treatment of JC virus-related progressive multifocal leukoencephalopathy,Cortese,Erin S. Beck;Irene Cortese,2020-02-01,0,Current Opinion in Virology,19-27,10.1016/j.coviro.2020.02.005,32279025,85082864720,2-s2.0-85082864720,Review,NIH,https://api.elsevier.com/content/abstract/scopus_id/85082864720,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85082864720&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85082864720&origin=inward +Association of Chronic Active Multiple Sclerosis Lesions with Disability in Vivo,Cortese,Federica Masuzzo;Hadar Kolb;Daniel S. Reich;Tianxia Wu;Pascal Sati;Govind Nair;Joan Ohayon;Varun Sethi;Irene C.M. Cortese;Martina Absinta,2019-12-01,12,JAMA Neurology,1474-1483,10.1001/jamaneurol.2019.2399,31403674,85070723559,2-s2.0-85070723559,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85070723559,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85070723559&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85070723559&origin=inward +Manganese-enhanced MRI of the brain in healthy volunteers,Cortese,S. U. Steele;T. Wu;D. S. Reich;B. Dewey;J. T. Dwyer;A. P. Koretsky;D. J. Suto;B. A. Berkowitz;I. C.M. Cortese;G. Nair;D. M. Sudarshana,2019-08-01,2,American Journal of Neuroradiology,1309-1316,10.3174/ajnr.A6152,31371354,85071351382,2-s2.0-85071351382,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85071351382,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85071351382&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85071351382&origin=inward +Trial of intrathecal rituximab in progressive multiple sclerosis patients with evidence of leptomeningeal contrast enhancement,Cortese,Cassie Wicken;Daniel S. Reich;Pavan Bhargava;Ellen M. Mowry;Peter A. Calabresi;Roy E. Strowd;Matthew D. Smith;Irene Cortese,2019-05-01,6,Multiple Sclerosis and Related Disorders,136-140,10.1016/j.msard.2019.02.013,30771580,85061370727,2-s2.0-85061370727,Article,AAN,https://api.elsevier.com/content/abstract/scopus_id/85061370727,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85061370727&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85061370727&origin=inward +Pembrolizumab treatment for progressive multifocal leukoencephalopathy,Cortese,Caroline Ryschkewitsch;Bryan Smith;Eugene O. Major;Yoshimi Enose-Akahata;Daniel S. Reich;Avindra Nath;Pawel Muranski;Joan Ohayon;Erin Beck;Steve Jacobson;Seung Kwon Ha;Maria Chiara Monaco;Matthew K. Schindler;Lauren B. Reoma;Irene Cortese,2019-04-25,53,New England Journal of Medicine,1597-1605,10.1056/NEJMoa1815039,30969503,85064880387,2-s2.0-85064880387,Article,,https://api.elsevier.com/content/abstract/scopus_id/85064880387,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85064880387&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85064880387&origin=inward +"Robust, atlas-free, automatic segmentation of brain MRI in health and disease",Cortese, Steven Jacobson;Bryan Smith;Daniel S. Reich;Kartiga Selvaganesan;Ziad S. Saad;Avindra Nath;Govind Nair;Joan E. Ohayon;Sara Inati;Paba M. DeAlwis;Irene C.M. Cortese;Emily Whitehead;Matthew K. Schindler;Souheil Inati,2019-02-01,1,Heliyon,,10.1016/j.heliyon.2019.e01226,,85061659282,2-s2.0-85061659282,Article,OAR,https://api.elsevier.com/content/abstract/scopus_id/85061659282,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85061659282&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85061659282&origin=inward +Clinical trial of a humanized anti-IL-2/IL-15 receptor β chain in HAM/TSP,Cortese,Ashley Vellucci;Yoshimi Enose-Akahata;Steven Jacobson;Unsong Oh;Joan Ohayon;Bridgette Jeanne Billioux;Nyater Ngouth;Bonita R. Bryant;Irene Cortese;Raya Massoud;Thomas A. Waldmann,2019-01-01,2,Annals of Clinical and Translational Neurology,1383-1394,10.1002/acn3.50820,31402625,85070478095,2-s2.0-85070478095,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85070478095,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85070478095&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85070478095&origin=inward +Immunophenotypic characterization of CSF B cells in virus-associated neuroinflammatory diseases,Cortese,Ashley Vellucci;Yoshimi Enose-Akahata;Irene Cortese;Steven Jacobson;Avindra Nath;Joan Ohayon;Bridgette Jeanne Billioux;Nyater Ngouth;Yuetsu Tanaka;Shila Azodi;Bryan R. Smith,2018-04-01,8,PLoS Pathogens,,10.1371/journal.ppat.1007042,29709026,85046491000,2-s2.0-85046491000,Article,,https://api.elsevier.com/content/abstract/scopus_id/85046491000,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85046491000&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85046491000&origin=inward +Improved visualization of cortical lesions in multiple sclerosis using 7T MP2RAGE,Cortese,E. S. Beck;I. C. Cortese;D. S. Reich;B. Dewey;P. Sati;V. Sethi;P. Bhargava;T. Kober;G. Nair,2018-03-01,18,American Journal of Neuroradiology,459-466,10.3174/ajnr.A5534,29439120,85043684245,2-s2.0-85043684245,Article,AAN,https://api.elsevier.com/content/abstract/scopus_id/85043684245,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85043684245&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85043684245&origin=inward +Imaging spinal cord atrophy in progressive myelopathies: HTLV-I-associated neurological disease (HAM/TSP) and multiple sclerosis (MS),Cortese,Emily Charlip;Ashley Vellucci;Daniel S. Reich;Yoshimi Enose-Akahata;Steven Jacobson;B. Jeanne Billioux;Govind Nair;Joan Ohayon;Irene Cortese;Jenifer Dwyer;Shila Azodi;Chevaz Thomas,2017-11-01,7,Annals of Neurology,719-728,10.1002/ana.25072,29024167,85033229158,2-s2.0-85033229158,Article,,https://api.elsevier.com/content/abstract/scopus_id/85033229158,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85033229158&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85033229158&origin=inward +Recurrent natalizumab-related aseptic meningitis in a patient with multiple sclerosis,Cortese,Robert W. Foley;Daniel S. Reich;Ellen M. Mowry;Nathan T. Tagg;Matthew K. Schindler;Kaylan M. Fenton;Irene Cortese,2017-09-01,3,Multiple Sclerosis,1424-1427,10.1177/1352458517702533,,85043348777,2-s2.0-85043348777,Article,MRF,https://api.elsevier.com/content/abstract/scopus_id/85043348777,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85043348777&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85043348777&origin=inward +Immunomodulatory therapy for multiple sclerosis,Cortese,Avindra Nath;Irene Cortese,2016-01-01,0,Neuroimmune Pharmacology,713-736,10.1007/978-3-319-44022-4_43,,85046004158,2-s2.0-85046004158,Chapter,,https://api.elsevier.com/content/abstract/scopus_id/85046004158,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85046004158&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85046004158&origin=inward +Timed walk as primary outcome measure of treatment response in clinical trials for HTLV-1-associated myelopathy: A feasibility study,Cortese,Ramon de Almeida Kruschewsky;Steven Jacobson;Adine Adonis;Graham P. Taylor;Maria Fernanda Rios Grassi;Irene C.M. Cortese;Fabiola Martin;Eisuke Inoue;Martin Bland;Yoshihisa Yamano;Bernardo Galvão-Castro,2015-04-01,1,Pilot and Feasibility Studies,,10.1186/s40814-015-0031-1,,85046748913,2-s2.0-85046748913,Article,,https://api.elsevier.com/content/abstract/scopus_id/85046748913,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85046748913&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85046748913&origin=inward +B0-field dependence of MRI T1 relaxation in human brain,Duyn,Yicun Wang;Jeff H. Duyn;Jacco A. de Zwart;Peter van Gelderen,2020-06-01,0,NeuroImage,,10.1016/j.neuroimage.2020.116700,32145438,85081659893,2-s2.0-85081659893,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85081659893,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85081659893&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85081659893&origin=inward +Physiological changes in sleep that affect fMRI inference,Duyn,Jeff H. Duyn;Pinar S. Ozbay;Catie Chang;Dante Picchioni,2020-06-01,0,Current Opinion in Behavioral Sciences,42-50,10.1016/j.cobeha.2019.12.007,,85076708543,2-s2.0-85076708543,Review,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85076708543,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85076708543&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85076708543&origin=inward +Background suppressed magnetization transfer MRI,Duyn,Jeff H. Duyn;Peter van Gelderen,2020-03-01,0,Magnetic Resonance in Medicine,883-891,10.1002/mrm.27978,31502706,85072082041,2-s2.0-85072082041,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85072082041,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85072082041&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85072082041&origin=inward +Reducing motion sensitivity in 3D high-resolution T2*-weighted MRI by navigator-based motion and nonlinear magnetic field correction,Duyn,Peter van Gelderen;Jeff H. Duyn;Jacco A. de Zwart;Jiaen Liu,2020-02-01,0,NeuroImage,,10.1016/j.neuroimage.2019.116332,31689535,85075334408,2-s2.0-85075334408,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85075334408,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85075334408&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85075334408&origin=inward +Eight-channel parallel transmit-receive system for 7 T MRI with optically controlled and monitored on-coil current-mode RF amplifiers,Duyn,Jeff H. Duyn;Jacco A. de Zwart;Natalia Gudino,2020-01-01,0,Magnetic Resonance in Medicine,,10.1002/mrm.28392,,85087829004,2-s2.0-85087829004,Article,,https://api.elsevier.com/content/abstract/scopus_id/85087829004,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85087829004&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85087829004&origin=inward +Sympathetic activity contributes to the fMRI signal,Duyn,Miranda Grace Chappel-Farley;Peter van Gelderen;Hendrik Mandelkow;Pinar Senay Özbay;Catie Chang;Jacco Adrianus de Zwart;Jeff Duyn;Dante Picchioni,2019-12-01,5,Communications Biology,,10.1038/s42003-019-0659-0,31754651,85075132629,2-s2.0-85075132629,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85075132629,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85075132629&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85075132629&origin=inward +All-night functional magnetic resonance imaging sleep studies,Duyn,Jeff H. Duyn;Thomas M. Moehlman;Peter van Gelderen;Hendrik Mandelkow;Nicholas L. Johnson;Rebecca E. Bieber;Catie Chang;Kelly A. King;Miranda G. Chappel-Farley;Pinar S. Özbay;Jacco A. de Zwart;Dante Picchioni;Xiao Liu;Carmen C. Brewer;Katharine A. Fernandez;Irene B. McClain;Christopher K. Zalewski,2019-03-15,3,Journal of Neuroscience Methods,83-98,10.1016/j.jneumeth.2018.09.019,30243817,85053790585,2-s2.0-85053790585,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85053790585,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85053790585&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85053790585&origin=inward +White matter intercompartmental water exchange rates determined from detailed modeling of the myelin sheath,Duyn,Jeff H. Duyn;Peter van Gelderen,2019-01-01,7,Magnetic Resonance in Medicine,628-638,10.1002/mrm.27398,30230605,85053556025,2-s2.0-85053556025,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85053556025,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85053556025&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85053556025&origin=inward +Effect of head motion on MRI B0 field distribution,Duyn,Jeff H. Duyn;Peter van Gelderen;Jacco A. de Zwart;Jiaen Liu;Joseph Murphy-Boesch,2018-12-01,7,Magnetic Resonance in Medicine,2538-2548,10.1002/mrm.27339,29770481,85047459777,2-s2.0-85047459777,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85047459777,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85047459777&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85047459777&origin=inward +Subcortical evidence for a contribution of arousal to fMRI studies of brain activity,Duyn,Jeff H. Duyn;Frank Q. Ye;Catie Chang;David A. Leopold;Xiao Liu;Jacco A. De Zwart;Marieke L. Schölvinck,2018-12-01,38,Nature Communications,,10.1038/s41467-017-02815-3,29374172,85041134931,2-s2.0-85041134931,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85041134931,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85041134931&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85041134931&origin=inward +Impulse response timing differences in BOLD and CBV weighted fMRI,Duyn,Jeff H. Duyn;Peter van Gelderen;Daniel S. Reich;Pascal Sati;Jacco A. de Zwart;Jiaen Liu;Matthew K. Schindler,2018-11-01,0,NeuroImage,292-300,10.1016/j.neuroimage.2018.07.011,29981905,85049795779,2-s2.0-85049795779,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85049795779,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85049795779&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85049795779&origin=inward +Co-activation patterns in resting-state fMRI signals,Duyn,Jeff H. Duyn;Catie Chang;Xiao Liu;Nanyin Zhang,2018-10-15,21,NeuroImage,485-494,10.1016/j.neuroimage.2018.01.041,29355767,85041666501,2-s2.0-85041666501,Review,NIH,https://api.elsevier.com/content/abstract/scopus_id/85041666501,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85041666501&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85041666501&origin=inward +Contribution of systemic vascular effects to fMRI activity in white matter,Duyn,Jeff H. Duyn;Thomas M. Moehlman;Peter van Gelderen;Hendrik Mandelkow;Catie Chang;Pinar S. Özbay;Jacco A. de Zwart;Dante Picchioni;Miranda G. Chappel-Farley,2018-08-01,12,NeuroImage,541-549,10.1016/j.neuroimage.2018.04.045,29704614,85046629815,2-s2.0-85046629815,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85046629815,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85046629815&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85046629815&origin=inward +Optically controlled on-coil amplifier with RF monitoring feedback,Duyn,Stephen J. Dodd;Joe Murphy-Boesch;Peter van Gelderen;Jeff H. Duyn;Natalia Gudino;Qi Duan;Jacco A. de Zwart,2018-05-01,3,Magnetic Resonance in Medicine,2833-2841,10.1002/mrm.26916,28905426,85042230319,2-s2.0-85042230319,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85042230319,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85042230319&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85042230319&origin=inward +The Basal Forebrain Regulates Global Resting-State fMRI Fluctuations,Duyn,Jeff H. Duyn;Carlos R. Cortes;Frank Q. Ye;Brian E. Russ;David K. Yu;Ilya E. Monosov;Catie Chang;Janita Turchi;David A. Leopold,2018-02-21,45,Neuron,940-952.e4,10.1016/j.neuron.2018.01.032,29398365,85041608950,2-s2.0-85041608950,Article,DARPA,https://api.elsevier.com/content/abstract/scopus_id/85041608950,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85041608950&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85041608950&origin=inward +Effects of spatial fMRI resolution on the classification of naturalistic movies,Duyn,J. H. Duyn;H. Mandelkow;J. A. de Zwart,2017-11-15,5,NeuroImage,45-55,10.1016/j.neuroimage.2017.08.053,28842385,85028699144,2-s2.0-85028699144,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85028699144,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85028699144&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85028699144&origin=inward +What's New at Muscle & Nerve?,Floeter,Zachary Simmons,2020-08-01,0,Muscle and Nerve,152-153,10.1002/mus.27007,32557730,85087346416,2-s2.0-85087346416,Editorial,,https://api.elsevier.com/content/abstract/scopus_id/85087346416,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85087346416&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85087346416&origin=inward +Amyotrophic lateral sclerosis care and research in the United States during the COVID-19 pandemic: Challenges and opportunities,Floeter,Nathan Carberry;Brixhilda Dedi;Richard S. Bedlack;Michael D. Weiss;Zachary Simmons;Robert H. Baloh;Jeremy M. Shefner;Merit E. Cudkowicz;Jinsy A. Andrews;James D. Berry;Jeffrey D. Rothstein;Jonathan Glass;Nicholas J. Maragakis;Timothy M. Miller;Sabrina Paganoni,2020-08-01,0,Muscle and Nerve,182-186,10.1002/mus.26989,32445195,85085970450,2-s2.0-85085970450,Article,,https://api.elsevier.com/content/abstract/scopus_id/85085970450,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85085970450&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85085970450&origin=inward +Terminology in Neuromuscular Electrodiagnostic Medicine and Ultrasound: Time for an Update,Floeter,Ulf Ziemann;Zachary Simmons,2020-07-01,0,Muscle and Nerve,1,10.1002/mus.26870,32337740,85085564248,2-s2.0-85085564248,Editorial,,https://api.elsevier.com/content/abstract/scopus_id/85085564248,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85085564248&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85085564248&origin=inward +Terminology in neuromuscular electrodiagnostic medicine and ultrasound: Time for an update,Floeter,Ulf Ziemann;Zachary Simmons,2020-07-01,0,Clinical Neurophysiology,1655,10.1016/j.clinph.2020.03.015,32337740,85085306499,2-s2.0-85085306499,Editorial,,https://api.elsevier.com/content/abstract/scopus_id/85085306499,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85085306499&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85085306499&origin=inward +The role of technology in the lives of neuromuscular patients,Floeter,Zachary Simmons,2020-06-01,0,Muscle and Nerve,681,10.1002/mus.26867,32413246,85084734027,2-s2.0-85084734027,Review,,https://api.elsevier.com/content/abstract/scopus_id/85084734027,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85084734027&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85084734027&origin=inward +Telemedicine for the Care of Neuromuscular Disorders,Floeter,James Grogan;Zachary Simmons,2020-06-01,0,Current Treatment Options in Neurology,,10.1007/s11940-020-00625-5,,85084478505,2-s2.0-85084478505,Review,,https://api.elsevier.com/content/abstract/scopus_id/85084478505,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85084478505&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85084478505&origin=inward +The Use of Telehealth to Enhance Care in ALS and other Neuromuscular Disorders,Floeter,Anne Haulman;Andrew Geronimo;Amit Chahwala;Zachary Simmons,2020-06-01,1,Muscle and Nerve,682-691,10.1002/mus.26838,32297678,85083459301,2-s2.0-85083459301,Review,NIH,https://api.elsevier.com/content/abstract/scopus_id/85083459301,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85083459301&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85083459301&origin=inward +In defense of the AAN position on lawful physician-hastened death,Floeter,Julie A. Kurek;Michael A. Williams;Robert M. Pascuzzi;Richard J. Bonnie;Zachary Simmons;Lynne Taylor;Leon G. Epstein;Matthew Rizzo;Justin A. Sattin;James A. Russell;William D. Graf;Robin Conwit;Matthew Kirschen;Daniel G. Larriviere,2020-04-14,0,Neurology,641-643,10.1212/WNL.0000000000009237,32179699,85085040486,2-s2.0-85085040486,Editorial,,https://api.elsevier.com/content/abstract/scopus_id/85085040486,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85085040486&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85085040486&origin=inward +Primary lateral sclerosis: Consensus diagnostic criteria,Floeter,Hiroshi Mitsumoto;Philippe Corcia;Matthew C. Kiernan;Vincenzo Silani;Zachary Simmons;Martin R. Turner;Matthew B. Harms;Leonard H. Van Den Berg;John K. Fink;John Ravits;Richard J. Barohn;Jeffrey Statland,2020-04-01,4,"Journal of Neurology, Neurosurgery and Psychiatry",373-377,10.1136/jnnp-2019-322541,32029539,85079217298,2-s2.0-85079217298,Article,MNDA,https://api.elsevier.com/content/abstract/scopus_id/85079217298,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85079217298&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85079217298&origin=inward +Primary lateral sclerosis (PLS) functional rating scale: PLS-specific clinimetric scale,Floeter,Eric Sorenson;Zachary Simmons;Codruta Chiuzan;Sharon Nations;J. Americo M. Fernandes Filho;Madison Gilmore;Hiroshi Mitsumoto;Yuan Zhang;Lorne Zinman;Brittany McHale;Nicholas Maragakis;Nanette Joyce;Stephen Scelsa;Sabrina Paganoni;Bjorn Oskarsson;Erik P. Pioro;Lauren Elman;Jonathan Hupf;Christina Nicole Fournier;Yasushi Y. Kisanuki;Mary Kay Floeter;Ghazala Hayat;Daragh Heitzman;Omar Jawdat;Terry Heiman-Patterson;David Walk,2020-02-01,3,Muscle and Nerve,163-172,10.1002/mus.26765,31758557,85077028533,2-s2.0-85077028533,Article,CYTK,https://api.elsevier.com/content/abstract/scopus_id/85077028533,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85077028533&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85077028533&origin=inward +Motor function decline correlates with behavioral impairment in C9orf72 mutation carriers,Floeter,Shreya Gandhy;Mary Kay Floeter;Jennifer Farren,2020-01-21,0,Neurology,134-136,10.1212/WNL.0000000000008810,31848258,85078383601,2-s2.0-85078383601,Article,,https://api.elsevier.com/content/abstract/scopus_id/85078383601,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85078383601&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85078383601&origin=inward +Selection design phase II trial of high dosages of tamoxifen and creatine in amyotrophic lateral sclerosis,Floeter,Laura Simionescu;Elizabeth Simpson;Zachary Simmons;Katy Mahoney;Katherine E. Jackson;Johnny S. Salameh;Eric A. Macklin;Suma Babu;Mazen M. Dimachkie;Hong Yu;Jason Walker;Benjamin Rix Brooks;Nazem Atassi;Alan Pestronk;David Schoenfeld;Paul E. Barkhaus;Merit E. Cudkowicz;Swati Aggarwal;Michael D. Weiss;William S. David;Jeremy Shefner,2020-01-02,2,Amyotrophic Lateral Sclerosis and Frontotemporal Degeneration,15-23,10.1080/21678421.2019.1672750,31608711,85074356829,2-s2.0-85074356829,Article,,https://api.elsevier.com/content/abstract/scopus_id/85074356829,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85074356829&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85074356829&origin=inward +Electrical impedance myography (EIM) in a natural history study of C9ORF72 mutation carriers,Floeter,Mary Kay Floeter;Michelle B. Offit;Tanya J. Lehky;Tianxia Wu,2020-01-01,0,Amyotrophic Lateral Sclerosis and Frontotemporal Degeneration,,10.1080/21678421.2020.1752247,,85083719754,2-s2.0-85083719754,Article,ATSDR,https://api.elsevier.com/content/abstract/scopus_id/85083719754,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85083719754&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85083719754&origin=inward +Optimizing Telemedicine to Facilitate ALS Clinical Trials,Floeter,Sabrina Paganon;James D. Berr;Raghav Govindarajan;Zachary Simmons;Michael T. Pulley,2020-01-01,0,Muscle and Nerve,,10.1002/mus.26921,32415876,85085750634,2-s2.0-85085750634,Note,,https://api.elsevier.com/content/abstract/scopus_id/85085750634,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85085750634&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85085750634&origin=inward +Understanding the needs of people with ALS: a national survey of patients and caregivers,Floeter,Chad Heatwole;Zachary Simmons;Miriam Galvin;Calaneet Balas;Richard Bedlack;Neil Thakur;James D. Berry;Orla Hardiman;John Ravits;James Chan;Lucie Bruijn;Jill Yersak;John F.P. Bridges;Kate T. Brizzi,2020-01-01,0,Amyotrophic Lateral Sclerosis and Frontotemporal Degeneration,,10.1080/21678421.2020.1760889,32396393,85085060901,2-s2.0-85085060901,Article,CYTK,https://api.elsevier.com/content/abstract/scopus_id/85085060901,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85085060901&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85085060901&origin=inward +Clinical features of LRP4/agrin-antibody–positive myasthenia gravis: A multicenter study,Floeter,Brandy M. Quarles;Ikjae Lee;Zachary Simmons;Jin Xiu Pan;George Small;Eroboghene Ubogu;Richard Barohn;Mazen M. Dimachkie;James Caress;Richard J. Nowak;Michael H. Rivner;Robert P. Lisak;Andrea Corse;Carlayne Jackson;Lin Mei;Stephen Scelsa;J. Americo Fernandes;Clifton Gooch;James F. Howard;Tuan Vu;Hongyan Xu;R. Bhavaraju Sanka;Zheng Yu;Andrea Swenson;Mamatha Pasnoor;Vanessa Baute;Jerry Belsh,2020-01-01,0,Muscle and Nerve,,10.1002/mus.26985,32483837,85086224074,2-s2.0-85086224074,Article,,https://api.elsevier.com/content/abstract/scopus_id/85086224074,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85086224074&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85086224074&origin=inward +Thank you to our reviewers,Floeter,Zachary Simmons,2019-12-01,0,Muscle & nerve,816-818,10.1002/mus.26285,31729058,85075086064,2-s2.0-85075086064,Article,,https://api.elsevier.com/content/abstract/scopus_id/85075086064,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85075086064&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85075086064&origin=inward +"Postmortem Cortex Samples Identify Distinct Molecular Subtypes of ALS: Retrotransposon Activation, Oxidative Stress, and Activated Glia",Floeter,Edward B. Lee;Towfique Raj;James R. Broach;Zachary Simmons;Isabel Hubbard;Samantha Fennessey;Nikolaos A. Patsopoulos;Daniel J. MacGowan;Suma Babu;Robert Bowser;Regina Shaw;Jennifer Phillips-Cremins;Oliver H. Tam;Vivianna M. Van Deerlin;Eran Hornstein;Colin Smith;Justin Kwan;Frank Baas;Mary Poss;James D. Berry;Nazem Atassi;Leonidas Stefanis;Eleonora Aronica;Duyang Kim;Oleg Butovsky;Molly Gale Hammell;Dale J. Lange;Sabrina Paganoni;Darius J. Adams;Matt Harms;Robert Baloh;Suvankar Pal;Andrea Malaspina;Efthimios Dardiotis;Avindra Nath;Molly G. Hammell;Noah Zaitlen;John Crary;Marc Gotkine;Timothy M. Miller;Siddharthan Chandran;Ernest Fraenkel;Nadia Propp;Lyle W. Ostrow;Hemali Phatnani;Dhruv Sareen;Leslie M. Thompson;Pietro Fratta;Terry Heiman-Patterson;Brent T. Harris;Steve Finkbeiner;Ophir Shalem;Neil A. Shneider;Gregory A. Cox;Delphine Fagegaltier;Josh Dubnau;John Ravits;Ximena Arcila-Londono;Bin Zhang;Nikolay V. Rozhkov,2019-10-29,9,Cell Reports,1164-1177.e5,10.1016/j.celrep.2019.09.066,31665631,85074157599,2-s2.0-85074157599,Article,CZI,https://api.elsevier.com/content/abstract/scopus_id/85074157599,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85074157599&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85074157599&origin=inward +Changing with the times,Floeter,Zachary Simmons,2019-10-01,0,Muscle and Nerve,343-344,10.1002/mus.26682,31444976,85072357295,2-s2.0-85072357295,Editorial,,https://api.elsevier.com/content/abstract/scopus_id/85072357295,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85072357295&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85072357295&origin=inward +ULTRASOUND IN THE DIAGNOSIS AND MONITORING OF AMYOTROPHIC LATERAL SCLEROSIS: A REVIEW,Floeter,Lisa D. Hobson-Webb;Zachary Simmons,2019-08-01,3,Muscle and Nerve,114-123,10.1002/mus.26487,30989697,85065048170,2-s2.0-85065048170,Review,CSF,https://api.elsevier.com/content/abstract/scopus_id/85065048170,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85065048170&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85065048170&origin=inward +Evaluation of remote pulmonary function testing in motor neuron disease,Floeter,Andrew Geronimo;Zachary Simmons,2019-07-03,5,Amyotrophic Lateral Sclerosis and Frontotemporal Degeneration,348-355,10.1080/21678421.2019.1587633,30957547,85063942998,2-s2.0-85063942998,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85063942998,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85063942998&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85063942998&origin=inward +Shared polygenic risk and causal inferences in amyotrophic lateral sclerosis,Floeter,Alastair J. Noyce;Federico Casale;Aude Nicolas;Maurizio Grassano;Roy H. Campbell;Maura Pugliatti;Mario Sabatelli;Stefania Cammarosano;Antonio Petrucci;Nicola Fini;Ilaria Bartolomei;Emanuela Costantino;Gianluigi Mancardi;Maria Giovanna Marrosu;William Camu;Vincenzo La Bella;Carlo Ferrarese;Silvana Penco;Lucio Tremolizzo;Daniele Cusi;Tiziana Colletti;Marialuisa Santarelli;Margherita Capasso;Robert Bowser;Paolo Volanti;Stefania Tranquilli;Adriano Chiò;Christopher B. Brady;Angelo Pirisi;Yevgeniya Abramzon;Ruth Chia;Jinhui Ding;Giuseppe Marrali;Gabriele Mora;Cristina Moglia;Nilo Riva;Antonio Fasano;Paola Carrera;Giovanni Piccirillo;Claudia Caponnetto;Robert H. Baloh;Marcella Zollino;Gianluca Floris;Letizia Mazzini;Carla Pani;John Cooper-Knock;Jessica Mandrioli;Fabrizio Pisano;Umberto Manera;Stefania Battistini;Kalliopi Marinou;Giancarlo Logroscino;Giuseppe Borghero;Alessandro Arosio;Sandra D'Alfonso;Sampath Arepalli;Vivian E. Drory;Lucia Corrado;Fabio Giannini;Paola Origone;Cinzia Femiano;Travis L. Dunckley;Alexis Brice;Gioacchino Tedeschi;Christian Lunetta;Francesca Trojsi;Maria Rosaria Monsurro;Lorena Mosca;Marco Barberis;Rossella Spataro;Raffaella Tanel;Giuseppe Fuda;Fabrizio Salvi;Gibran Hemani;Michele Benigni;Carsten Drepper;Serena Lattante;Giuseppe Marangi;Antonio Canosa;Antonio Ilardi;Maria Rita Murru;Paola Mandich;Sonia Messina;Antonino Cannas;Amelia Conte;Riccardo Sideri;Isabella Simone;Francesco O. Logullo;Maura Brunetti;Sara Bandres-Ciga;Francesca L. Conforti;Patrizia Occhineri;Claudia Ricci;Maurizio Melis;Sebastiano Cavallaro;Gabriella Restagno;Daniela Loi;Carla Caredda;James Broach;Andrea Calvo,2019-04-01,18,Annals of Neurology,470-481,10.1002/ana.25431,30723964,85062936004,2-s2.0-85062936004,Article,UNITO,https://api.elsevier.com/content/abstract/scopus_id/85062936004,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85062936004&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85062936004&origin=inward +Guidelines for authors: A view from the editor's desk,Floeter,Zachary Simmons,2019-02-01,0,Muscle and Nerve,147-148,10.1002/mus.26399,30549059,85059588922,2-s2.0-85059588922,Editorial,,https://api.elsevier.com/content/abstract/scopus_id/85059588922,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85059588922&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85059588922&origin=inward +"In memorium: WALTER STOLOV, MD",Floeter,Lawrence R. Robinson;Zachary Simmons,2019-01-01,0,Muscle & nerve,1-2,10.1002/mus.26368,30556151,85059261621,2-s2.0-85059261621,Article,,https://api.elsevier.com/content/abstract/scopus_id/85059261621,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85059261621&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85059261621&origin=inward +Telemedicine to innovate amyotrophic lateral sclerosis multidisciplinary care: The time has come,Floeter,Sabrina Paganoni;Zachary Simmons,2019-01-01,6,Muscle and Nerve,3-5,10.1002/mus.26311,30066337,85058785442,2-s2.0-85058785442,Editorial,,https://api.elsevier.com/content/abstract/scopus_id/85058785442,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85058785442&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85058785442&origin=inward +Vowel-specific intelligibility and acoustic patterns in individuals with dysarthria secondary to amyotrophic lateral sclerosis,Floeter,Emily Dickey;Jimin Lee;Zachary Simmons,2019-01-01,1,"Journal of Speech, Language, and Hearing Research",34-59,10.1044/2018_JSLHR-S-17-0357,30950759,85064173794,2-s2.0-85064173794,Article,PSU,https://api.elsevier.com/content/abstract/scopus_id/85064173794,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85064173794&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85064173794&origin=inward +Thank you to our reviewers,Floeter,Zachary Simmons,2018-12-01,0,Muscle & nerve,868-870,10.1002/mus.25946,30556188,85058752983,2-s2.0-85058752983,Article,,https://api.elsevier.com/content/abstract/scopus_id/85058752983,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85058752983&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85058752983&origin=inward +Loss of functional connectivity is an early imaging marker in primary lateral sclerosis,Floeter,Rachel Smallwood Shoukry;Mary Kay Floeter;Devin Bageac;Michael G. Clark;Laura E. Danielian;Caleb J. Huang,2018-10-02,8,Amyotrophic Lateral Sclerosis and Frontotemporal Degeneration,562-569,10.1080/21678421.2018.1517180,30299161,85054736833,2-s2.0-85054736833,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85054736833,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85054736833&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85054736833&origin=inward +Unexpected similarities between C9ORF72 and sporadic forms of ALS/FTD suggest a common disease mechanism,Floeter,Edward B. Lee;James L. Manley;James R. Broach;Zachary Simmons;Isabel Hubbard;Nikolaos A. Patsopoulos;Kristy Kang;Vivianna M. Van Deerlin;Eran Hornstein;Erin G. Conlon;Justin Kwan;Frank Baas;Joshua Dubnau;James Gregory;James D. Berry;Duyang Kim;Julia Davis-Porada;Phaedra Agius;Suvankar Pal;Andrea Malaspina;Efthimios Dardiotis;Avindra Nath;Molly G. Hammell;Noah Zaitlen;Timothy M. Miller;Siddharthan Chandran;Ernest Fraenkel;Hemali Phatnani;Dhruv Sareen;Lyle W. Ostrow;Leslie M. Thompson;Pietro Fratta;Terry Heiman-Patterson;Steve Finkbeiner;Daniel J. Macgowan;Neil A. Shneider;Gregory A. Cox;Delphine Fagegaltier;Ximena Arcila-Londono,2018-07-13,19,eLife,,10.7554/eLife.37754,30003873,85052201257,2-s2.0-85052201257,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85052201257,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85052201257&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85052201257&origin=inward +Discussing edaravone with the ALS patient: an ethical framework from a U.S. perspective,Floeter,Crystal Jing Jing Yeo;Zachary Simmons,2018-04-03,7,Amyotrophic Lateral Sclerosis and Frontotemporal Degeneration,167-172,10.1080/21678421.2018.1425455,29334251,85040981986,2-s2.0-85040981986,Article,,https://api.elsevier.com/content/abstract/scopus_id/85040981986,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85040981986&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85040981986&origin=inward +Hydration measured by doubly labeled water in ALS and its effects on survival,Floeter,Dwight E. Matthews;Zachary Simmons;Hiroshi M. Mitsumoto;Rup Tandan;Mark B. Bromberg;Connor N. Scagnelli;Diantha B. Howard;Edward J. Kasarskis,2018-04-03,2,Amyotrophic Lateral Sclerosis and Frontotemporal Degeneration,220-231,10.1080/21678421.2017.1413117,29243507,85038108571,2-s2.0-85038108571,Article,UK,https://api.elsevier.com/content/abstract/scopus_id/85038108571,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85038108571&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85038108571&origin=inward +Genome-wide Analyses Identify KIF5A as a Novel ALS Gene,Floeter,Kevin P. Kenna;Natalie A. Murphy;Aude Nicolas;Mario Sabatelli;Maura Pugliatti;Maria Rosaria Monsurrò;Antonio Petrucci;Nicola Fini;Ilaria Bartolomei;Joke J.F.A. van Vugt;Antonio Milia;Emanuela Costantino;Gianluigi Mancardi;Maria Giovanna Marrosu;Janice A. Dominov;Enzo Ortu;Marco Luigetti;Vincenzo La Bella;Carlo Ferrarese;Bradley N. Smith;Silvana Penco;Lucio Tremolizzo;Giuseppe Lauria Pinter;Tiziana Colletti;Marialuisa Santarelli;Margherita Capasso;Paolo Volanti;Rick A. Van der Spek;Stefania Tranquilli;Athina Soragia Gkazi;Faraz Faghri;Ruth Chia;Yevgeniya Abramzon;Angelo Pirisi;Gabriele Mora;Cristina Moglia;Nilo Riva;Antonio Fasano;Massimo Corbo;Francesco Marrosu;Isabella L. Simone;Paola Carrera;Giovanni Piccirillo;Claudia Caponnetto;Marcella Zollino; Shankaracharya;Gianluca Floris;Roberta Puddu;Anna Ticca;Carla Pani;Jessica Mandrioli;Hannah A. Pliner;Stefania Battistini;Andrea Calvo;Kalliopi Marinou;Giancarlo Logroscino;Giuseppe Borghero;Pamela Keagle;Daniela Corongiu;Alessandro Arosio;Mike A. Nalls;Alan E. Renton;Fabio Giannini;Paola Origone;Cinzia Femiano;Gioacchino Tedeschi;Stefania Cuccu;Christian Lunetta;Leslie D. Parish;Francesca Trojsi;Lorena Mosca;Rossella Spataro;Nicola Ticozzi;Fabrizio Salvi;Michele Benigni;Serena Lattante;Joshua T. Geiger;Valeria Piras;Giuseppe Marangi;Maria Rita Murru;Paola Mandich;Tea B. Cau;Antonino Cannas;Amelia Conte;John D. Eicher;Riccardo Sideri;Francesco O. Logullo;Wouter van Rheenen;Maura Brunetti;Francesca L. Conforti;Patrizia Occhineri;Claudia Ricci;Alberto M. Rivera;Aoife Kenna;Maurizio Melis;Sebastiano Cavallaro;Daniela Loi;Carla Caredda;Simon D. Topp;Brendan J. Kenna,2018-03-21,108,Neuron,1268-1283.e6,10.1016/j.neuron.2018.02.027,29566793,85044172835,2-s2.0-85044172835,Article,UNITO,https://api.elsevier.com/content/abstract/scopus_id/85044172835,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85044172835&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85044172835&origin=inward +Goodbye to neuromuscular images,Floeter,Zachary Simmons,2018-02-01,0,Muscle and Nerve,167,10.1002/mus.26008,29330896,85040719893,2-s2.0-85040719893,Editorial,,https://api.elsevier.com/content/abstract/scopus_id/85040719893,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85040719893&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85040719893&origin=inward +Articulatory kinematic characteristics across the dysarthria severity spectrum in individuals with amyotrophic lateral sclerosis,Floeter,Jimin Lee;Michael Bell;Zachary Simmons,2018-02-01,7,American Journal of Speech-Language Pathology,258-269,10.1044/2017_AJSLP-16-0230,29209698,85041406378,2-s2.0-85041406378,Article,PSU,https://api.elsevier.com/content/abstract/scopus_id/85041406378,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85041406378&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85041406378&origin=inward +Ethical Considerations in Neurogenetic Testing,Floeter,Xiaowei W. Su;Zachary Simmons,2018-01-01,1,Seminars in Neurology,505-514,10.1055/s-0038-1667382,30321888,85055048497,2-s2.0-85055048497,Article,,https://api.elsevier.com/content/abstract/scopus_id/85055048497,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85055048497&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85055048497&origin=inward +Symptom management in amyotrophic lateral sclerosis: We can do better,Floeter,Stephen A. Goutman;Zachary Simmons,2018-01-01,3,Muscle and Nerve,1-3,10.1002/mus.25740,28681465,85037682746,2-s2.0-85037682746,Editorial,Amyotrophic Lateral Sclerosis Assn.,https://api.elsevier.com/content/abstract/scopus_id/85037682746,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85037682746&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85037682746&origin=inward +Longitudinal diffusion imaging across the C9orf72 clinical spectrum,Floeter,Mary Kay Floeter;Laura E. Danielian;Tianxia Wu;Laura E. Braun,2018-01-01,12,"Journal of Neurology, Neurosurgery and Psychiatry",53-60,10.1136/jnnp-2017-316799,29054917,85040013582,2-s2.0-85040013582,Article,ATSDR,https://api.elsevier.com/content/abstract/scopus_id/85040013582,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85040013582&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85040013582&origin=inward +"Amyotrophic lateral sclerosis–specific quality of life–short form (ALSSQOL-SF): A brief, reliable, and valid version of the ALSSQOL-R",Floeter,Stephanie H. Felgoise;Lauren Elman;James Caress;Lora L. Clawson;Leo Mccluskey;Zachary Simmons;James Russell;Ezgi Tiryaki;Richard Feinberg;Helen E. Stephens;Kevin Boylan;Paul Barkhaus;Stephen A. Goutman;Michael Weiss,2018-01-01,6,Muscle and Nerve,,10.1002/mus.26203,30028537,85055268129,2-s2.0-85055268129,,,https://api.elsevier.com/content/abstract/scopus_id/85055268129,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85055268129&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85055268129&origin=inward +Lawful physician-hastened death AAN position statement,Floeter,Julie A. Kurek;Michael A. Williams;Robert M. Pascuzzi;Richard J. Bonnie;Zachary Simmons;Lynne Taylor;Leon G. Epstein;Matthew Rizzo;Justin A. Sattin;James A. Russell;William D. Graf;Amy Tsou;Robin Conwit;Matthew Kirschen;Daniel G. Larriviere,2018-01-01,3,Neurology,420-422,10.1212/WNL.0000000000005012,29483313,85047738190,2-s2.0-85047738190,Article,,https://api.elsevier.com/content/abstract/scopus_id/85047738190,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85047738190&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85047738190&origin=inward +Expansion of C9ORF72 in amyotrophic lateral sclerosis correlates with brain-computer interface performance,Floeter,James R. Broach;Zachary Simmons;Andrew Geronimo;Steven J. Schiff;Kathryn E. Sheldon,2017-12-01,1,Scientific Reports,,10.1038/s41598-017-08857-3,28827593,85027835226,2-s2.0-85027835226,Article,,https://api.elsevier.com/content/abstract/scopus_id/85027835226,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85027835226&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85027835226&origin=inward +Erratum: Amyotrophic lateral sclerosis (Nature reviews. Disease primers (2017) 3 (17071)),Floeter,Leonard H. van den Berg;Zachary Simmons;Wim Robberecht;Ammar Al-Chalabi;Orla Hardiman;Pamela J. Shaw;Emma M. Corr;Adriano Chio;Giancarlo Logroscino,2017-10-20,33,Nature reviews. Disease primers,17085,10.1038/nrdp.2017.85,29052611,85064130249,2-s2.0-85064130249,Erratum,MRC,https://api.elsevier.com/content/abstract/scopus_id/85064130249,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85064130249&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85064130249&origin=inward +Amyotrophic lateral sclerosis,Floeter,Zachary Simmons;Wim Robberecht;Ammar Al-Chalabi;Leonard H. Van Den Berg;Orla Hardiman;Pamela J. Shaw;Emma M. Corr;Adriano Chio;Giancarlo Logroscino,2017-10-05,199,Nature Reviews Disease Primers,,10.1038/nrdp.2017.71,28980624,85030692633,2-s2.0-85030692633,Review,JPND,https://api.elsevier.com/content/abstract/scopus_id/85030692633,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85030692633&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85030692633&origin=inward +The P300 ‘face’ speller is resistant to cognitive decline in ALS,Floeter,Andrew M. Geronimo;Zachary Simmons,2017-10-02,4,Brain-Computer Interfaces,225-235,10.1080/2326263X.2017.1338013,,85056763323,2-s2.0-85056763323,Article,PSHCI,https://api.elsevier.com/content/abstract/scopus_id/85056763323,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85056763323&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85056763323&origin=inward +Right-to-Try Investigational Therapies for Incurable Disorders,Floeter,Zachary Simmons,2017-10-01,1,CONTINUUM Lifelong Learning in Neurology,1451-1457,10.1212/CON.0000000000000515,28968371,85044969401,2-s2.0-85044969401,Article,CYTK,https://api.elsevier.com/content/abstract/scopus_id/85044969401,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85044969401&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85044969401&origin=inward +Phenotypic and molecular analyses of primary lateral sclerosis,Floeter,Hiroshi Mitsumoto;Jonathan Hupf;Howard Andrews;Pam Factor-Litvak;Jennifer Murphy;Christen Shoesmith;Mary Kay Floeter;Chris Gennings;Peter L. Nagy;Sharon Nations;Jessica Singleton;Edward Kasarskis;Richard J. Barohn;Raymond Goetz,2015-06-01,15,Neurology: Genetics,,10.1212/01.NXG.0000464294.88607.dd,,85046981879,2-s2.0-85046981879,Article,NIEHS,https://api.elsevier.com/content/abstract/scopus_id/85046981879,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85046981879&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85046981879&origin=inward +The translational neural circuitry of anxiety,Grillon,Oliver J. Robinson;Alexandra C. Pike;Christian Grillon;Brian Cornwell,2019-12-01,5,"Journal of Neurology, Neurosurgery and Psychiatry",1353-1360,10.1136/jnnp-2019-321400,31256001,85068350181,2-s2.0-85068350181,Review,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85068350181,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85068350181&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85068350181&origin=inward +Fear-potentiated startle response as an endophenotype: Evaluating metrics and methods for genetic applications,Grillon,Scott Vrana;Dever M. Carney;Ellen Leibenluft;Jeanne E. Savage;Oumaima Kaabi;John M. Hettema;Daniel S. Pine;Roxann Roberson-Nay;Christian Grillon;Laura Machlin;Elizabeth Moroney;Chelsea K. Sawyers;Melissa A. Brotman;Brad Verhulst;Jessica L. Bourdon;Ashlee A. Moore,2019-05-01,1,Psychophysiology,,10.1111/psyp.13325,30613993,85059578284,2-s2.0-85059578284,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85059578284,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85059578284&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85059578284&origin=inward +"Impaired discriminative fear conditioning during later training trials differentiates generalized anxiety disorder, but not panic disorder, from healthy control participants",Grillon,Samuel E. Cooper;Shmuel Lissek;Christian Grillon,2018-08-01,2,Comprehensive Psychiatry,84-93,10.1016/j.comppsych.2018.07.001,30005181,85049902626,2-s2.0-85049902626,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85049902626,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85049902626&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85049902626&origin=inward +Effects of TPH2 gene variation and childhood trauma on the clinical and circuit-level phenotype of functional movement disorders,Hallett,Carine W. Maurer;Mark Hallett;Colin Hodgkinson;Silvina Horovitz;David Goldman;Primavera A. Spagnolo;Gina Norato,2020-08-01,0,"Journal of Neurology, Neurosurgery and Psychiatry",814-821,10.1136/jnnp-2019-322636,32576619,85088496283,2-s2.0-85088496283,Article,,https://api.elsevier.com/content/abstract/scopus_id/85088496283,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85088496283&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85088496283&origin=inward +Low-frequency transcranial magnetic stimulation of the left dorsal premotor cortex in patients with cervical dystonia,Hallett,Hae Won Shin;Mark Hallett,2020-07-01,0,Parkinsonism and Related Disorders,13-15,10.1016/j.parkreldis.2020.05.027,32535288,85086097109,2-s2.0-85086097109,Letter,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85086097109,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85086097109&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85086097109&origin=inward +Myoclonus: An Electrophysiological Diagnosis,Hallett,Felipe Vial-Undurraga;Giorgio Leodori;Mark Hallett;Jay A. van Gerpen;Shabbir Hussain I. Merchant,2020-07-01,0,Movement Disorders Clinical Practice,489-499,10.1002/mdc3.12986,,85087186310,2-s2.0-85087186310,Review,,https://api.elsevier.com/content/abstract/scopus_id/85087186310,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85087186310&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85087186310&origin=inward +Human brain connectivity: Clinical applications for clinical neurophysiology,Hallett,Rick C. Helmich;Lukas J. Volz;Gustavo Deco;Fabrizio Vecchio;Christian Gerloff;Tao Wu;Christian Grefkes;Morten L. Kringelbach;Ondřej Strýček;Paolo M. Rossini;Mark Hallett;Ivan Rektor;Riccardo Di Iorio;Willem de Haan;Reinhard Dengler;Cecile Gallea;Francesca Miraglia,2020-07-01,0,Clinical Neurophysiology,1621-1651,10.1016/j.clinph.2020.03.031,32417703,85084423140,2-s2.0-85084423140,Review,DFG,https://api.elsevier.com/content/abstract/scopus_id/85084423140,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85084423140&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85084423140&origin=inward +Functional gait disorders: A sign-based approach,Hallett,Stephen G. Reich;Mark Hallett;Jorik Nonnekes;Bastiaan R. Bloem;Evžen Růžička;Tereza Serranová,2020-06-16,0,Neurology,1093-1099,10.1212/WNL.0000000000009649,32482839,85086525286,2-s2.0-85086525286,Review,,https://api.elsevier.com/content/abstract/scopus_id/85086525286,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85086525286&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85086525286&origin=inward +Re-emergent Tremor in Parkinson's Disease: The Role of the Motor Cortex,Hallett,Daniele Belvisi;Matteo Costanzo;Felipe Vial;Giorgio Leodori;Maria I. De Bartolo;Mark Hallett;Antonella Conte;Alfredo Berardelli;Andrea Fabbrini,2020-06-01,0,Movement Disorders,1002-1011,10.1002/mds.28022,32175656,85081717317,2-s2.0-85081717317,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85081717317,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85081717317&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85081717317&origin=inward +Opinions and clinical practices related to diagnosing and managing functional (psychogenic) movement disorders: changes in the last decade,Hallett,M. Hallett;A. E. Lang;S. Lidstone;F. Morgante;K. LaFaver;A. J. Espay;M. Edwards;J. Stone;C. W. Maurer;A. K. Dwivedi,2020-06-01,0,European Journal of Neurology,975-984,10.1111/ene.14200,32153070,85082761012,2-s2.0-85082761012,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85082761012,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85082761012&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85082761012&origin=inward +Task-specific interhemispheric hypoconnectivity in writer's cramp – An EEG study,Hallett,Silvina G. Horovitz;Ajay S. Pillai;Mark Hallett;Nivethida Thirugnanasambandam;Jessica Shields;Tyler Zimmerman,2020-05-01,0,Clinical Neurophysiology,985-993,10.1016/j.clinph.2020.01.011,32193164,85081647501,2-s2.0-85081647501,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85081647501,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85081647501&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85081647501&origin=inward +Defining research priorities in dystonia,Hallett,Philip A. Starr;Laurie Ozelius;Sarah E. Pirio Richardson;Jennifer C. Moore;Roy Sillitoe;Joel S. Perlmutter;Nutan Sharma;Laura Scheinfeldt;Christine Swanson-Fisher;Anna Taylor;Kristina Simonyan;David Standaert;Beth Anne Sieber;Brian D. Berman;Nicole Calakos;Mark Hallett;Rachel Saunders-Pullman;Codrin Lungu;Jerrold Vitek,2020-03-24,0,Neurology,526-537,10.1212/WNL.0000000000009140,32098856,85082342443,2-s2.0-85082342443,Review,,https://api.elsevier.com/content/abstract/scopus_id/85082342443,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85082342443&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85082342443&origin=inward +Characteristics of oscillatory pallidal neurons in patients with Parkinson's disease,Hallett,Yongsheng Hu;Yuqing Zhang;Mark Hallett;Ping Zhuang;Jianyu Li;Detao Meng;Yongjie Li,2020-03-15,0,Journal of the Neurological Sciences,,10.1016/j.jns.2019.116661,31918151,85077327067,2-s2.0-85077327067,Article,MOE,https://api.elsevier.com/content/abstract/scopus_id/85077327067,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85077327067&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85077327067&origin=inward +Evolving concepts on bradykinesia,Hallett,Giulia Paparella;Matteo Bologna;Alfonso Fasano;Mark Hallett;Alfredo Berardelli,2020-03-01,4,Brain,727-750,10.1093/brain/awz344,31834375,85079381636,2-s2.0-85079381636,Review,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85079381636,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85079381636&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85079381636&origin=inward +Parietal conditioning enhances motor surround inhibition,Hallett,Traian Popa;Giorgio Leodori;Alexandra Mandel;Sarung Kashyap;Panagiotis Kassavetis;Mark Hallett;Gregg Khodorov;Alexander Shaft;Nivethida Thirugnanasambandam;Jaron Kee,2020-03-01,0,Brain Stimulation,447-449,10.1016/j.brs.2019.12.011,31879086,85076850852,2-s2.0-85076850852,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85076850852,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85076850852&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85076850852&origin=inward +"Correction to: Are there any differential responses to concussive injury in civilian versus athletic populations: a neuroimaging study (Brain Imaging and Behavior, (2020), 14, 1, (110-117), 10.1007/s11682-018-9982-1)",Hallett,Brian Johnson;Andrew R. Mayer;Mark Hallett;Semyon Slobounov;Andrew Dodd,2020-02-01,0,Brain Imaging and Behavior,118,10.1007/s11682-018-0015-x,30456625,85056896958,2-s2.0-85056896958,Erratum,,https://api.elsevier.com/content/abstract/scopus_id/85056896958,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85056896958&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85056896958&origin=inward +Are there any differential responses to concussive injury in civilian versus athletic populations: a neuroimaging study,Hallett,Brian Johnson;Andrew R. Mayer;Mark Hallett;Semyon Slobounov;Andrew Dodd,2020-02-01,0,Brain Imaging and Behavior,110-117,10.1007/s11682-018-9982-1,30361946,85055946140,2-s2.0-85055946140,Article,,https://api.elsevier.com/content/abstract/scopus_id/85055946140,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85055946140&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85055946140&origin=inward +Gender as a Risk Factor for Functional Movement Disorders: The Role of Sexual Abuse,Hallett,Stefan H. Sillau;Sanaz Attaripour Isfahani;Mark Hallett;Kathrin LaFaver;Isaiah Kletenik;Brian D. Berman,2020-02-01,2,Movement Disorders Clinical Practice,177-181,10.1002/mdc3.12863,,85076377440,2-s2.0-85076377440,Article,"CNS, UC",https://api.elsevier.com/content/abstract/scopus_id/85076377440,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85076377440&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85076377440&origin=inward +Transcranial Pulse Stimulation with Ultrasound in Alzheimer's Disease—A New Navigated Focal Brain Therapy,Hallett,Raphael Reinecke;Cédric Goldenstedt;Alexandra Weber;Henning Lohse-Busch;Marleen Schönfeld;Johann Lehrner;Eva Matt;Tabea Philippi Novak;Ulrike Reime;Ernst Marlinghaus;Mark Hallett;Tuna Aslan;Roland Beisteiner;Christina Fan;Heike Baldysiak;Ahmad Amini,2020-02-01,2,Advanced Science,,10.1002/advs.201902583,,85076905050,2-s2.0-85076905050,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85076905050,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85076905050&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85076905050&origin=inward +"BacAv, a new free online platform for clinical back-averaging",Hallett,Felipe Vial;Mark Hallett;Patrick McGurrin;Sanaz Attaripour,2020-01-01,0,Clinical Neurophysiology Practice,38-42,10.1016/j.cnp.2019.12.001,,85079671191,2-s2.0-85079671191,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85079671191,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85079671191&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85079671191&origin=inward +"Tremoroton, a new free online platform for tremor analysis",Hallett,Felipe Vial;Mark Hallett;Patrick McGurrin;Debra Ehrlich;Thomas Osterholt;Dietrich Haubenberger,2020-01-01,0,Clinical Neurophysiology Practice,30-34,10.1016/j.cnp.2019.11.004,,85077703314,2-s2.0-85077703314,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85077703314,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85077703314&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85077703314&origin=inward +Freezing of gait: Understanding the complexity of an enigmatic phenomenon,Hallett,Daniel Weiss;Anna Schoellmann;Alice Nieuwboer;Stewart A. Factor;Mark Hallett;Nicolaas I. Bohnen;Michael D. Fox;Simon J.G. Lewis,2020-01-01,6,Brain,14-30,10.1093/brain/awz314,31647540,85076719762,2-s2.0-85076719762,Review,MDS,https://api.elsevier.com/content/abstract/scopus_id/85076719762,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85076719762&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85076719762&origin=inward +Outcome measures for functional neurological disorder: A review of the theoretical complexities,Hallett,David L. Perez;Susannah Pick;Clare Nicholson;Mark Hallett;Glenn Nielsen;Timothy R. Nicholson;Laura H. Goldstein;Jon Stone;Bridget Mildon;Alan Carson;Mark J. Edwards,2020-01-01,4,Journal of Neuropsychiatry and Clinical Neurosciences,33-42,10.1176/appi.neuropsych.19060128,31865871,85078548167,2-s2.0-85078548167,Article,NIHR,https://api.elsevier.com/content/abstract/scopus_id/85078548167,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85078548167&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85078548167&origin=inward +International Federation of Clinical Neurophysiology (IFCN) – EEG research workgroup: Recommendations on frequency and topographic analysis of resting state EEG rhythms. Part 1: Applications in clinical research studies,Hallett,Robert T. Knight;Wilhelmus H.I.M. Drinkenburg;Robert Oostenveld;Katarzyna J. Blinowska;Wolfgang Klimesch;Roberto Pascual-Marqui;Claudio Babiloni;Mark Hallett;Pedro Valdes-Sosa;Andrzej Cichocki;Paul Nunez;Erol Başar;Robert J. Barry;Fernando Lopes da Silva;Jaeseung Jeong,2020-01-01,5,Clinical Neurophysiology,285-307,10.1016/j.clinph.2019.06.234,31501011,85071871317,2-s2.0-85071871317,Review,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85071871317,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85071871317&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85071871317&origin=inward +Outcome measurement in functional neurological disorder: A systematic review and recommendations,Hallett,Alberto J. Espay;Ali A. Asadi-Pooya;Beátrice Garcin;Michele Tinazzi;Laura H. Goldstein;David G. Anderson;Jon Stone;Lorna Myers;Trudie Chalder;Tereza Serranova;Carine W. Maurer;Francesca Morgante;Marina A.J. Tijssen;Alan J. Carson;Joseph Jankovic;Kasia Kozlowska;Anthony S. David;Karen S. Rommelfanger;Kathrin Lafaver;Bridget Mildon;W. Curt Lafrance;Glenn T. Stebbins;Richard A. Kanaan;Richard J. Brown;Selma Aybek;Bastiaan R. Bloem;Mark J. Edwards;Petra Schwingenshuh;Paul Shotbolt;David L. Perez;Gaston Baslet;Susannah Pick;Eileen M. Joyce;Clare Nicholson;Mark Hallett;Maria Damianova;Alex Lehn;Glenn Nielsen;Abigail Bradley-Westguard;Steven A. Epstein;Anthony E. Lang;Markus Reuber;Timothy R. Nicholson;Roxanne C. Keynejad;Stoyan Popkirov;Sarah Lidstone,2020-01-01,2,"Journal of Neurology, Neurosurgery and Psychiatry",,10.1136/jnnp-2019-322180,32111637,85081699833,2-s2.0-85081699833,Review,,https://api.elsevier.com/content/abstract/scopus_id/85081699833,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85081699833&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85081699833&origin=inward +Focal Leg Dystonia Associated with Cerebellar Infarction and Application of Low-Frequency Cerebellar Transcranial Magnetic Stimulation: Evidence of Topographically Specific Cerebellar Contribution to Dystonia Development,Hallett,Hae Won Shin;Mark Hallett;Young Chul Youn,2019-12-01,0,Cerebellum,1147-1150,10.1007/s12311-019-01054-0,31256315,85068328307,2-s2.0-85068328307,Article,,https://api.elsevier.com/content/abstract/scopus_id/85068328307,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85068328307&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85068328307&origin=inward +Lack of Target Engagement Following Low-Frequency Deep Transcranial Magnetic Stimulation of the Anterior Insula,Hallett,Markus Heilig;Melanie Schwandt;Mark Hallett;Prachaya Srivanitchapoom;Han Wang;Primavera A. Spagnolo,2019-12-01,2,Neuromodulation,877-883,10.1111/ner.12875,30370983,85055718863,2-s2.0-85055718863,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85055718863,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85055718863&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85055718863&origin=inward +Consensus Paper: Experimental Neurostimulation of the Cerebellum,Hallett,Kenneth B. Baker;Michelle Y. Cheng;Abbas Z. Kouzani;Lauren N. Miterko;Dagmar Timmann;Alana B. McCambridge;Mario Manto;Traian Popa;Mahlon R. DeLong;Michael A. Nitsche;Masaki Tanaka;Eric H. Wang;Andre Machado;Tao Xie;Detlef H. Heck;Elan D. Louis;Thomas Wichmann;Lynley V. Bradnam;Gary K. Steinberg;Freek E. Hoebeek;Mark Hallett;Jaclyn Beckinghausen;Simona V. Gornati;Roy V. Sillitoe;Sheng Han Kuo;Jessica Cooperrider;Nordeyn Oulad Ben Taib,2019-12-01,15,Cerebellum,1064-1097,10.1007/s12311-019-01041-5,31165428,85067246896,2-s2.0-85067246896,Article,FNRS,https://api.elsevier.com/content/abstract/scopus_id/85067246896,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85067246896&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85067246896&origin=inward +Brainstem Functions and Reflexes,Hallett,Josep Valls-Solé;Mark Hallett,2019-11-01,0,Journal of Clinical Neurophysiology,395,10.1097/WNP.0000000000000584,31688321,85074548595,2-s2.0-85074548595,Editorial,,https://api.elsevier.com/content/abstract/scopus_id/85074548595,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85074548595&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85074548595&origin=inward +How Do I Assess Tremor Using Novel Technology?,Hallett,Katherine Longardner;Mark Hallett;Felipe Vial Undurraga;Fatta B. Nahab;Dietrich Haubenberger,2019-11-01,1,Movement Disorders Clinical Practice,733-734,10.1002/mdc3.12818,,85074669748,2-s2.0-85074669748,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85074669748,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85074669748&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85074669748&origin=inward +Evidence From Parkinson's Disease That the Superior Colliculus Couples Action and Perception,Hallett,Lance M. Optican;Elena Pretegiani;Mark Hallett;Nora Vanegas-Arroyave;Edmond J. FitzGibbon,2019-11-01,1,Movement Disorders,1680-1689,10.1002/mds.27861,31633242,85074371990,2-s2.0-85074371990,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85074371990,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85074371990&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85074371990&origin=inward +Botulinum toxin and occupational therapy for Writer's cramp,Hallett,Katharine Alter;Barbara Karp;Tianxia Wu;Ejaz A. Shamim;Monica Villegas;P. Mathew;Omar F. Ahmad;Mark Hallett;Jung E. Park;Camilo Toro;Jonathan Sackett;Pattamon Panyakaew;Codrin Lungu;Sungyoung Auh,2019-11-01,1,Toxicon,12-17,10.1016/j.toxicon.2019.07.010,31351085,85070711291,2-s2.0-85070711291,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85070711291,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85070711291&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85070711291&origin=inward +Effect of light on blinking in patients with idiopathic isolated blepharospasm,Hallett,Yiwen Wu;Tianxia Wu;Nguyet Dang;Charulata Sankhla Savant;Mark Hallett;Pattamon Panyakaew;Hyun Joo Cho,2019-10-01,0,Parkinsonism and Related Disorders,66-71,10.1016/j.parkreldis.2019.09.010,31621610,85073122626,2-s2.0-85073122626,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85073122626,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85073122626&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85073122626&origin=inward +Methods for analysis of brain connectivity: An IFCN-sponsored review,Hallett,M. A. Nitsche;M. Hallett;R. Di Iorio;F. Vecchio;G. Bertini;Y. Ugawa;F. Pestilli;M. Rosanova;U. Ziemann;P. M. Rossini;R. J. Ilmoniemi;F. Ferreri;F. Miraglia;M. Bentivoglio;C. Tesoriero;C. Gerloff;Y. Shirota,2019-10-01,14,Clinical Neurophysiology,1833-1858,10.1016/j.clinph.2019.06.006,31401492,85070222418,2-s2.0-85070222418,Review,,https://api.elsevier.com/content/abstract/scopus_id/85070222418,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85070222418&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85070222418&origin=inward +Hiding in plain sight: Functional neurological disorders in the news,Hallett,Alberto J. Espay;Aileen McGonigal;Michele Tinazzi;Jon Stone;Maria Stamelou;Francesca Morgante;Marina A.J. Tijssen;Alan J. Carson;Christopher P. Derry;Alexander Lehn;Philip Smith;Bastiaan R. Bloem;Mark J. Edwards;Barbara A. Dworetzky;David L. Perez;Roderick Duncan;Mark Hallett;Markus Reuber;John Paul Leach;Timothy R. Nicholson;Mark P. Richardson;Anthony E. Lang;Hannah R. Cock;Stoyan Popkirov,2019-10-01,2,Journal of Neuropsychiatry and Clinical Neurosciences,361-367,10.1176/appi.neuropsych.19010025,31117907,85073183339,2-s2.0-85073183339,Article,NIHR,https://api.elsevier.com/content/abstract/scopus_id/85073183339,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85073183339&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85073183339&origin=inward +"Response to the letter to the editor, “cerebellar repetitive transcranial magnetic stimulation for patients with essential tremor”",Hallett,Hae Won Shin;Young H. Sohn;Mark Hallett,2019-09-01,0,Parkinsonism and Related Disorders,260,10.1016/j.parkreldis.2019.07.027,31353308,85072773159,2-s2.0-85072773159,Letter,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85072773159,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85072773159&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85072773159&origin=inward +Re-emergent tremor provocation,Hallett,Malco Rossi;Alberto D. Rivero;Mark Hallett;Miguel Wilken;Marcelo Merello,2019-09-01,1,Parkinsonism and Related Disorders,241-244,10.1016/j.parkreldis.2019.08.015,31471122,85071302286,2-s2.0-85071302286,Article,,https://api.elsevier.com/content/abstract/scopus_id/85071302286,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85071302286&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85071302286&origin=inward +Dancing Dorsal Quadrilaterals - Organic or Functional?,Hallett,Mark Hallett;Anjali Chouksey;Sanjay Pandey,2019-08-01,0,JAMA Neurology,985,10.1001/jamaneurol.2019.1717,31259998,85068241662,2-s2.0-85068241662,Letter,NIH,https://api.elsevier.com/content/abstract/scopus_id/85068241662,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85068241662&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85068241662&origin=inward +Functional movement disorders: Is the crisis resolved?,Hallett,Mark Hallett,2019-07-01,2,Movement Disorders,971-974,10.1002/mds.27713,31077443,85065718835,2-s2.0-85065718835,Note,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85065718835,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85065718835&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85065718835&origin=inward +Pathogenesis and pathophysiology of functional (psychogenic) movement disorders,Hallett,Joseph Jankovic;José Fidel Baizabal-Carvallo;Mark Hallett,2019-07-01,17,Neurobiology of Disease,32-44,10.1016/j.nbd.2019.02.013,30798005,85061903841,2-s2.0-85061903841,Review,,https://api.elsevier.com/content/abstract/scopus_id/85061903841,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85061903841&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85061903841&origin=inward +Blepharospasm: A genetic screening study in 132 patients,Hallett,Ava Mahloogi;Mark Hallett;Elisa Majounie;Elizabeth Peckham;Andrew Singleton;Monia Hammer;Alexandra Abravanel,2019-07-01,5,Parkinsonism and Related Disorders,315-318,10.1016/j.parkreldis.2019.04.003,30956059,85063762259,2-s2.0-85063762259,Article,NIA,https://api.elsevier.com/content/abstract/scopus_id/85063762259,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85063762259&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85063762259&origin=inward +MDS evidence-based review of treatments for essential tremor,Hallett,Eng King Tan;Tiago A. Mestre;Joaquim J. Ferreira;Julián Benito-León;Mark Hallett;Dietrich Haubenberger;Rodger Elble;Günther Deuschl;Giovanni Abbruzzese;Kelly E. Lyons,2019-07-01,6,Movement Disorders,950-958,10.1002/mds.27700,31046186,85065449992,2-s2.0-85065449992,Review,NIH,https://api.elsevier.com/content/abstract/scopus_id/85065449992,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85065449992&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85065449992&origin=inward +Trial of magnetic resonance–guided putaminal gene therapy for advanced Parkinson's disease,Hallett,Gretchen Scott;Peter Herscovitch;Dima A. Hammoud;John D. Heiss;Tianxia Wu;Kareem A. Zaghloul;Sanhita Sinharay;Krystof S. Bankiewicz;Russell R. Lonser;Mark Hallett;Davis P. Argersinger;Codrin Lungu;Howard J. Federoff;Debra J. Ehrlich,2019-07-01,10,Movement Disorders,1073-1078,10.1002/mds.27724,31145831,85066470261,2-s2.0-85066470261,Article,UC,https://api.elsevier.com/content/abstract/scopus_id/85066470261,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85066470261&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85066470261&origin=inward +Compensation strategies for gait impairments in parkinson disease: A review,Hallett,Alice Nieuwboer;Alfonso Fasano;Mark Hallett;Jorik Nonnekes;Bastiaan R. Bloem;Evžen Růžička,2019-06-01,18,JAMA Neurology,718-725,10.1001/jamaneurol.2019.0033,30907948,85063279032,2-s2.0-85063279032,Review,MJFF,https://api.elsevier.com/content/abstract/scopus_id/85063279032,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85063279032&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85063279032&origin=inward +"Focus on the pedunculopontine nucleus. Consensus review from the May 2018 brainstem society meeting in Washington, DC, USA",Hallett,E. Garcia-Rill;J. Nonnekes;M. Hallett;J. Valls-Solé;C. B. Saper;M. Kofler;David B. Rye;A. Lozano,2019-06-01,8,Clinical Neurophysiology,925-940,10.1016/j.clinph.2019.03.008,30981899,85064274867,2-s2.0-85064274867,Review,NIGMS,https://api.elsevier.com/content/abstract/scopus_id/85064274867,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85064274867&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85064274867&origin=inward +Effects of deep brain stimulation on the primary motor cortex: Insights from transcranial magnetic stimulation studies,Hallett,Mark Hallett;Zhen Ni;Robert Chen;Kaviraja Udupa,2019-04-01,2,Clinical Neurophysiology,558-567,10.1016/j.clinph.2018.10.020,30527386,85057777761,2-s2.0-85057777761,Review,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85057777761,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85057777761&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85057777761&origin=inward +The role of sensory information in the pathophysiology of focal dystonias,Hallett,Giovanni Defazio;Mark Hallett;Antonella Conte;Giovanni Fabbrini;Alfredo Berardelli,2019-04-01,13,Nature Reviews Neurology,224-233,10.1038/s41582-019-0137-9,30700825,85060941990,2-s2.0-85060941990,Review,,https://api.elsevier.com/content/abstract/scopus_id/85060941990,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85060941990&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85060941990&origin=inward +Latency of re-emergent tremor in Parkinson's disease is influenced by levodopa,Hallett,Malco D. Rossi;Alberto D. Rivero;Mark Hallett;Miguel Wilken;Marcelo Merello,2019-04-01,3,Parkinsonism and Related Disorders,166-169,10.1016/j.parkreldis.2018.10.019,30348494,85055057019,2-s2.0-85055057019,Article,,https://api.elsevier.com/content/abstract/scopus_id/85055057019,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85055057019&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85055057019&origin=inward +A novel exaggerated “spino-bulbo-spinal like” reflex of lower brainstem origin,Hallett,Shabbir Hussain Merchant;Felipe Vial;Stanley Fahn;Giorgio Leodori;Mark Hallett;Seth L. Pullman,2019-04-01,1,Parkinsonism and Related Disorders,34-38,10.1016/j.parkreldis.2018.10.007,30316728,85054449540,2-s2.0-85054449540,Short Survey,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85054449540,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85054449540&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85054449540&origin=inward +Treatment of post-hypoxic myoclonus,Hallett,Mark Hallett,2019-01-01,0,Current Clinical Neurology,275-276,10.1007/978-3-319-97897-0_62,,85066895673,2-s2.0-85066895673,Chapter,,https://api.elsevier.com/content/abstract/scopus_id/85066895673,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85066895673&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85066895673&origin=inward +Dual-hemispheric transcranial direct current stimulation (tDCS) over primary motor cortex does not affect movement selection,Hallett,Nivethida Thirugnanasambandam;Felix G. Contreras-Castro;Mark Hallett,2019-01-01,0,PLoS ONE,,10.1371/journal.pone.0226103,31830094,85076424544,2-s2.0-85076424544,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85076424544,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85076424544&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85076424544&origin=inward +Differentiating tics from functional (psychogenic) movements with electrophysiological tools,Hallett,Felipe Vial;Mark Hallett;Sanaz Attaripour,2019-01-01,1,Clinical Neurophysiology Practice,143-147,10.1016/j.cnp.2019.04.005,,85069000022,2-s2.0-85069000022,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85069000022,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85069000022&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85069000022&origin=inward +Cerebellar repetitive transcranial magnetic stimulation for patients with essential tremor,Hallett,Hae Won Shin;Young H. Sohn;Mark Hallett,2019-01-01,5,Parkinsonism and Related Disorders,,10.1016/j.parkreldis.2019.03.019,30928207,85063354261,2-s2.0-85063354261,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85063354261,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85063354261&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85063354261&origin=inward +How to do an electrophysiological study of tremor,Hallett,Felipe Vial;Mark Hallett;Panagiotis Kassavetis;Shabbir Merchant;Dietrich Haubenberger,2019-01-01,5,Clinical Neurophysiology Practice,134-142,10.1016/j.cnp.2019.06.002,,85068921368,2-s2.0-85068921368,Review,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85068921368,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85068921368&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85068921368&origin=inward +Intracortical inhibition and surround inhibition in the motor cortex: A tms-EEG study,Hallett,Traian Popa;Giorgio Leodori;Hannah Conn;Mark Hallett;Nivethida Thirugnanasambandam;Alfredo Berardelli,2019-01-01,5,Frontiers in Neuroscience,,10.3389/fnins.2019.00612,,85068517171,2-s2.0-85068517171,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85068517171,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85068517171&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85068517171&origin=inward +Prevalence of restless legs syndrome in functional movement disorders: A case-control study from the Czech Republic,Hallett,David Kemlink;Karel Šonka;Mark Hallett;Matěj Slovák;Tereza Serranová;Evžen Ružicka,2019-01-01,2,BMJ Open,,10.1136/bmjopen-2018-024236,30670516,85060400100,2-s2.0-85060400100,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85060400100,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85060400100&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85060400100&origin=inward +Involvement of different neuronal components in the induction of cortical plasticity with associative stimulation,Hallett,Eduard Bercovici;Carolyn Gunraj;Mark Hallett;Robin F.H. Cash;Robert Chen;Zhen Ni,2019-01-01,3,Brain Stimulation,84-86,10.1016/j.brs.2018.08.019,30205951,85052986952,2-s2.0-85052986952,Article,CIHR,https://api.elsevier.com/content/abstract/scopus_id/85052986952,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85052986952&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85052986952&origin=inward +Modulation of resting connectivity between the mesial frontal cortex and basal ganglia,Hallett,Laurel S. Morris;Traian Popa;Karin Mente;Rachel Hunt;Mark Hallett;Valerie Voon;Silvina Horovitz;Kwangyeol Baek;Hitoshi Shitara;Zhi De Deng,2019-01-01,1,Frontiers in Neurology,,10.3389/fneur.2019.00587,,85069224665,2-s2.0-85069224665,Article,WT,https://api.elsevier.com/content/abstract/scopus_id/85069224665,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85069224665&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85069224665&origin=inward +Article gray matter differences in patients with functional movement disorders,Hallett,Silvina G. Horovitz;Carine W. Maurer;Mark Hallett;Kathrin Lafave;Steven A. Epstein;Geanna Capitan;Stephen Sinclair;Gaurang S. Limachia;Rezvan Ameli,2018-11-13,8,Neurology,E1870-E1879,10.1212/WNL.0000000000006514,30305450,85056323152,2-s2.0-85056323152,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85056323152,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85056323152&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85056323152&origin=inward +Author response: The nature of postural tremor in Parkinson disease,Hallett,Rick C. Helmich;Mark Hallett;Michiel F. Dirkx,2018-10-09,0,Neurology,724,10.1212/WNL.0000000000006314,30297510,85054778193,2-s2.0-85054778193,Note,,https://api.elsevier.com/content/abstract/scopus_id/85054778193,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85054778193&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85054778193&origin=inward +Parkinson’s disease motor subtypes show different responses to long-term subthalamic nucleus stimulation,Hallett,Yuqing Zhang;Mark Hallett;Cuiping Xu;Ping Zhuang;Jianyu Li;Yongjie Li,2018-10-04,4,Frontiers in Human Neuroscience,,10.3389/fnhum.2018.00365,,85054822356,2-s2.0-85054822356,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85054822356,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85054822356&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85054822356&origin=inward +Possible Post-Traumatic Focal Dystonia Associated with Tau Pathology Localized to Putamen-Globus Pallidus,Hallett,Diego Iacono;Patricia Lee;Mark Hallett;Daniel Perl,2018-09-01,2,Movement Disorders Clinical Practice,492-498,10.1002/mdc3.12626,,85053206296,2-s2.0-85053206296,Article,USUHS,https://api.elsevier.com/content/abstract/scopus_id/85053206296,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85053206296&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85053206296&origin=inward +Current concepts in diagnosis and treatment of functional neurological disorders,Hallett,Alberto J. Espay;Francesca Morgante;Tim Nicholson;Mark Hallett;Glenn Nielsen;Markus Reuber;Valerie Voon;Laura H. Goldstein;Selma Aybek;W. Curt LaFrance;Kathrin LaFaver;Anthony E. Lang;Jon Stone;Alan Carson;Mark J. Edwards,2018-09-01,74,JAMA Neurology,1132-1141,10.1001/jamaneurol.2018.1264,29868890,85053049798,2-s2.0-85053049798,Review,RISG,https://api.elsevier.com/content/abstract/scopus_id/85053049798,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85053049798&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85053049798&origin=inward +Understanding the new tremor classification,Hallett,Kailash P. Bhatia;Günther Deuschl;Mark Hallett;Rodger Elble,2018-08-01,2,Movement Disorders,1267-1268,10.1002/mds.27368,29570842,85044267218,2-s2.0-85044267218,Article,,https://api.elsevier.com/content/abstract/scopus_id/85044267218,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85044267218&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85044267218&origin=inward +Diagnostic criteria for camptocormia in Parkinson's disease: A consensus-based proposal,Hallett,Alberto J. Espay;Alfonso Fasano;Mark Hallett;Michele Tinazzi;Anthony E. Lang;Bastiaan R. Bloem;Alfredo Berardelli;Christian Geroin,2018-08-01,16,Parkinsonism and Related Disorders,53-57,10.1016/j.parkreldis.2018.04.033,29759930,85047080132,2-s2.0-85047080132,Article,,https://api.elsevier.com/content/abstract/scopus_id/85047080132,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85047080132&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85047080132&origin=inward +Properties of oscillatory neuronal activity in the basal ganglia and thalamus in patients with Parkinson's disease,Hallett,J. Y. Li;M. Hallett;Y. J. Li;Y. Q. Zhang;P. Zhuang;G. Du,2018-07-25,5,Translational Neurodegeneration,,10.1186/s40035-018-0123-y,,85050606332,2-s2.0-85050606332,Article,MOE,https://api.elsevier.com/content/abstract/scopus_id/85050606332,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85050606332&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85050606332&origin=inward +Reappraisal of cortical myoclonus: Electrophysiology is the gold standard,Hallett,Mark Hallett,2018-07-01,0,Movement Disorders,1190,10.1002/mds.27430,30153384,85052509486,2-s2.0-85052509486,Letter,,https://api.elsevier.com/content/abstract/scopus_id/85052509486,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85052509486&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85052509486&origin=inward +Reply to “Corticopallidal connectivity: Lessons from patients with dystonia”,Hallett,Zhen Ni;Robert Chen;Mark Hallett,2018-07-01,2,Annals of Neurology,159,10.1002/ana.25253,29740908,85050501349,2-s2.0-85050501349,Letter,,https://api.elsevier.com/content/abstract/scopus_id/85050501349,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85050501349&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85050501349&origin=inward +The response of the central and peripheral tremor component to octanoic acid in patients with essential tremor,Hallett,Johanna Thompson-Westra;Hongmei Cao;Mark Hallett;Dietrich Haubenberger,2018-07-01,2,Clinical Neurophysiology,1467-1471,10.1016/j.clinph.2018.03.016,29678370,85045461435,2-s2.0-85045461435,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85045461435,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85045461435&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85045461435&origin=inward +Noninvasive neuromodulation in essential tremor demonstrates relief in a sham-controlled pilot trial,Hallett,Peter T. Lin;Serena H. Wong;Mark Hallett;Samuel R. Hamner;Scott L. Delp;Paula Chidester;Erika K. Ross;Kathryn H. Rosenbluth;Terence D. Sanger,2018-07-01,3,Movement Disorders,1182-1183,10.1002/mds.27350,29663525,85052505504,2-s2.0-85052505504,Letter,,https://api.elsevier.com/content/abstract/scopus_id/85052505504,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85052505504&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85052505504&origin=inward +Consensus for the measurement of the camptocormia angle in the standing patient,Hallett,Günther Deuschl;Alberto J. Espay;Nils G. Margraf;Nir Giladi;Daniela Berg;Bastian R. Bloem;Alfonso Fasano;Oliver Granert;Ruth Djaldetti;Mark Hallett;Joseph Jankovic;Michele Tinazzi;Yoshihiko Furusawa;Alfredo Berardelli;Robin Wolke;Jens Volkmann;Miho Murata,2018-07-01,15,Parkinsonism and Related Disorders,1-5,10.1016/j.parkreldis.2018.06.013,29907329,85048341767,2-s2.0-85048341767,Article,AAN,https://api.elsevier.com/content/abstract/scopus_id/85048341767,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85048341767&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85048341767&origin=inward +Patients with Parkinson disease are prone to functional neurological disorders,Hallett,Mark Hallett,2018-06-01,3,"Journal of neurology, neurosurgery, and psychiatry",557,10.1136/jnnp-2017-317684,29549188,85067536203,2-s2.0-85067536203,Editorial,,https://api.elsevier.com/content/abstract/scopus_id/85067536203,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85067536203&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85067536203&origin=inward +Mechanism of action of botulinum neurotoxin: Unexpected consequences,Hallett,Mark Hallett,2018-06-01,8,Toxicon,73-76,10.1016/j.toxicon.2017.08.011,28803760,85028604348,2-s2.0-85028604348,Review,NIH,https://api.elsevier.com/content/abstract/scopus_id/85028604348,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85028604348&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85028604348&origin=inward +Longitudinal studies of botulinum toxin in cervical dystonia: Why do patients discontinue therapy?,Hallett,H. A. Jinnah;Mark Hallett;Joel Perlmutter;Codrin Lungu;Cynthia L. Comella,2018-06-01,14,Toxicon,89-95,10.1016/j.toxicon.2017.09.004,28888929,85028862746,2-s2.0-85028862746,Article,DMRF,https://api.elsevier.com/content/abstract/scopus_id/85028862746,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85028862746&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85028862746&origin=inward +A voxel-based magnetic resonance imaging morphometric study of cerebral and cerebellar gray matter in patients under 65 years with essential tremor,Hallett,Xianjun Li;Johanna Thompson-Westra;Hongmei Cao;Xue Luo;Mark Hallett;Jian Yang;Xiaobo Yang;Qiumin Qu;Rong Wang,2018-05-13,8,Medical Science Monitor,3127-3135,10.12659/MSM.906437,29754151,85048804851,2-s2.0-85048804851,Article,,https://api.elsevier.com/content/abstract/scopus_id/85048804851,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85048804851&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85048804851&origin=inward +Essential tremor,Hallett,Mark Hallett;Dietrich Haubenberger,2018-05-10,32,New England Journal of Medicine,1802-1810,10.1056/NEJMcp1707928,29742376,85046959467,2-s2.0-85046959467,Article,,https://api.elsevier.com/content/abstract/scopus_id/85046959467,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85046959467&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85046959467&origin=inward +Functional Speech and Voice Disorders: Case Series and Literature Review,Hallett,David S. Chung;Chelsea Wettroth;Carine W. Maurer;Mark Hallett,2018-05-01,3,Movement Disorders Clinical Practice,312-316,10.1002/mdc3.12609,,85050039078,2-s2.0-85050039078,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85050039078,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85050039078&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85050039078&origin=inward +Combined effects of rTMS and botulinum toxin therapy in benign essential blepharospasm,Hallett,Wei Hu;Joseph Legacy;Mark Hallett;Wissam Deeb;Aparna Wagle Shukla,2018-05-01,1,Brain Stimulation,645-647,10.1016/j.brs.2018.02.004,29530449,85043313640,2-s2.0-85043313640,Letter,DMRF,https://api.elsevier.com/content/abstract/scopus_id/85043313640,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85043313640&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85043313640&origin=inward +Pedunculopontine Nucleus Cholinergic Deficiency in Cervical Dystonia,Hallett,Silvina G. Horovitz;Karin Mente;Abhik Ray-Chaudhury;Demelio Urbano;Diego Iacono;Nancy A. Edwards;Edson Amaro;Mark Hallett;Eduardo Joaquim Lopes Alho;Ana Tereza Di Lorenzo Alho,2018-05-01,5,Movement Disorders,827-834,10.1002/mds.27358,29508906,85043277955,2-s2.0-85043277955,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85043277955,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85043277955&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85043277955&origin=inward +Electromyographic and joint kinematic patterns in runner’s dystonia,Hallett,Katharine Alter;Barbara Karp;Christopher Stanley;Omar F. Ahmad;Mark Hallett;Pritha Ghosh;Codrin Lungu,2018-04-20,0,Toxins,,10.3390/toxins10040166,29677101,85047112698,2-s2.0-85047112698,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85047112698,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85047112698&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85047112698&origin=inward +The nature of postural tremor in Parkinson disease,Hallett,Rick C. Helmich;Mark Hallett;Bastiaan R. Bloem;Michiel F. Dirkx;Heidemarie Zach,2018-03-27,20,Neurology,e1095-e1102,10.1212/WNL.0000000000005215,29476038,85050273301,2-s2.0-85050273301,Article,FWF,https://api.elsevier.com/content/abstract/scopus_id/85050273301,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85050273301&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85050273301&origin=inward +The rise of movement disorders,Hallett,Mark Hallett,2018-03-01,2,Neurology India,S10-S11,10.4103/0028-3886.226445,29503322,85043274088,2-s2.0-85043274088,Editorial,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85043274088,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85043274088&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85043274088&origin=inward +Failed Attempt With Paired Associative Stimulation to Separate Functional and Organic Dystonia,Hallett,Elaine Considine;Sahana N. Kukke;Nguyet Dang;Tianxia Wu;Rainer Paine;Sanjay Pandey;Mark Hallett;Vesper Fe Marie Llaneza Ramos;Prachaya Srivanitchapoom;Angela Holmes;Nivethida Thirugnanasambandam,2018-03-01,0,Movement Disorders,495-497,10.1002/mds.27245,29239013,85038037628,2-s2.0-85038037628,Letter,DMRF,https://api.elsevier.com/content/abstract/scopus_id/85038037628,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85038037628&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85038037628&origin=inward +Pallidal deep brain stimulation modulates cortical excitability and plasticity,Hallett,Nicolas Phielipp;Kaviraja Udupa;Suneil K. Kalia;Utpal Saha;Andres M. Lozano;Alfonso Fasano;Darrin J. Lee;Mark Hallett;Elena Moro;Anthony E. Lang;Robert Chen;Mojgan Hodaie;Soumya Ghosh;Sang Jin Kim;Zhen Ni;Carolyn A. Gunraj,2018-02-01,17,Annals of Neurology,352-362,10.1002/ana.25156,29369401,85042321907,2-s2.0-85042321907,Article,CIHR,https://api.elsevier.com/content/abstract/scopus_id/85042321907,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85042321907&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85042321907&origin=inward +Mirror movements or functional tremor masking organic tremor,Hallett,D. Haubenberger;S. H. Merchant;M. Hallett,2018-01-01,1,Clinical Neurophysiology Practice,107-113,10.1016/j.cnp.2018.05.001,,85048178070,2-s2.0-85048178070,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85048178070,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85048178070&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85048178070&origin=inward +Loss of inhibition in sensorimotor networks in focal hand dystonia,Hallett,Silvina G. Horovitz;Cecile Gallea;Ziad Saad;Alicja Lerner;Mark Hallett;Valerie Voon;Shantalaxmi Thada;Priyantha Herath;Jeffrey Solomon;John Ostuni,2018-01-01,13,NeuroImage: Clinical,90-97,10.1016/j.nicl.2017.10.011,29062685,85041596212,2-s2.0-85041596212,Article,FRM,https://api.elsevier.com/content/abstract/scopus_id/85041596212,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85041596212&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85041596212&origin=inward +Consensus Statement on the classification of tremors. from the task force on tremor of the International Parkinson and Movement Disorder Society,Hallett,Maria Stamelou;Rodger J. Elble;Claudia M. Testa;Mark Hallett;Guenther Deuschl;Nin Bajaj;Elan D. Louis;Kailash P. Bhatia;Peter Bain;Jan Raethjen,2018-01-01,212,Movement Disorders,75-87,10.1002/mds.27121,29193359,85033981751,2-s2.0-85033981751,Article,,https://api.elsevier.com/content/abstract/scopus_id/85033981751,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85033981751&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85033981751&origin=inward +Reiner Benecke and the ISMD,Hallett,Alfredo Berardelli;Mark Hallett,2017-12-01,1,Movement Disorders,1677-1678,10.1002/mds.27241,29154401,85034626261,2-s2.0-85034626261,Note,,https://api.elsevier.com/content/abstract/scopus_id/85034626261,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85034626261&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85034626261&origin=inward +The direct basal ganglia pathway is hyperfunctional in focal dystonia,Hallett,Azadeh Hamzehei Sichani;Mark Hallett;Kristina Simonyan;Hyun Cho;Estee Rubien-Thomas,2017-12-01,20,Brain,3179-3190,10.1093/brain/awx263,29087445,85040084182,2-s2.0-85040084182,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85040084182,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85040084182&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85040084182&origin=inward +A common function of basal ganglia-cortical circuits subserving speed in both motor and cognitive domains,Hallett,Takashi Hanakawa;Andrew M. Goldfine;Mark Hallett,2017-11-01,6,eNeuro,,10.1523/ENEURO.0200-17.2017,29379873,85039729198,2-s2.0-85039729198,Article,AMED,https://api.elsevier.com/content/abstract/scopus_id/85039729198,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85039729198&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85039729198&origin=inward +Contribution of transcranial magnetic stimulation to assessment of brain connectivity and networks,Hallett,Yoshikazu Ugawa;Paolo Maria Rossini;Pablo Celnik;Mark Hallett;Riccardo Di Iorio;Jung E. Park;Hideyuki Matsumoto;Robert Chen;Antonio P. Strafella,2017-11-01,38,Clinical Neurophysiology,2125-2139,10.1016/j.clinph.2017.08.007,28938143,85029522964,2-s2.0-85029522964,Review,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85029522964,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85029522964&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85029522964&origin=inward +The third-stimulus temporal discrimination threshold: Focusing on the temporal processing of sensory input within primary somatosensory cortex,Hallett,Daniele Belvisi;Alessandra Formica;Giorgio Leodori;Mark Hallett;Xiaoying Zhu;Antonella Conte;Giorgio Cruccu;Alfredo Berardelli,2017-10-05,10,Journal of Neurophysiology,2311-2317,10.1152/jn.00947.2016,28747470,85030635516,2-s2.0-85030635516,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85030635516,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85030635516&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85030635516&origin=inward +Photophobia in neurologic disorders,Hallett,Yiwen Wu;Mark Hallett,2017-09-20,14,Translational Neurodegeneration,,10.1186/s40035-017-0095-3,,85029767166,2-s2.0-85029767166,Review,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85029767166,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85029767166&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85029767166&origin=inward +Positional Tremor and its Treatment,Hallett,Daniel B. DiCapua;Sule Tinaz;Sara M. Schaefer;Mark Hallett;Barbara P. Karp,2017-09-01,0,Movement Disorders Clinical Practice,768-771,10.1002/mdc3.12498,,85067375152,2-s2.0-85067375152,Article,,https://api.elsevier.com/content/abstract/scopus_id/85067375152,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85067375152&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85067375152&origin=inward +Increased Blinking May Be a Precursor of Blepharospasm: A Longitudinal Study,Hallett,Giovanni Defazio;Mark Hallett;Antonella Conte;Giovanni Fabbrini;Alfredo Berardelli;Gina Ferrazzano,2017-09-01,19,Movement Disorders Clinical Practice,733-736,10.1002/mdc3.12499,,85030627924,2-s2.0-85030627924,Article,,https://api.elsevier.com/content/abstract/scopus_id/85030627924,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85030627924&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85030627924&origin=inward +"Past, present, and future of Parkinson's disease: A special essay on the 200th Anniversary of the Shaking Palsy",Hallett,C. Klein;C. Marras;P. Calabresi;J. C. Rothwell;C. G. Goetz;M. R. DeLong;S. Lehericy;A. H.V. Schapira;V. Bonifati;J. W. Langston;A. E. Lang;D. J. Brooks;E. Bezard;A. J. Stoessl;G. M. Halliday;J. A. Obeso;J. H. Kordower;A. M. Lozano;R. B. Postuma;W. Poewe;D. Berg;D. Weintraub;M. Hallett;C. M. Tanner;S. Fahn;D. J. Surmeier;D. G. Standaert;D. Burn;K. Marek;H. Bergman;E. Tolosa;G. Deuschl;M. Stamelou;S. Przedborski;C. W. Olanow;M. Rodriguez-Violante;G. W. Ross;J. Jankovic,2017-09-01,147,Movement Disorders,1264-1310,10.1002/mds.27115,28887905,85028967067,2-s2.0-85028967067,Review,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85028967067,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85028967067&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85028967067&origin=inward +Sensory Tricks for Cervical Levodopa-induced Dyskinesia in Patients with Parkinson's Disease,Hallett,Sun Ju Chung;Mi Jung Kim;Ho Sung Ryu;Mark Hallett;Hae Won Shin;Juyeon Kim,2017-01-01,1,Movement Disorders Clinical Practice,138-140,10.1002/mdc3.12363,,85048209082,2-s2.0-85048209082,Article,,https://api.elsevier.com/content/abstract/scopus_id/85048209082,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85048209082&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85048209082&origin=inward +Parkinson’s disease as a system-level disorder,Hallett,Ahmed A. Moustafa;Rick C. Helmich;Gianluca Baldassarre;Lars Timmermann;Mark Hallett;Daniele Caligiore;Ivan Toni,2016-12-01,42,npj Parkinson's Disease,,10.1038/npjparkd.2016.25,,85057463441,2-s2.0-85057463441,Review,,https://api.elsevier.com/content/abstract/scopus_id/85057463441,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85057463441&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85057463441&origin=inward +Leg Movements During General Anesthesia,Hallett,Codrin Lungu;Nora Vanegas-Arroyave;Mark Hallett;Kareem A. Zaghloul,2016-09-01,0,Movement Disorders Clinical Practice,510-512,10.1002/mdc3.12310,,85067372471,2-s2.0-85067372471,Article,,https://api.elsevier.com/content/abstract/scopus_id/85067372471,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85067372471&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85067372471&origin=inward +A Case of Functional Belly Dancer's Dyskinesia,Hallett,Mark Hallett;Prachaya Srivanitchapoom;Pattamon Panyakaew;Hyun Joo Cho,2016-05-01,0,Movement Disorders Clinical Practice,306-308,10.1002/mdc3.12276,,85067372127,2-s2.0-85067372127,Article,,https://api.elsevier.com/content/abstract/scopus_id/85067372127,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85067372127&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85067372127&origin=inward +Possible functional moving toes syndrome,Hallett,Mark Hallett;Nora Vanegas-Arroyave;Pattamon Panyakaew;Dronacharya Lamichhane;Lisa Shulman,2016-03-24,0,Tremor and Other Hyperkinetic Movements,,10.7916/D8CZ36XT,,85028052818,2-s2.0-85028052818,Article,,https://api.elsevier.com/content/abstract/scopus_id/85028052818,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85028052818&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85028052818&origin=inward +Role of the right dorsal anterior insula in the urge to tic in tourette syndrome,Hallett,Silvina G. Horovitz;Sule Tinaz;Patrick Malone;Mark Hallett,2015-08-01,45,Movement Disorders,1190-1197,10.1002/mds.26230,25855089,85027925429,2-s2.0-85027925429,Article,,https://api.elsevier.com/content/abstract/scopus_id/85027925429,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85027925429&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85027925429&origin=inward +"Clinical Response to IncobotulinumtoxinA, after Demonstrated Loss of Clinical Response to OnabotulinumtoxinA and RimabotulininumtoxinB in a Patient with Musician's Dystonia",Hallett,Katharine Alter;Barbara I. Karp;Mark Hallett;Vesper Fe Marie Llaneza Ramos;Codrin Lungu,2014-12-01,1,Movement Disorders Clinical Practice,383-385,10.1002/mdc3.12094,,85067371397,2-s2.0-85067371397,Article,,https://api.elsevier.com/content/abstract/scopus_id/85067371397,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85067371397&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85067371397&origin=inward +Neuroimaging of dystonia,Hallett,Silvina G. Horovitz;Mark Hallett,2013-01-01,0,Neuroimaging of Movement Disorders,165-184,10.1007/978-1-62703-471-5_11,,85032813719,2-s2.0-85032813719,Chapter,,https://api.elsevier.com/content/abstract/scopus_id/85032813719,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85032813719&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85032813719&origin=inward +Functional MRI in idiopathic parkinson disease and parkinsonism,Hallett,Mark Hallett;Tao Wu,2013-01-01,0,Neuroimaging of Movement Disorders,143-157,10.1007/978-1-62703-471-5_9,,85032785528,2-s2.0-85032785528,Chapter,,https://api.elsevier.com/content/abstract/scopus_id/85032785528,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85032785528&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85032785528&origin=inward +Neurophysiology of the motor disorder in Parkinson’s disease,Hallett,Gaëtan Garraux;Mark Hallett,2012-01-01,0,"Parkinson's Disease, Second Edition",507-520,10.1201/b12948,,85055839969,2-s2.0-85055839969,Chapter,,https://api.elsevier.com/content/abstract/scopus_id/85055839969,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85055839969&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85055839969&origin=inward +Physiology of primary dystonia,Hallett,Holly A. Shill;Mark Hallett,2006-01-01,0,Handbook of Dystonia,57-64,,,85057489415,2-s2.0-85057489415,Chapter,,https://api.elsevier.com/content/abstract/scopus_id/85057489415,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85057489415&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85057489415&origin=inward +Foreword,Hallett,Mark Hallett,2003-01-01,0,"Handbook of Parkinson's Disease, Third Edition",v-vi,,,85056962572,2-s2.0-85056962572,Editorial,,https://api.elsevier.com/content/abstract/scopus_id/85056962572,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85056962572&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85056962572&origin=inward +Quantifying Differences between Passive and Task-Evoked Intrinsic Functional Connectivity in a Large-Scale Brain Simulation,Horwitz,Antonio Ulloa;Barry Horwitz,2018-12-01,0,Brain Connectivity,637-652,10.1089/brain.2018.0620,30430844,85058882282,2-s2.0-85058882282,Article,NIDCD,https://api.elsevier.com/content/abstract/scopus_id/85058882282,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85058882282&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85058882282&origin=inward +Simulating laminar neuroimaging data for a visual delayed match-to-sample task,Horwitz,Antonio Ulloa;Paul T. Corbitt;Barry Horwitz,2018-06-01,2,NeuroImage,199-222,10.1016/j.neuroimage.2018.02.037,29476912,85042704716,2-s2.0-85042704716,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85042704716,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85042704716&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85042704716&origin=inward +Chronometry on spike-LFP responses reveals the functional neural circuitry of early auditory cortex underlying sound processing and discrimination,Horwitz,Mortimer Mishkin;Barry Horwitz;Yukiko Kikuchi;Josef P. Rauschecker;Arpan Banerjee,2018-05-01,0,eNeuro,,10.1523/ENEURO.0420-17.2018,29971252,85050203375,2-s2.0-85050203375,Article,NIDCD,https://api.elsevier.com/content/abstract/scopus_id/85050203375,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85050203375&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85050203375&origin=inward +Identifying suicidal young adults,Horwitz,Barry Horwitz,2017-12-01,0,Nature Human Behaviour,860-861,10.1038/s41562-017-0239-6,31024174,85042746513,2-s2.0-85042746513,Short Survey,,https://api.elsevier.com/content/abstract/scopus_id/85042746513,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85042746513&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85042746513&origin=inward +Using a large-scale neural model of cortical object processing to investigate the neural substrate for managing multiple items in short-term memory,Horwitz,Antonio Ulloa;Barry Horwitz;Qin Liu,2017-11-01,3,Journal of Cognitive Neuroscience,1860-1876,10.1162/jocn_a_01163,28686137,85030314024,2-s2.0-85030314024,Article,,https://api.elsevier.com/content/abstract/scopus_id/85030314024,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85030314024&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85030314024&origin=inward +Characterizing and predicting cortical evoked responses to direct electrical stimulation of the human brain,Inati,Sridevi Sarma;John H. Wittig;Cynthia R. Steinhardt;Kareem A. Zaghloul;Sara K. Inati;Pierre Sacré;Timothy C. Sheehan,2020-09-01,0,Brain Stimulation,1218-1225,10.1016/j.brs.2020.05.001,32526475,85086361010,2-s2.0-85086361010,Article,DARPA,https://api.elsevier.com/content/abstract/scopus_id/85086361010,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85086361010&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85086361010&origin=inward +Language lateralization from task-based and resting state functional MRI in patients with epilepsy,Inati,Xiaozhen You;Richard C. Reynolds;Javier Gonzalez-Castillo;William H. Theodore;Sara K. Inati;Rachel Rolinski;Gina Norato,2020-08-01,0,Human Brain Mapping,3133-3146,10.1002/hbm.25003,32329951,85083796368,2-s2.0-85083796368,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85083796368,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85083796368&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85083796368&origin=inward +Replay of cortical spiking sequences during human memory retrieval,Inati,Kareem A. Zaghloul;John H. Wittig;Sara K. Inati;Alex P. Vaz,2020-03-06,1,Science,1131-1134,10.1126/science.aaz3691,32139543,85081530905,2-s2.0-85081530905,Article,,https://api.elsevier.com/content/abstract/scopus_id/85081530905,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85081530905&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85081530905&origin=inward +Emerging roles of network analysis for epilepsy,Inati,Sridevi Sarma;Jennifer Stiso;William Stacey;Kareem Zaghloul;Beth A. Lopour;Jorge Gonzalez-Martinez;Sara Inati;Ankit N. Khambhati;Danielle S. Bassett;Kristin Gunnarsdottir;Richard Staba;Rachel J. Smith;Mark Kramer;Virginia B. Liu,2020-01-01,2,Epilepsy Research,,10.1016/j.eplepsyres.2019.106255,31855828,85076365131,2-s2.0-85076365131,Review,NSF,https://api.elsevier.com/content/abstract/scopus_id/85076365131,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85076365131&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85076365131&origin=inward +Changing temporal context in human temporal lobe promotes memory of distinct episodes,Inati,John H. Wittig;Kareem A. Zaghloul;Vishnu Sreekumar;Sara K. Inati;Mostafa M. El-Kalliny;Timothy C. Sheehan,2019-12-01,5,Nature Communications,,10.1038/s41467-018-08189-4,30643130,85060060314,2-s2.0-85060060314,Article,DARPA,https://api.elsevier.com/content/abstract/scopus_id/85060060314,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85060060314&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85060060314&origin=inward +Large-Scale Communication in the Human Brain Is Rhythmically Modulated through Alpha Coherence,Inati,Rafi Haque;Julio I. Chapeton;Kareem A. Zaghloul;John H. Wittig;Sara K. Inati,2019-09-09,5,Current Biology,2801-2811.e5,10.1016/j.cub.2019.07.014,31422882,85071699340,2-s2.0-85071699340,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85071699340,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85071699340&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85071699340&origin=inward +The seizure onset zone drives state-dependent epileptiform activity in susceptible brain regions,Inati,Julio I. Chapeton;Kareem A. Zaghloul;William H. Theodore;Joshua M. Diamond;Sara K. Inati,2019-09-01,0,Clinical Neurophysiology,1628-1641,10.1016/j.clinph.2019.05.032,31325676,85068973354,2-s2.0-85068973354,Article,DDCF,https://api.elsevier.com/content/abstract/scopus_id/85068973354,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85068973354&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85068973354&origin=inward +Investigation of Architectures for Models of Neural Responses to Electrical Brain Stimulation,Inati,Cynthia Steinhardt;Kareem A. Zaghloul;Sridevi V. Sarma;Sara K. Inati;Pierre Sacre,2019-07-01,1,"Proceedings of the Annual International Conference of the IEEE Engineering in Medicine and Biology Society, EMBS",6892-6895,10.1109/EMBC.2019.8857455,31947424,85077898652,2-s2.0-85077898652,Conference Paper,NSF,https://api.elsevier.com/content/abstract/scopus_id/85077898652,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85077898652&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85077898652&origin=inward +Virtual Cortical Stimulation Mapping of Epilepsy Networks to Localize the Epileptogenic Zone,Inati,Kareem Zaghloul;Emily Johnson;Sridevi V. Sarma;Sara Inati;Zachary Fitzgerald;Adam Li;Nathan Crone;Jorge Martinez-Gonzalez;Juan Bulacio;Jennifer Hopp,2019-07-01,0,"Proceedings of the Annual International Conference of the IEEE Engineering in Medicine and Biology Society, EMBS",2328-2331,10.1109/EMBC.2019.8856591,31946366,85077862771,2-s2.0-85077862771,Conference Paper,NIH,https://api.elsevier.com/content/abstract/scopus_id/85077862771,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85077862771&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85077862771&origin=inward +Neuroinflammation in neocortical epilepsy measured by PET imaging of translocator protein,Inati,Alison Austermuehle;Kareem Zaghloul;William H. Theodore;Sara K. Inati;Sami Zoghbi;Leah P. Dickstein;Jeih San Liow;Paolo Zanotti-Fregonara,2019-06-01,5,Epilepsia,1248-1254,10.1111/epi.15967,31144767,85066482214,2-s2.0-85066482214,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85066482214,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85066482214&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85066482214&origin=inward +Functional MRI and direct cortical stimulation: Prediction of postoperative language decline,Inati,Rachel Rolinski;Alison Austermuehle;Kareem A. Zaghloul;William H. Theodore;Shubhi Agrawal;Sara K. Inati;Edythe Wiggs;Leigh N. Sepeta;William D. Gaillard,2019-03-01,4,Epilepsia,560-570,10.1111/epi.14666,30740700,85061441395,2-s2.0-85061441395,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85061441395,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85061441395&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85061441395&origin=inward +fMRI prediction of naming change after adult temporal lobe epilepsy surgery: Activation matters,Inati,Xiaozhen You;Eleanor J. Fanto;Chelsea L. Black;Sierra C Germeyan;Kareem Zaghloul;Sara K. Inati;Eric J. Emery;William H. Theodore;Madison M. Berl;Edythe Wiggs;Ashley N. Zachery;Leigh N. Sepeta;William D. Gaillard;Gina Norato,2019-03-01,5,Epilepsia,527-538,10.1111/epi.14656,30740666,85061500598,2-s2.0-85061500598,Article,AAN,https://api.elsevier.com/content/abstract/scopus_id/85061500598,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85061500598&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85061500598&origin=inward +Clinical advances in photosensitive epilepsy,Inati,Sara Inati;Varun Padmanaban;Kareem Zaghloul;Alexander Ksendzovsky,2019-01-15,2,Brain Research,18-25,10.1016/j.brainres.2018.07.025,30076791,85051361603,2-s2.0-85051361603,Review,,https://api.elsevier.com/content/abstract/scopus_id/85051361603,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85051361603&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85051361603&origin=inward +Coupled ripple oscillations between the medial temporal lobe and neocortex retrieve human memory,Inati,Kareem A. Zaghloul;Nicolas Brunel;Sara K. Inati;Alex P. Vaz,2019-01-01,24,Science,975-978,10.1126/science.aau8956,30819961,85062423715,2-s2.0-85062423715,Article,NIGMS,https://api.elsevier.com/content/abstract/scopus_id/85062423715,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85062423715&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85062423715&origin=inward +"Erratum to: Attention improves memory by suppressing spiking-neuron activity in the human anterior temporal lobe (Nature Neuroscience, (2018), 21, 6, (808-810), 10.1038/s41593-018-0148-7)",Inati,Kareem A. Zaghloul;John H. Wittig;John B. Cocjin;Sara K. Inati;Anthony I. Jang,2019-01-01,0,Nature Neuroscience,143,10.1038/s41593-018-0224-z,30127431,85058759646,2-s2.0-85058759646,Erratum,,https://api.elsevier.com/content/abstract/scopus_id/85058759646,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85058759646&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85058759646&origin=inward +Attention improves memory by suppressing spiking-neuron activity in the human anterior temporal lobe,Inati,Kareem A. Zaghloul;John H. Wittig;John B. Cocjin;Sara K. Inati;Anthony I. Jang,2018-05-21,5,Nature Neuroscience,,10.1038/s41593-018-0148-7,29786083,85047223789,2-s2.0-85047223789,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85047223789,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85047223789&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85047223789&origin=inward +Prospective longitudinal overnight video-EEG evaluation in Phelan–McDermid Syndrome,Inati,Audrey Thurm;Riley Kessler;Ninette Cohen;Ashura Buckley;Jill Leon;Thomas Gaughan;Sara Inati;Andrea Gropman;Owen Rennert;Precilla D'Souza;Xiangping Zhou;Omar I. Khan,2018-03-01,1,Epilepsy and Behavior,312-320,10.1016/j.yebeh.2017.11.034,29402632,85041351391,2-s2.0-85041351391,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85041351391,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85041351391&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85041351391&origin=inward +Signal complexity of human intracranial EEG tracks successful associative-memory formation across individuals,Inati,Vishnu Sreekumar;Timothy C. Sheehan;Sara K. Inati;Kareem A. Zaghloul,2018-02-14,11,Journal of Neuroscience,1744-1755,10.1523/JNEUROSCI.2389-17.2017,29330327,85042094464,2-s2.0-85042094464,Article,DARPA,https://api.elsevier.com/content/abstract/scopus_id/85042094464,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85042094464&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85042094464&origin=inward +Surface based electrode localization and standardized regions of interest for intracranial EEG,Inati,John H. Wittig;Michael S. Trotta;Ziad S. Saad;Kareem A. Zaghloul;Sara K. Inati;Srikanth Damera;Emily Whitehead;John Cocjin,2018-02-01,7,Human Brain Mapping,709-721,10.1002/hbm.23876,29094783,85032799873,2-s2.0-85032799873,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85032799873,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85032799873&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85032799873&origin=inward +Postoperative EEG association with seizure recurrence: Analysis of the NIH epilepsy surgery database,Inati,Sarah Hodges;William H. Theodore;Daniel M. Goldenholz;Sara Inati;Susumu Sato,2018-01-01,0,Epilepsia Open,109-112,10.1002/epi4.12097,,85063922587,2-s2.0-85063922587,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85063922587,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85063922587&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85063922587&origin=inward +Transient postictal blindness after a focal posterior cingulate gyrus seizure,Inati,Abdul Badran;Myriam Abdennadher;Alexander Ksendzovsky;Kareem A. Zaghloul;Abhik Ray-Chaudhury;Sara K. Inati;Luca Bartolini,2018-01-01,1,Seizure,58-60,10.1016/j.seizure.2017.12.002,29275288,85038829078,2-s2.0-85038829078,Article,,https://api.elsevier.com/content/abstract/scopus_id/85038829078,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85038829078&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85038829078&origin=inward +Using network analysis to localize the epileptogenic zone from invasive EEG recordings in intractable focal epilepsy,Inati,Zach Fitzgerald;Bhaskar Chennuri;William S. Anderson;Sridevi V. Sarma;Jorge Gonzalez-Martinez;Nathan Crone;Sandya Subramanian;Chalita Atallah;Robert Yaffe;Emily Johnson;Sara K. Inati;Steve Gliske;Kareem A. Zaghloul;Shubhi Agrawal;Adam Li;John T. Gale;Juan Bulacio;Jennifer J. Haagensen;William Stacey;Robert Norton;Austin Jordan;Jennifer Hopp,2018-01-01,5,Network Neuroscience,218-240,10.1162/netn_a_00043,,85064207519,2-s2.0-85064207519,Article,PERF,https://api.elsevier.com/content/abstract/scopus_id/85064207519,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85064207519&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85064207519&origin=inward +Linear time-varying model characterizes invasive EEG signals generated from complex epileptic networks,Inati,John Gale;Kareem Zaghloul;Sridevi V. Sarma;Sara Inati;Adam Li;Jorge Martinez-Gonzalez;Kristin M. Gunnarsdottir;Juan Bulacio,2017-09-13,3,"Proceedings of the Annual International Conference of the IEEE Engineering in Medicine and Biology Society, EMBS",2802-2805,10.1109/EMBC.2017.8037439,29060480,85032182378,2-s2.0-85032182378,Conference Paper,NIH,https://api.elsevier.com/content/abstract/scopus_id/85032182378,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85032182378&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85032182378&origin=inward +Fragility in epileptic networks: The epileptogenic zone,Inati,Sara Inati;Adam Li;Kareem Zaghloul;Sridevi Sarma,2017-06-29,2,Proceedings of the American Control Conference,2817-2822,10.23919/ACC.2017.7963378,,85027070817,2-s2.0-85027070817,Conference Paper,NIH,https://api.elsevier.com/content/abstract/scopus_id/85027070817,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85027070817&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85027070817&origin=inward +Stable functional networks exhibit consistent timing in the human brain,Inati,Julio I. Chapeton;Sara K. Inati;Kareem A. Zaghloul,2017-03-01,8,Brain,628-640,10.1093/brain/aww337,28364547,85028514794,2-s2.0-85028514794,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85028514794,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85028514794&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85028514794&origin=inward +Creation and validation of a bladder dysfunction symptom score for HTLV-1-associated myelopathy/tropical spastic paraparesis,Jacobson,Daisuke Hasegawa;Junji Yamauchi;Ariella Coler-Reilly;Fabiola Martin;Naoko Yagishita;Eisuke Inoue;Jorge Casseb;Ayako Takata;Steven Jacobson;Natsumi Araya;Graham P. Taylor;Yoshihisa Yamano;Abelardo Araujo;Shuntaro Tsutsumi;Misako Nagasaka;Eduardo Gotuzzo;Tomoo Sato;Natsuko Yamakawa;Takahiko Ueno;Marzia Puccioni-Sohler;Tomohiro Matsuo,2020-07-03,0,Orphanet Journal of Rare Diseases,,10.1186/s13023-020-01451-3,32620176,85087472700,2-s2.0-85087472700,Article,,https://api.elsevier.com/content/abstract/scopus_id/85087472700,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85087472700&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85087472700&origin=inward +Human Herpesvirus 6 Detection in Alzheimer's Disease Cases and Controls across Multiple Cohorts,Jacobson,Juan C. Troncoso;Olga Pletnikova;Philip L. De Jager;Steven Jacobson;Marilyn S. Albert;Sarah M. Connor;Sonja W. Scholz;Kory Johnson;Susan M. Resnick;David A. Bennett;Mary Alice Allnutt,2020-03-18,4,Neuron,1027-1035.e2,10.1016/j.neuron.2019.12.031,31983538,85081374658,2-s2.0-85081374658,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85081374658,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85081374658&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85081374658&origin=inward +The spectrum of spinal cord lesions in a primate model of multiple sclerosis,Jacobson,Daniel S. Reich;Jennifer A. Lefeuvre;Joseph R. Guy;Mathieu D. Santin;Pascal Sati;Afonso C. Silva;Steven Jacobson;Emily Leibovitch;Stéphane Lehéricy;Seung Kwon Ha;Nicholas J. Luciano,2020-03-01,1,Multiple Sclerosis Journal,284-293,10.1177/1352458518822408,30730246,85061608524,2-s2.0-85061608524,Article,,https://api.elsevier.com/content/abstract/scopus_id/85061608524,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85061608524&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85061608524&origin=inward +Human T-lymphotropic virus type 1 (HTLV-1) and cellular immune response in HTLV-1-associated myelopathy/tropical spastic paraparesis,Jacobson,Ryuji Kubota;Satoshi Nozuma;Steven Jacobson,2020-01-01,0,Journal of NeuroVirology,,10.1007/s13365-020-00881-w,,85088396233,2-s2.0-85088396233,Review,NIH,https://api.elsevier.com/content/abstract/scopus_id/85088396233,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85088396233&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85088396233&origin=inward +Comprehensive Analysis of TCR-β Repertoire in Patients with Neurological Immune-mediated Disorders,Jacobson,Kory R. Johnson;Alessandra de Paula Alves Sousa;Steven Jacobson;Jun Zhu;Joan Ohayon;Paolo A. Muraro,2019-12-01,7,Scientific Reports,,10.1038/s41598-018-36274-7,30674904,85060386177,2-s2.0-85060386177,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85060386177,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85060386177&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85060386177&origin=inward +Atomic structure of the human herpesvirus 6B capsid and capsid-associated tegument complexes,Jacobson,Wei Liu;Zihang Li;Z. Hong Zhou;Ye Mei;Ana L. Alvarez-Cabrera;Vinay Kumar;Yanxiang Cui;Steve Jacobson;Yibo Zhang;Guo Qiang Bi;Emily C. Leibovitch,2019-12-01,2,Nature Communications,,10.1038/s41467-019-13064-x,31767868,85075545295,2-s2.0-85075545295,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85075545295,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85075545295&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85075545295&origin=inward +Immunovirological markers in HTLV-1-associated myelopathy/tropical spastic paraparesis (HAM/TSP),Jacobson,Steven Jacobson;Yoshimi Enose-Akahata,2019-11-29,0,Retrovirology,,10.1186/s12977-019-0499-5,31783764,85075800835,2-s2.0-85075800835,Review,,https://api.elsevier.com/content/abstract/scopus_id/85075800835,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85075800835&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85075800835&origin=inward +An evaluation of HHV-6 as an etiologic agent in Hodgkin lymphoma and brain cancer using IARC criteria for oncogenicity,Jacobson,Michael J. Wells;Steven Jacobson;Paul H. Levine,2019-11-05,0,Infectious Agents and Cancer,,10.1186/s13027-019-0248-3,,85074731822,2-s2.0-85074731822,Review,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85074731822,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85074731822&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85074731822&origin=inward +Potential role of iron in repair of inflammatory demyelinating lesions,Jacobson,Daniel S. Reich;Cecil C. Yen;Pascal Sati;Afonso C. Silva;Nathanael J. Lee;Steven Jacobson;Govind Nair;Seung Kwon Ha;Tracey A. Rouault;Nicholas J. Luciano;Emily C. Leibovitch;Martina Absinta,2019-10-01,4,Journal of Clinical Investigation,4365-4376,10.1172/JCI126809,31498148,85072791172,2-s2.0-85072791172,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85072791172,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85072791172&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85072791172&origin=inward +Essential role of human T cell leukemia virus type 1 orf-I in lethal proliferation of CD4+ cells in humanized mice,Jacobson,Christopher C. Nixon;Laura Romero;Veronica Galli;Anne Van Den Broeke;Maria Omsland;Genoveffa Franchini;Robyn Washington-Parks;Cynthia Pise-Masison;Katherine McKinnon;Jerome A. Zack;Dai Fujikawa;Maria F. De Castro-Amarante;Natasa Strbo;Maria Artesi;Steve Jacobson;Breanna Caruso;Sophia Brown;Monica Vaccari;Baktiar Karim;Keith Durkin,2019-10-01,2,Journal of Virology,,10.1128/JVI.00565-19,31315992,85072153680,2-s2.0-85072153680,Article,OAR,https://api.elsevier.com/content/abstract/scopus_id/85072153680,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85072153680&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85072153680&origin=inward +Infection with HHV-6 and its role in epilepsy,Jacobson,Luca Bartolini;Steven Jacobson;William H. Theodore;William D. Gaillard,2019-07-01,1,Epilepsy Research,34-39,10.1016/j.eplepsyres.2019.03.016,30953871,85063693844,2-s2.0-85063693844,Review,EF,https://api.elsevier.com/content/abstract/scopus_id/85063693844,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85063693844&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85063693844&origin=inward +The “central vein sign” in inflammatory demyelination: The role of fibrillar collagen type I,Jacobson,Daniel S. Reich;Maria Chiara G. Monaco;Pascal Sati;Steven Jacobson;Nathanael J. Lee;Dragan Maric;Govind Nair;Seung Kwon Ha;Nicholas J. Luciano;Martina Absinta,2019-06-01,2,Annals of Neurology,934-942,10.1002/ana.25461,30847935,85063605374,2-s2.0-85063605374,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85063605374,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85063605374&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85063605374&origin=inward +Extracellular vesicles and ebola virus: A new mechanism of immune evasion,Jacobson,Michelle L. Pleet;Spencer W. Stonier;Steven Jacobson;Fatah Kashanchi;John M. Dye;M. Javad Aman;Catherine DeMarino,2019-05-01,5,Viruses,,10.3390/v11050410,31052499,85065661998,2-s2.0-85065661998,Review,NIH,https://api.elsevier.com/content/abstract/scopus_id/85065661998,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85065661998&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85065661998&origin=inward +Prevalence of salivary human herpesviruses in pediatric multiple sclerosis cases and controls,Jacobson,Emmanuelle Waubant;Jennifer Graves;Cheng Te Major Lin;Steven Jacobson;Bridgette J. Billioux;Emily C. Leibovitch,2019-04-01,4,Multiple Sclerosis Journal,644-652,10.1177/1352458518765654,,85044758815,2-s2.0-85044758815,Article,,https://api.elsevier.com/content/abstract/scopus_id/85044758815,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85044758815&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85044758815&origin=inward +Viral Triggers and Inflammatory Mechanisms in Pediatric Epilepsy,Jacobson,Jane E. Libbey;Steven Jacobson;Teresa Ravizza;Robert S. Fujinami;Luca Bartolini;William D. Gaillard,2019-03-01,8,Molecular Neurobiology,1897-1907,10.1007/s12035-018-1215-5,29978423,85049601515,2-s2.0-85049601515,Review,EF,https://api.elsevier.com/content/abstract/scopus_id/85049601515,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85049601515&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85049601515&origin=inward +Do herpesviruses play a role in Alzheimer's disease pathogenesis?,Jacobson,Steven Jacobson;Mary Alice Allnutt,2019-01-01,0,Drug Discovery Today: Disease Models,,10.1016/j.ddmod.2019.10.006,,85076832235,2-s2.0-85076832235,Review,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85076832235,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85076832235&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85076832235&origin=inward +Neuroimmunology of human T-lymphotropic virus type 1-associated myelopathy/tropical spastic paraparesis,Jacobson,Steven Jacobson;Satoshi Nozuma,2019-01-01,4,Frontiers in Microbiology,,10.3389/fmicb.2019.00885,,85068121438,2-s2.0-85068121438,Article,JSPS,https://api.elsevier.com/content/abstract/scopus_id/85068121438,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85068121438&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85068121438&origin=inward +HTLV-1 HBZ protein resides exclusively in the cytoplasm of infected cells in asymptomatic carriers and HAM/TSP patients,Jacobson,Greta Forlani;Marco Baratella;Alessandra Tedeschi;Steve Jacobson;Roberto S. Accolla;Claudine Pique,2019-01-01,7,Frontiers in Microbiology,,10.3389/fmicb.2019.00819,,85068151832,2-s2.0-85068151832,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85068151832,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85068151832&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85068151832&origin=inward +Reply to Zahednasab et al.: HHV-6 and marmoset EAE,Jacobson,Steven Jacobson;Emily C. Leibovitch,2018-12-26,0,Proceedings of the National Academy of Sciences of the United States of America,E12127,10.1073/pnas.1818755115,30538192,85059082719,2-s2.0-85059082719,Letter,,https://api.elsevier.com/content/abstract/scopus_id/85059082719,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85059082719&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85059082719&origin=inward +Herpesvirus trigger accelerates neuroinflammation in a nonhuman primate model of multiple sclerosis,Jacobson,Daniel S. Reich;Joseph R. Guy;Pascal Sati;Afonso C. Silva;Nathanael J. Lee;Cecil Yen;Steven Jacobson;Breanna Caruso;Seung Kwon Ha;Matthew K. Schindler;Bridgette J. Billioux;Nicholas J. Luciano;Emily C. Leibovitch,2018-10-30,15,Proceedings of the National Academy of Sciences of the United States of America,11292-11297,10.1073/pnas.1811974115,30322946,85055672366,2-s2.0-85055672366,Article,,https://api.elsevier.com/content/abstract/scopus_id/85055672366,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85055672366&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85055672366&origin=inward +Detection of HHV-6 and EBV and cytokine levels in saliva from children with seizures: Results of a multi-center cross-sectional study,Jacobson,Jennifer S. Graves;Steven Jacobson;Cheng Te Major Lin;Adrian Bumbut;Sean Gillen;Emmanuelle L. Waubant;Eleonora Piras;Kathryn Sullivan;Luca Bartolini;James M. Chamberlain;Emily C. Leibovitch;William D. Gaillard,2018-10-05,5,Frontiers in Neurology,,10.3389/fneur.2018.00834,,85055129524,2-s2.0-85055129524,Article,PERF,https://api.elsevier.com/content/abstract/scopus_id/85055129524,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85055129524&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85055129524&origin=inward +Role of Exosomes in Human Retroviral Mediated Disorders,Jacobson,Fatah Kashanchi;Steven Jacobson;Monique Anderson,2018-09-01,7,Journal of Neuroimmune Pharmacology,279-291,10.1007/s11481-018-9784-7,29656370,85045231836,2-s2.0-85045231836,Review,,https://api.elsevier.com/content/abstract/scopus_id/85045231836,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85045231836&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85045231836&origin=inward +Spatiotemporal distribution of fibrinogen in marmoset and human inflammatory demyelination,Jacobson,Katerina Akassoglou;Daniel S. Reich;Jennifer A. Lefeuvre;Pascal Sati;Afonso C. Silva;Nathanael J. Lee;Steven Jacobson;Jae Kyu Ryu;Mark A. Petersen;Seung Kwon Ha;Matthew K. Schindler;Nicholas J. Luciano;Emily C. Leibovitch;Martina Absinta,2018-06-01,16,Brain,1637-1649,10.1093/brain/awy082,29688408,85048041784,2-s2.0-85048041784,Article,CNHF,https://api.elsevier.com/content/abstract/scopus_id/85048041784,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85048041784&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85048041784&origin=inward +Role of wild-type and recombinant human T-cell leukemia viruses in lymphoproliferative disease in humanized NSG mice,Jacobson,Priya Kannian;Lee Ratner;Stefan Niewiesk;Steven Jacobson;Patrick L. Green;Brad Bolon;Devra D. Huey;Krista M.D. La Perle,2018-02-01,2,Comparative Medicine,4-14,,29460716,85054316992,2-s2.0-85054316992,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85054316992,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85054316992&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85054316992&origin=inward +Viruses in chronic progressive neurologic disease,Jacobson,Steven Jacobson;Emily C. Leibovitch,2018-01-01,11,Multiple Sclerosis,48-52,10.1177/1352458517737392,,85040353075,2-s2.0-85040353075,Article,,https://api.elsevier.com/content/abstract/scopus_id/85040353075,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85040353075&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85040353075&origin=inward +Using droplet digital PCR to detect coinfection of human herpesviruses 6a and 6b (HHV-6a and HHV-6b) in clinical samples,Jacobson,Ashley Vellucci;Steven Jacobson;Emily C. Leibovitch,2018-01-01,3,Methods in Molecular Biology,99-109,10.1007/978-1-4939-7778-9_6,29717439,85046374719,2-s2.0-85046374719,Chapter,,https://api.elsevier.com/content/abstract/scopus_id/85046374719,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85046374719&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85046374719&origin=inward +Role of HTLV-1 Tax and HBZ in the pathogenesis of HAM/TSP,Jacobson,Ashley Vellucci;Steven Jacobson;Yoshimi Enose-Akahata,2017-12-21,17,Frontiers in Microbiology,,10.3389/fmicb.2017.02563,,85038923163,2-s2.0-85038923163,Review,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85038923163,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85038923163&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85038923163&origin=inward +Transverse relaxation of cerebrospinal fluid depends on glucose concentration,Jacobson,S. Jacobson;S. Dodd;A. Koretsky;S. Walbridge;D. S. Reich;N. Bouraoud;G. Nair;A. Daoust,2017-12-01,5,Magnetic Resonance Imaging,72-81,10.1016/j.mri.2017.08.001,28782676,85028456171,2-s2.0-85028456171,Article,,https://api.elsevier.com/content/abstract/scopus_id/85028456171,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85028456171&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85028456171&origin=inward +Multiple sclerosis,Jacobson,Steven Jacobson;Irene Falk,2016-01-01,0,Neuroimmune Pharmacology,355-364,10.1007/978-3-319-44022-4_23,,85045989121,2-s2.0-85045989121,Chapter,,https://api.elsevier.com/content/abstract/scopus_id/85045989121,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85045989121&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85045989121&origin=inward +Neuroimmunomodulation of human T-lymphotrophic virus type I/II infection,Jacobson,Akinari Yamano;Steven Jacobson;Yoshihisa Yamano,2016-01-01,0,Neuroimmune Pharmacology,421-436,10.1007/978-3-319-44022-4_28,,85045982316,2-s2.0-85045982316,Chapter,,https://api.elsevier.com/content/abstract/scopus_id/85045982316,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85045982316&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85045982316&origin=inward +Human T-Cell Lymphotropic Viruses (HTLVs),Jacobson,S. Jacobson;R. Massoud,2014-01-01,0,Encyclopedia of the Neurological Sciences,625-627,10.1016/B978-0-12-385157-4.00380-8,,85043277142,2-s2.0-85043277142,Chapter,,https://api.elsevier.com/content/abstract/scopus_id/85043277142,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85043277142&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85043277142&origin=inward +Human T-cell lymphotropic virus type 1 infection,Jacobson,Steven Jacobson;Raya Massoud,2013-01-01,0,Viral Infections of the Human Nervous System,183-207,10.1007/978-3-0348-0425-7_8,,85029569524,2-s2.0-85029569524,Chapter,,https://api.elsevier.com/content/abstract/scopus_id/85029569524,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85029569524&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85029569524&origin=inward +Erratum: Translocator protein PET imaging for glial activation in multiple sclerosis (Journal of Neuroimmune Pharmacology DOI: 10.1007/s11481-010-9243-6),Jacobson,Steven Jacobson;Eiji Matsuura;Erin Harberts;Yota Fujimura;Unsong Oh;Joan Ohayon;Victor W. Pike;Yi Zhang;Robert B. Innis;Vasiliki N. Ikonomidou;Iordanis E. Evangelou;Sami S. Zoghbi;Nancy D. Richert;Masahiro Fujita,2011-01-01,0,Journal of Neuroimmune Pharmacology,434,10.1007/s11481-011-9273-8,,85028096478,2-s2.0-85028096478,Erratum,,https://api.elsevier.com/content/abstract/scopus_id/85028096478,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85028096478&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85028096478&origin=inward +Role of human herpesvirus type 6 in neurological disease,Jacobson,Steven Jacobson;Michael Mayne,2003-01-01,0,Clinical Neurovirology,207-222,,,85057939763,2-s2.0-85057939763,Chapter,,https://api.elsevier.com/content/abstract/scopus_id/85057939763,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85057939763&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85057939763&origin=inward +The unfolded protein response is activated in the olfactory system in Alzheimer's disease,Koretsky,Birger Victor Dieriks;Molly E.V. Swanson;Leonardo Belluscio;Alan Koretsky;Maurice A. Curtis;Praju Vikas Anekal;Clinton Turner;Helen C. Murray;Richard L.M. Faull,2020-07-14,0,Acta Neuropathologica Communications,,10.1186/s40478-020-00986-7,32665027,85088017287,2-s2.0-85088017287,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85088017287,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85088017287&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85088017287&origin=inward +High-resolution MEMRI characterizes laminar specific ascending and descending spinal cord pathways in rats,Koretsky,Galit Pelled;Alan Koretsky;Jiadi Xu;Stasia A. Anderson;Albert German Mendoza;Vijai Krishnan,2020-07-01,0,Journal of Neuroscience Methods,,10.1016/j.jneumeth.2020.108748,32335077,85084132952,2-s2.0-85084132952,Article,NHLBI,https://api.elsevier.com/content/abstract/scopus_id/85084132952,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85084132952&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85084132952&origin=inward +Interactions between stimuli-evoked cortical activity and spontaneous low frequency oscillations measured with neuronal calcium,Koretsky,Alan P. Koretsky;Yingtian Pan;Kicheon Park;Wei Chen;Congwu Du,2020-04-15,1,NeuroImage,,10.1016/j.neuroimage.2020.116554,31972283,85078666319,2-s2.0-85078666319,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85078666319,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85078666319&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85078666319&origin=inward +Multifield and inverse-contrast switching of magnetocaloric high contrast ratio MRI labels,Koretsky,Alan P. Koretsky;Stephen J. Dodd;Barbara Marcheschi;H. Douglas Morris;Mladen Barbic;Hatem ElBidweihy;Neil R. Dilley;Alan L. Huston,2020-01-01,0,Magnetic Resonance in Medicine,,10.1002/mrm.28400,,85087644446,2-s2.0-85087644446,Article,,https://api.elsevier.com/content/abstract/scopus_id/85087644446,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85087644446&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85087644446&origin=inward +Magnetocaloric materials as switchable high contrast ratio MRI labels,Koretsky,Alan P. Koretsky;Stephen J. Dodd;Barbara Marcheschi;H. Douglas Morris;Mladen Barbic;Tim D. Harris;Alan Huston;Neil Dilley,2019-04-01,1,Magnetic Resonance in Medicine,2238-2246,10.1002/mrm.27615,30474159,85057214635,2-s2.0-85057214635,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85057214635,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85057214635&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85057214635&origin=inward +Manganese enhanced MRI for use in studying neurodegenerative diseases,Koretsky,Alan P. Koretsky;Galit Saar,2019-01-07,5,Frontiers in Neural Circuits,,10.3389/fncir.2018.00114,30666190,85060244899,2-s2.0-85060244899,Review,NIH,https://api.elsevier.com/content/abstract/scopus_id/85060244899,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85060244899&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85060244899&origin=inward +Interhemispheric plasticity is mediated by maximal potentiation of callosal inputs,Koretsky,Alan P. Koretsky;Zhiwei Ma;John T.R. Isaac;Galit Saar;Steve Dodd;Emily Petrus,2019-01-01,1,Proceedings of the National Academy of Sciences of the United States of America,6391-6396,10.1073/pnas.1810132116,30846552,85063963911,2-s2.0-85063963911,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85063963911,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85063963911&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85063963911&origin=inward +Opportunities in interventional and diagnostic imaging by using high-performance low-field-strength MRI,Koretsky,Alan P. Koretsky;Burcu Basar;Hui Xue;Joel Moss;Adrienne E. Campbell-Washburn;Rainer Schneider;Ashkan A. Malayeri;Peter Kellman;Robert S. Balaban;Himanshu Bhat;Robert J. Lederman;Matthew C. Restivo;Elizabeth C. Jones;Michael S. Hansen;Waqas Majeed;David Grodzki;Ipshita Bhattacharya;W. Patricia Bandettini;Marcus Y. Chen;Toby Rogers;Daniel A. Herzka;Rajiv Ramasawmy;Delaney R. McGuirt;Christine Mancini,2019-01-01,15,Radiology,384-393,10.1148/radiol.2019190452,31573398,85073581726,2-s2.0-85073581726,Article,NHLBI,https://api.elsevier.com/content/abstract/scopus_id/85073581726,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85073581726&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85073581726&origin=inward +Neural precursor cells form integrated brain-like tissue when implanted into rat cerebrospinal fluid,Koretsky,Nadia Bouraoud;Alan Koretsky;Kathryn Sharer;Dragan Maric;Alec Calac;James Pickel;Nikorn Pothayee;Stephen Dodd;Jung Hwa Tao-Cheng,2018-12-01,0,Communications Biology,,10.1038/s42003-018-0113-8,30271994,85071196174,2-s2.0-85071196174,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85071196174,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85071196174&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85071196174&origin=inward +Wireless implantable coil with parametric amplification for in vivo electron paramagnetic resonance oximetric applications,Koretsky,Alan P. Koretsky;Murali C. Krishna;Ayano Enomoto;Chunqi Qian;Shun Kishimoto;Rolf E. Swenson;Nallathamby Devasahayam;James B. Mitchell;Burchelle Blackman;Nobu Oshima,2018-11-01,1,Magnetic Resonance in Medicine,2288-2298,10.1002/mrm.27185,29603378,85052056461,2-s2.0-85052056461,Article,,https://api.elsevier.com/content/abstract/scopus_id/85052056461,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85052056461&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85052056461&origin=inward +"Anatomy, Functionality, and Neuronal Connectivity with Manganese Radiotracers for Positron Emission Tomography",Koretsky,Alan P. Koretsky;Peter Herscovitch;Corina M. Millo;Lawrence P. Szajek;Galit Saar;Jeff Bacon,2018-08-01,11,Molecular Imaging and Biology,562-574,10.1007/s11307-018-1162-6,29396750,85045153446,2-s2.0-85045153446,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85045153446,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85045153446&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85045153446&origin=inward +Synchronized Astrocytic Ca2+ Responses in Neurovascular Coupling during Somatosensory Stimulation and for the Resting State,Koretsky,Alan P. Koretsky;Yingtian Pan;Xiaochun Gu;Wei Chen;Congwu Du;Nora D. Volkow,2018-06-26,14,Cell Reports,3878-3890,10.1016/j.celrep.2018.05.091,29949771,85048871060,2-s2.0-85048871060,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85048871060,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85048871060&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85048871060&origin=inward +Long-term optical imaging of neurovascular coupling in mouse cortex using GCaMP6f and intrinsic hemodynamic signals,Koretsky,Alan P. Koretsky;Yingtian Pan;N. D. Volkow;Xiaochun Gu;Wei Chen;Congwu Du;Jiang You,2018-01-15,7,NeuroImage,251-264,10.1016/j.neuroimage.2017.09.055,28974452,85032453777,2-s2.0-85032453777,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85032453777,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85032453777&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85032453777&origin=inward +Routine use of FLAIR-negative MRI in the treatment of unknown onset stroke,Latour,Malik M. Adil;Amie W. Hsia;Richard Leigh;Lawrence L. Latour;John K. Lynch;Chandni P. Kalaria;Marie Luby;Zurab Nadareishvili,2020-09-01,0,Journal of Stroke and Cerebrovascular Diseases,,10.1016/j.jstrokecerebrovasdis.2020.105093,,85087369278,2-s2.0-85087369278,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85087369278,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85087369278&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85087369278&origin=inward +Inflammatory Cytokines Associate With Neuroimaging After Acute Mild Traumatic Brain Injury,Latour,Jordan Peyer;Candace Moore;Lawrence Latour;Christina Devoto;Jessica M. Gill;Tara Davis;L. Christine Turtzo;Vivian A. Guedes;Cassandra L. Pattinson;Katie A. Edwards,2020-05-19,0,Frontiers in Neurology,,10.3389/fneur.2020.00348,,85085891795,2-s2.0-85085891795,Article,NINR,https://api.elsevier.com/content/abstract/scopus_id/85085891795,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85085891795&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85085891795&origin=inward +Traumatic microbleeds persist for up to five years following traumatic brain injury despite resolution of other acute findings on MRI,Latour,Lawrence Latour;Leighton Chan;Andre J. Van Der Merwe;Theresa Rizk;Mark D. Whiting;L. Christine Turtzo;Martin Cota,2020-05-11,0,Brain Injury,773-781,10.1080/02699052.2020.1725835,32228304,85082663603,2-s2.0-85082663603,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85082663603,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85082663603&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85082663603&origin=inward +Subarachnoid Hemorrhage and Cerebral Perfusion Are Associated with Brain Volume Decrease in a Cohort of Predominantly Mild Traumatic Brain Injury Patients,Latour,Lisa A. Van Der Kleij;Lawrence L. Latour;Jeroen Hendrikse;Matthew C. Restivo;L. Christine Turtzo;Jill B. De Vis,2020-02-15,0,Journal of Neurotrauma,600-607,10.1089/neu.2019.6514,31642407,85079097417,2-s2.0-85079097417,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85079097417,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85079097417&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85079097417&origin=inward +-----Comparison of T1-Post and FLAIR-Post MRI for identification of traumatic meningeal enhancement in traumatic brain injury patients,Latour,Lawrence L. Latour;L. Christine Turtzo;Tara S. Davis;Ana S. Tinoco Martinez;Jill B. De Vis;Jennifer E. Nathan,2020-01-01,0,PloS one,e0234881,10.1371/journal.pone.0234881,32614835,85087529072,2-s2.0-85087529072,Article,,https://api.elsevier.com/content/abstract/scopus_id/85087529072,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85087529072&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85087529072&origin=inward +Nonhomogeneous gadolinium retention in the cerebral cortex after intravenous administration of gadolinium-based contrast agent in rats and humans,Latour,Katharine J. Babcock;Jorge A. Soto;Laney E. Evers;Lawrence L. Latour;Bertrand R. Huber;Ali Guermazi;Stephan W. Anderson;Juliet A. Moncaster;Hernan Jara;Olga Minaeva;Chad W. Farris;Patrick T. Kiernan;Xiuping Liu;Sarah E. Chancellor;Ning Hua;Nicola Lupoli;Lee E. Goldstein;Asim Z. Mian;Ann C. McKee;Allison D. Griffin;Erich S. Franz;Victor E. Alvarez;Audrey M. Hildebrandt,2020-01-01,2,Radiology,377-385,10.1148/radiol.2019190461,31769744,85078517782,2-s2.0-85078517782,Article,BU,https://api.elsevier.com/content/abstract/scopus_id/85078517782,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85078517782&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85078517782&origin=inward +Circle of Willis anomalies in Turner syndrome: Absent A1 segment of the anterior cerebral artery,Latour,Maria T. Acosta;Lawrence Latour;Yonit A. Addissie;Nicole Banks;David C. Page;Ashley Buscetta;Paul Kruszka;Camilo Toro;Maximilian Muenke;Gilbert Vezina;Marie Luby,2019-11-15,0,Birth Defects Research,1584-1588,10.1002/bdr2.1609,31626395,85074102584,2-s2.0-85074102584,Article,,https://api.elsevier.com/content/abstract/scopus_id/85074102584,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85074102584&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85074102584&origin=inward +Traumatic microbleeds suggest vascular injury and predict disability in traumatic brain injury,Latour,Partha P. Mitra;Daniel P. Perl;Anita D. Moses;Gunjan Y. Parikh;Regina C. Armstrong;Abhik Ray-Chaudhury;Nancy A. Edwards;Zachary Lodato;Govind Nair;Lawrence L. Latour;Alexander Tolpygo;Allison D. Griffin;L. Christine Turtzo;Bernard J. Dardzinski,2019-11-01,5,Brain,3550-3564,10.1093/brain/awz290,31608359,85074304123,2-s2.0-85074304123,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85074304123,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85074304123&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85074304123&origin=inward +MRI-based thrombolytic therapy in patients with acute ischemic stroke presenting with a low NIHSS,Latour,Amie W. Hsia;Richard Leigh;Lawrence L. Latour;John K. Lynch;Shahram Majidi;Richard T. Benson;Chandni P. Kalaria;Marie Luby;Zurab Nadareishvili,2019-10-15,1,Neurology,E1507-E1513,10.1212/WNL.0000000000008312,31519779,85073183374,2-s2.0-85073183374,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85073183374,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85073183374&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85073183374&origin=inward +"Response by Luby et al to letter regarding article, “Frequency of blood-brain barrier disruption postendovascular therapy and multiple thrombectomy passes in acute ischemic stroke patients”",Latour,Amie W. Hsia;Marie Luby;Lawrence L. Latour,2019-10-01,0,Stroke,E312,10.1161/STROKEAHA.119.027214,31510900,85072588812,2-s2.0-85072588812,Letter,NIH,https://api.elsevier.com/content/abstract/scopus_id/85072588812,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85072588812&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85072588812&origin=inward +Association of Head Injury with Brain Amyloid Deposition: The ARIC-PET Study,Latour,Lawrence Latour;Andrea L.C. Schneider;Christopher T. Whitlow;Yun Zhou;Menglu Liang;Dean F. Wong;Geoffrey Ling;L. Christine Turtzo;Thomas Mosley;Silvia Koton;Josef Coresh;Rebecca F. Gottesman;Elizabeth Selvin,2019-09-01,1,Journal of Neurotrauma,2549-2557,10.1089/neu.2018.6213,30963804,85071786983,2-s2.0-85071786983,Article,NIA,https://api.elsevier.com/content/abstract/scopus_id/85071786983,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85071786983&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85071786983&origin=inward +Frequency of Blood-Brain Barrier Disruption Post-Endovascular Therapy and Multiple Thrombectomy Passes in Acute Ischemic Stroke Patients,Latour,Kaylie Cullison;Amie W. Hsia;Lawrence L. Latour;Noorie Pednekar;Malik Muhammad Adil;Marie Luby;Zurab Nadareishvili,2019-08-01,4,Stroke,2241-2244,10.1161/STROKEAHA.119.025914,31238832,85070182782,2-s2.0-85070182782,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85070182782,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85070182782&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85070182782&origin=inward +Identifying perfusion deficits on CT perfusion images using temporal similarity perfusion (TSP) mapping,Latour,Jan Willem Dankbaar;Brigitta K. Velthuis;Reinoud P.H. Bokkers;Daniel Glen;Lawrence L. Latour;Wouter Kroon;Richard Reynolds;Jill B. De Vis;Marie Luby;Sunbin Song,2019-08-01,0,European Radiology,4198-4206,10.1007/s00330-018-5896-y,30617478,85059652000,2-s2.0-85059652000,Article,,https://api.elsevier.com/content/abstract/scopus_id/85059652000,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85059652000&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85059652000&origin=inward +Rapid Apparent Diffusion Coefficient Evolution after Early Revascularization: A Potential Marker of Secondary Injury?,Latour,Kaylie Cullison;Amie W. Hsia;Richard Leigh;Lawrence L. Latour;Rocco Armonda;Shannon Burton;John K. Lynch;Ai Hsi Liu;Richard T. Benson;Marie Luby;Zurab Nadareishvili,2019-08-01,2,Stroke,2086-2092,10.1161/STROKEAHA.119.025784,31238830,85070183994,2-s2.0-85070183994,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85070183994,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85070183994&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85070183994&origin=inward +Discordance between Documented Criteria and Documented Diagnosis of Traumatic Brain Injury in the Emergency Department,Latour,Katie C. Bittner;Anita D. Moses;Martin R. Cota;Ramon R. Diaz-Arrastia;Lawrence L. Latour;L. Christine Turtzo;Neekita R. Jikaria,2019-04-15,1,Journal of Neurotrauma,1335-1342,10.1089/neu.2018.5772,30351183,85064173102,2-s2.0-85064173102,Article,CNRM,https://api.elsevier.com/content/abstract/scopus_id/85064173102,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85064173102&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85064173102&origin=inward +Molecular signature of penumbra in acute ischemic stroke: a pilot transcriptomics study,Latour,Kory R. Johnson;Amie W. Hsia;Richard Leigh;Lawrence L. Latour;John K. Lynch;Alexis N. Simpkins;Richard T. Benson;John M. Hallenbeck;Zurab Nadareishvili;Marie Luby;Devon Kelley,2019-04-01,0,Annals of Clinical and Translational Neurology,817-820,10.1002/acn3.757,,85064479738,2-s2.0-85064479738,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85064479738,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85064479738&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85064479738&origin=inward +Neuroimaging evolution of ischemia in men and women: an observational study,Latour,Gretchel A. Gealogo;Lisa A. Davis;Alejandro Magadán;Adrienne N. Dula;José G. Merino;Amie W. Hsia;Lawrence L. Latour;Steven J. Warach;Ben T. King;Sunil A. Sheth;Marie Luby,2019-03-01,0,Annals of Clinical and Translational Neurology,575-585,10.1002/acn3.733,,85062873077,2-s2.0-85062873077,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85062873077,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85062873077&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85062873077&origin=inward +Neuroimaging of cerebral small vessel disease and age-related cognitive changes,Latour,Lawrence Latour;Michelle R. Caunca;Clinton B. Wright;Andres De Leon-Benedetti;Richard Leigh,2019-01-01,1,Frontiers in Aging Neuroscience,,10.3389/fnagi.2019.00145,,85069170934,2-s2.0-85069170934,Review,MBRF,https://api.elsevier.com/content/abstract/scopus_id/85069170934,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85069170934&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85069170934&origin=inward +Glial fibrillary acidic protein elevations relate to neuroimaging abnormalities after mild TBI,Latour,Lawrence Latour;Linan Song;Vida Motamedi;Jessica Gill;David Hanlon;Pashtun Shahim;Christina DeVoto;Andreas Jeromin;Stefania Mondello;Eliseo Veras;Christine Turtzo;Ramon Diaz-Arrastia,2018-10-09,15,Neurology,E1385-E1389,10.1212/WNL.0000000000006321,30209234,85054772780,2-s2.0-85054772780,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85054772780,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85054772780&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85054772780&origin=inward +Distinct myeloid cell subsets promote meningeal remodeling and vascular repair after mild traumatic brain injury article,Latour,Dorian B. McGavern;Lawrence L. Latour;Matthew V. Russo,2018-05-01,20,Nature Immunology,442-452,10.1038/s41590-018-0086-2,29662169,85045456267,2-s2.0-85045456267,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85045456267,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85045456267&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85045456267&origin=inward +Intravenous thrombolysis in unwitnessed stroke onset: MR WITNESS trial results,Latour,Albert J. Yoo;Lawrence L. Latour;Ona Wu;Raphael Carandang;Ramin Zand;Alona Muzikansky;Carlos Kase;Lee H. Schwamm;Kendra Drake;Gregoire Boulouis;Michael H. Lev;Amie W. Hsia;Pedro Cougo;William A. Copen;Gordon J. Harris;Andria L. Ford;Sidney Starkman;Steven Warach;Eric Searls;Rebecca A. Betensky;Arne Lauer;Shlee S. Song,2018-05-01,34,Annals of Neurology,980-993,10.1002/ana.25235,29689135,85046035266,2-s2.0-85046035266,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85046035266,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85046035266&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85046035266&origin=inward +Blood-ocular barrier disruption in patients with acute stroke,Latour,Richard Leigh;Lawrence L. Latour;Emi Hitomi;Alexis N. Simpkins;R. John Leigh;Marie Luby,2018-03-13,14,Neurology,e915-e923,10.1212/WNL.0000000000005123,29438039,85050759190,2-s2.0-85050759190,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85050759190,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85050759190&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85050759190&origin=inward +Cerebral ischemia increases small ubiquitin-like modifier conjugation within human penumbral tissue: Radiological-pathological correlation,Latour,Allison Griffin;Joshua D. Bernstock;Gregory K. Friedman;Lawrence L. Latour;Dragan Maric;Daniel G. Ye;John M. Hallenbeck;Yang Ja Lee;John Lynch,2018-01-12,6,Frontiers in Neurology,,10.3389/fneur.2017.00738,,85040460783,2-s2.0-85040460783,Article,CNRM,https://api.elsevier.com/content/abstract/scopus_id/85040460783,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85040460783&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85040460783&origin=inward +Attenuation of Myeloid-Specific TGFβ Signaling Induces Inflammatory Cerebrovascular Disease and Stroke,Latour,Li Yang;M. Christine Hollander;Hiroki Ishii;Lawrence L. Latour;Zhiguang Xiao;Yongfen Min;Jeeva Munasinghe;Abhik Ray-Choudhury;Anand S. Merchant;P. Charles Lin;John Hallenbeck;Dan Yang;Manfred Boehm,2017-12-08,6,Circulation Research,1360-1369,10.1161/CIRCRESAHA.116.310349,29051340,85037083016,2-s2.0-85037083016,Article,NCI,https://api.elsevier.com/content/abstract/scopus_id/85037083016,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85037083016&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85037083016&origin=inward +A Population-Based Twin Study of Childhood Irritability and Internalizing Syndromes,Leibenluft,Dever M. Carney;Ellen Leibenluft;John M. Hettema;Daniel S. Pine;Roxann Roberson-Nay;Lance M. Rappaport;Melissa A. Brotman,2020-07-03,1,Journal of Clinical Child and Adolescent Psychology,524-534,10.1080/15374416.2018.1514612,30376640,85055732825,2-s2.0-85055732825,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85055732825,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85055732825&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85055732825&origin=inward +Genetic and environmental risk structure of internalizing psychopathology in youth,Leibenluft,Ellen Leibenluft;John M. Hettema;Daniel S. Pine;Chelsea Sawyers;Roxann Roberson-Nay;Melissa A. Brotman;Brad Verhulst;Jessica L. Bourdon,2020-06-01,0,Depression and Anxiety,540-548,10.1002/da.23024,32369878,85085096755,2-s2.0-85085096755,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85085096755,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85085096755&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85085096755&origin=inward +The Heterogeneity of Anxious Phenotypes: Neural Responses to Errors in Treatment-Seeking Anxious and Behaviorally Inhibited Youths,Leibenluft,Adina C. Heckelman;Lauren K. White;Ellen Leibenluft;Anastasia L. McGlade;Nathan A. Fox;Daniel S. Pine;Ashley R. Smith;George A. Buzzell;Simone P. Haller,2020-06-01,3,Journal of the American Academy of Child and Adolescent Psychiatry,759-769,10.1016/j.jaac.2019.05.014,31128266,85075353854,2-s2.0-85075353854,Article,BMGF,https://api.elsevier.com/content/abstract/scopus_id/85075353854,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85075353854&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85075353854&origin=inward +"Anticipatory Threat Responding: Associations With Anxiety, Development, and Brain Structure",Leibenluft,Ellen Leibenluft;Daniel S. Pine;Rany Abend;Jennifer C. Britton;Andrea L. Gold;Bruno B. Averbeck;Tomer Shechner;Anderson M. Winkler;Jessica F. Sachs;Kalina J. Michalska,2020-05-15,3,Biological Psychiatry,916-925,10.1016/j.biopsych.2019.11.006,31955915,85078037106,2-s2.0-85078037106,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85078037106,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85078037106&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85078037106&origin=inward +Age differences in the neural correlates of anxiety disorders: An fMRI study of response to learned threat,Leibenluft,Ellen Leibenluft;Daniel S. Pine;Rany Abend;Jennifer C. Britton;Andrea L. Gold;Brigid Behrens;Madeline Farber;Emily Ronkin;Gang Chen,2020-05-01,3,American Journal of Psychiatry,454-463,10.1176/appi.ajp.2019.19060650,32252541,85085749416,2-s2.0-85085749416,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85085749416,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85085749416&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85085749416&origin=inward +Self-Efficacy As a Target for Neuroscience Research on Moderators of Treatment Outcomes in Pediatric Anxiety,Leibenluft,Argyris Stringaris;Ellen Leibenluft;Chika Matsumoto;Elise Cardinale;Krystal M. Lewis;Daniel S. Pine;Andrea L. Gold;Emily L. Jones;Melissa A. Brotman,2020-05-01,0,Journal of Child and Adolescent Psychopharmacology,205-214,10.1089/cap.2019.0130,32167803,85084720715,2-s2.0-85084720715,Article,,https://api.elsevier.com/content/abstract/scopus_id/85084720715,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85084720715&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85084720715&origin=inward +Infant behavioral reactivity predicts change in amygdala volume 12 years later,Leibenluft,Ellen Leibenluft;Daniel S. Pine;Nathan A. Fox;Andrea L. Gold;Courtney A. Filippi;Jessica F. Sachs;Anderson Winkler;Dominique Phillips,2020-04-01,0,Developmental Cognitive Neuroscience,,10.1016/j.dcn.2020.100776,32452462,85081897842,2-s2.0-85081897842,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85081897842,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85081897842&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85081897842&origin=inward +Social anxiety and age are associated with neural response to social evaluation during adolescence,Leibenluft,J. M. Jarcho;E. Leibenluft;D. S. Pine;E. E. Nelson;B. I. Rappaport;Q. B. Do;A. R. Smith;K. Kircanski,2020-04-01,0,Developmental Cognitive Neuroscience,,10.1016/j.dcn.2020.100768,32077442,85079385240,2-s2.0-85079385240,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85079385240,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85079385240&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85079385240&origin=inward +Increasing Diversity in Science: It Begins With All of Us,Leibenluft,Ellen Leibenluft,2020-03-01,1,Biological Psychiatry,379-381,10.1016/j.biopsych.2019.12.009,32029071,85078075282,2-s2.0-85078075282,Editorial,,https://api.elsevier.com/content/abstract/scopus_id/85078075282,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85078075282&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85078075282&origin=inward +Chronic irritability in children is not pediatric bipolar disorder: Implications for treatment,Leibenluft,Ellen Leibenluft,2020-03-01,0,Bipolar Disorders,195-196,10.1111/bdi.12881,31820531,85076883884,2-s2.0-85076883884,Note,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85076883884,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85076883884&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85076883884&origin=inward +New Frontiers in Irritability Research - From Cradle to Grave and Bench to Bedside,Leibenluft,Neir Eshel;Ellen Leibenluft,2020-03-01,2,JAMA Psychiatry,227-228,10.1001/jamapsychiatry.2019.3686,31799997,85076152368,2-s2.0-85076152368,Note,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85076152368,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85076152368&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85076152368&origin=inward +Anxious-Irritable Children: A Distinct Subtype of Childhood Anxiety?,Leibenluft,Ellen Leibenluft;Daniel S. Pine;Yaara Shimshoni;Melissa A. Brotman;Eli R. Lebowitz;Wendy K. Silverman,2020-03-01,1,Behavior Therapy,211-222,10.1016/j.beth.2019.06.005,32138933,85069672844,2-s2.0-85069672844,Article,NCATS,https://api.elsevier.com/content/abstract/scopus_id/85069672844,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85069672844&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85069672844&origin=inward +White matter microstructure in youth with and at risk for bipolar disorder,Leibenluft,Caitlin Stavish;Ellen Leibenluft;Kenneth E. Towbin;Julia O. Linke;Nancy E. Adleman;Melissa A. Brotman;Joelle Sarlls,2020-03-01,2,Bipolar Disorders,163-173,10.1111/bdi.12885,31883419,85078667394,2-s2.0-85078667394,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85078667394,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85078667394&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85078667394&origin=inward +A Double-Blind Randomized Placebo-Controlled Trial of Citalopram Adjunctive to Stimulant Medication in Youth With Chronic Severe Irritability,Leibenluft,Ellen Leibenluft;Daniel S. Pine;Alexandra Roule;Chana Engel;Kenneth Towbin;Gerald P. Overman;Cheri McNeil;Ariela Kaiser;Catherine T. Haring;Catherine H. Yokum;Mollie Davis;Banafsheh Sharif-Askary;Pablo Vidal-Ribas;Caroline G. Wambach;Andrew Pickles;Argyris Stringaris;Aria D. Vitale;Wanda Wheeler;Katherine V. Miller;Beth Lee;Melissa A. Brotman,2020-03-01,6,Journal of the American Academy of Child and Adolescent Psychiatry,350-361,10.1016/j.jaac.2019.05.015,31128268,85072258051,2-s2.0-85072258051,Article,NIHR,https://api.elsevier.com/content/abstract/scopus_id/85072258051,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85072258051&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85072258051&origin=inward +Combining fMRI during resting state and an attention bias task in children,Leibenluft,Anita Harrewijn;Julia Linke;Ellen Leibenluft;Nathan A. Fox;Daniel S. Pine;Rany Abend;Anderson M. Winkler;Melissa A. Brotman,2020-01-15,0,NeuroImage,,10.1016/j.neuroimage.2019.116301,31639510,85073937831,2-s2.0-85073937831,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85073937831,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85073937831&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85073937831&origin=inward +Notice of Retraction and Replacement. Pornpattananangkul et al. Association between childhood anhedonia and alterations in large-scale resting-state networks and task-evoked activation. JAMA Psychiatry. 2019;76(6):624-633,Leibenluft,Narun Pornpattananangkul;Daniel S. Pine;Argyris Stringaris;Ellen Leibenluft,2020-01-01,0,JAMA Psychiatry,,10.1001/jamapsychiatry.2020.1367,,85086852400,2-s2.0-85086852400,Letter,,https://api.elsevier.com/content/abstract/scopus_id/85086852400,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85086852400&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85086852400&origin=inward +Association between irritability and suicidal ideation in three clinical trials of adults with major depressive disorder,Leibenluft,Argyris Stringaris;Abu Minhajuddin;Cherise Chin Fatt;Ellen Leibenluft;Manish K. Jha;Madhukar Trivedi;Katharina Kircanski,2020-01-01,0,Neuropsychopharmacology,,10.1038/s41386-020-0769-x,,85087856134,2-s2.0-85087856134,Article,,https://api.elsevier.com/content/abstract/scopus_id/85087856134,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85087856134&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85087856134&origin=inward +White Matter Microstructure in Pediatric Bipolar Disorder and Disruptive Mood Dysregulation Disorder,Leibenluft,Ellen Leibenluft;Daniel S. Pine;Kenneth E. Towbin;Heather R. Frank;Julia O. Linke;Nancy E. Adleman;Andrew Ross;Samantha Perlstein;Melissa A. Brotman;Joelle Sarlls,2020-01-01,1,Journal of the American Academy of Child and Adolescent Psychiatry,,10.1016/j.jaac.2019.05.035,31330239,85078661432,2-s2.0-85078661432,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85078661432,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85078661432&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85078661432&origin=inward +Interaction of irritability and anxiety on emotional responding and emotion regulation: A functional MRI study,Leibenluft,Ellen Leibenluft;Joseph M. Aloi;Karina S. Blair;Harma Meffert;Kathleen I. Crum;Stuart F. White;Soonjo Hwang;Patrick M. Tyler;R. J.R. Blair;Kayla Pope,2020-01-01,0,Psychological Medicine,,10.1017/S0033291720001397,,85087461885,2-s2.0-85087461885,Article,,https://api.elsevier.com/content/abstract/scopus_id/85087461885,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85087461885&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85087461885&origin=inward +The Clinician Affective Reactivity Index: Validity and Reliability of a Clinician-Rated Assessment of Irritability,Leibenluft,Argyris Stringaris;Courtney Agorsor;Sofia I. Cardenas;Ellen Leibenluft;Hong Bui;Daniel S. Pine;Kenneth E. Towbin;Michal Clayton;Melissa A. Brotman;Simone P. Haller;Katharina Kircanski,2020-01-01,0,Behavior Therapy,,10.1016/j.beth.2019.10.005,32138938,85077980964,2-s2.0-85077980964,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85077980964,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85077980964&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85077980964&origin=inward +Levels of early-childhood behavioral inhibition predict distinct neurodevelopmental pathways to pediatric anxiety,Leibenluft,Courtney Filippi;Lauren K. White;Ellen Leibenluft;Nathan A. Fox;Daniel S. Pine;Rany Abend;Caroline Swetlitz;Yair Bar-Haim;Tomer Shechner;Simone P. Haller;Gang Chen;Katharina Kircanski;Brenda E. Benson,2020-01-01,3,Psychological Medicine,96-106,10.1017/S0033291718003999,30616705,85059632816,2-s2.0-85059632816,Article,NAF,https://api.elsevier.com/content/abstract/scopus_id/85059632816,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85059632816&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85059632816&origin=inward +Mega-analysis methods in ENIGMA: The experience of the generalized anxiety disorder working group,Leibenluft,Frances Meeten;Andrea P. Jackowski;Janna M. Bas-Hoogendam;Hans J. Grabe;Cristina Ottaviani;Savannah Gosnell;K. Luan Phan;Hannah Zwiebel;Giovana B. Zunta-Soares;Katy E. Werwath;David Hofmann;Elise M. Cardinale;Nic J.A. Van der Wee;Heidi K. Schroeder;Karina S. Blair;Michal Assaf;Nicholas L. Balderston;Bianca A.V. Alberton;Ellen Leibenluft;Dan J. Stein;Benson Mwangi;Gabrielle F. Freitag;Courtney A. Filippi;Lilianne R. Mujica-Parodi;Carmen Andreescu;Eleonora Maggioni;Jennifer Harper;Ana Munjiza;Gisele G. Manfro;Daniel Porta-Casteràs;Camilla Cividini;Katie Burkhouse;Mohammed Milad;Michael T. Perino;Bart Larsen;Anderson M. Winkler;Moji Aghajani;Mira Z. Hammoud;Gretchen J. Diefenbach;Elena Makovac;Kevin Hilbert;Massimo Filippi;Ruben C. Gur;Pedro M. Pan;Ulrike Lueken;Helena van Nieuwenhuizen;Qiongru Yu;Neda Jahanshad;Jeffrey R. Strawn;Antonia N. Kaczkurkin;Michael Myers;Sandra Van der Auwera;Murray B. Stein;Randy Buckner;Dick J. Veltman;Rachel Berta;Jair C. Soares;James R. Blair;Giovanni A. Salum;Christian Grillon;Katja Beesdo-Baum;Nynke A. Groenewold;Martin P. Paulus;Anita Harrewijn;Federica Agosta;Jared A. Nielsen;Sophia I. Thomopoulos;Daniel S. Pine;Gregory A. Fonzo;Matteo Mancini;Narcis Cardoner;André Zugman;Thomas Straube;Mon Ju Wu;Paolo Brambilla;Hugo D. Critchley;Raquel E. Gur;Rebecca Price;Elisa Canu;Ramiro Salas;Katharina Wittfeld;Erica Tamburo;Jordan W. Smoller;Chad M. Sylvester;Paul M. Thompson;Milutin Kostić;Theodore D. Satterthwaite;Monique Ernst,2020-01-01,1,Human Brain Mapping,,10.1002/hbm.25096,,85083703055,2-s2.0-85083703055,Review,,https://api.elsevier.com/content/abstract/scopus_id/85083703055,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85083703055&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85083703055&origin=inward +Accelerated cortical thinning within structural brain networks is associated with irritability in youth,Leibenluft,Aristeidis Sotiras;Ellen Leibenluft;David R. Roalf;Adon F.G. Rosen;Christos Davatzikos;Kosha Ruparel;Philip A. Cook;Kristin Murtha;Azeez Adebimpe;Russell T. Shinohara;Daniel H. Wolf;Antonia N. Kaczkurkin;Diego Davila;Rastko Ciric;Sage Rush;Danielle S. Bassett;Josiane Bourque;Mark A. Elliott;Matthew Cieslak;Kayla Piiwia;Theodore D. Satterthwaite;Monica E. Calkins;Robert J. Jirsaraie,2019-12-01,2,Neuropsychopharmacology,2254-2262,10.1038/s41386-019-0508-3,31476764,85074964366,2-s2.0-85074964366,Article,WRF,https://api.elsevier.com/content/abstract/scopus_id/85074964366,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85074964366&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85074964366&origin=inward +Irritability in ADHD: association with later depression symptoms,Leibenluft,Argyris Stringaris;Olga Eyre;Ellen Leibenluft;Lucy Riglin;Anita Thapar;Stephan Collishaw,2019-10-01,4,European Child and Adolescent Psychiatry,1375-1384,10.1007/s00787-019-01303-x,30834985,85062648174,2-s2.0-85062648174,Article,WT,https://api.elsevier.com/content/abstract/scopus_id/85062648174,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85062648174&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85062648174&origin=inward +"Irritability, Externalizing, and Internalizing Psychopathology in Adolescence: Cross-Sectional and Longitudinal Associations and Moderation by Sex",Leibenluft,Ian H. Gotlib;Argyris Stringaris;Sophie N.F. Schouboe;Ellen Leibenluft;Kathryn L. Humphreys;Katharina Kircanski,2019-09-03,3,Journal of Clinical Child and Adolescent Psychology,781-789,10.1080/15374416.2018.1460847,29667523,85045637488,2-s2.0-85045637488,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85045637488,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85045637488&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85045637488&origin=inward +Cross-species convergence in pupillary response: understanding human anxiety via non-human primate amygdala lesion,Leibenluft,David Pagliaccio;Ellen Leibenluft;Daniel S. Pine;Vincent D. Costa;Bruno B. Averbeck;Olga Dal Monte,2019-08-07,1,Social cognitive and affective neuroscience,591-599,10.1093/scan/nsz041,31184751,85072057554,2-s2.0-85072057554,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85072057554,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85072057554&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85072057554&origin=inward +Inhibitory control and emotion dysregulation: A framework for research on anxiety,Leibenluft,Ellen Leibenluft;Daniel S. Pine;Anni R. Subar;Elise M. Cardinale;Melissa A. Brotman;Katharina Kircanski,2019-08-01,0,Development and Psychopathology,859-869,10.1017/S0954579419000300,30968800,85065229072,2-s2.0-85065229072,Article,,https://api.elsevier.com/content/abstract/scopus_id/85065229072,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85065229072&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85065229072&origin=inward +Parsing neurodevelopmental features of irritability and anxiety: Replication and validation of a latent variable approach,Leibenluft,Ellen Leibenluft;Julia Brooks;Daniel S. Pine;Kenneth E. Towbin;Elise M. Cardinale;Andrea L. Gold;Melissa A. Brotman;Katharina Kircanski,2019-08-01,2,Development and Psychopathology,917-929,10.1017/S095457941900035X,31064595,85065436647,2-s2.0-85065436647,Article,,https://api.elsevier.com/content/abstract/scopus_id/85065436647,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85065436647&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85065436647&origin=inward +Early childhood social reticence and neural response to peers in preadolescence predict social anxiety symptoms in midadolescence,Leibenluft,Tessa Clarkson;Adina C. Heckelman;Ellen Leibenluft;Eric E. Nelson;Nathan A. Fox;Daniel S. Pine;Stefanie L. Sequeira;Nicholas R. Eaton;Johanna M.. Jarcho,2019-08-01,3,Depression and Anxiety,676-689,10.1002/da.22910,31140687,85071057253,2-s2.0-85071057253,Article,NARSAD,https://api.elsevier.com/content/abstract/scopus_id/85071057253,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85071057253&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85071057253&origin=inward +Childhood neurodevelopmental difficulties and risk of adolescent depression: the role of irritability,Leibenluft,Argyris Stringaris;Rachael A. Hughes;Olga Eyre;Ellen Leibenluft;Anita Thapar;Stephan Collishaw;Evie Stergiakouli;Ajay K. Thapar;George Davey Smith,2019-08-01,2,Journal of Child Psychology and Psychiatry and Allied Disciplines,866-874,10.1111/jcpp.13053,30908655,85063358165,2-s2.0-85063358165,Article,CORE,https://api.elsevier.com/content/abstract/scopus_id/85063358165,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85063358165&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85063358165&origin=inward +Advancing clinical neuroscience through enhanced tools: Pediatric social anxiety as an example,Leibenluft,Anita Harrewijn;Lauren K. White;Ellen Leibenluft;Daniel S. Pine;Scott Engel;Anni R. Subar;Quyen B. Do;Ashley R. Smith;Elise M. Cardinale;Tyson Barker;Jennifer S. Silk;George A. Buzzell;Melissa A. Brotman;Ross D. Crosby;Simone P. Haller;Katharina Kircanski,2019-08-01,1,Depression and Anxiety,701-711,10.1002/da.22937,31373756,85071014152,2-s2.0-85071014152,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85071014152,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85071014152&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85071014152&origin=inward +Connecting Childhood Wariness to Adolescent Social Anxiety through the Brain and Peer Experiences,Leibenluft,Johanna M. Jarcho;Ellen Leibenluft;Eric E. Nelson;Nathan A. Fox;Daniel S. Pine;Ashley R. Smith;Megan Quarmley;Amanda E. Guyer;Hannah Y. Grossman,2019-07-15,2,Journal of Abnormal Child Psychology,1153-1164,10.1007/s10802-019-00543-4,31028560,85065125983,2-s2.0-85065125983,Article,NARSAD,https://api.elsevier.com/content/abstract/scopus_id/85065125983,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85065125983&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85065125983&origin=inward +Exposure therapy for pediatric irritability: Theory and potential mechanisms,Leibenluft,Ellen Leibenluft;Michelle G. Craske;Daniel S. Pine;Bruno B. Averbeck;Melissa A. Brotman;Katharina Kircanski,2019-07-01,2,Behaviour Research and Therapy,141-149,10.1016/j.brat.2019.04.007,31085355,85065414581,2-s2.0-85065414581,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85065414581,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85065414581&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85065414581&origin=inward +Association between childhood anhedonia and alterations in large-scale resting-state networks and task-evoked activation,Leibenluft,Narun Pornpattananangkul;Daniel S. Pine;Argyris Stringaris;Ellen Leibenluft,2019-06-01,7,JAMA Psychiatry,624-633,10.1001/jamapsychiatry.2019.0020,30865236,85063004708,2-s2.0-85063004708,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85063004708,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85063004708&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85063004708&origin=inward +Neural mechanisms of face emotion processing in youths and adults with bipolar disorder,Leibenluft,Kenneth Towbin;Ellen Leibenluft;Daniel S. Pine;Richard C. Reynolds;Jillian Lee Wiggins;Maria Kryza-Lacombe;Melissa A. Brotman,2019-06-01,1,Bipolar Disorders,309-320,10.1111/bdi.12768,30851221,85063696578,2-s2.0-85063696578,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85063696578,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85063696578&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85063696578&origin=inward +Modulation of anterior cingulate cortex reward and penalty signalling in medication-naive young-adult subjects with depressive symptoms following acute dose lurasidone,Leibenluft,Argyris Stringaris;Ellen Leibenluft;Daniel S. Pine;Hanna Keren;Mitul A. Mehta;Allan H. Young;Owen O'Daly;Georgia O'Callaghan;Nada Zahreddine;Fernando Zelaya;Selina A. Wolke,2019-06-01,2,Psychological Medicine,1365-1377,10.1017/S0033291718003306,30606271,85063983722,2-s2.0-85063983722,Article,,https://api.elsevier.com/content/abstract/scopus_id/85063983722,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85063983722&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85063983722&origin=inward +The genetic and environmental structure of fear and anxiety in juvenile twins,Leibenluft,Dever M. Carney;Ellen Leibenluft;John M. Hettema;Daniel S. Pine;Chelsea Sawyers;Roxann Roberson-Nay;Thomas Ollendick;Melissa A. Brotman,2019-04-01,3,"American Journal of Medical Genetics, Part B: Neuropsychiatric Genetics",204-212,10.1002/ajmg.b.32714,30708402,85060890929,2-s2.0-85060890929,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85060890929,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85060890929&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85060890929&origin=inward +Early-childhood social reticence predicts SCR-BOLD coupling during fear extinction recall in preadolescent youth,Leibenluft,K. A. Degnan;S. Sequeira;E. J. Ivie;T. Shechner;E. Leibenluft;N. A. Fox;D. S. Pine;B. Averbeck;K. J. Michalska;J. S. Feldman;A. Chronis-Tuscano,2019-04-01,9,Developmental Cognitive Neuroscience,,10.1016/j.dcn.2018.12.003,30921634,85059151003,2-s2.0-85059151003,Article,NICHD,https://api.elsevier.com/content/abstract/scopus_id/85059151003,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85059151003&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85059151003&origin=inward +Temporally sensitive neural measures of inhibition in preschool children across a spectrum of irritability,Leibenluft,Melissa A. Brotman;David Pagliaccio;Christen M. Deveney;Ellen Leibenluft;Daniel S. Pine;Lauren S. Wakschlag;James L. Burns;Elvira Zobel;Margaret J. Briggs-Gowan;Christopher R. Estabrook;Elizabeth S. Norton,2019-03-01,5,Developmental Psychobiology,216-227,10.1002/dev.21792,30328111,85055046339,2-s2.0-85055046339,Article,,https://api.elsevier.com/content/abstract/scopus_id/85055046339,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85055046339&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85055046339&origin=inward +Frontal alpha asymmetry moderates the relations between behavioral inhibition and social-effect ERN,Leibenluft,R. Debnath;A. Harrewijn;G. A. Buzzell;N. A. Fox;E. Leibenluft;D. S. Pine,2019-02-01,3,Biological Psychology,10-16,10.1016/j.biopsycho.2018.12.014,30599209,85059316520,2-s2.0-85059316520,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85059316520,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85059316520&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85059316520&origin=inward +The genetic and environmental relationship between childhood behavioral inhibition and preadolescent anxiety,Leibenluft,Dever M. Carney;Ellen Leibenluft;Jeanne E. Savage;John M. Hettema;Daniel S. Pine;Roxann Roberson-Nay;Melissa A. Brotman;Brad Verhulst;Jessica L. Bourdon,2019-02-01,2,Twin Research and Human Genetics,62-69,10.1017/thg.2018.73,30698127,85060852420,2-s2.0-85060852420,Article,,https://api.elsevier.com/content/abstract/scopus_id/85060852420,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85060852420&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85060852420&origin=inward +Relationship between sleep and mood in patients with rapid-cycling bipolar disorder,Leibenluft,Paul S. Albert;Thomas A. Wehr;Ellen Leibenluft;E. Rosenthal Norman,2019-01-01,0,Bipolar Disorder: The Science of Mental Health,185-193,10.4324/9781315054308-18,,85084598160,2-s2.0-85084598160,Chapter,,https://api.elsevier.com/content/abstract/scopus_id/85084598160,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85084598160&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85084598160&origin=inward +"Heritability, stability, and prevalence of tonic and phasic irritability as indicators of disruptive mood dysregulation disorder",Leibenluft,Ellen Leibenluft;Judy L. Silberg;John M. Hettema;Roxann Roberson-Nay;Timothy P. York;Dana M. Lapato;Melissa A. Brotman;Ashlee A. Moore;Steven H. Aggen,2019-01-01,1,Journal of Child Psychology and Psychiatry and Allied Disciplines,1032-1041,10.1111/jcpp.13062,30994196,85064594022,2-s2.0-85064594022,Article,NCATS,https://api.elsevier.com/content/abstract/scopus_id/85064594022,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85064594022&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85064594022&origin=inward +Identifying novel types of irritability using a developmental genetic approach,Leibenluft,Argyris Stringaris;Olga Eyre;Ellen Leibenluft;Lucy Riglin;Michael C. O’Donovan;Anita Thapar;Daniel S. Pine;Kate Tilling;Ajay K. Thapar;George Davey Smith,2019-01-01,4,American Journal of Psychiatry,635-642,10.1176/appi.ajp.2019.18101134,31256611,85070309459,2-s2.0-85070309459,Article,WT,https://api.elsevier.com/content/abstract/scopus_id/85070309459,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85070309459&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85070309459&origin=inward +Brain mechanisms of attention orienting following frustration: Associations with irritability and age in youths,Leibenluft,Gretchen Perhamus;Ellen Leibenluft;Daniel S. Pine;Kenneth E. Towbin;Joel Stoddard;Alexandra Roule;Laura Machlin;Laura Donahue;Christen M. Deveney;John M. Hettema;Richard C. Reynolds;Elizabeth Moroney;Anna E. Frackman;Roxann Roberson-Nay;Wan Ling Tseng;Argyris Stringaris;Melissa A. Brotman;Jennifer Y. Yi;Derek Hsu;Katharina Kircanski,2019-01-01,12,American Journal of Psychiatry,67-76,10.1176/appi.ajp.2018.18040491,30336704,85060043984,2-s2.0-85060043984,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85060043984,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85060043984&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85060043984&origin=inward +Deficits in emotion recognition are associated with depressive symptoms in youth with disruptive mood dysregulation disorder,Leibenluft,Argyris Stringaris;Liana Meffert;Giovanni A. Salum;Ellen Leibenluft;Daniel S. Pine;Ariela Kaiser;Melissa A. Brotman;Pablo Vidal-Ribas,2018-12-01,4,Depression and Anxiety,1207-1217,10.1002/da.22810,30004611,85050553330,2-s2.0-85050553330,Article,NIHR,https://api.elsevier.com/content/abstract/scopus_id/85050553330,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85050553330&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85050553330&origin=inward +I like them...will they like me? Evidence for the role of the ventrolateral prefrontal cortex during mismatched social appraisals in anxious youth,Leibenluft,Ellen Leibenluft;Eric E. Nelson;Johanna M. Jarcho;Daniel S. Pine;Ashley R. Smith;Brent I. Rappaport,2018-11-01,3,Journal of Child and Adolescent Psychopharmacology,646-654,10.1089/cap.2017.0142,29792726,85056722440,2-s2.0-85056722440,Article,NARSAD,https://api.elsevier.com/content/abstract/scopus_id/85056722440,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85056722440&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85056722440&origin=inward +Age-Related Differences in the Structure of Genetic and Environmental Contributions to Types of Peer Victimization,Leibenluft,Ellen Leibenluft;Meridith L. Eastman;John M. Hettema;Daniel S. Pine;Chelsea Sawyers;Roxann Roberson-Nay;Melanie Dirks;Lance M. Rappaport;Melissa A. Brotman;Brad Verhulst,2018-11-01,3,Behavior Genetics,421-431,10.1007/s10519-018-9923-1,30242573,85053701527,2-s2.0-85053701527,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85053701527,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85053701527&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85053701527&origin=inward +Reward processing in depression: A conceptual and meta-analytic review across fMRI and EEG studies,Leibenluft,Argyris Stringaris;Pedro M. Pan;Liana Meffert;Ellen Leibenluft;Selina Wolke;Daniel S. Pine;Hanna Keren;Georgia O'Callaghan;Ariela Kaiser;George A. Buzzell;Melissa A. Brotman;Pablo Vidal-Ribas,2018-11-01,40,American Journal of Psychiatry,1111-1120,10.1176/appi.ajp.2018.17101124,29921146,85056342442,2-s2.0-85056342442,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85056342442,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85056342442&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85056342442&origin=inward +Is the encoding of Reward Prediction Error reliable during development?,Leibenluft,Argyris Stringaris;Ellen Leibenluft;Nathan A. Fox;Hanna Keren;Daniel S. Pine;Brenda Benson;Monique Ernst;Gang Chen,2018-09-01,3,NeuroImage,266-276,10.1016/j.neuroimage.2018.05.039,29777827,85047491773,2-s2.0-85047491773,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85047491773,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85047491773&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85047491773&origin=inward +"Practitioner Review: Definition, recognition, and treatment challenges of irritability in young people",Leibenluft,Melissa A. Brotman;Argyris Stringaris;Ellen Leibenluft;Pablo Vidal-Ribas,2018-07-01,38,Journal of Child Psychology and Psychiatry and Allied Disciplines,721-739,10.1111/jcpp.12823,29083031,85033227679,2-s2.0-85033227679,Review,NIH,https://api.elsevier.com/content/abstract/scopus_id/85033227679,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85033227679&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85033227679&origin=inward +Improvements in Irritability with Open-Label Methylphenidate Treatment in Youth with Comorbid Attention Deficit/Hyperactivity Disorder and Disruptive Mood Dysregulation Disorder,Leibenluft,Leslie A. Hulvershorn;Sadaaki Fukui;Drew E. Winters;Ellen Leibenluft,2018-06-01,9,Journal of Child and Adolescent Psychopharmacology,298-305,10.1089/cap.2017.0124,29708762,85048357017,2-s2.0-85048357017,Article,,https://api.elsevier.com/content/abstract/scopus_id/85048357017,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85048357017&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85048357017&origin=inward +Interpersonal psychotherapy for mood and behavior dysregulation: Pilot randomized trial,Leibenluft,Ellen Leibenluft;Gayane Yenokyan;Mark Riddle;Laura Mufson;Stefanie A. Hlastala;Leslie Miller,2018-06-01,6,Depression and Anxiety,574-582,10.1002/da.22761,29719093,85046346142,2-s2.0-85046346142,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85046346142,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85046346142&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85046346142&origin=inward +Reliability of neural activation and connectivity during implicit face emotion processing in youth,Leibenluft,Lauren K. White;Ellen Leibenluft;Daniel S. Pine;Kenneth E. Towbin;Joel Stoddard;Banafsheh Sharif-Askary;Susan Zhang;Melissa A. Brotman;Simone P. Haller;Gang Chen;Katharina Kircanski,2018-06-01,6,Developmental Cognitive Neuroscience,67-73,10.1016/j.dcn.2018.03.010,29753993,85046748586,2-s2.0-85046748586,Article,,https://api.elsevier.com/content/abstract/scopus_id/85046748586,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85046748586&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85046748586&origin=inward +A latent variable approach to differentiating neural mechanisms of irritability and anxiety in youth,Leibenluft,Argyris Stringaris;Lauren K. White;Ellen Leibenluft;Daniel S. Pine;Kenneth E. Towbin;Jillian Lee Wiggins;Heather R. Frank;Rany Abend;Susan Zhang;Stefanie Sequeira;Melissa A. Brotman;Wan Ling Tseng;Katharina Kircanski,2018-06-01,27,JAMA Psychiatry,631-639,10.1001/jamapsychiatry.2018.0468,29625429,85048700151,2-s2.0-85048700151,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85048700151,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85048700151&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85048700151&origin=inward +"Irritability Trajectories, Cortical Thickness, and Clinical Outcomes in a Sample Enriched for Preschool Depression",Leibenluft,David Pagliaccio;Ellen Leibenluft;Daniel S. Pine;Deanna M. Barch;Joan L. Luby,2018-05-01,13,Journal of the American Academy of Child and Adolescent Psychiatry,336-342.e6,10.1016/j.jaac.2018.02.010,29706163,85046338560,2-s2.0-85046338560,Article,,https://api.elsevier.com/content/abstract/scopus_id/85046338560,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85046338560&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85046338560&origin=inward +Psychosocial Treatment of Irritability in Youth,Leibenluft,Melissa A. Brotman;Michal E. Clayton;Ellen Leibenluft;Katharina Kircanski,2018-03-01,11,Current Treatment Options in Psychiatry,129-140,10.1007/s40501-018-0141-5,,85062875576,2-s2.0-85062875576,Review,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85062875576,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85062875576&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85062875576&origin=inward +Identifying Clinically Significant Irritability in Early Childhood,Leibenluft,Melissa A. Brotman;Ellen Leibenluft;Daniel S. Pine;Ryne Estabrook;Jillian Lee Wiggins;Lauren S. Wakschlag;Margaret J. Briggs-Gowan,2018-03-01,20,Journal of the American Academy of Child and Adolescent Psychiatry,191-199.e2,10.1016/j.jaac.2017.12.008,29496128,85042503715,2-s2.0-85042503715,Article,,https://api.elsevier.com/content/abstract/scopus_id/85042503715,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85042503715&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85042503715&origin=inward +Intraclass correlation: Improved modeling approaches and applications for neuroimaging,Leibenluft,Ellen Leibenluft;Daniel S. Pine;Paul A. Taylor;Joel Stoddard;Robert W. Cox;Melissa A. Brotman;Simone P. Haller;Gang Chen;Katharina Kircanski,2018-03-01,12,Human Brain Mapping,1187-1206,10.1002/hbm.23909,29218829,85041743325,2-s2.0-85041743325,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85041743325,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85041743325&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85041743325&origin=inward +Clinical Correlates of Carbon Dioxide Hypersensitivity in Children,Leibenluft,Dever M. Carney;Christina Sheerin;Ellen Leibenluft;John M. Hettema;Daniel S. Pine;Kenneth E. Towbin;Roxann Roberson-Nay;Lance M. Rappaport;Melissa A. Brotman,2017-12-01,2,Journal of the American Academy of Child and Adolescent Psychiatry,1089-1096.e1,10.1016/j.jaac.2017.09.423,29173743,85032390960,2-s2.0-85032390960,Conference Paper,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85032390960,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85032390960&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85032390960&origin=inward +An Evaluation of the Specificity of Executive Function Impairment in Developmental Psychopathology,Leibenluft,Lauren K. White;Ruben C. Gur;Tyler M. Moore;Ellen Leibenluft;Daniel S. Pine;Daniel H. Wolf;Theodore D. Satterthwaite;Raquel E. Gur;Monica E. Calkins,2017-11-01,10,Journal of the American Academy of Child and Adolescent Psychiatry,975-982.e3,10.1016/j.jaac.2017.08.016,29096780,85032453823,2-s2.0-85032453823,Article,,https://api.elsevier.com/content/abstract/scopus_id/85032453823,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85032453823&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85032453823&origin=inward +Behavioral and Neural Sustained Attention Deficits in Bipolar Disorder and Familial Risk of Bipolar Disorder,Leibenluft,Alexa Curhan;David Pagliaccio;Ellen Leibenluft;Daniel S. Pine;Kenneth E. Towbin;Jillian Lee Wiggins;Elizabeth Harkins;Nancy E. Adleman;Melissa A. Brotman,2017-11-01,10,Biological Psychiatry,669-678,10.1016/j.biopsych.2016.09.006,27837919,85032216721,2-s2.0-85032216721,Article,,https://api.elsevier.com/content/abstract/scopus_id/85032216721,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85032216721&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85032216721&origin=inward +Cortical thickness and subcortical gray matter volume in pediatric anxiety disorders,Leibenluft,Lauren K. White;Elizabeth R. Steuber;David Pagliaccio;Ellen Leibenluft;Daniel S. Pine;Andrea L. Gold;Jennifer Pacheco;Erin Berman;Jessica F. Sachs,2017-11-01,21,Neuropsychopharmacology,2423-2433,10.1038/npp.2017.83,28436445,85031281401,2-s2.0-85031281401,Article,FNIH,https://api.elsevier.com/content/abstract/scopus_id/85031281401,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85031281401&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85031281401&origin=inward +Anxiety symptoms and children's eye gaze during fear learning,Leibenluft,Melissa A. Brotman;Ellen Leibenluft;Eric E. Nelson;John M. Hettema;Daniel S. Pine;Laura Machlin;Daniel S. Lowet;Elizabeth Moroney;Bruno B. Averbeck;Roxann Roberson-Nay;Kalina J. Michalska,2017-11-01,9,Journal of Child Psychology and Psychiatry and Allied Disciplines,1276-1286,10.1111/jcpp.12749,28736915,85048982198,2-s2.0-85048982198,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85048982198,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85048982198&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85048982198&origin=inward +Ventral striatum functional connectivity as a predictor of adolescent depressive disorder in a longitudinal community-based sample,Leibenluft,Argyris Stringaris;Rodrigo A. Bressan;Giovanni A. Salum;Ellen Leibenluft;Daniel S. Pine;Pedro Mario Pan;Jair Mari;Andre Zugman;Andrea Jackowski;João R. Sato;Felipe Picon;Eurípedes C. Miguel;Ary Gadelha;Luis A. Rohde,2017-11-01,35,American Journal of Psychiatry,1112-1119,10.1176/appi.ajp.2017.17040430,28946760,85032889118,2-s2.0-85032889118,Article,CNPq,https://api.elsevier.com/content/abstract/scopus_id/85032889118,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85032889118&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85032889118&origin=inward +Investigating the genetic underpinnings of early-life irritability,Leibenluft,S. Collishaw;A. Stringaris;M. Cooper;E. Leibenluft;B. Maughan;O. Eyre;M. C. O'Donovan;J. Martin;A. Thapar;L. Riglin;A. K. Thapar;K. Langley,2017-09-26,16,Translational psychiatry,e1241,10.1038/tp.2017.212,28949337,85047303287,2-s2.0-85047303287,Article,MRC,https://api.elsevier.com/content/abstract/scopus_id/85047303287,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85047303287&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85047303287&origin=inward +Defining the neural substrate of the adult outcome of childhood ADHD: A multimodal neuroimaging study of response inhibition,Leibenluft,Wendy Sharp;Ellen Leibenluft;Eszter Szekely;Philip Shaw;Gustavo P. Sudre,2017-09-01,19,American Journal of Psychiatry,867-876,10.1176/appi.ajp.2017.16111313,28659040,85028725641,2-s2.0-85028725641,Article,NHGRI,https://api.elsevier.com/content/abstract/scopus_id/85028725641,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85028725641&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85028725641&origin=inward +Complementary features of attention bias modification therapy and cognitive-behavioral therapy in pediatric anxiety disorders,Leibenluft,Kenneth Towbin;Lauren K. White;Ellen Leibenluft;Nathan A. Fox;Daniel S. Pine;Jennifer C. Britton;Rany Abend;Yair Bar-Haim;Andrea L. Gold;Erin Berman;Melissa A. Brotman;Stefanie Sequeira,2017-08-01,38,American Journal of Psychiatry,775-784,10.1176/appi.ajp.2017.16070847,28407726,85026764241,2-s2.0-85026764241,Article,,https://api.elsevier.com/content/abstract/scopus_id/85026764241,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85026764241&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85026764241&origin=inward +Biological factors in bipolar disorder in childhood and adolescence,Leibenluft,Melissa A. Brotman;Daniel P. Dickstein;Banafsheh Sharif-Askary;Ellen Leibenluft,2016-01-01,0,"Bipolar Disorders: Basic Mechanisms and Therapeutic Implications, Third Edition",219-233,10.1017/CBO9781107477278.018,,85047712315,2-s2.0-85047712315,Chapter,,https://api.elsevier.com/content/abstract/scopus_id/85047712315,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85047712315&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85047712315&origin=inward +Biological factors in bipolar disorder in childhood and adolescence,Leibenluft,Melissa A. Brotman;Daniel P. Dickstein;Ellen Leibenluft;Brendan A. Rich,2007-01-01,0,"Bipolar Disorders: Basic Mechanisms and Therapeutic Implications, Second Edition",343-360,,,85056981138,2-s2.0-85056981138,Chapter,,https://api.elsevier.com/content/abstract/scopus_id/85056981138,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85056981138&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85056981138&origin=inward +Flying almost blind,Leibenluft,Ellen Leibenluft,2006-01-01,5,American Journal of Psychiatry,1129-1131,10.1176/ajp.2006.163.7.1129,16816212,85047698462,2-s2.0-85047698462,Editorial,,https://api.elsevier.com/content/abstract/scopus_id/85047698462,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85047698462&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85047698462&origin=inward +"Effects of oral, smoked, and vaporized cannabis on endocrine pathways related to appetite and metabolism: a randomized, double-blind, placebo-controlled, human laboratory study",Leggio,Osama A. Abulseoud;Marilyn A. Huestis;Lorenzo Leggio;Matthew N. Newmeyer;Gray R. McDiarmid;Mehdi Farokhnia;Vikas Munjal,2020-12-01,2,Translational Psychiatry,,10.1038/s41398-020-0756-3,32075958,85079821422,2-s2.0-85079821422,Article,NIDA,https://api.elsevier.com/content/abstract/scopus_id/85079821422,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85079821422&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85079821422&origin=inward +Labeled oxytocin administered via the intranasal route reaches the brain in rhesus macaques,Leggio,K. A. Grant;T. A. Shnitko;A. J. Winchell;A. V. Kaucher;S. W. Blue;M. R. Lee;D. W. Erikson;L. Leggio,2020-12-01,3,Nature Communications,,10.1038/s41467-020-15942-1,32494001,85085969650,2-s2.0-85085969650,Article,OD,https://api.elsevier.com/content/abstract/scopus_id/85085969650,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85085969650&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85085969650&origin=inward +Leveraging genetic data to investigate molecular targets and drug repurposing candidates for treating alcohol use disorder and hepatotoxicity,Leggio,Mikela Murphy;Lorenzo Leggio;Joshua C. Gray,2020-09-01,0,Drug and Alcohol Dependence,,10.1016/j.drugalcdep.2020.108155,,85087516310,2-s2.0-85087516310,Article,NIDA,https://api.elsevier.com/content/abstract/scopus_id/85087516310,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85087516310&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85087516310&origin=inward +"Effects of exogenous ghrelin administration and ghrelin receptor blockade, in combination with alcohol, on peripheral inflammatory markers in heavy-drinking individuals: Results from two human laboratory studies",Leggio,Brittney D. Browning;Jeanelle Portelli;Jillian T. Battista;Kelly M. Abshire;Fatemeh Akhlaghi;Lorenzo Leggio;Gray R. McDiarmid;Mary R. Lee;Sara L. Deschaine;Mehdi Farokhnia;Vikas Munjal,2020-08-01,1,Brain Research,,10.1016/j.brainres.2020.146851,32339499,85084411414,2-s2.0-85084411414,Article,NIAAA,https://api.elsevier.com/content/abstract/scopus_id/85084411414,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85084411414&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85084411414&origin=inward +Endocrine effects of the novel ghrelin receptor inverse agonist PF-5190457: Results from a placebo-controlled human laboratory alcohol co-administration study in heavy drinkers,Leggio,Anitha Saravanakumar;Enoch Cobbina;Jillian T. Battista;Fatemeh Akhlaghi;Lorenzo Leggio;Mary R. Lee;Mehdi Farokhnia;Xiaobai Li;Lisa A. Farinelli,2020-06-15,1,Neuropharmacology,,10.1016/j.neuropharm.2019.107788,31557492,85075385185,2-s2.0-85075385185,Article,NIAAA,https://api.elsevier.com/content/abstract/scopus_id/85075385185,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85075385185&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85075385185&origin=inward +Parsing out the role of dopamine D4 receptor gene (DRD4) on alcohol-related phenotypes: A meta-analysis and systematic review,Leggio,Lorenzo Leggio;Allison M. Daurio;Sara L. Deschaine;Amirhossein Modabbernia,2020-05-01,3,Addiction Biology,,10.1111/adb.12770,31149768,85066498956,2-s2.0-85066498956,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85066498956,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85066498956&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85066498956&origin=inward +Peptide-Liganded G Protein-Coupled Receptors as Neurotherapeutics,Leggio,Ki Ann Goosens;Lorenzo Leggio;Limei Zhang;Kenneth A. Jacobson;Lee E. Eiden,2020-04-10,1,ACS Pharmacology and Translational Science,190-202,10.1021/acsptsci.0c00017,,85088846897,2-s2.0-85088846897,Article,,https://api.elsevier.com/content/abstract/scopus_id/85088846897,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85088846897&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85088846897&origin=inward +"A role for the CD38 rs3796863 polymorphism in alcohol and monetary reward: evidence from CD38 knockout mice and alcohol self-administration, [11C]-raclopride binding, and functional MRI in humans",Leggio,Melanie L. Schwandt;Reza Momenan;Jung H. Shin;Vijay A. Ramchandani;Jia Yan;Ryan Bogdan;Lorenzo Leggio;Erica N. Grodin;Sara Deschaine;Ahmad R. Hariri;Mary R. Lee;Veronica A. Alvarez;Allison M. Daurio;Bethany L. Stangl;Nadia S. Corral-Frias,2020-03-03,0,American Journal of Drug and Alcohol Abuse,167-179,10.1080/00952990.2019.1638928,31365285,85070241383,2-s2.0-85070241383,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85070241383,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85070241383&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85070241383&origin=inward +"From 'The Red Journal', for the retirement of editor-in-chief philippe de witte: A fond and grateful farewell",Leggio,Jonathan Chick;Lorenzo Leggio,2020-02-07,0,Alcohol and Alcoholism,1-2,10.1093/alcalc/agaa008,31994695,85079105014,2-s2.0-85079105014,Editorial,,https://api.elsevier.com/content/abstract/scopus_id/85079105014,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85079105014&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85079105014&origin=inward +The novel ghrelin receptor inverse agonist PF-5190457 administered with alcohol: preclinical safety experiments and a phase 1b human laboratory study,Leggio,Alexandra A. Dias;Sofia Bouhlal;Mary R. Lee;Markus Heilig;Enoch Cobbina;Mwlod Ghareeb;Lorenzo Leggio;Fatemeh Akhlaghi;Mehdi Farokhnia;April N. Le;Melanie L. Schwandt;Jenica D. Tapocik;Lisa A. Farinelli,2020-02-01,28,Molecular Psychiatry,461-475,10.1038/s41380-018-0064-y,29728704,85046419703,2-s2.0-85046419703,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85046419703,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85046419703&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85046419703&origin=inward +Understanding plasma treatment effect on human acyl-ghrelin concentrations,Leggio,L. Leggio;S. L. Deschaine,2020-01-01,0,European Review for Medical and Pharmacological Sciences,1585-1589,10.26355/eurrev_202002_20216,32096210,85081919763,2-s2.0-85081919763,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85081919763,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85081919763&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85081919763&origin=inward +Medication development for alcohol use disorder: a focus on clinical studies,Leggio,Megan L. Ryan;Raye Z. Litten;Joanne Fertig;Lorenzo Leggio;Daniel E. Falk,2020-01-01,4,Handbook of Experimental Pharmacology,443-462,10.1007/164_2019_295,31628604,85085232546,2-s2.0-85085232546,Chapter,NIDA,https://api.elsevier.com/content/abstract/scopus_id/85085232546,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85085232546&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85085232546&origin=inward +Five Priority Areas for Improving Medications Development for Alcohol Use Disorder and Promoting Their Routine Use in Clinical Practice,Leggio,Megan L. Ryan;Raye Z. Litten;Joanne Fertig;Lorenzo Leggio;Daniel E. Falk,2020-01-01,0,Alcoholism: Clinical and Experimental Research,23-35,10.1111/acer.14233,31803968,85076291159,2-s2.0-85076291159,Note,,https://api.elsevier.com/content/abstract/scopus_id/85076291159,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85076291159&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85076291159&origin=inward +"Brief Report: Relationship Between Cotinine Levels and Peripheral Endogenous Concentrations of Oxytocin, β-Endorphin, and Orexin in Individuals With Both Alcohol and Nicotine Use Disorders",Leggio,Carolina L. Haass-Koffler;William H. Zywiak;Jonathan Kurtis;Lorenzo Leggio;Robert M. Swift;Mary R. Lee;Zoe E. Brown;Roberta Perciballi,2020-01-01,0,American Journal on Addictions,,10.1111/ajad.13064,,85085711386,2-s2.0-85085711386,Article,NIDA,https://api.elsevier.com/content/abstract/scopus_id/85085711386,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85085711386&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85085711386&origin=inward +The future of translational research on alcohol use disorder,Leggio,Lara A. Ray;George F. Koob;Barbara J. Mason;Markus Heilig;Lorenzo Leggio;Howard Becker;Erica N. Grodin;Andrea C. King;Stephanie O'Malley;James MacKillop;James David Jentsch;Anita J. Bechtholt;Sarah W. Feldstein Ewing,2020-01-01,0,Addiction Biology,,10.1111/adb.12903,32286721,85083391641,2-s2.0-85083391641,Review,,https://api.elsevier.com/content/abstract/scopus_id/85083391641,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85083391641&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85083391641&origin=inward +Differential correlation of serum BDNF and microRNA content in rats with rapid or late onset of heavy alcohol use,Leggio,Dorit Ron;David Darevesky;Khanhky Phamluong;Jeffrey J. Moffat;Melanie Welman;Ellanor L. Whiteley;Anthony L. Berger;Sophie Laguesse;Lorenzo Leggio;Marie Lordkipanidzé;Samuel A. Sakhai;Yann Ehinger;Mehdi Farokhnia,2020-01-01,0,Addiction Biology,,10.1111/adb.12890,,85080949191,2-s2.0-85080949191,Article,,https://api.elsevier.com/content/abstract/scopus_id/85080949191,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85080949191&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85080949191&origin=inward +Ghrelin Receptor Influence on Cocaine Reward is Not Directly Dependent on Peripheral Acyl-Ghrelin,Leggio,Kim D. Janda;Leandro F. Vendruscolo;Ritika Gautam;Cody J. Wenthur;Lorenzo Leggio;Bin Zhou,2019-12-01,4,Scientific Reports,,10.1038/s41598-019-38549-z,30755699,85061478203,2-s2.0-85061478203,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85061478203,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85061478203&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85061478203&origin=inward +Development and validation of an assay for a novel ghrelin receptor inverse agonist PF-5190457 and its major hydroxy metabolite (PF-6870961) by LC-MS/MS in human plasma,Leggio,Rohitash Jamwal;Lorenzo Leggio;Sravani Adusumalli;Fatemeh Akhlaghi,2019-11-01,0,Journal of Chromatography B: Analytical Technologies in the Biomedical and Life Sciences,,10.1016/j.jchromb.2019.121820,31670107,85073834820,2-s2.0-85073834820,Article,NCATS,https://api.elsevier.com/content/abstract/scopus_id/85073834820,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85073834820&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85073834820&origin=inward +Peripheral proinflammatory markers are upregulated in abstinent alcohol-dependent patients but are not affected by cognitive bias modification: Preliminary findings,Leggio,Felix Bermpohl;Jeanelle Portelli;Lorenzo Leggio;Gray R. McDiarmid;Sara L. Deschaine;Corinde E. Wiers;Xiaobai Li,2019-11-01,1,Drug and Alcohol Dependence,,10.1016/j.drugalcdep.2019.107553,31541874,85072242565,2-s2.0-85072242565,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85072242565,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85072242565&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85072242565&origin=inward +"Intravenous administration of ghrelin increases serum cortisol and aldosterone concentrations in heavy-drinking alcohol-dependent individuals: Results from a double-blind, placebo-controlled human laboratory study",Leggio,Victoria M. Long;George A. Kenna;Carolina L. Haass-Koffler;Lorenzo Leggio;Robert M. Swift;Molly Magill;Mehdi Farokhnia,2019-11-01,2,Neuropharmacology,,10.1016/j.neuropharm.2019.107711,31310775,85070730233,2-s2.0-85070730233,Article,NIAAA,https://api.elsevier.com/content/abstract/scopus_id/85070730233,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85070730233&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85070730233&origin=inward +Sex differences in the response to opioids for pain relief: A systematic review and meta-analysis,Leggio,Flavia Franconi;Claudia Pisanu;Lorenzo Leggio;Giovanni Maria Pisanu;Sergio Mameli;Ilaria Campesi;Roberta Agabio;Gian Luigi Gessa,2019-10-01,3,Pharmacological Research,,10.1016/j.phrs.2019.104447,31499196,85072616546,2-s2.0-85072616546,Review,UNICA,https://api.elsevier.com/content/abstract/scopus_id/85072616546,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85072616546&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85072616546&origin=inward +Advances in the science and treatment of alcohol use disorder,Leggio,K. Witkiewitz;R. Z. Litten;L. Leggio,2019-09-25,12,Science Advances,,10.1126/sciadv.aax4043,31579824,85072649033,2-s2.0-85072649033,Article,NIAAA,https://api.elsevier.com/content/abstract/scopus_id/85072649033,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85072649033&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85072649033&origin=inward +HIV and alcohol use disorder: we cannot ignore the elephant in the room,Leggio,Roberta Agabio;Lorenzo Leggio,2019-08-01,0,The Lancet HIV,e485-e486,10.1016/S2352-3018(19)30074-8,31109914,85069879409,2-s2.0-85069879409,Note,UNICA,https://api.elsevier.com/content/abstract/scopus_id/85069879409,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85069879409&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85069879409&origin=inward +Prospects for pharmacotherapies to treat alcohol use disorder: An update on recent human studies,Leggio,Brittney D. Browning;Lorenzo Leggio;Mehdi Farokhnia,2019-07-01,3,Current Opinion in Psychiatry,255-265,10.1097/YCO.0000000000000519,31107292,85067089326,2-s2.0-85067089326,Review,NIH,https://api.elsevier.com/content/abstract/scopus_id/85067089326,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85067089326&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85067089326&origin=inward +Using Machine Learning to Classify Individuals With Alcohol Use Disorder Based on Treatment Seeking Status,Leggio,Vignesh Sankar;Jennifer J. Barb;Lorenzo Leggio;William G. Kennedy;Mary R. Lee;Philip G. McQueen;A. Hammer,2019-07-01,4,EClinicalMedicine,70-78,10.1016/j.eclinm.2019.05.008,,85068016515,2-s2.0-85068016515,Article,CIT,https://api.elsevier.com/content/abstract/scopus_id/85068016515,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85068016515&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85068016515&origin=inward +Ghrelin: From a gut hormone to a potential therapeutic target for alcohol use disorder,Leggio,Monica L. Faulkner;Lorenzo Leggio;Daria Piacentino;Mary R. Lee;Mehdi Farokhnia,2019-05-15,13,Physiology and Behavior,49-57,10.1016/j.physbeh.2019.02.008,30738971,85061440490,2-s2.0-85061440490,Review,NIH,https://api.elsevier.com/content/abstract/scopus_id/85061440490,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85061440490&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85061440490&origin=inward +Development and initial characterization of a novel ghrelin receptor CRISPR/Cas9 knockout wistar rat model,Leggio,C. T. Richie;M. Heilig;B. K. Harvey;B. J. Tunstall;E. L. Gardner;G. F. Koob;Y. J. Zhang;L. F. Vendruscolo;J. Pickel;L. J. Zallar;Z. B. You;L. Leggio,2019-02-01,8,International Journal of Obesity,344-354,10.1038/s41366-018-0013-5,29453460,85042100624,2-s2.0-85042100624,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85042100624,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85042100624&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85042100624&origin=inward +Reduced plasma ghrelin concentrations are associated with decreased brain reactivity to food cues after laparoscopic sleeve gastrectomy,Leggio,Yongzhan Nie;Yuanyuan Wang;Gene Jack Wang;Qingchuan Zhao;Qingchao Jin;Jizheng Zhao;Nora D. Volkow;Li Liu;Antao Chen;Kaichun Wu;Guangbin Cui;Corinde E. Wiers;Huaning Wang;Gang Ji;Guanya Li;Yu Han;Lorenzo Leggio;Karen M. von Deneen;Lei Liu;Wenchao Zhang;Yang Hu;Yi Zhang;Dardo Tomasi,2019-02-01,11,Psychoneuroendocrinology,229-236,10.1016/j.psyneuen.2018.10.022,30388597,85055643545,2-s2.0-85055643545,Article,NIAAA,https://api.elsevier.com/content/abstract/scopus_id/85055643545,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85055643545&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85055643545&origin=inward +Role of molybdenum-containing enzymes in the biotransformation of the novel ghrelin receptor inverse agonist PF-5190457: A reverse translational bed-to-bench approachs,Leggio,Tim F. Ryder;Lorenzo Leggio;Sravani Adusumalli;Fatemeh Akhlaghi;Rohitash Jamwal;R. Scott Obach,2019-01-01,2,Drug Metabolism and Disposition,874-882,10.1124/dmd.119.087015,31182423,85069949048,2-s2.0-85069949048,Article,NIDA,https://api.elsevier.com/content/abstract/scopus_id/85069949048,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85069949048&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85069949048&origin=inward +Effect of systemically administered oxytocin on dose response for methylphenidate self-administration and mesolimbic dopamine levels,Leggio,Gianluigi Tanda;Lorenzo Leggio;Claudio Zanettini;Mary R. Lee;Matthew C.H. Rohn;Mark A. Coggiano,2019-01-01,4,Annals of the New York Academy of Sciences,173-184,10.1111/nyas.14101,31074517,85065731547,2-s2.0-85065731547,Chapter,NIH,https://api.elsevier.com/content/abstract/scopus_id/85065731547,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85065731547&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85065731547&origin=inward +Ghrelin receptor deletion reduces binge-like alcohol drinking in rats,Leggio,George F. Koob;Leandro F. Vendruscolo;Silvia Beurmann;Brendan J. Tunstall;Lorenzo Leggio;Lia J. Zallar;Claire M. Fraser,2019-01-01,10,Journal of Neuroendocrinology,,10.1111/jne.12663,30456835,85060141743,2-s2.0-85060141743,Article,UMD,https://api.elsevier.com/content/abstract/scopus_id/85060141743,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85060141743&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85060141743&origin=inward +Oxytocin blocks enhanced motivation for alcohol in alcohol dependence and blocks alcohol effects on GABAergic transmission in the central amygdala,Leggio,Maurice Manning;George F. Koob;Leandro F. Vendruscolo;Sophia Khom;Mary R. Lee;Marisa Roberto;Brendan J. Tunstall;Lorenzo Leggio;Lia J. Zallar;Chelsea P. Ho;Christopher S. Oleata;Janaina C.M. Vendruscolo;Sam A. McConnell;Dean Kirson,2019-01-01,14,PLoS Biology,,10.1371/journal.pbio.2006421,30990816,85064980691,2-s2.0-85064980691,Article,,https://api.elsevier.com/content/abstract/scopus_id/85064980691,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85064980691&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85064980691&origin=inward +The use of baclofen as a treatment for alcohol use disorder: A clinical practice perspective,Leggio,Roberta Agabio;Esther M. Beraha;Paul S. Haber;Adam Pastor;Henri Jean Aubin;Giovanni Addolorato;Philippe Jaury;Mathis Heydtmann;Patrick De La Selle;James C. Garbutt;Fanny Pélissier;Lorenzo Leggio;Benjamin Rolland;Renaud De Beaurepaire;Nicolas Franchitto;Fabio Caputo;Jonathan D. Chick;Louise M. Paterson;Wim Van Den Brink;Anne R. Lingford-Hughes;Amanda Stafford;Julia M.A. Sinclair;Kirsten C. Morley;Lynn Owens;Andrew Thompson;Christian A. Müller,2019-01-01,5,Frontiers in Psychiatry,,10.3389/fpsyt.2018.00708,,85065486849,2-s2.0-85065486849,Review,ERAB,https://api.elsevier.com/content/abstract/scopus_id/85065486849,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85065486849&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85065486849&origin=inward +"Gabapentin Enacarbil Extended-Release for Alcohol Use Disorder: A Randomized, Double-Blind, Placebo-Controlled, Multisite Trial Assessing Efficacy and Safety",Leggio,Megan L. Ryan;Barbara J. Mason;Charles Scott;Gantt Galloway;Kyle Kampman;D. Jeffrey Newport;Lara Ray;Eric C. Strain;Joanne B. Fertig;Janet Ransom;Steven Caras;Mary F. Brunette;Alan I. Green;Lorenzo Leggio;Steven Shoptaw;Ihsan M. Salloum;John Mendelson;Richard N. Rosenthal;Kelly E. Dunn;Daniel E. Falk;Raye Z. Litten;Heather Burns;Erik W. Gunderson;Eric G. Devine;Nassima Ait-Daoud Tiouririne;E.  Sherwood Brown;Ricardo Cruz;Catherine Brooks,2019-01-01,19,Alcoholism: Clinical and Experimental Research,158-169,10.1111/acer.13917,30403402,85058096040,2-s2.0-85058096040,Article,NIAAA,https://api.elsevier.com/content/abstract/scopus_id/85058096040,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85058096040&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85058096040&origin=inward +Baclofen and alcohol in France – Authors' reply,Leggio,Roberta Agabio;Lorenzo Leggio;Julia MA Sinclair,2018-12-01,1,The Lancet Psychiatry,962-963,10.1016/S2215-0366(18)30433-4,30413393,85057204771,2-s2.0-85057204771,Letter,,https://api.elsevier.com/content/abstract/scopus_id/85057204771,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85057204771&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85057204771&origin=inward +Baclofen for the treatment of alcohol use disorder: the Cagliari Statement,Leggio,Wim van den Brink;Roberta Agabio;Esther M. Beraha;Paul S. Haber;Julia MA Sinclair;Adam Pastor;Henri Jean Aubin;Patrick de La Selle;Giovanni Addolorato;Philippe Jaury;Mathis Heydtmann;Fanny Pélissier;James C. Garbutt;Renaud de Beaurepaire;Lorenzo Leggio;Benjamin Rolland;Nicolas Franchitto;Fabio Caputo;Jonathan D. Chick;Louise M. Paterson;Anne R. Lingford-Hughes;Amanda Stafford;Kirsten C. Morley;Lynn Owens;Andrew Thompson;Christian A. Müller,2018-12-01,27,The Lancet Psychiatry,957-960,10.1016/S2215-0366(18)30303-1,30413394,85057203306,2-s2.0-85057203306,Note,ERAB,https://api.elsevier.com/content/abstract/scopus_id/85057203306,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85057203306&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85057203306&origin=inward +Extracellular esterase activity as an indicator of endoplasmic reticulum calcium depletion,Leggio,Christopher T. Richie;Susanne Bäck;Emily J. Heathward;Lorenzo Leggio;Kenner C. Rice;Kathleen A. Trychta;Agnieszka Sulima;Brandon K. Harvey;Mehdi Farokhnia,2018-11-17,1,Biomarkers,756-765,10.1080/1354750X.2018.1490968,30095301,85051937559,2-s2.0-85051937559,Article,NIDA,https://api.elsevier.com/content/abstract/scopus_id/85051937559,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85051937559&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85051937559&origin=inward +"Alcohol and Alcoholism: Then, Now and the Future of 'The Red Journal'",Leggio,Jonathan Chick;Philippe De Witte;Lorenzo Leggio,2018-11-01,1,Alcohol and Alcoholism,637-638,10.1093/alcalc/agy075,30339185,85055620784,2-s2.0-85055620784,Editorial,,https://api.elsevier.com/content/abstract/scopus_id/85055620784,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85055620784&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85055620784&origin=inward +Oxytocin receptor mRNA expression in dorsolateral prefrontal cortex in major psychiatric disorders: A human post-mortem study,Leggio,M. Farokhnia;M. R. Lee;B. K. Lipska;M. B. Sheskier;S. Marenco;L. Leggio;N. Feng,2018-10-01,4,Psychoneuroendocrinology,143-147,10.1016/j.psyneuen.2018.05.039,29940428,85048994676,2-s2.0-85048994676,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85048994676,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85048994676&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85048994676&origin=inward +Exogenous ghrelin administration increases alcohol self-administration and modulates brain functional activity in heavy-drinking alcohol-dependent individuals,Leggio,V. A. Ramchandani;M. Farokhnia;R. Momenan;M. R. Lee;L. A. Farinelli;E. N. Oot;B. L. Stangl;E. N. Grodin;M. L. Schwandt;L. Leggio;A. N. Blackburn,2018-10-01,18,Molecular Psychiatry,2029-2038,10.1038/mp.2017.226,29133954,85057128603,2-s2.0-85057128603,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85057128603,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85057128603&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85057128603&origin=inward +Reliability of a Novel Video-Based Method for Assessing Age-Related Changes in Upper Limb Kinematics,Leggio,John W. Kakareka;Daniel A. Pupo;Stephanie Studenski;Lorenzo Leggio;Tom Pohida;Jonathan Krynitsky;Brandon K. Harvey,2018-09-24,0,Frontiers in Aging Neuroscience,,10.3389/fnagi.2018.00281,,85055315802,2-s2.0-85055315802,Article,NIDA,https://api.elsevier.com/content/abstract/scopus_id/85055315802,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85055315802&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85055315802&origin=inward +Pharmacological manipulation of the ghrelin system and alcohol hangover symptoms in heavy drinking individuals: Is there a link?,Leggio,Vijay A. Ramchandani;Lorenzo Leggio;Fatemeh Akhlaghi;Mary R. Lee;Mehdi Farokhnia;Lisa A. Farinelli,2018-09-01,4,Pharmacology Biochemistry and Behavior,39-49,10.1016/j.pbb.2018.07.004,30030128,85050308820,2-s2.0-85050308820,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85050308820,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85050308820&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85050308820&origin=inward +Repetitive transcranial magnetic stimulation of the left dorsolateral prefrontal cortex may improve symptoms of anhedonia in individuals with cocaine use disorder: A pilot study,Leggio,Lorenzo Leggio;Mauro Pettorruso;Giovanni Martinotti;Luigi Janiri;Luigi Gallimberti;Massimo Di Giannantonio;Antonello Bonci;Primavera Alessandra Spagnolo,2018-09-01,18,Brain Stimulation,1195-1197,10.1016/j.brs.2018.06.001,29885861,85051974844,2-s2.0-85051974844,Letter,,https://api.elsevier.com/content/abstract/scopus_id/85051974844,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85051974844&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85051974844&origin=inward +N-acetyl cysteine in the treatment of alcohol use disorder in patients with liver disease: Rationale for further research,Leggio,Kate E. Chitty;Paul S. Haber;Greg Sutherland;Kirsten C. Morley;Lorenzo Leggio;Andrew Baillie;Devanshi Seth;Kathleen Brady;Sudie E. Back;Wim Van Den Brink,2018-08-03,4,Expert Opinion on Investigational Drugs,667-675,10.1080/13543784.2018.1501471,30019966,85051637447,2-s2.0-85051637447,Review,NHMRC,https://api.elsevier.com/content/abstract/scopus_id/85051637447,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85051637447&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85051637447&origin=inward +"Stress, Motivation, and the Gut–Brain Axis: A Focus on the Ghrelin System and Alcohol Use Disorder",Leggio,Laurel S. Morris;Lorenzo Leggio;Valerie Voon,2018-08-01,18,Alcoholism: Clinical and Experimental Research,1378-1389,10.1111/acer.13781,,85051078634,2-s2.0-85051078634,Review,NIH,https://api.elsevier.com/content/abstract/scopus_id/85051078634,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85051078634&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85051078634&origin=inward +Neuroendocrine response to GABA-B receptor agonism in alcohol-dependent individuals: Results from a combined outpatient and human laboratory experiment,Leggio,Sofia Bouhlal;Erick Singley;Mikela B. Sheskier;Zhen Zhao;Lorenzo Leggio;April N. Le;Mary R. Lee;Mehdi Farokhnia;Timmy Ton,2018-07-15,2,Neuropharmacology,230-239,10.1016/j.neuropharm.2018.04.011,29665351,85047097639,2-s2.0-85047097639,Article,NARSAD,https://api.elsevier.com/content/abstract/scopus_id/85047097639,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85047097639&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85047097639&origin=inward +Noradrenergic targets for the treatment of alcohol use disorder,Leggio,Robert M. Swift;Lorenzo Leggio;Carolina L. Haass-Koffler,2018-06-01,11,Psychopharmacology,1625-1634,10.1007/s00213-018-4843-6,29460163,85042176066,2-s2.0-85042176066,Review,NIDA,https://api.elsevier.com/content/abstract/scopus_id/85042176066,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85042176066&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85042176066&origin=inward +"A relationship between the aldosterone-mineralocorticoid receptor pathway and alcohol drinking: Preliminary translational findings across rats, monkeys and humans",Leggio,P. Darakjian;K. A. Grant;M. Heilig;E. Barbier;G. Addolorato;N. A.R. Walter;G. F. Koob;R. Hitzemann;M. R. Lee;L. F. Vendruscolo;V. A. Jimenez;C. L. Haass-Koffler;L. Leggio;E. G. Aoun;A. Ferrulli,2018-06-01,8,Molecular Psychiatry,1466-1473,10.1038/mp.2017.97,28461696,85049388858,2-s2.0-85049388858,Article,ERAB,https://api.elsevier.com/content/abstract/scopus_id/85049388858,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85049388858&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85049388858&origin=inward +Corrigendum: Comparing and Combining Topiramate and Aripiprazole on Alcohol-Related Outcomes in a Human Laboratory Study (Alcohol and Alcoholism (2015) 50:4 (458-462) DOI: 10.1093/alcalc/agx108),Leggio,Kimberly Goodyear;George A. Kenna;Carolina L. Haass-Koffler;William H. Zywiak;Lorenzo Leggio;Robert M. Swift,2018-05-01,0,Alcohol and Alcoholism,500,10.1093/alcalc/agy030,29718153,85054527893,2-s2.0-85054527893,Erratum,,https://api.elsevier.com/content/abstract/scopus_id/85054527893,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85054527893&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85054527893&origin=inward +Comparing and combining topiramate and aripiprazole on alcohol-related outcomes in a human laboratory study,Leggio,Kimberly Goodyear;George A. Kenna;Carolina L. Haass-Koffler;William H. Zywiak;Lorenzo Leggio;Robert M. Swift,2018-05-01,7,Alcohol and Alcoholism,268-276,10.1093/alcalc/agx108,29281033,85047112911,2-s2.0-85047112911,Article,NIDA,https://api.elsevier.com/content/abstract/scopus_id/85047112911,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85047112911&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85047112911&origin=inward +Treatment of alcohol dependence. Alcohol and homelessness: Social point of view,Leggio,Serena Mancini;Esterina Pascale;Claudia Rotondo;Roberto Fagetti;Giovanni Laviola;Roberta Ledda;Mauro Cibin;Rosanna Mancinelli;Martino Mistretta;Fabiola Pisciotta;Angelo Giuliani;Luigi Janiri;Icro Maremmani;Marcello Maviglia;Massimo Marconi;Giovanni Alessandrini;Alessandro Valchera;Simona Gencarelli;Angela Di Prinzio;Valentina Carito;Antonio Greco;Giovanni Addolorato;Giampiero Ferraguti;Federica Cereatti;Mario Vitali;Franco Montesano;Fabio Lugoboni;Anna Loffreda;Daniela Fiorentino;Valeria Zavan;Claudio Leonardi;Giovanna Coriale;Ida Capriglione;Lorenzo Leggio;Francesca De Rosa;Vincenzo Aliotta;Michele Federico;Marco Fiore;Gemma Battagliese;Egidio Battaglia;Giuseppe La Torre;Rosaria Ciccarelli;Emanuela Falconi;Marisa Patrizia Messina;Maria Luisa Attilia;Fernando Cesarini;Guido Intaschi;Simone Macrì;Onofrio Casciani;Michele Parisi;Giampaolo Spinnato;Angela Lagrutta;Giuseppe Barletta;Paola Ciolli;Fabio Attilia;Silvia Iannuzzi;Mauro Ceccanti;Roberta Perciballi;Pietro Casella,2018-05-01,1,Rivista di Psichiatria,107-112,10.1708/2925.29411,29912211,85049745642,2-s2.0-85049745642,Review,,https://api.elsevier.com/content/abstract/scopus_id/85049745642,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85049745642&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85049745642&origin=inward +Pharmacological treatment for dual diagnosis: A literature update and a proposal of intervention,Leggio,Esterina Pascale;Claudia Rotondo;Roberto Fagetti;Giovanni Laviola;Mauro Cibin;Roberta Ledda;Rosanna Mancinelli;Martino Mistretta;Fabiola Pisciotta;Angelo Giuliani;Luigi Janiri;Icro Maremmani;Marcello Maviglia;Massimo Marconi;Giovanni Alessandrini;Alessandro Valchera;Angela Di Prinzio;Simona Gencarelli;Valentina Carito;Antonio Greco;Giovanni Addolorato;Giampiero Ferraguti;Mario Vitali;Franco Montesano;Fabio Lugoboni;Anna Loffreda;Daniela Fiorentino;Valeria Zavan;Claudio Leonardi;Giovanna Coriale;Ida Capriglione;Francesca Sorbo;Lorenzo Leggio;Vincenzo Aliotta;Michele Federico;Marco Fiore;Marina Romeo;Egidio Battaglia;Gemma Battagliese;Giuseppe La Torre;Rosaria Ciccarelli;Emanuela Falconi;Marisa Patrizia Messina;Maria Luisa Attilia;Fernando Cesarini;Guido Intaschi;Simone Macrì;Onofrio Casciani;Michele Parisi;Giampaolo Spinnato;Angela Lagrutta;Giuseppe Barletta;Paola Ciolli;Fabio Attilia;Silvia Iannuzzi;Mauro Ceccanti;Roberta Perciballi;Pietro Casella,2018-05-01,9,Rivista di Psichiatria,160-169,10.1708/2925.29419,29912219,85049742620,2-s2.0-85049742620,Review,,https://api.elsevier.com/content/abstract/scopus_id/85049742620,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85049742620&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85049742620&origin=inward +Diagnosis of alcohol use disorder from a psychological point of view,Leggio,Domenica Galli;Esterina Pascale;Claudia Rotondo;Roberto Fagetti;Benilde Mauri;Giovanni Laviola;Mauro Cibin;Roberta Ledda;Rosanna Mancinelli;Fabiola Pisciotta;Angelo Giuliani;Luigi Janiri;Icro Maremmani;Marcello Maviglia;Massimo Marconi;Giovanni Alessandrini;Alessandro Valchera;Angela Di Prinzio;Simona Gencarelli;Valentina Carito;Antonio Greco;Giampiero Ferraguti;Federica Cereatti;Mario Vitali;Franco Montesano;Fabio Lugoboni;Anna Loffreda;Daniela Fiorentino;Valeria Zavan;Claudio Leonardi;Giovanna Coriale;Ida Capriglione;Raffaella Porrari;Lorenzo Leggio;Vincenzo Aliotta;Michele Federico;Marco Fiore;Gemma Battagliese;Egidio Battaglia;Giuseppe La Torre;Rosaria Ciccarelli;Emanuela Falconi;Marisa Patrizia Messina;Maria Luisa Attilia;Fernando Cesarini;Guido Intaschi;Simone Macrì;Onofrio Casciani;Michele Parisi;Giampaolo Spinnato;Angela Lagrutta;Giuseppe Barletta;Paola Ciolli;Fabio Attilia;Silvia Iannuzzi;Mauro Ceccanti;Roberta Perciballi;Pietro Casella,2018-05-01,6,Rivista di Psichiatria,128-140,10.1708/2925.29415,29912215,85049742066,2-s2.0-85049742066,Review,,https://api.elsevier.com/content/abstract/scopus_id/85049742066,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85049742066&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85049742066&origin=inward +Alcohol withdrawal syndrome: Diagnostic and therapeutic methods,Leggio,Esterina Pascale;Claudia Rotondo;Roberto Fagetti;Giovanni Laviola;Mauro Cibin;Roberta Ledda;Rosanna Mancinelli;Martino Mistretta;Fabiola Pisciotta;Angelo Giuliani;Luigi Janiri;Icro Maremmani;Marcello Maviglia;Massimo Marconi;Giovanni Alessandrini;Alessandro Valchera;Angela Di Prinzio;Simona Gencarelli;Valentina Carito;Antonio Greco;Giovanni Addolorato;Giampiero Ferraguti;Mario Vitali;Federica Cereatti;Franco Montesano;Fabio Lugoboni;Anna Loffreda;Daniela Fiorentino;Valeria Zavan;Claudio Leonardi;Giovanna Coriale;Ida Capriglione;Lorenzo Leggio;Vincenzo Aliotta;Michele Federico;Marco Fiore;Gemma Battagliese;Egidio Battaglia;Giuseppe La Torre;Rosaria Ciccarelli;Emanuela Falconi;Marisa Patrizia Messina;Maria Luisa Attilia;Fernando Cesarini;Guido Intaschi;Simone Macrì;Onofrio Casciani;Michele Parisi;Giampaolo Spinnato;Angela Lagrutta;Giuseppe Barletta;Paola Ciolli;Fabio Attilia;Silvia Iannuzzi;Mauro Ceccanti;Roberta Perciballi;Pietro Casella,2018-05-01,9,Rivista di Psichiatria,118-122,10.1708/2925.29413,29912213,85049741611,2-s2.0-85049741611,Review,,https://api.elsevier.com/content/abstract/scopus_id/85049741611,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85049741611&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85049741611&origin=inward +Pharmacological treatment of alcohol use disorder. Scientific evidence,Leggio,Esterina Pascale;Claudia Rotondo;Roberto Fagetti;Giovanni Laviola;Mauro Cibin;Roberta Ledda;Rosanna Mancinelli;Martino Mistretta;Fabiola Pisciotta;Angelo Giuliani;Luigi Janiri;Icro Maremmani;Marcello Maviglia;Massimo Marconi;Giovanni Alessandrini;Alessandro Valchera;Angela Di Prinzio;Simona Gencarelli;Valentina Carito;Antonio Greco;Giovanni Addolorato;Giampiero Ferraguti;Mario Vitali;Franco Montesano;Fabio Lugoboni;Anna Loffreda;Daniela Fiorentino;Valeria Zavan;Claudio Leonardi;Giovanna Coriale;Ida Capriglione;Lorenzo Leggio;Vincenzo Aliotta;Michele Federico;Marco Fiore;Gemma Battagliese;Egidio Battaglia;Giuseppe La Torre;Rosaria Ciccarelli;Emanuela Falconi;Maria Concetta Marcella Scamporrino;Marisa Patrizia Messina;Maria Luisa Attilia;Fernando Cesarini;Guido Intaschi;Simone Macrì;Onofrio Casciani;Michele Parisi;Giampaolo Spinnato;Angela Lagrutta;Giuseppe Barletta;Paola Ciolli;Fabio Attilia;Silvia Iannuzzi;Mauro Ceccanti;Roberta Perciballi;Pietro Casella,2018-05-01,8,Rivista di Psichiatria,123-127,10.1708/2925.29414,29912214,85049734170,2-s2.0-85049734170,Review,,https://api.elsevier.com/content/abstract/scopus_id/85049734170,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85049734170&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85049734170&origin=inward +Treatment of alcohol dependence. Alcohol and the young: Social point of view,Leggio,Claudia Rotondo;Roberto Fagetti;Miriana Nanut;Mauro Cibin;Giovanni Laviola;Roberta Ledda;Rosanna Mancinelli;Martino Mistretta;Fabiola Pisciotta;Angelo Giuliani;Luigi Janiri;Patrizia Messina Marisa;Icro Maremmani;Marcello Maviglia;Massimo Marconi;Giovanni Alessandrini;Alessandro Valchera;Angela Di Prinzio;Simona Gencarelli;Valentina Carito;Antonio Greco;Giovanni Addolorato;Giampiero Ferraguti;Mario Vitali;Franco Montesano;Fabio Lugoboni;Anna Loffreda;Daniela Fiorentino;Giuseppe Lombardo;Valeria Zavan;Claudio Leonardi;Giovanna Coriale;Ida Capriglione;Lorenzo Leggio;Francesca De Rosa;Vincenzo Aliotta;Michele Federico;Marco Fiore;Gemma Battagliese;Egidio Battaglia;Giuseppe La Torre;Rosaria Ciccarelli;Emanuela Falconi;Marisa Patrizia Messina;Maria Luisa Attilia;Fernando Cesarini;Guido Intaschi;Simone Macrì;Onofrio Casciani;Michele Parisi;Giampaolo Spinnato;Angela Lagrutta;Giuseppe Barletta;Paola Ciolli;Fabio Attilia;Silvia Iannuzzi;Mauro Ceccanti;Roberta Perciballi;Pietro Casella,2018-05-01,6,Rivista di Psichiatria,113-117,10.1708/2925.29412,29912212,85049732312,2-s2.0-85049732312,Review,,https://api.elsevier.com/content/abstract/scopus_id/85049732312,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85049732312&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85049732312&origin=inward +Treatment of alcohol use disorder from a psychological point of view,Leggio,Esterina Pascale;Claudia Rotondo;Roberto Fagetti;Simona Solombrino;Giovanni Laviola;Mauro Cibin;Roberta Ledda;Rosanna Mancinelli;Martino Mistretta;Fabiola Pisciotta;Angelo Giuliani;Luigi Janiri;Icro Maremmani;Bruna Scalese;Marcello Maviglia;Massimo Marconi;Giovanni Alessandrini;Alessandro Valchera;Angela Di Prinzio;Simona Gencarelli;Valentina Carito;Antonio Greco;Alessia Musetti;Giovanni Addolorato;Giampiero Ferraguti;Mario Vitali;Franco Montesano;Fabio Lugoboni;Anna Loffreda;Daniela Fiorentino;Valeria Zavan;Claudio Leonardi;Giovanna Coriale;Ida Capriglione;Lorenzo Leggio;Francesca De Rosa;Vincenzo Aliotta;Michele Federico;Marco Fiore;Gemma Battagliese;Egidio Battaglia;Giuseppe La Torre;Rosaria Ciccarelli;Emanuela Falconi;Marisa Patrizia Messina;Maria Luisa Attilia;Fernando Cesarini;Guido Intaschi;Simone Macrì;Onofrio Casciani;Michele Parisi;Giampaolo Spinnato;Angela Lagrutta;Giuseppe Barletta;Paola Ciolli;Fabio Attilia;Silvia Iannuzzi;Mauro Ceccanti;Roberta Perciballi;Pietro Casella,2018-05-01,5,Rivista di Psichiatria,141-148,10.1708/2925.29416,29912216,85049758406,2-s2.0-85049758406,Review,,https://api.elsevier.com/content/abstract/scopus_id/85049758406,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85049758406&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85049758406&origin=inward +Dual diagnosis: An intriguing and actual nosographic issue too long neglected,Leggio,Domenica Galli;Claudia Rotondo;Esterina Pascale;Roberto Fagetti;Simona Solombrino;Giovanni Laviola;Mauro Cibin;Roberta Ledda;Rosanna Mancinelli;Martino Mistretta;Fabiola Pisciotta;Angelo Giuliani;Luigi Janiri;Icro Maremmani;Bruna Scalese;Marcello Maviglia;Massimo Marconi;Giovanni Alessandrini;Alessandro Valchera;Angela Di Prinzio;Simona Gencarelli;Valentina Carito;Antonio Greco;Giovanni Addolorato;Giampiero Ferraguti;Mario Vitali;Franco Montesano;Fabio Lugoboni;Anna Loffreda;Daniela Fiorentino;Valeria Zavan;Claudio Leonardi;Giovanna Coriale;Ida Capriglione;Raffaella Porrari;Francesca Sorbo;Lorenzo Leggio;Vincenzo Aliotta;Michele Federico;Marco Fiore;Gemma Battagliese;Egidio Battaglia;Giuseppe La Torre;Rosaria Ciccarelli;Emanuela Falconi;Marisa Patrizia Messina;Maria Luisa Attilia;Fernando Cesarini;Guido Intaschi;Simone Macrì;Onofrio Casciani;Michele Parisi;Giampaolo Spinnato;Angela Lagrutta;Giuseppe Barletta;Paola Ciolli;Fabio Attilia;Silvia Iannuzzi;Mauro Ceccanti;Roberta Perciballi;Pietro Casella,2018-05-01,11,Rivista di Psichiatria,154-159,10.1708/2925.29418,29912218,85049747656,2-s2.0-85049747656,Review,,https://api.elsevier.com/content/abstract/scopus_id/85049747656,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85049747656&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85049747656&origin=inward +Drafting a dual diagnosis program: A tailored intervention for patients with complex clinical needs,Leggio,Domenica Galli;Claudia Rotondo;Esterina Pascale;Roberto Fagetti;Giovanni Laviola;Roberta Ledda;Mauro Cibin;Rosanna Mancinelli;Martino Mistretta;Fabiola Pisciotta;Angelo Giuliani;Luigi Janiri;Icro Maremmani;Marcello Maviglia;Massimo Marconi;Giovanni Alessandrini;Alessandro Valchera;Simona Gencarelli;Angela Di Prinzio;Valentina Carito;Antonio Greco;Giovanni Addolorato;Giampiero Ferraguti;Mario Vitali;Franco Montesano;Fabio Lugoboni;Anna Loffreda;Daniela Fiorentino;Valeria Zavan;Claudio Leonardi;Giovanna Coriale;Ida Capriglione;Francesca Sorbo;Lorenzo Leggio;Vincenzo Aliotta;Michele Federico;Marco Fiore;Gemma Battagliese;Egidio Battaglia;Giuseppe La Torre;Rosaria Ciccarelli;Emanuela Falconi;Marisa Patrizia Messina;Maria Luisa Attilia;Fernando Cesarini;Guido Intaschi;Simone Macrì;Onofrio Casciani;Michele Parisi;Giampaolo Spinnato;Angela Lagrutta;Giuseppe Barletta;Paola Ciolli;Fabio Attilia;Silvia Iannuzzi;Mauro Ceccanti;Roberta Perciballi;Pietro Casella,2018-05-01,10,Rivista di Psichiatria,149-153,10.1708/2925.29417,29912217,85049729021,2-s2.0-85049729021,Review,,https://api.elsevier.com/content/abstract/scopus_id/85049729021,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85049729021&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85049729021&origin=inward +Administration of the metabotropic glutamate receptor subtype 5 allosteric modulator GET 73 with alcohol: A translational study in rats and humans,Leggio,Kimberly Goodyear;Harrison H. Tran;Antonella Loche;Victoria M. Long;Carolina L. Haass-Koffler;Carla Lobina;Lorenzo Leggio;Robert M. Swift;Roberto Cacciaglia;Giancarlo Colombo,2018-02-01,2,Journal of Psychopharmacology,163-173,10.1177/0269881117746904,29361897,85042265511,2-s2.0-85042265511,Article,,https://api.elsevier.com/content/abstract/scopus_id/85042265511,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85042265511&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85042265511&origin=inward +Baclofen in the treatment of patients with alcohol use disorder and other mental health disorders,Leggio,Roberta Agabio;Lorenzo Leggio,2018-01-01,8,Frontiers in Psychiatry,,10.3389/fpsyt.2018.00464,,85059249584,2-s2.0-85059249584,Article,UNICA,https://api.elsevier.com/content/abstract/scopus_id/85059249584,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85059249584&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85059249584&origin=inward +Advances in Pharmacotherapy Development: Human Clinical Studies,Leggio,Megan L. Ryan;Raye Z. Litten;Joanne Fertig;Lorenzo Leggio;Daniel E. Falk,2018-01-01,13,Handbook of Experimental Pharmacology,579-613,10.1007/164_2017_79,29294197,85060126116,2-s2.0-85060126116,Chapter,,https://api.elsevier.com/content/abstract/scopus_id/85060126116,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85060126116&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85060126116&origin=inward +Identifying and characterizing subpopulations of heavy alcohol drinkers via a sucrose preference test: A sweet road to a better phenotypic characterization?,Leggio,Sofia Bouhlal;Lorenzo Leggio;Fatemeh Akhlaghi;Mary R. Lee;Mehdi Farokhnia,2018-01-01,0,Alcohol and Alcoholism,560-569,10.1093/alcalc/agy048,30016385,85055153322,2-s2.0-85055153322,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85055153322,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85055153322&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85055153322&origin=inward +A deeper insight into how GABA-B receptor agonism via baclofen may affect alcohol seeking and consumption: lessons learned from a human laboratory investigation,Leggio,Armin Sadighi;Lorenzo Leggio;Fatemeh Akhlaghi;Mary R. Lee;Sara L. Deschaine;Mehdi Farokhnia;Lisa A. Farinelli,2018-01-01,7,Molecular Psychiatry,,10.1038/s41380-018-0287-y,,85056083766,2-s2.0-85056083766,,,https://api.elsevier.com/content/abstract/scopus_id/85056083766,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85056083766&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85056083766&origin=inward +Impulsive Personality Traits Mediate the Relationship Between Adult Attention-Deficit/Hyperactivity Symptoms and Alcohol Dependence Severity,Leggio,Sofia Bouhlal;Mary R. Lee;Sean A. Aston;Lorenzo Leggio;Melanie L. Schwandt;Allison M. Daurio;Mohammad O. Bukhari;Mehdi Farokhnia,2018-01-01,5,Alcoholism: Clinical and Experimental Research,173-183,10.1111/acer.13538,29063627,85035225191,2-s2.0-85035225191,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85035225191,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85035225191&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85035225191&origin=inward +Dataset for Phase I randomized clinical trial for safety and tolerability of GET 73 in single and repeated ascending doses including preliminary pharmacokinetic parameters,Leggio,Kimberly Goodyear;Harrison H. Tran;Antonella Loche;Victoria M. Long;Carolina L. Haass-Koffler;Lorenzo Leggio;Robert M. Swift;Roberto Cacciaglia,2017-12-01,3,Data in Brief,407-413,10.1016/j.dib.2017.09.018,,85030776831,2-s2.0-85030776831,,,https://api.elsevier.com/content/abstract/scopus_id/85030776831,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85030776831&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85030776831&origin=inward +Alcohol drinking patterns in young people: A survey-based study,Leggio,Fabiola Sarchione;Umberto Volpe;Rita Santacroce;Maria G. Nanni;Eduardo Cinosi;Matteo Lupi;Federica Pinna;Giovanni Martinotti;Lorenzo Leggio;Pierluigi Diotaiuti;Aristide Saggino;Luigi Janiri;Valeria Verrastro;Tiziano Acciavatti;Irene Petruccelli;Massimo Di Giannantonio;Silvia Ferrari;Leonardo Carlucci,2017-12-01,18,Journal of Health Psychology,1889-1896,10.1177/1359105316667795,27624615,85037051339,2-s2.0-85037051339,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85037051339,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85037051339&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85037051339&origin=inward +"A Phase I randomized clinical trial testing the safety, tolerability and preliminary pharmacokinetics of the mGluR5 negative allosteric modulator GET 73 following single and repeated doses in healthy volunteers",Leggio,Kimberly Goodyear;Harrison H. Tran;Antonella Loche;Victoria M. Long;Carolina L. Haass-Koffler;Lorenzo Leggio;Robert M. Swift;Roberto Cacciaglia,2017-11-15,8,European Journal of Pharmaceutical Sciences,78-85,10.1016/j.ejps.2017.07.031,28778464,85026778904,2-s2.0-85026778904,Article,,https://api.elsevier.com/content/abstract/scopus_id/85026778904,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85026778904&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85026778904&origin=inward +Effect of alcohol use disorder on oxytocin peptide and receptor mRNA expression in human brain: A post-mortem case-control study,Leggio,Hui Sun;Mary R. Lee;Vignesh Sankar;Lorenzo Leggio;Petra Suchankova;Melanie L. Schwandt,2017-11-01,8,Psychoneuroendocrinology,14-19,10.1016/j.psyneuen.2017.07.481,28787642,85026730880,2-s2.0-85026730880,Article,NeuRA,https://api.elsevier.com/content/abstract/scopus_id/85026730880,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85026730880&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85026730880&origin=inward +"Acute effects of intravenous cocaine administration on serum concentrations of ghrelin, amylin, glucagon-like peptide-1, insulin, leptin and peptide YY and relationships with cardiorespiratory and subjective responses",Leggio,Sofia Bouhlal;Erick Singley;Marilyn A. Huestis;Mikela B. Sheskier;Lorenzo Leggio;Kayla N. Ellefsen;Sandrine Pirard;David A. Gorelick,2017-11-01,13,Drug and Alcohol Dependence,68-75,10.1016/j.drugalcdep.2017.07.033,28881319,85033467913,2-s2.0-85033467913,Article,NIDA,https://api.elsevier.com/content/abstract/scopus_id/85033467913,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85033467913&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85033467913&origin=inward +Relationship between craving and plasma leptin concentrations in patients with cocaine addiction,Leggio,Chiara Montemitro;Flaminia Alimonti;Lorenzo Leggio;Giovanni Martinotti;Marco Di Nicola;Sara Andreoli;Gaia Baroni;Federico Tonioni;Luigi Janiri;Massimo di Giannantonio,2017-11-01,7,Psychoneuroendocrinology,35-41,10.1016/j.psyneuen.2017.08.004,28806585,85029816759,2-s2.0-85029816759,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85029816759,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85029816759&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85029816759&origin=inward +Rehabilitating the addicted brain with transcranial magnetic stimulation,Leggio,Aapo Nummenmaa;Tommi Raij;Lorenzo Leggio;Miriam Melis;Antonello Bonci;Marco Diana,2017-10-18,59,Nature Reviews Neuroscience,685-693,10.1038/nrn.2017.113,28951609,85031761771,2-s2.0-85031761771,Review,NIH,https://api.elsevier.com/content/abstract/scopus_id/85031761771,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85031761771&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85031761771&origin=inward +Commentary on Schmitz et al. (2017): Advancing medication development for addiction—behavioral and neuroimaging outcomes as indirect biomarkers of target engagement,Leggio,Reza Momenan;Lorenzo Leggio;Mehdi Farokhnia,2017-10-01,1,Addiction,1869-1870,10.1111/add.13959,28891145,85029112955,2-s2.0-85029112955,Note,NIH,https://api.elsevier.com/content/abstract/scopus_id/85029112955,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85029112955&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85029112955&origin=inward +Oxytocin's Effects in Cocaine and Other Psychostimulant Addictions,Leggio,M. C.H. Rohn;M. R. Lee;L. Leggio;G. Tanda,2017-05-16,0,The Neuroscience of Cocaine: Mechanisms and Treatment,227-234,10.1016/B978-0-12-803750-8.00023-3,,85054888286,2-s2.0-85054888286,Chapter,,https://api.elsevier.com/content/abstract/scopus_id/85054888286,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85054888286&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85054888286&origin=inward +Development and validation of an UPLC-MS/MS assay for quantitative analysis of the ghrelin receptor inverse agonist PF-5190457 in human or rat plasma and rat brain,Leggio,Ayman El-Kattan;Mwlod Ghareeb;Lorenzo Leggio;Fatemeh Akhlaghi,2017-01-01,2,Analytical and Bioanalytical Chemistry,5603-5613,10.1007/s00216-015-8730-2,25943263,85039722377,2-s2.0-85039722377,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85039722377,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85039722377&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85039722377&origin=inward +The Role of the Ghrelin System in Drug Addiction,Leggio,Leandro F. Vendruscolo;Brendan J. Tunstall;Lorenzo Leggio;Lia J. Zallar;Mehdi Farokhnia,2017-01-01,28,International Review of Neurobiology,89-119,10.1016/bs.irn.2017.08.002,29056157,85029475282,2-s2.0-85029475282,Chapter,NIDA,https://api.elsevier.com/content/abstract/scopus_id/85029475282,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85029475282&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85029475282&origin=inward +Moderate alcohol administration: Oxidative stress and nutritional status,Leggio,Giovanni Addolorato;Lorenzo Leggio;Anna Ferrulli,2013-01-01,0,"Alcohol, Nutrition, and Health Consequences",83-88,10.1007/978-1-62703-047-2_6,,85027279968,2-s2.0-85027279968,Chapter,,https://api.elsevier.com/content/abstract/scopus_id/85027279968,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85027279968&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85027279968&origin=inward +Low-frequency parietal repetitive transcranial magnetic stimulation reduces fear and anxiety,Lisanby,Madeline Goodwin;Thomas Radman;Christian Grillon;Bruce Luber;Sarah H. Lisanby;Monique Ernst;Emily M. Beydler;Zhi De Deng;Nicholas L. Balderston,2020-12-01,0,Translational Psychiatry,,10.1038/s41398-020-0751-8,32066739,85079574936,2-s2.0-85079574936,Article,NARSAD,https://api.elsevier.com/content/abstract/scopus_id/85079574936,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85079574936&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85079574936&origin=inward +Electroconvulsive therapy (ECT) for moderate-severity major depression among the elderly: Data from the pride study,Lisanby,Mustafa M. Husain;Martina Mueller;Charles H. Kellner;Maria S. Speed;Shawn M. McClintock;Søren D. Østergaard;William V. McCall;Sarah H. Lisanby;Georgios Petrides,2020-09-01,0,Journal of Affective Disorders,1134-1141,10.1016/j.jad.2020.05.039,32663942,85086472236,2-s2.0-85086472236,Article,,https://api.elsevier.com/content/abstract/scopus_id/85086472236,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85086472236&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85086472236&origin=inward +Older adults benefit from more widespread brain network integration during working memory,Lisanby,L. Beynel;D. Lakhlani;C. A. Crowell;S. W. Davis;R. Cabeza;B. Luber;S. H. Lisanby;S. A. Hilbig;A. V. Peterchev;L. Deng;H. Palmer;L. G. Appelbaum;A. Brito,2020-09-01,0,NeuroImage,,10.1016/j.neuroimage.2020.116959,32442638,85085727044,2-s2.0-85085727044,Article,NIA,https://api.elsevier.com/content/abstract/scopus_id/85085727044,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85085727044&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85085727044&origin=inward +Not So Fast: Recent Successes and Failures in Treating Depression,Lisanby,Ioline D. Henter;Carlos A. Zarate;Sarah H. Lisanby;Bashkim Kadriu;Zhi De Deng;Christoph Kraus,2020-05-26,0,The Journal of clinical psychiatry,,10.4088/JCP.19ac13138,32459405,85085538648,2-s2.0-85085538648,Article,,https://api.elsevier.com/content/abstract/scopus_id/85085538648,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85085538648&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85085538648&origin=inward +Utilizing transcranial direct current stimulation to enhance laparoscopic technical skills training: A randomized controlled trial,Lisanby,Morgan L. Cox;Hannah Palmer;John Migaly;Lawrence G. Appelbaum;Sarah H. Lisanby;Amanda Watts;Lysianne Beynel;Zhi De Deng;Jonathan R. Young,2020-05-01,1,Brain Stimulation,863-872,10.1016/j.brs.2020.03.009,32289719,85082180983,2-s2.0-85082180983,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85082180983,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85082180983&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85082180983&origin=inward +Site-specific effects of online rtms during a working memory task in healthy older adults,Lisanby,Connor Hile;Alexandra Brito;Wesley Lim;Hannah Palmer;Courtney A. Crowell;Moritz Dannhauer;Susan A. Hilbig;Angel V. Peterchev;Bruce Luber;Roberto Cabeza;Lawrence G. Appelbaum;Sarah H. Lisanby;Simon W. Davis;Lysianne Beynel,2020-05-01,0,Brain Sciences,,10.3390/brainsci10050255,,85084128746,2-s2.0-85084128746,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85084128746,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85084128746&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85084128746&origin=inward +A randomized proof-of-mechanism trial applying the ‘fast-fail’ approach to evaluating κ-opioid antagonism as a treatment for anhedonia,Lisanby,James W. Murrough;Allen Song;Wayne Goodman;Andrew D. Krystal;Sanjay J. Mathew;Dan Iosifescu;Richard D. Weiner;Alexis E. Whitton;Richard S.E. Keefe;Gerard Sanacora;Diego A. Pizzagalli;Gretchen Hermes;Moria Smoski;William Z. Potter;Hongqiu Yang;Keming Gao;Joseph R. Calabrese;Sarah H. Lisanby;Steven T. Szabo;John Nurnberger,2020-05-01,5,Nature Medicine,760-768,10.1038/s41591-020-0806-7,32231295,85083050857,2-s2.0-85083050857,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85083050857,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85083050857&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85083050857&origin=inward +Efficacy and acceptability of transcranial direct current stimulation (tDCS) for major depressive disorder: An individual patient data meta-analysis,Lisanby,Emmanuel Haffen;Felipe Fregni;Angelo Alonzo;Zafiris Daskalakis;Frank Padberg;Isabela M. Benseñor;Bernardo Sampaio-Jr;Colleen Loo;Andre R. Brunoni;Sarah H. Lisanby;Donel Martin;Djamila Bennabi;Ulrich Palm;Lais B. Razza;Adriano H. Moffa;Daniel M. Blumberger,2020-04-20,4,Progress in Neuro-Psychopharmacology and Biological Psychiatry,,10.1016/j.pnpbp.2019.109836,31837388,85076550622,2-s2.0-85076550622,Review,CAMH Foundation,https://api.elsevier.com/content/abstract/scopus_id/85076550622,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85076550622&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85076550622&origin=inward +Theta Burst for Cognitive Remediation in Schizophrenia: A Case Series and Feasibility Study,Lisanby,Sara Emory;Nicholas A. Mischel;Richard S.E. Keefe;Bruce Luber;Sarah H. Lisanby;Steven T. Szabo;Gopalkumar Rakesh,2020-03-01,0,Journal of ECT,72-74,10.1097/YCT.0000000000000625,31652174,85080846336,2-s2.0-85080846336,Letter,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85080846336,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85080846336&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85080846336&origin=inward +Mechanistic link between right prefrontal cortical activity and anxious arousal revealed using transcranial magnetic stimulation in healthy subjects,Lisanby,Thomas Radman;Camille Roberts;Christian Grillon;Bruce Luber;Tiffany Lago;Sarah H. Lisanby;Monique Ernst;Emily M. Beydler;Zhi De Deng;Nicholas L. Balderston,2020-03-01,1,Neuropsychopharmacology,694-702,10.1038/s41386-019-0583-5,31791039,85075989222,2-s2.0-85075989222,Article,NARSAD,https://api.elsevier.com/content/abstract/scopus_id/85075989222,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85075989222&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85075989222&origin=inward +Neurocognitive effects of transcranial direct current stimulation (tDCS) in unipolar and bipolar depression: Findings from an international randomized controlled trial,Lisanby,Angelo Alonzo;John P. O'Reardon;Mustafa M. Husain;Scott T. Aaronson;Cynthia Shannon Weickert;William M. McDonald;Colleen K. Loo;Donel M. Martin;Sarah H. Lisanby;Shawn M. McClintock;Adith Mohan,2020-03-01,3,Depression and Anxiety,261-272,10.1002/da.22988,31944487,85077999712,2-s2.0-85077999712,Article,SMRI,https://api.elsevier.com/content/abstract/scopus_id/85077999712,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85077999712&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85077999712&origin=inward +Neurocognitive Effects of Combined Electroconvulsive Therapy (ECT) and Venlafaxine in Geriatric Depression: Phase 1 of the PRIDE Study,Lisanby,Kristen G. Tobias;Peter B. Rosenquist;Mimi C. Briggs;Zhi De Deng;Robert C. Young;Shirlene Sampson;Vassilios Latoussakis;Abeba A. Teklehaimanot;Samuel H. Bailine;Styliani Kaliora;Elisabeth Bernhardt;Rebecca G. Knapp;Joan Prudic;Georgios Petrides;Matthew V. Rudorfer;Richard D. Weiner;C. Munro Cullum;Martina Mueller;Mary Dooley;Charles H. Kellner;Shawn M. McClintock;William V. McCall;Robert M. Greenberg;Emma T. Geduldig;Mustafa M. Husain;George Alexopoulos;Sarah H. Lisanby;Lauren S. Liebman,2020-03-01,4,American Journal of Geriatric Psychiatry,304-316,10.1016/j.jagp.2019.10.003,31706638,85075526174,2-s2.0-85075526174,Article,SMRI,https://api.elsevier.com/content/abstract/scopus_id/85075526174,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85075526174&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85075526174&origin=inward +Don't Blame the Tools: Clinical Neuroscience and the Quest to Link Brain With Behavior,Lisanby,Sarah H. Lisanby,2020-02-15,0,Biological Psychiatry,312-313,10.1016/j.biopsych.2019.12.002,32040418,85077462421,2-s2.0-85077462421,Note,,https://api.elsevier.com/content/abstract/scopus_id/85077462421,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85077462421&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85077462421&origin=inward +Using Transcranial Magnetic Stimulation to Test a Network Model of Perceptual Decision Making in the Human Brain,Lisanby,Tristan Jones;Austin Harrison;Bruce Luber;Paul Sajda;David C. Jangraw;Sarah H. Lisanby;Lysianne Beynel;Greg Appelbaum;Susan Hilbig,2020-01-24,1,Frontiers in Human Neuroscience,,10.3389/fnhum.2020.00004,,85079130678,2-s2.0-85079130678,Article,DARPA,https://api.elsevier.com/content/abstract/scopus_id/85079130678,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85079130678&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85079130678&origin=inward +Device-based modulation of neurocircuits as a therapeutic for psychiatric disorders,Lisanby,William C. Altekruse;Jeena Thomas;Bruce Luber;Shannon L. Exley;Sarah H. Lisanby;Melbaliz Velez Afanador;Shriya Awasthi;Zhi De Deng;Nicholas L. Balderston;Michelle M. Noh,2020-01-06,0,Annual Review of Pharmacology and Toxicology,591-614,10.1146/annurev-pharmtox-010919-023253,31914895,85077700345,2-s2.0-85077700345,Review,BBRF,https://api.elsevier.com/content/abstract/scopus_id/85077700345,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85077700345&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85077700345&origin=inward +Neurocognitive Subgroups in Major Depressive Disorder,Lisanby,Angelo Alonzo;Colleen K. Loo;Donel M. Martin;David Wollny-Huttarsch;Sarah H. Lisanby;Shawn M. McClintock;Stevan Nikolin,2020-01-01,0,Neuropsychology,,10.1037/neu0000626,32324004,85084672068,2-s2.0-85084672068,Article,,https://api.elsevier.com/content/abstract/scopus_id/85084672068,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85084672068&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85084672068&origin=inward +Effects of online repetitive transcranial magnetic stimulation (rTMS) on cognitive processing: A meta-analysis and recommendations for future studies,Lisanby,Wesley Lim;Courtney A. Crowell;Susan A. Hilbig;Bruce Luber;Lawrence G. Appelbaum;Nicolas A. Chrapliwy;Roberto Cabeza;Sarah H. Lisanby;Simon W. Davis;Lysianne Beynel;Zhi De Deng;Duy Nguyen,2019-12-01,4,Neuroscience and Biobehavioral Reviews,47-58,10.1016/j.neubiorev.2019.08.018,31473301,85071609690,2-s2.0-85071609690,Review,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85071609690,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85071609690&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85071609690&origin=inward +"Ethical Challenges of Risk, Informed Consent, and Posttrial Responsibilities in Human Research with Neural Devices: A Review",Lisanby,Helen Mayberg;Paul Ford;Hannah Maslen;Eran Klein;Franklin G. Miller;Sameer A. Sheth;Saskia Hendriks;Christine Grady;Anna Wexler;Sara Goering;Henry T. Greely;Scott Y.H. Kim;Michael L. Kelly;Winston Chiong;Joseph J. Fins;Khara M. Ramos;Sarah H. Lisanby;Karen Rommelfanger;Katrina Hutchison,2019-12-01,3,JAMA Neurology,1506-1514,10.1001/jamaneurol.2019.3523,31621797,85073711837,2-s2.0-85073711837,Conference Paper,,https://api.elsevier.com/content/abstract/scopus_id/85073711837,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85073711837&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85073711837&origin=inward +Accuracy of robotic coil positioning during transcranial magnetic stimulation,Lisanby,I. Cassie Kozyrkov;Angel V. Peterchev;Bruce Luber;Sarah H. Lisanby;Warren M. Grill;David L.K. Murphy;Stefan M. Goetz,2019-09-17,0,Journal of Neural Engineering,,10.1088/1741-2552/ab2953,31189147,85072508751,2-s2.0-85072508751,Article,,https://api.elsevier.com/content/abstract/scopus_id/85072508751,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85072508751&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85072508751&origin=inward +Low- and High-Frequency Repetitive Transcranial Magnetic Stimulation Effects on Resting-State Functional Connectivity between the Postcentral Gyrus and the Insula,Lisanby,Merideth A. Addicott;Lawrence Gregory Appelbaum;Bruce Luber;Sarah H. Lisanby;Hannah Palmer;Duy Nguyen,2019-05-01,0,Brain Connectivity,322-328,10.1089/brain.2018.0652,30773890,85065641788,2-s2.0-85065641788,Article,OD,https://api.elsevier.com/content/abstract/scopus_id/85065641788,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85065641788&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85065641788&origin=inward +"Better, Faster, Safer: Exploring Biomarkers of Response to Transform Electroconvulsive Therapy",Lisanby,Sarah H. Lisanby;David P. McMullen,2019-03-15,1,Biological Psychiatry,439-440,10.1016/j.biopsych.2019.01.009,30777169,85061176768,2-s2.0-85061176768,Note,,https://api.elsevier.com/content/abstract/scopus_id/85061176768,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85061176768&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85061176768&origin=inward +The dynamic Duo: Combining noninvasive brain stimulation with cognitive interventions,Lisanby,Aakash V. Sathappan;Bruce M. Luber;Sarah H. Lisanby,2019-03-08,21,Progress in Neuro-Psychopharmacology and Biological Psychiatry,347-360,10.1016/j.pnpbp.2018.10.006,30312634,85055266828,2-s2.0-85055266828,Review,DDCF,https://api.elsevier.com/content/abstract/scopus_id/85055266828,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85055266828&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85055266828&origin=inward +"George Niederehe, Ph.D.: Tribute and Thanks",Lisanby,Joshua Gordon;Jovier D. Evans;Sarah Hollingsworth Lisanby,2019-03-01,0,American Journal of Geriatric Psychiatry,333-334,10.1016/j.jagp.2018.12.019,30737007,85061831290,2-s2.0-85061831290,Editorial,,https://api.elsevier.com/content/abstract/scopus_id/85061831290,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85061831290&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85061831290&origin=inward +Online repetitive transcranial magnetic stimulation during working memory in younger and older adults: A randomized within-subject comparison,Lisanby,C. A. Crowell;L. Beynel;S. W. Davis;R. Cabeza;B. Luber;S. H. Lisanby;S. A. Hilbig;W. Lim;H. Palmer;A. V. Peterchev;D. Nguyen;L. G. Appelbaum;A. Brito,2019-03-01,8,PLoS ONE,,10.1371/journal.pone.0213707,30901345,85063315028,2-s2.0-85063315028,Article,NIA,https://api.elsevier.com/content/abstract/scopus_id/85063315028,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85063315028&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85063315028&origin=inward +The first implementation of the NIMH FAST-FAIL approach to psychiatric drug development,Lisanby,Steven Szabo;Anantha Shekhar;Allen Song;Richard Keefe;James Murrough;Gerard Sanacora;Wayne Goodman;William Potter;Diego A. Pizzagalli;Sarah H. Lisanby;Sanjay J. Mathew;Joseph Calabrese;John Nurnberger;Dan Iosifescu;Moria Smoski;Andrew D. Krystal;Richard Weiner;Andrew Goddard,2018-12-28,14,Nature Reviews Drug Discovery,82-84,10.1038/nrd.2018.222,30591715,85059241203,2-s2.0-85059241203,Letter,NIH,https://api.elsevier.com/content/abstract/scopus_id/85059241203,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85059241203&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85059241203&origin=inward +On the Concurrent Use of Self-System Therapy and Functional Magnetic Resonance Imaging-Guided Transcranial Magnetic Stimulation as Treatment for Depression,Lisanby,Andrada D. Neacsiu;Timothy J. Strauman;Bruce M. Luber;Sarah H. Lisanby;Elisabeth Bernhardt;Simon W. Davis,2018-12-01,5,Journal of ECT,266-273,10.1097/YCT.0000000000000545,30308570,85055286002,2-s2.0-85055286002,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85055286002,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85055286002&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85055286002&origin=inward +Complementary topology of maintenance and manipulation brain networks in working memory,Lisanby,L. Beynel;D. Lakhlani;C. A. Crowell;S. W. Davis;B. M. Luber;R. Cabeza;S. H. Lisanby;S. A. Hilbig;W. Lim;L. Deng;A. V. Peterchev;D. Nguyen;L. G. Appelbaum,2018-12-01,3,Scientific Reports,,10.1038/s41598-018-35887-2,30546042,85058590339,2-s2.0-85058590339,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85058590339,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85058590339&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85058590339&origin=inward +Pre-treatment attentional processing speed and antidepressant response to transcranial direct current stimulation: Results from an international randomized controlled trial,Lisanby,Angelo Alonzo;Cynthia Shannon Weickert;Mustafa M. Husain;Scott T. Aaronson;William M. McDonald;Colleen K. Loo;Donel M. Martin;Sarah H. Lisanby;Shawn M. McClintock;Adith Mohan;Stevan Nikolin;John O'Reardon,2018-11-01,3,Brain Stimulation,1282-1290,10.1016/j.brs.2018.08.011,30172724,85052626140,2-s2.0-85052626140,Article,NARSAD,https://api.elsevier.com/content/abstract/scopus_id/85052626140,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85052626140&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85052626140&origin=inward +Excitatory TMS modulates memory representations,Lisanby,Bruce M. Luber;Wei Chun Wang;Roberto Cabeza;Sarah H. Lisanby;Simon W. Davis;Erik A. Wing;David L.K. Murphy,2018-10-02,2,Cognitive Neuroscience,151-166,10.1080/17588928.2018.1512482,30124357,85053275603,2-s2.0-85053275603,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85053275603,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85053275603&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85053275603&origin=inward +The state of the NIH brain initiative,Lisanby,Nina S. Hsu;Amy Adams;Michael Steinmetz;James Churchill;Gregory Farber;Khara Ramos;Sarah Lisanby;Andrea Beckel-Mitchener;Joshua Gordon;Walter Koroshetz;Michelle Freund;Jim Gnadt;Guoying Liu;Edmund Talley;Nicholas Langhals;Grace C.Y. Peng;Samantha White,2018-07-18,16,Journal of Neuroscience,6427-6438,10.1523/JNEUROSCI.3174-17.2018,29921715,85051090861,2-s2.0-85051090861,Article,IARPA,https://api.elsevier.com/content/abstract/scopus_id/85051090861,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85051090861&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85051090861&origin=inward +Differences in Seizure Expression between Magnetic Seizure Therapy and Electroconvulsive Shock,Lisanby,Bruce Luber;Yael M. Cycowicz;Sarah H. Lisanby;Stefan B. Rowny,2018-06-01,3,Journal of ECT,95-103,10.1097/YCT.0000000000000470,29240021,85048010331,2-s2.0-85048010331,Article,NARSAD,https://api.elsevier.com/content/abstract/scopus_id/85048010331,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85048010331&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85048010331&origin=inward +Effects of a course of right unilateral ultrabrief pulse electroconvulsive therapy combined with venlafaxine on insomnia symptoms in elderly depressed patients,Lisanby,Laryssa McCloud;Mary Anne Riley;Mustafa M. Husain;Richard D. Weiner;Peter B. Rosenquist;Samuel H. Bailine;Martina Mueller;Robert C. Young;Sarah H. Lisanby;Mary Dooley;Shawn M. McClintock;Rebecca G. Knapp;Charles H. Kellner;W. Vaughn McCall;Joan Prudic;Georgios Petrides;Robert M. Greenberg;Matthew V. Rudorfer,2018-03-01,0,Journal of Clinical Psychiatry,78-84,10.4088/JCP.16m11089,28742292,85046897669,2-s2.0-85046897669,Article,,https://api.elsevier.com/content/abstract/scopus_id/85046897669,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85046897669&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85046897669&origin=inward +Effects of continuation electroconvulsive therapy on quality of life in elderly depressed patients: A randomized clinical trial,Lisanby,Laryssa McCloud;Nagy A. Youssef;Mustafa M. Husain;Richard D. Weiner;Peter B. Rosenquist;Samuel H. Bailine;Martina Mueller;Robert C. Young;Sarah H. Lisanby;Mary Dooley;Shawn M. McClintock;Rebecca G. Knapp;Charles H. Kellner;W. Vaughn McCall;Joan Prudic;Georgios Petrides;Robert M. Greenberg;Matthew V. Rudorfer,2018-02-01,7,Journal of Psychiatric Research,65-69,10.1016/j.jpsychires.2017.11.001,29195125,85035760752,2-s2.0-85035760752,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85035760752,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85035760752&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85035760752&origin=inward +Dr McClintock and colleagues reply,Lisanby,Mark S. George;Christopher Wall;Mustafa M. Husain;Shirlene Sampson;Sarah H. Lisanby;Shawn M. McClintock;Stephan F. Taylor;Linda L. Carpenter;Irving M. Reti;Marc Dubin,2018-01-01,1,Journal of Clinical Psychiatry,,10.4088/JCP.17lr11887a,29505184,85046876621,2-s2.0-85046876621,Letter,,https://api.elsevier.com/content/abstract/scopus_id/85046876621,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85046876621&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85046876621&origin=inward +Dr McClintock and colleagues reply,Lisanby,Mark S. George;Christopher Wall;Mustafa M. Husain;Shirlene Sampson;William M. McDonald;John O'Reardon;Sarah H. Lisanby;Shawn M. McClintock;Stephan F. Taylor;Brent G. Nelson;Linda L. Carpenter;Irving M. Reti;Oscar Morales;Marc Dubin;Andrew Krystal;Ian A. Cook,2018-01-01,0,Journal of Clinical Psychiatry,,10.4088/JCP.17lr11851a,29505182,85046839717,2-s2.0-85046839717,Letter,,https://api.elsevier.com/content/abstract/scopus_id/85046839717,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85046839717&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85046839717&origin=inward +Consensus recommendations for the clinical application of repetitive transcranial magnetic stimulation (rTMS) in the treatment of depression,Lisanby,Mark S. George;Christopher Wall;Mustafa M. Husain;Vassilios Latoussakis;William M. McDonald;John O'Reardon;Andrew D. Krystal;Sarah H. Lisanby;Shawn M. McClintock;Stephan F. Taylor;Shirlene M. Sampson;Linda L. Carpenter;Irving M. Reti;Brent G. Nelson;Oscar Morales;Marc Dubin;Ian A. Cook,2018-01-01,84,Journal of Clinical Psychiatry,35-48,10.4088/JCP.16cs10905,28541649,85041748960,2-s2.0-85041748960,Review,,https://api.elsevier.com/content/abstract/scopus_id/85041748960,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85041748960&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85041748960&origin=inward +International randomized-controlled trial of transcranial Direct Current Stimulation in depression,Lisanby,Whitney Davis;Angelo Alonzo;John P. O'Reardon;Mustafa M. Husain;Cynthia Shannon Weickert;Ben Colagiuri;William M. McDonald;Scott Aaronson;Angel V. Peterchev;Colleen K. Loo;Cyndi S. Weickert;Donel M. Martin;Sarah H. Lisanby;Shawn M. McClintock;Adith Mohan;Veronica Galvez;Andrew D. Krystal;Jennifer Sklar,2018-01-01,51,Brain Stimulation,125-133,10.1016/j.brs.2017.10.011,29111077,85032182162,2-s2.0-85032182162,Article,OHMR,https://api.elsevier.com/content/abstract/scopus_id/85032182162,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85032182162&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85032182162&origin=inward +Frequency-specific neuromodulation of local and distant connectivity in aging and episodic memory function,Lisanby,Bruce Luber;Roberto Cabeza;Sarah H. Lisanby;Simon W. Davis;David L.K. Murphy,2017-12-01,13,Human Brain Mapping,5987-6004,10.1002/hbm.23803,28885757,85029028458,2-s2.0-85029028458,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85029028458,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85029028458&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85029028458&origin=inward +"Subcallosal cingulate deep brain stimulation for treatment-resistant depression: a multisite, randomised, sham-controlled trial",Lisanby,Randall T. Espinoza;Julie G. Pilitsis;Barry R. Rittberg;De Lea Peichel;Konstantin V. Slavin;Anthony J. Rothschild;Raymond W. Lam;Andres M. Lozano;Ananda K. Pandurangi;Guy M. McKhann;Stephan F. Taylor;Parag G. Patil;Georgios Petrides;Charles DeBattista;Kathryn L. Holloway;Robert E. Gross;Shawn McClintock;Alon Y. Mogilner;Joseph S. Neimat;Paul E. Holtzheimer;Helen S. Mayberg;Keith Matthews;Joshua Berman;Mustafa M. Husain;Aviva Abosch;Sarah H. Lisanby;Jaimie M. Henderson;Christopher R. Honey;Louis A. Whitworth;Clement Hamani,2017-11-01,127,The Lancet Psychiatry,839-849,10.1016/S2215-0366(17)30371-1,28988904,85030636729,2-s2.0-85030636729,Article,DARPA,https://api.elsevier.com/content/abstract/scopus_id/85030636729,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85030636729&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85030636729&origin=inward +Electric field characteristics of low-field synchronized transcranial magnetic stimulation (sTMS),Lisanby,Zhi De Deng;Sarah H. Lisanby,2017-09-13,1,"Proceedings of the Annual International Conference of the IEEE Engineering in Medicine and Biology Society, EMBS",1445-1448,10.1109/EMBC.2017.8037106,29060150,85032212227,2-s2.0-85032212227,Conference Paper,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85032212227,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85032212227&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85032212227&origin=inward +Reprint of ‘‘Using neuroimaging to individualize TMS treatment for depression: Toward a new paradigm for imaging-guided intervention’’,Lisanby,Timothy J. Strauman;Lori Kwapil;Andrada Neacsiu;Bruce M. Luber;Sarah H. Lisanby;Elisabeth Bernhardt;Simon Davis,2017-05-01,1,NeuroImage,65-71,10.1016/j.neuroimage.2017.03.049,28476213,85060203505,2-s2.0-85060203505,Article,,https://api.elsevier.com/content/abstract/scopus_id/85060203505,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85060203505&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85060203505&origin=inward +Magnetic Stimulation for Depression: Subconvulsive and Convulsive Approaches,Lisanby,Andrada D. Neacsiu;Sarah Hollingsworth Lisanby,2016-03-05,0,Neuromodulation in Psychiatry,155-180,10.1002/9781118801086.ch9,,85042898645,2-s2.0-85042898645,Chapter,,https://api.elsevier.com/content/abstract/scopus_id/85042898645,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85042898645&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85042898645&origin=inward +Distinct neural mechanisms of social orienting and mentalizing revealed by independent measures of neural and eye movement typicality,Martin,Michal Ramot;Alex Martin;Gabrielle Elise Reimann;Catherine Walsh,2020-12-01,1,Communications Biology,,10.1038/s42003-020-0771-1,31996763,85078689481,2-s2.0-85078689481,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85078689481,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85078689481&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85078689481&origin=inward +Changes in human brain dynamics during behavioral priming and repetition suppression,Martin,Max Collard;Yujing Wang;Mackenzie C. Cervenka;Stephen J. Gotts;Anna Korzeniewska;Alex Martin;Matthew S. Fifer;Heather L. Benz;Griffin Milsap;Nathan E. Crone,2020-06-01,0,Progress in Neurobiology,,10.1016/j.pneurobio.2020.101788,32198060,85083014728,2-s2.0-85083014728,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85083014728,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85083014728&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85083014728&origin=inward +Layer-Specific Contributions to Imagined and Executed Hand Movements in Human Primary Motor Cortex,Martin,Laurentius Huber;Andrew S. Persichetti;Alex Martin;Jason A. Avery;Elisha P. Merriam,2020-05-04,1,Current Biology,1721-1725.e3,10.1016/j.cub.2020.02.046,32220318,85083835392,2-s2.0-85083835392,Article,NWO,https://api.elsevier.com/content/abstract/scopus_id/85083835392,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85083835392&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85083835392&origin=inward +Taste quality representation in the human brain,Martin,John E. Ingeholm;Alexander G. Liu;Stephen J. Gotts;Alex Martin;Jason A. Avery;Cameron D. Riddell,2020-01-29,1,Journal of Neuroscience,1042-1052,10.1523/JNEUROSCI.1751-19.2019,31836661,85078693061,2-s2.0-85078693061,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85078693061,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85078693061&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85078693061&origin=inward +"Brain networks, dimensionality, and global signal averaging in resting-state fMRI: Hierarchical network structure results in low-dimensional spatiotemporal dynamics",Martin,Stephen J. Gotts;Adrian W. Gilmore;Alex Martin,2020-01-15,4,NeuroImage,,10.1016/j.neuroimage.2019.116289,31629827,85073823516,2-s2.0-85073823516,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85073823516,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85073823516&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85073823516&origin=inward +"Characteristics of respiratory measures in young adults scanned at rest, including systematic changes and “missed” deep breaths",Martin,Jonathan D. Power;Marc J. Dubin;Charles J. Lynch;Benjamin M. Silver;Rebecca M. Jones;Alex Martin,2020-01-01,2,NeuroImage,,10.1016/j.neuroimage.2019.116234,31589990,85073106322,2-s2.0-85073106322,Article,SF,https://api.elsevier.com/content/abstract/scopus_id/85073106322,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85073106322&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85073106322&origin=inward +Distinctions among real and apparent respiratory motions in human fMRI data,Martin,Jonathan D. Power;Marc J. Dubin;Charles J. Lynch;Benjamin M. Silver;Rebecca M. Jones;Alex Martin,2019-11-01,9,NeuroImage,,10.1016/j.neuroimage.2019.116041,31344484,85069742454,2-s2.0-85069742454,Article,SF,https://api.elsevier.com/content/abstract/scopus_id/85069742454,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85069742454&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85069742454&origin=inward +Reply to Spreng et al.: Multiecho fMRI denoising does not remove global motion-associated respiratory signals,Martin,Jonathan D. Power;Adrian W. Gilmore;Charles J. Lynch;Stephen J. Gotts;Alex Martin,2019-09-24,2,Proceedings of the National Academy of Sciences of the United States of America,19243-19244,10.1073/pnas.1909852116,31455743,85072637696,2-s2.0-85072637696,Letter,,https://api.elsevier.com/content/abstract/scopus_id/85072637696,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85072637696&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85072637696&origin=inward +Dynamic Neural Representations: An Inferential Challenge for fMRI,Martin,Avniel Singh Ghuman;Alex Martin,2019-07-01,2,Trends in Cognitive Sciences,534-536,10.1016/j.tics.2019.04.004,31103440,85065538990,2-s2.0-85065538990,Short Survey,NSF,https://api.elsevier.com/content/abstract/scopus_id/85065538990,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85065538990&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85065538990&origin=inward +"Multifaceted integration: Memory for faces is subserved by widespread connections between visual, memory, auditory, and social networks",Martin,Michal Ramot;Alex Martin;Catherine Walsh,2019-06-19,0,Journal of Neuroscience,4976-4985,10.1523/JNEUROSCI.0217-19.2019,31036762,85068489058,2-s2.0-85068489058,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85068489058,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85068489058&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85068489058&origin=inward +Altered resting-state dynamics in autism spectrum disorder: Causal to the social impairment?,Martin,Stephen J. Gotts;Michal Ramot;Alex Martin;Kyle Jasmin,2019-03-02,1,Progress in Neuro-Psychopharmacology and Biological Psychiatry,28-36,10.1016/j.pnpbp.2018.11.002,30414457,85056487646,2-s2.0-85056487646,Review,NIH,https://api.elsevier.com/content/abstract/scopus_id/85056487646,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85056487646&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85056487646&origin=inward +Identifying task-general effects of stimulus familiarity in the parietal memory network,Martin,Adrian W. Gilmore;Shawn C. Milleville;Sarah E. Kalinowski;Stephen J. Gotts;Alex Martin,2019-02-18,5,Neuropsychologia,31-43,10.1016/j.neuropsychologia.2018.12.023,30610842,85059839456,2-s2.0-85059839456,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85059839456,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85059839456&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85059839456&origin=inward +Sex differences in resting-state functional connectivity of the cerebellum in autism spectrum disorder,Martin,Lauren Kenworthy;Rachel E.W. Smith;Stephen J. Gotts;Gregory L. Wallace;Alex Martin;Jason A. Avery,2019-02-01,5,Frontiers in Human Neuroscience,,10.3389/fnhum.2019.00104,,85069470461,2-s2.0-85069470461,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85069470461,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85069470461&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85069470461&origin=inward +Bilateral functional connectivity at rest predicts apraxic symptoms after left hemisphere stroke,Martin,Stephen J. Gotts;Alex Martin;Christine E. Watson;Laurel J. Buxbaum,2019-01-01,4,NeuroImage: Clinical,,10.1016/j.nicl.2018.08.033,30612063,85059397375,2-s2.0-85059397375,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85059397375,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85059397375&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85059397375&origin=inward +Dissociations in the neural substrates of language and social functioning in autism spectrum disorder,Martin,Gregory L. Wallace;Jason Crutcher;Alex Martin,2018-08-01,0,Autism Research,1175-1186,10.1002/aur.1969,30365251,85055425406,2-s2.0-85055425406,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85055425406,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85055425406&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85055425406&origin=inward +Attenuated resting-state functional connectivity in patients with childhood- and adult-onset schizophrenia,Martin,Harrison M. McAdams;Lorie Shora;Dede Greenstein;Liv S. Clasen;Nitin Gogtay;Peter Gochman;Francois M. Lalonde;Rebecca A. Berman;Anna E. Ordóñez;Judith L. Rapoport;Rebecca E. Watsky;Stephen J. Gotts;Deanna M. Barch;Siyuan Liu;Alex Martin;Xueping Zhou,2018-07-01,4,Schizophrenia Research,219-225,10.1016/j.schres.2018.01.003,29310911,85039994457,2-s2.0-85039994457,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85039994457,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85039994457&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85039994457&origin=inward +What About the Girls? Sex-Based Differences in Autistic Traits and Adaptive Skills,Martin,Cara Pugliese;Allison B. Ratto;Laura Gutermuth Anthony;Lauren Kenworthy;Robert T. Schultz;Kelly Register-Brown;Benjamin E. Yerys;Susan W. White;Julia Bascom;Gregory L. Wallace;Angela Scarpa;Sydney Seese;Alex Martin;Thomas H. Ollendick;Andrea Trubanova Wieckowski,2018-05-01,40,Journal of Autism and Developmental Disorders,1698-1711,10.1007/s10803-017-3413-9,29204929,85036572230,2-s2.0-85036572230,Article,NICHD,https://api.elsevier.com/content/abstract/scopus_id/85036572230,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85036572230&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85036572230&origin=inward +Neural correlates of taste reactivity in autism spectrum disorder,Martin,Sophie Wohltjen;John E. Ingeholm;Meghan Collins;Lauren Kenworthy;W. Kyle Simmons;Stephen J. Gotts;Gregory L. Wallace;Alex Martin;Jason A. Avery;Cameron D. Riddell,2018-01-01,4,NeuroImage: Clinical,38-46,10.1016/j.nicl.2018.04.008,30035000,85044920366,2-s2.0-85044920366,Article,,https://api.elsevier.com/content/abstract/scopus_id/85044920366,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85044920366&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85044920366&origin=inward +On Global fMRI Signals and Simulations,Martin,Jonathan D. Power;Mark Plitt;Steven E. Petersen;Alex Martin;Timothy O. Laumann,2017-12-01,25,Trends in Cognitive Sciences,911-913,10.1016/j.tics.2017.09.002,28939332,85029571763,2-s2.0-85029571763,Letter,,https://api.elsevier.com/content/abstract/scopus_id/85029571763,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85029571763&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85029571763&origin=inward +Intrinsic frequency biases and profiles across human cortex,Martin,Sophie Wohltjen;Monika S. Mellem;Avniel Singh Ghuman;Stephen J. Gotts;Alex Martin,2017-11-09,3,Journal of Neurophysiology,2853-2864,10.1152/jn.00061.2017,28835521,85033677557,2-s2.0-85033677557,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85033677557,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85033677557&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85033677557&origin=inward +Direct modulation of aberrant brain network connectivity through real-time NeuroFeedback,Martin,Michal Ramot;Javier Gonzalez-Castillo;Sara Kimmich;Haroon Popal;Vinai Roopchansingh;Stephen J. Gotts;Emily White;Alex Martin,2017-09-16,24,eLife,,10.7554/eLife.28974,28917059,85032980623,2-s2.0-85032980623,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85032980623,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85032980623&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85032980623&origin=inward +Structural basis of semantic memory,Martin,A. Martin;W. K. Simmons,2007-01-01,3,Learning and Memory: A Comprehensive Reference,113-130,10.1016/B978-012370509-9.00108-X,,85079260160,2-s2.0-85079260160,Chapter,,https://api.elsevier.com/content/abstract/scopus_id/85079260160,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85079260160&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85079260160&origin=inward +What do across-subject analyses really tell us about neural coding?,Merriam,Fernando M. Ramírez;Elisha P. Merriam;Cambria Revsine,2020-06-01,0,Neuropsychologia,,10.1016/j.neuropsychologia.2020.107489,32437761,85084795538,2-s2.0-85084795538,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85084795538,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85084795538&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85084795538&origin=inward +Stimulus vignetting and orientation selectivity in human visual cortex,Merriam,David J. Heeger;Zvi N. Roth;Elisha P. Merriam,2018-08-14,4,eLife,,10.7554/eLife.37241,30106372,85054133925,2-s2.0-85054133925,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85054133925,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85054133925&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85054133925&origin=inward +Specific visual subregions of TPJ mediate reorienting of spatial attention,Merriam,David J. Heeger;Laura Dugué;Elisha P. Merriam;Marisa Carrasco,2018-01-01,18,Cerebral Cortex,2375-2390,10.1093/cercor/bhx140,28981585,85053080665,2-s2.0-85053080665,Article,,https://api.elsevier.com/content/abstract/scopus_id/85053080665,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85053080665&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85053080665&origin=inward +Frontal and Insular Input to the Dorsolateral Temporal Pole in Primates: Implications for Auditory Memory,Mishkin,Marta Córcoles-Parada;Mortimer Mishkin;Ricardo Insausti;Richard G.M. Morris;Mar Ubero-Martínez;Mónica Muñoz-López,2019-11-12,0,Frontiers in Neuroscience,,10.3389/fnins.2019.01099,,85075678346,2-s2.0-85075678346,Article,DART,https://api.elsevier.com/content/abstract/scopus_id/85075678346,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85075678346&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85075678346&origin=inward +Neocerebellar Crus I Abnormalities Associated with a Speech and Language Disorder Due to a Mutation in FOXP2,Mishkin,F. Vargha-Khadem;E. Belton-Pagnamenta;K. S. Saleem;K. E. Watkins;M. Mishkin;G. P.D. Argyropoulos;F. Liégeois,2019-06-15,3,Cerebellum,309-319,10.1007/s12311-018-0989-3,30460543,85057051779,2-s2.0-85057051779,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85057051779,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85057051779&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85057051779&origin=inward +"A comparison of auditory oddball responses in dorsolateral prefrontal cortex, basolateral amygdala, and auditory cortex of macaque",Mishkin,Bruno B. Averbeck;Corrie R. Camalier;Kaylee Scarim;Mortimer Mishkin,2019-01-01,5,Journal of Cognitive Neuroscience,1054-1064,10.1162/jocn_a_01387,30883292,85067269576,2-s2.0-85067269576,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85067269576,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85067269576&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85067269576&origin=inward +Phonological working memory and FOXP2,Mishkin,Faraneh Vargha-Khadem;Mortimer Mishkin;Katrin Schulze,2018-01-08,10,Neuropsychologia,147-152,10.1016/j.neuropsychologia.2017.11.027,29174050,85037628669,2-s2.0-85037628669,Article,HHS,https://api.elsevier.com/content/abstract/scopus_id/85037628669,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85037628669&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85037628669&origin=inward +Thalamic connections of the core auditory cortex and rostral supratemporal plane in the macaque monkey,Mishkin,Makoto Fukushima;Richard C. Saunders;Mortimer Mishkin;Yukiko Kikuchi;Brian H. Scott;Kadharbatcha S. Saleem,2017-11-01,5,Journal of Comparative Neurology,3488-3513,10.1002/cne.24283,28685822,85029583621,2-s2.0-85029583621,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85029583621,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85029583621&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85029583621&origin=inward +Intrinsic Connections of the Core Auditory Cortical Regions and Rostral Supratemporal Plane in the Macaque Monkey,Mishkin,Matthew P. Mullarkey;Makoto Fukushima;Richard C. Saunders;Mortimer Mishkin;Yukiko Kikuchi;Brian H. Scott;Kadharbatcha S. Saleem;Paul A. Leccese,2017-01-01,7,"Cerebral cortex (New York, N.Y. : 1991)",809-840,10.1093/cercor/bhv277,26620266,85029595795,2-s2.0-85029595795,Article,,https://api.elsevier.com/content/abstract/scopus_id/85029595795,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85029595795&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85029595795&origin=inward +Addictions NeuroImaging Assessment (ANIA): Towards an integrative framework for alcohol use disorder,Momenan,Reza Momenan;George F. Koob;Laura Kwako;Valerie Voon;Alekhya Mandali;Laurel Morris;Erica Grodin;David Goldman;Nuria Doñamayor;Kathrin Weidacker,2020-06-01,1,Neuroscience and Biobehavioral Reviews,492-506,10.1016/j.neubiorev.2020.04.004,32298710,85083767911,2-s2.0-85083767911,Review,,https://api.elsevier.com/content/abstract/scopus_id/85083767911,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85083767911&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85083767911&origin=inward +Addiction neurocircuitry and negative affect: A role for neuroticism in understanding amygdala connectivity and alcohol use disorder,Momenan,Samantha J. Fede;Nancy Diazgranados;Sarah F. Dean;Reza Momenan,2020-03-23,0,Neuroscience Letters,,10.1016/j.neulet.2020.134773,32045624,85079228303,2-s2.0-85079228303,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85079228303,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85079228303&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85079228303&origin=inward +Alcohol effects on globus pallidus connectivity: Role of impulsivity and binge drinking,Momenan,Reza Momenan;Carlos R. Cortes;Vijay A. Ramchandani;Nancy Diazgranados;David T. George;Karina P. Abrahao;Erica N. Grodin;Samantha J. Fede;Melanie L. Schwandt;David M. Lovinger,2020-01-01,0,PLoS ONE,,10.1371/journal.pone.0224906,32214339,85082445536,2-s2.0-85082445536,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85082445536,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85082445536&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85082445536&origin=inward +How do substance use disorders compare to other psychiatric conditions on structural brain abnormalities? A cross-disorder meta-analytic comparison using the ENIGMA consortium findings,Momenan,Catherine Orr;Dan J. Stein;Neda Jahanshad;Zsuzsika Sjoerds;Reza Momenan;David C. Glahn;Xavier Navarri;Murat Yucel;Rajita Sinha;Reinout Wiers;Dick J. Veltman;Ozlem Korucuoglu;Ruth J. van Holst;Jacob Lavoie;Scott Mackey;Mohammad H. Afzali;Janna Cousijn;Paul M. Thompson;Rob Hester;Valentina Lorenzetti;Patricia J. Conrod,2020-01-01,0,Human Brain Mapping,,10.1002/hbm.25114,,85087724834,2-s2.0-85087724834,Article,,https://api.elsevier.com/content/abstract/scopus_id/85087724834,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85087724834&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85087724834&origin=inward +Epigenome-wide association study and multi-tissue replication of individuals with alcohol use disorder: evidence for abnormal glucocorticoid signaling pathway gene regulation,Momenan,Zachary A. Kaminsky;Jill L. Sorcher;Audrey Luo;Jisoo Lee;Reza Momenan;Kathryn L. Evans;Hui Sun;Emma O’Connell;Rosie M. Walker;Jeesun Jung;Katrin Charlet;Martha Longley;Colin A. Hodgkinson;Christine Muench;Mark J. Adams;Alicia K. Smith;Toni Kim Clarke;David Porteous;Falk W. Lohoff;Arunima Roy;Melanie Schwandt;Andrew M. McIntosh;David Goldman;Daniel B. Rosoff,2020-01-01,0,Molecular Psychiatry,,10.1038/s41380-020-0734-4,,85084426594,2-s2.0-85084426594,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85084426594,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85084426594&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85084426594&origin=inward +The relationship between delay discounting and alcohol dependence in individuals with and without comorbid psychopathology,Momenan,Matthew E. Sloan;Reza Momenan;Vijay A. Ramchandani;Julia E. Swan;Joshua Gowin,2019-02-14,6,Psychopharmacology,775-785,10.1007/s00213-018-5113-3,30456539,85056848429,2-s2.0-85056848429,Article,,https://api.elsevier.com/content/abstract/scopus_id/85056848429,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85056848429&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85056848429&origin=inward +Mega-analysis of gray matter volume in substance dependence: General and substance-specific regional effects,Momenan,Edythe London;Catherine Orr;Samantha Brooks;Lianne Schmaal;Godfrey Pearlson;Dan J. Stein;Murat Yücel;Deborah Yurgelun-Todd;Patricia Conrod;Robert Hester;Janice Bunn;Sarah Feldstein-Ewing;Mary M. Heitzeg;Margaret J. Wright;Bader Chaarani;Neda Jahanshad;Zsuzsika Sjoerds;Anna E. Goudriaan;Reza Momenan;Sheng Zhang;Susan Tapert;Alain Dagher;Marc Etienne Rousseau;Nicholas Allgaier;Maartje Luijten;Gunter Schumann;Anne Uhlmann;David C. Glahn;Elisabeth Caparelli;Chiang Shan R. Li;Rajita Sinha;Angelica Morales;Sara Blaine;Kent Hutchison;April May;Derrek P. Hibar;Elliot A. Stein;Yann Ying Chye;Nelly Alia-Klein;Ruth Van Holst;Philip Spechler;Scott Mackey;Ozlem Korucuoglu;Martin P. Paulus;Janna Cousijn;Nadia Solowij;Paul M. Thompson;Alan Evans;Hugh Garavan;Albert Batalla;Rocio Martin-Santos;Rita Z. Goldstein;Sylvane Desrivieres;Renée Schluter;Dick Veltman;Nicholas B. Allen;Sarah Whittle;John J. Foxe;Valentina Lorenzetti;Betty Jo Salmeron,2019-02-01,34,American Journal of Psychiatry,119-128,10.1176/appi.ajp.2018.17040415,30336705,85061044348,2-s2.0-85061044348,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85061044348,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85061044348&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85061044348&origin=inward +Resting state connectivity best predicts alcohol use severity in moderate to heavy alcohol users,Momenan,Reza Momenan;Sarah F. Dean;Nancy Diazgranados;Erica N. Grodin;Samantha J. Fede,2019-01-01,9,NeuroImage: Clinical,,10.1016/j.nicl.2019.101782,30921611,85063233336,2-s2.0-85063233336,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85063233336,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85063233336&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85063233336&origin=inward +Fear conditioning and extinction in alcohol dependence: Evidence for abnormal amygdala reactivity,Momenan,Reza Momenan;Christine Muench;Carlos R. Cortes;Markus Heilig;Christian Grillon;Falk W. Lohoff;Nicholas L. Balderston;Katrin Charlet,2019-01-01,1,Addiction Biology,,10.1111/adb.12835,31702089,85074914205,2-s2.0-85074914205,Article,DFG,https://api.elsevier.com/content/abstract/scopus_id/85074914205,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85074914205&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85074914205&origin=inward +Lack of Association between Serotonin Transporter Gene (SLC6A4) Promoter Methylation and Amygdala Response during Negative Emotion Processing in Individuals with Alcohol Dependence,Momenan,Reza Momenan;Christine Muench;Hui Sun;Katrin Charlet;Samantha J. Fede;Jeesun Jung;Audrey Luo;Falk W. Lohoff;Jisoo Lee;Daniel B. Rosoff,2019-01-01,0,Alcohol and Alcoholism,209-215,10.1093/alcalc/agz032,31008507,85066163873,2-s2.0-85066163873,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85066163873,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85066163873&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85066163873&origin=inward +Subcortical surface morphometry in substance dependence: An ENIGMA addiction working group study,Momenan,Samantha Brooks;Catherine Orr;Lianne Schmaal;Godfrey Pearlson;Dan J. Stein;Murat Yücel;Patricia Conrod;Elisabeth C. Caparelli;Robert Hester;Shashwath A. Meda;Neda Jahanshad;Anna E. Goudriaan;Anne M. Kaag;Reza Momenan;Alain Dagher;Maartje Luijten;Anne Uhlmann;Ruth van Holst;Liesbeth Reneman;Rajita Sinha;Angelica Morales;Sara Blaine;Kent Hutchison;Elliot A. Stein;Deborah Tang;Dick J. Veltman;Scott Mackey;Yann Chye;Ozlem Korucuoglu;Martin P. Paulus;Boris A. Gutman;Janna Cousijn;Nadia Solowij;Paul M. Thompson;Hugh Garavan;Antonio Verdejo-Garcia;Albert Batalla;Rocio Martin-Santos;Christopher R.K. Ching;Chiang Shan R. Li;John J. Foxe;Valentina Lorenzetti;Edythe D. London;Reinout W. Wiers,2019-01-01,4,Addiction Biology,,10.1111/adb.12830,,85075237877,2-s2.0-85075237877,Article,SAMRC,https://api.elsevier.com/content/abstract/scopus_id/85075237877,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85075237877&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85075237877&origin=inward +The major depressive disorder GWAS-supported variant rs10514299 in TMEM161B-MEF2C predicts putamen activation during reward processing in alcohol dependence,Momenan,Reza Momenan;Carlos R. Cortes;Christine Muench;Melanie Schwandt;Jeesun Jung;Falk W. Lohoff,2018-12-01,3,Translational Psychiatry,,10.1038/s41398-018-0184-9,30006604,85049883924,2-s2.0-85049883924,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85049883924,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85049883924&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85049883924&origin=inward +Neural Correlates of Compulsive Alcohol Seeking in Heavy Drinkers,Momenan,Reza Momenan;Kelsey Sundby;Lauren Sussman;Nancy Diazgranados;Markus Heilig;Erica N. Grodin;Grace M. Brennan,2018-12-01,15,Biological Psychiatry: Cognitive Neuroscience and Neuroimaging,1022-1031,10.1016/j.bpsc.2018.06.009,30143454,85057151554,2-s2.0-85057151554,Article,NIAAA,https://api.elsevier.com/content/abstract/scopus_id/85057151554,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85057151554&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85057151554&origin=inward +Methylomic profiling and replication implicates deregulation of PCSK9 in alcohol use disorder,Momenan,C. Muench;J. L. Sorcher;M. J. Phillips;H. Sun;M. Schwandt;Z. Zhou;R. Momenan;B. Gao;G. F. Koob;A. Holmes;A. D. Rosen;I. S. Jones;M. J. Xu;C. A. Hodgkinson;Z. A. Kaminsky;K. L. Mauro;L. F. Vendruscolo;F. W. Lohoff;D. T. George;R. R. Fanelli,2018-09-01,26,Molecular Psychiatry,,10.1038/mp.2017.168,28848234,85056460836,2-s2.0-85056460836,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85056460836,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85056460836&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85056460836&origin=inward +Random forest based classification of alcohol dependence patients and healthy controls using resting state MRI,Momenan,Reza Momenan;Mike Kerich;Xiaofei Du;Xi Zhu;Falk W. Lohoff,2018-05-29,15,Neuroscience Letters,27-33,10.1016/j.neulet.2018.04.007,29626649,85045042313,2-s2.0-85045042313,Article,NIAAA,https://api.elsevier.com/content/abstract/scopus_id/85045042313,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85045042313&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85045042313&origin=inward +"Mapping cortical brain asymmetry in 17,141 healthy individuals worldwide via the ENIGMA consortium",Momenan,Samuel R. Mathias;Jose M. Canive;Ramona Baur-Streubel;Erlend Bøen;Jeffery N. Epstein;Anna E. Goudriaan;Eric Earl;Jochen Bauer;Janita Bralten;Norman Delanty;Fernando Cendes;Colm G. Connolly;Anders Dale;Colin P. Doherty;Carl Johan Ekman;Janna Cousijn;Danielle Do Santos Garcia;Janice Fullerton;Paola Fuentes-Claramonte;Damien A. Fair;Oliver Gruber;Nicola J. Armstrong;Samantha J. Brooks;John J. Foxe;Qun Lin Chen;Sara Ambrosino De Bruttopilo;Jean Paul Fouche;Andre Aleman;Theophilus N. Akudjedu;Kaylita Chantiluke;Udo Dannlowski;Christian Bürger;Dara M. Cannon;Annette Conzelmann;Saud Alhusaini;Adriana Di Martino;Narelle K. Hansell;Christoph Abé;David Ames;Vince Calhoun;Erin W. Dickie;Stefan Ehrlich;Bernhard T. Baune;Sara K. Blaine;Ian J. Deary;Anastasia Christakou;Guillén Fernández;Xiang Zhen Kong;Yuqi Cheng;Geraldo Busatto Filho;Alysa Doyle;Anna Calvo;Maria Del Carmen Valdés Hernández;Stephen V. Faraone;Hans Jörgen Grabe;Jan Haavik;Daniel Brandeis;Tiril Gurholt;Silvia Brem;Jan Buitelaar;N. Trung Doan;Thomas Frodl;Tiffany Moukbel Chaim-Avancini;Mathew A. Harris;Ingrid Agartz;Tim Hahn;Tulio Guadalupe;Erick Jorge Canales-Rodríguez;Aldo Córdova-Palomera;Ian H. Gotlib;Francisco X. Castellanos;Hugh Garavan;Patrick De Zeeuw;Catharina A. Hartman;Albert Batalla;Damion V. Demeter;Premika Boedhoe;Nynke A. Groenewold;Nicholas B. Allen;Ole A. Andreassen;Alejandro Arias Vasquez;Sarah Durston;Elisabeth C. Caparelli;Vincent P. Clark;Tim Crow;Gianpiero L. Cavalleri;Torbjørn Elvsåshagen;Dominik Grotegerd;Henry Brodaty;Robin Bülow;David Coghill;Ana Cubillo;Joseph Biederman;Mark E. Bastin;Katharina Förster;Felipe Bergo;Bruno Dietsche;Dilara Yüksel;Anushree Bose;Xiayu Chen,2018-05-29,64,Proceedings of the National Academy of Sciences of the United States of America,E5154-E5163,10.1073/pnas.1718418115,29764998,85047904406,2-s2.0-85047904406,Article,,https://api.elsevier.com/content/abstract/scopus_id/85047904406,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85047904406&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85047904406&origin=inward +Insula sensitivity to unfairness in alcohol use disorder,Momenan,Karan Mathur;Reza Momenan;Carlos R. Cortes;Claire L. Mann;Xi Zhu;Nancy Diazgranados;David T. George;Markus Heilig;Melanie Schwandt;Erica N. Grodin;Michael Kerich,2018-05-01,0,Alcohol and Alcoholism,201-208,10.1093/alcalc/agx115,29309499,85047140071,2-s2.0-85047140071,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85047140071,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85047140071&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85047140071&origin=inward +Dopamine Transporter Gene Methylation is Associated with Nucleus Accumbens Activation During Reward Processing in Healthy but not Alcohol-Dependent Individuals,Momenan,Reza Momenan;Carlos R. Cortes;Christine Muench;Corinde E. Wiers;Falk W. Lohoff,2018-01-01,8,Alcoholism: Clinical and Experimental Research,21-31,10.1111/acer.13526,29030974,85035238907,2-s2.0-85035238907,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85035238907,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85035238907&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85035238907&origin=inward +Decreased subcortical volumes in alcohol dependent individuals: effect of polysubstance use disorder,Momenan,Reza Momenan;Erica N. Grodin,2017-09-01,9,Addiction Biology,1426-1437,10.1111/adb.12421,27334243,85028458841,2-s2.0-85028458841,Article,,https://api.elsevier.com/content/abstract/scopus_id/85028458841,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85028458841&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85028458841&origin=inward +The anterior cingulate cortex is necessary for forming prosocial preferences from vicarious reinforcement in monkeys,Murray,Chloe L. Karaskiewicz;Steve W.C. Chang;Benjamin M. Basile;Elisabeth A. Murray;Jamie L. Schafroth,2020-06-01,2,PLoS Biology,,10.1371/journal.pbio.3000677,32530910,85086523526,2-s2.0-85086523526,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85086523526,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85086523526&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85086523526&origin=inward +Lesion Studies in Contemporary Neuroscience,Murray,Michael Petrides;Avinash R. Vaidya;Maia S. Pujara;Lesley K. Fellows;Elisabeth A. Murray,2019-08-01,12,Trends in Cognitive Sciences,653-671,10.1016/j.tics.2019.05.009,31279672,85068235545,2-s2.0-85068235545,Review,CFREF,https://api.elsevier.com/content/abstract/scopus_id/85068235545,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85068235545&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85068235545&origin=inward +NIMH MonkeyLogic: Behavioral control and data acquisition in MATLAB,Murray,Elisabeth A. Murray;Andrew R. Mitz;Jaewon Hwang,2019-07-15,1,Journal of Neuroscience Methods,13-21,10.1016/j.jneumeth.2019.05.002,31071345,85065733478,2-s2.0-85065733478,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85065733478,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85065733478&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85065733478&origin=inward +Heightened defensive responses following subtotal lesions of macaque orbitofrontal cortex,Murray,Peter H. Rudebeck;Nicole K. Ciesinski;Maia S. Pujara;Elisabeth A. Murray,2019-05-22,4,Journal of Neuroscience,4133-4141,10.1523/JNEUROSCI.2812-18.2019,30910790,85066511520,2-s2.0-85066511520,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85066511520,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85066511520&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85066511520&origin=inward +"Gustatory responses in macaque monkeys revealed with fMRI: Comments on taste, taste preference, and internal state",Murray,Peter M. Kaskan;Andrew R. Mitz;Mark A. Nicholas;Aaron M. Dean;Elisabeth A. Murray,2019-01-01,5,NeuroImage,932-942,10.1016/j.neuroimage.2018.10.005,30291973,85054870973,2-s2.0-85054870973,Article,NARSAD,https://api.elsevier.com/content/abstract/scopus_id/85054870973,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85054870973&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85054870973&origin=inward +Ventral striatum’s role in learning from gains and losses,Murray,Elisabeth A. Murray;Bruno B. Averbeck;Vincent D. Costa;Craig A. Taswell,2018-12-26,6,Proceedings of the National Academy of Sciences of the United States of America,E12398-E12406,10.1073/pnas.1809833115,30545910,85059215917,2-s2.0-85059215917,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85059215917,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85059215917&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85059215917&origin=inward +Amygdala lesions eliminate viewing preferences for faces in rhesus monkeys,Murray,Susan G. Wardle;Leslie G. Ungerleider;Benjamin M. Basile;Molly Flessert;Aidan P. Murphy;Jessica Taubert;Elisabeth A. Murray,2018-07-31,14,Proceedings of the National Academy of Sciences of the United States of America,8043-8048,10.1073/pnas.1807245115,30012600,85051731035,2-s2.0-85051731035,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85051731035,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85051731035&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85051731035&origin=inward +Specializations for reward-guided decision-making in the primate ventral prefrontal cortex,Murray,Elisabeth A. Murray;Peter H. Rudebeck,2018-07-01,25,Nature Reviews Neuroscience,404-417,10.1038/s41583-018-0013-4,29795133,85047252929,2-s2.0-85047252929,Review,NARSAD,https://api.elsevier.com/content/abstract/scopus_id/85047252929,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85047252929&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85047252929&origin=inward +Ventral striatum lesions do not affect reinforcement learning with deterministic outcomes on slow time scales,Murray,Elisabeth A. Murray;Bruno B. Averbeck;Raquel Vicario-Feliciano,2017-10-01,2,Behavioral Neuroscience,385-391,10.1037/bne0000211,28805428,85027311074,2-s2.0-85027311074,Article,,https://api.elsevier.com/content/abstract/scopus_id/85027311074,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85027311074&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85027311074&origin=inward +Specialized Representations of Value in the Orbital and Ventrolateral Prefrontal Cortex: Desirability versus Availability of Outcomes,Murray,Peter H. Rudebeck;Richard C. Saunders;Elisabeth A. Murray;Dawn A. Lundgren,2017-08-30,38,Neuron,1208-1220.e5,10.1016/j.neuron.2017.07.042,28858621,85028541017,2-s2.0-85028541017,Article,NARSAD,https://api.elsevier.com/content/abstract/scopus_id/85028541017,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85028541017&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85028541017&origin=inward +MRI overestimates excitotoxic amygdala lesion damage in rhesus monkeys,Murray,Ludise Malkova;Chloe L. Karaskiewicz;Benjamin M. Basile;Elisabeth A. Murray;Emily C. Fiuzat,2017-06-08,4,Frontiers in Integrative Neuroscience,,10.3389/fnint.2017.00012,,85032269649,2-s2.0-85032269649,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85032269649,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85032269649&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85032269649&origin=inward +Silencing of immune activation with methotrexate in patients with COVID-19,Nath,Avindra Nath;Farinaz Safavi,2020-08-15,0,Journal of the Neurological Sciences,,10.1016/j.jns.2020.116942,32471659,85085386556,2-s2.0-85085386556,Editorial,NIH,https://api.elsevier.com/content/abstract/scopus_id/85085386556,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85085386556&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85085386556&origin=inward +"Effect of HIV and Interpersonal Trauma on Cortical Thickness, Cognition, and Daily Functioning",Nath,Joseph Snow;Avindra Nath;Suad Kapetanovic;Govind Nair;Katrina Geannopoulos;Peter Siyahhan Julnes;Katherine A. Traino;Bryan R. Smith;Gina Norato,2020-08-01,0,Journal of acquired immune deficiency syndromes (1999),405-413,10.1097/QAI.0000000000002358,32235173,85087321334,2-s2.0-85087321334,Article,,https://api.elsevier.com/content/abstract/scopus_id/85087321334,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85087321334&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85087321334&origin=inward +Regulation of stem cell function and neuronal differentiation by HERV-K via mTOR pathway,Nath,Kory R. Johnson;Marie Medynets;Joseph Steiner;Anna Bagnell;James O'Malley;Brianna DiSanza;Nasir Malik;Avindra Nath;Alina Hadegan;Dragan Maric;Jeffrey Kowalak;Yadi Xu;Tara T. Doucet-O'Hare;Wenxue Li;Kevon Sampson;Richa Tyagi;Tongguang Wang,2020-07-28,0,Proceedings of the National Academy of Sciences of the United States of America,17842-17853,10.1073/pnas.2002427117,32669437,85088879424,2-s2.0-85088879424,Article,,https://api.elsevier.com/content/abstract/scopus_id/85088879424,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85088879424&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85088879424&origin=inward +Productive HIV infection in astrocytes can be established via a nonclassical mechanism,Nath,Eugene O. Major;Avindra Nath;Dragan Maric;Guan Han Li,2020-06-01,2,"AIDS (London, England)",963-978,10.1097/QAD.0000000000002512,32379159,85084379740,2-s2.0-85084379740,Article,,https://api.elsevier.com/content/abstract/scopus_id/85084379740,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85084379740&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85084379740&origin=inward +Neurologic complications of coronavirus infections,Nath,Avindra Nath,2020-05-12,32,Neurology,809-810,10.1212/WNL.0000000000009455,32229625,85083557304,2-s2.0-85083557304,Editorial,NIH,https://api.elsevier.com/content/abstract/scopus_id/85083557304,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85083557304&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85083557304&origin=inward +CD8+ T cells target cerebrovasculature in children with cerebral malaria,Nath,Kory R. Johnson;Brittany A. Riggle;Myoung Hwa Lee;Susan K. Pierce;Avindra Nath;Osorio Lopes Abath Neto;Dragan Maric;Terrie E. Taylor;Monica Manglani;Louis H. Miller;Dorian B. McGavern;Karl B. Seydel,2020-03-02,3,Journal of Clinical Investigation,1128-1138,10.1172/JCI133474,31821175,85081137051,2-s2.0-85081137051,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85081137051,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85081137051&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85081137051&origin=inward +Advances toward curing HIV-1 infection in tissue reservoirs,Nath,Lauren B. Reoma;Lisa J. Henderson;Avindra Nath;Joseph A. Kovacs,2020-02-01,1,Journal of Virology,,10.1128/JVI.00375-19,31694954,85078116865,2-s2.0-85078116865,Review,OAR,https://api.elsevier.com/content/abstract/scopus_id/85078116865,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85078116865&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85078116865&origin=inward +The Pathogenesis of Nodding Syndrome,Nath,Tory P. Johnson;Avindra Nath;James Sejvar;Thomas B. Nutman,2020-01-24,0,Annual Review of Pathology: Mechanisms of Disease,395-417,10.1146/annurev-pathmechdis-012419-032748,31977293,85078303202,2-s2.0-85078303202,Review,,https://api.elsevier.com/content/abstract/scopus_id/85078303202,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85078303202&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85078303202&origin=inward +Neurotoxicities associated with checkpoint inhibitors: Two case reports and a review of the literature,Nath,Nicole N. Davarpanah;Martha Quezado;Lisa M. Cordes;Avindra Nath;Billel Gasmi;Andrea B. Apolo;Lauren B. Reoma;Omar I. Khan,2020-01-01,0,Clinical Case Reports,24-32,10.1002/ccr3.2534,,85075748697,2-s2.0-85075748697,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85075748697,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85075748697&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85075748697&origin=inward +Neurological manifestations of Erdheim–Chester Disease,Nath,William A. Gahl;Juvianee I. Estrada-Veras;Fady Hannah-Shmouni;Louisa C. Boyd;Kevin J. O’Brien;Bernadette R. Gochuico;Neval Ozkaya;Avindra Nath;Tanya Lehky;Avner Meoded;Rahul H. Dave;Camilo Toro,2020-01-01,0,Annals of Clinical and Translational Neurology,,10.1002/acn3.51014,32227455,85082407052,2-s2.0-85082407052,Article,,https://api.elsevier.com/content/abstract/scopus_id/85082407052,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85082407052&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85082407052&origin=inward +Presence of Tat and transactivation response element in spinal fluid despite antiretroviral therapy,Nath,Robert A. Barclay;Joseph Steiner;Catherine Demarino;Joseph Snow;Justin McArthur;Fatah Kashanchi;Avindra Nath;Muzna Bachani;Ulisses A. Santamaria;Lauren Bowen Reoma;Tory P. Johnson;Lisa J. Henderson;Scott Letendre;Ned Sacktor;Bryan R. Smith,2019-12-01,8,AIDS,S145-S157,10.1097/QAD.0000000000002268,31789815,85075953371,2-s2.0-85075953371,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85075953371,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85075953371&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85075953371&origin=inward +Fatal encephalopathy with wild-type JC virus and ruxolitinib therapy,Nath,Daniel S. Reich;Phuong Vu;Marta Garcia Montojo;Marta Quezado;Richard Childs;Stephen M. Hewitt;Avindra Nath;Jamie Solis;Govind Nair;Erin Beck;Christopher Julius Trindade;Lauren Bowen Reoma;Maria Chiara Monaco;Kory Johnson;Omar I. Khan,2019-12-01,4,Annals of Neurology,878-884,10.1002/ana.25608,31600832,85074280688,2-s2.0-85074280688,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85074280688,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85074280688&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85074280688&origin=inward +Involvement of organelles and inter-organellar signaling in the pathogenesis of HIV-1 associated neurocognitive disorder and Alzheimer's disease,Nath,Norman J. Haughey;Jonathan D. Geiger;Avindra Nath;Nabab Khan,2019-11-01,0,Brain Research,,10.1016/j.brainres.2019.146389,31425679,85070934250,2-s2.0-85070934250,Review,,https://api.elsevier.com/content/abstract/scopus_id/85070934250,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85070934250&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85070934250&origin=inward +Neuroinflammation and not tauopathy is a predominant pathological signature of nodding syndrome,Nath,Samir Kumar-Singh;Geoffrey Akena;Pamela R. Akun;Avindra Nath;Francis Olwa;Robert Colebunders;Martin Lammens;An Hotterbeekx;Richard Idro;Robert Lukande;Joneé Taylor,2019-11-01,7,Journal of Neuropathology and Experimental Neurology,1049-1058,10.1093/jnen/nlz090,31553445,85073655124,2-s2.0-85073655124,Article,ERC,https://api.elsevier.com/content/abstract/scopus_id/85073655124,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85073655124&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85073655124&origin=inward +Chronic Dengue Virus Panencephalitis in a Patient with Progressive Dementia with Extrapyramidal Features,Nath,Jonathan Howard;Steven Galetta;William A. Gahl;Ilya Kister;Jeffrey Kowalak;Camilo Toro;Juyun Kim;Tory P. Johnson;C. Christopher Lau;Myoung Hwa Lee;James Weisfeld-Adams;H. Benjamin Larman;Lauren B. Reoma;Carlos A. Pardo;Stephen S. Whitehead;Kory R. Johnson;Avindra Nath;Sanjay Kottapalli;Craig Blackstone;Arline Faustin;Matija Snuderl;Daniel Monaco,2019-11-01,3,Annals of Neurology,695-703,10.1002/ana.25588,31461177,85072194617,2-s2.0-85072194617,Article,"SOM, JHU",https://api.elsevier.com/content/abstract/scopus_id/85072194617,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85072194617&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85072194617&origin=inward +Safety and tolerability of Triumeq in amyotrophic lateral sclerosis: the Lighthouse trial,Nath,Matthew C. Kiernan;Steve Vucic;Leonard H. van den Berg;Mary Louise Rogers;Marta Garcia Montojo;Henk Jan Westeneng;Avindra Nath;Andrea Malaspina;Ammar Al-Chalabi;Vittoria Lombardi;Susan Mathers;Ulisses A. Santamaria;Gina Norato;Ruben P.A. van Eijk;Dominic B. Rowe;Puja R. Mehta;Julian Gold,2019-10-02,6,Amyotrophic Lateral Sclerosis and Frontotemporal Degeneration,595-604,10.1080/21678421.2019.1632899,31284774,85068694658,2-s2.0-85068694658,Article,JPND,https://api.elsevier.com/content/abstract/scopus_id/85068694658,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85068694658&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85068694658&origin=inward +HIV and Alzheimer’s disease: complex interactions of HIV-Tat with amyloid β peptide and Tau protein,Nath,Eliezer Masliah;Alina Hategan;Avindra Nath,2019-10-01,2,Journal of NeuroVirology,648-660,10.1007/s13365-019-00736-z,31016584,85064914655,2-s2.0-85064914655,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85064914655,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85064914655&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85064914655&origin=inward +"Correction to: Astrocytes as an HIV CNS reservoir: highlights and reflections of an NIMH-sponsored symposium (Journal of NeuroVirology, (2018), 24, 6, (665-669), 10.1007/s13365-018-0691-8)",Nath,Jeymohan Joseph;Avindra Nath;Lena Al-Harthi,2019-08-01,1,Journal of NeuroVirology,616,10.1007/s13365-019-00726-1,31041681,85065259823,2-s2.0-85065259823,Erratum,,https://api.elsevier.com/content/abstract/scopus_id/85065259823,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85065259823&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85065259823&origin=inward +Technical considerations in detection of HERV-K in amyotrophic lateral sclerosis: selection of controls and the perils of qPCR,Nath,Avindra Nath;Wenxue Li;Marta Garcia-Montojo,2019-07-03,2,Acta neuropathologica communications,101,10.1186/s40478-019-0753-z,31269986,85069267321,2-s2.0-85069267321,Letter,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85069267321,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85069267321&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85069267321&origin=inward +Future directions of training physician–scientists: Reimagining and remeasuring the workforce,Nath,Avindra Nath;John D. Heiss;Omar I. Khan;Wyatt P. Bensken,2019-05-01,0,Academic Medicine,659-663,10.1097/ACM.0000000000002581,30640263,85065305243,2-s2.0-85065305243,Review,NIH,https://api.elsevier.com/content/abstract/scopus_id/85065305243,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85065305243&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85065305243&origin=inward +Neuroinflammatory changes in relation to cerebrospinal fluid viral load in simian immunodeficiency virus encephalitis,Nath,Siva Muthusamy;Dima A. Hammoud;Paul Wakim;Dianne E. Lee;Sanhita Sinharay;Kenta Matsuda;William Schreiber-Stainthorp;Avindra Nath;Dragan Maric;Michele Di Mascio;Cheri A. Lee;William C. Reid;Falguni Basuli;Swati Shah;Vanessa Hirsch,2019-05-01,0,mBio,,10.1128/mBio.00970-19,31138753,85067115727,2-s2.0-85067115727,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85067115727,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85067115727&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85067115727&origin=inward +Treatment of progressive multifocal leukoencephalopathy with pembrolizumab,Nath,Cornelius Weiller;Klaus Warnatz;Avindra Nath;Horst Urbach;Bodo Grimbacher;Steve Holland;Sebastian Rauer;Reinhard Marks,2019-04-25,18,New England Journal of Medicine,1676-1677,10.1056/NEJMc1817193,30969507,85064860482,2-s2.0-85064860482,Letter,,https://api.elsevier.com/content/abstract/scopus_id/85064860482,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85064860482&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85064860482&origin=inward +A longitudinal study of Ebola sequelae in Liberia,Nath,Elizabeth S. Higgs;Cavan Reilly;James D. Neaton;Allen O. Eghrari;Avindra Nath;Kenneth S. Jensen;Michael C. Sneller;Soka J. Moses;Mosoka P. Fallah;Lisa E. Hensley;H. Clifford Lane;Dehkontee Gayedyu-Dennis;Rachel J. Bishop;Justin Varughese;Moses Badio;Bonnie Dighero-Kemp;Kaylie Tuznik;Kumblytee L. Johnson,2019-03-07,23,New England Journal of Medicine,924-934,10.1056/NEJMoa1805435,30855742,85062697714,2-s2.0-85062697714,Article,NEI,https://api.elsevier.com/content/abstract/scopus_id/85062697714,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85062697714&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85062697714&origin=inward +HIV brain latency as measured by CSF BcL11b relates to disrupted brain cellular energy in virally suppressed HIV infection,Nath,Bruce J. Brew;Avindra Nath;Michael D. Lovelace;Matthew J. Lennon;Lucette A. Cysique;Lauriane Jugé;Tory P. Johnson;Thomas M. Gates;Simon P. Jones;Caroline D. Rae,2019-03-01,5,AIDS,433-441,10.1097/QAD.0000000000002076,30475266,85060905958,2-s2.0-85060905958,Article,OAR,https://api.elsevier.com/content/abstract/scopus_id/85060905958,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85060905958&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85060905958&origin=inward +Clinicopathology conference: 41-year-old woman with chronic relapsing meningitis,Nath,Elise M. O'Connell;Daniel S. Reich;Kelsey C. Zorn;Erin S. Beck;Hannah A. Sample;Theodore Nash;Avindra Nath;Arun Venkatesan;Michael R. Wilson;Lillian M. Khan;Prashanth S. Ramachandran;Joseph L. DeRisi,2019-02-01,4,Annals of Neurology,161-169,10.1002/ana.25400,30565288,85059582124,2-s2.0-85059582124,Conference Paper,NIH,https://api.elsevier.com/content/abstract/scopus_id/85059582124,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85059582124&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85059582124&origin=inward +"Herpes Viruses, Alzheimer’s Disease, and Related Dementias: Unifying or Confusing Hypothesis?",Nath,Avindra Nath,2019-01-15,0,Neurotherapeutics,180-181,10.1007/s13311-018-00701-4,30644072,85060140193,2-s2.0-85060140193,Article,,https://api.elsevier.com/content/abstract/scopus_id/85060140193,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85060140193&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85060140193&origin=inward +Parasitic Infections of the Nervous System,Nath,Oscar H. Del Brutto;Avindra Nath;Hector H. Garcia,2019-01-01,1,Seminars in Neurology,358-368,10.1055/s-0039-1693036,31378871,85070390834,2-s2.0-85070390834,Article,,https://api.elsevier.com/content/abstract/scopus_id/85070390834,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85070390834&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85070390834&origin=inward +Potential mechanism for HIV-associated depression: Upregulation of serotonin transporters in SIV-infected macaques detected by 11c-DASB PET,Nath,Siva Muthusamy;Dima A. Hammoud;Paul Wakim;Michele Di Mascio;Kenta Matsuda;Sanhita Sinharay;William Schreiber-Stainthorp;Avindra Nath;Dianne Lee;Swati Shah;Vanessa Hirsch,2019-01-01,0,Frontiers in Psychiatry,,10.3389/fpsyt.2019.00362,,85068116224,2-s2.0-85068116224,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85068116224,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85068116224&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85068116224&origin=inward +In-vivoMRI reveals changes to intracerebral vasculature caliber in HIV infection,Nath,Cristah Artrip;Stanley I. Rapoport;Daniel S. Reich;Caryn Morse;Tianxia Wu;Joseph Snow;Chuen Yen Lau;Avindra Nath;Sally Steinbach;Govind Nair;Paba M. De Alwis;Bryan R. Smith;Edmund Tramont,2019-01-01,0,Frontiers in Neurology,,10.3389/fneur.2019.00687,,85069149573,2-s2.0-85069149573,Article,OAR,https://api.elsevier.com/content/abstract/scopus_id/85069149573,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85069149573&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85069149573&origin=inward +Probing the mechanism of inhibition of amyloid-β(1–42)–induced neurotoxicity by the chaperonin GroEL,Nath,Joseph Steiner;Hoi Sung Chung;Fanjie Meng;Avindra Nath;Vitali Tugarinov;Rodolfo Ghirlando;G. Marius Clore;Marielle A. Wälti;John M. Louis,2018-12-18,6,Proceedings of the National Academy of Sciences of the United States of America,E11924-E11932,10.1073/pnas.1817477115,30509980,85058667428,2-s2.0-85058667428,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85058667428,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85058667428&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85058667428&origin=inward +Astrocytes as an HIV CNS reservoir: highlights and reflections of an NIMH-sponsored symposium,Nath,Jeymohan Joseph;Avindra Nath;Lena Al-Harti,2018-12-01,13,Journal of NeuroVirology,665-669,10.1007/s13365-018-0691-8,30397827,85056145864,2-s2.0-85056145864,Review,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85056145864,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85056145864&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85056145864&origin=inward +Human endogenous retrovirus-K (HML-2): a comprehensive review,Nath,Lisa Henderson;Avindra Nath;Tara Doucet-O’Hare;Marta Garcia-Montojo,2018-11-02,14,Critical Reviews in Microbiology,715-738,10.1080/1040841X.2018.1501345,30318978,85060368659,2-s2.0-85060368659,Review,NIH,https://api.elsevier.com/content/abstract/scopus_id/85060368659,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85060368659&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85060368659&origin=inward +Activated T cells induce proliferation of oligodendrocyte progenitor cells via release of vascular endothelial cell growth factor-A,Nath,Marie Medynets;Eugene O. Major;Maria Chiara G. Monaco;Elliot H. Choi;Avindra Nath;Yadi Xu;Tongguang Wang,2018-11-01,4,GLIA,2503-2513,10.1002/glia.23501,30500113,85057542664,2-s2.0-85057542664,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85057542664,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85057542664&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85057542664&origin=inward +Global and regional brain hypometabolism on FDG-PET in treated HIV-infected individuals,Nath,Dima A. Hammoud;Stanley I. Rapoport;Joseph Snow;Sanhita Sinharay;Avindra Nath;Katherine Traino;Sally Steinbach;Katrina Geannopoulos;Amit K. Dey;Nehal N. Mehta;Paul G. Wakim;Bryan R. Smith;Edmund Tramont,2018-10-23,4,Neurology,E1591-E1601,10.1212/WNL.0000000000006398,30258017,85055177801,2-s2.0-85055177801,Article,NHLBI,https://api.elsevier.com/content/abstract/scopus_id/85055177801,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85055177801&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85055177801&origin=inward +Neurological syndromes driven by postinfectious processes or unrecognized persistent infections,Nath,Tory P. Johnson;Avindra Nath,2018-06-01,4,Current Opinion in Neurology,318-324,10.1097/WCO.0000000000000553,29547402,85046797594,2-s2.0-85046797594,Review,NIH,https://api.elsevier.com/content/abstract/scopus_id/85046797594,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85046797594&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85046797594&origin=inward +Human Endogenous Retroviruses in Neurological Diseases,Nath,Antonina Dolei;Gavin Giovannoni;Hervé Perron;Avindra Nath;Patrice Marche;Alain Créange;Patrick Küry;Hans Peter Hartung;Julian Gold,2018-04-01,50,Trends in Molecular Medicine,379-394,10.1016/j.molmed.2018.02.007,29551251,85043769460,2-s2.0-85043769460,Review,ARSEP,https://api.elsevier.com/content/abstract/scopus_id/85043769460,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85043769460&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85043769460&origin=inward +"Association of Herpes Viral Infections, Antiherpetic Therapy, and Dementia: Real or Alternative Fact?",Nath,Avindra Nath,2018-03-26,3,Neurotherapeutics,1-2,10.1007/s13311-018-0625-4,29582402,85044446648,2-s2.0-85044446648,,,https://api.elsevier.com/content/abstract/scopus_id/85044446648,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85044446648&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85044446648&origin=inward +CNS immune reconstitution inflammatory syndrome,Nath,Lauren Bowen;Avindra Nath;Bryan Smith,2018-01-01,8,Handbook of Clinical Neurology,167-176,10.1016/B978-0-444-63849-6.00013-X,29604974,85045932832,2-s2.0-85045932832,Chapter,,https://api.elsevier.com/content/abstract/scopus_id/85045932832,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85045932832&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85045932832&origin=inward +Physician-scientists in neurology: Research contributions of a cohort of neurologists,Nath,John D. Heiss;Avindra Nath;Alexandra K. Hansen;Wyatt P. Bensken;Omar I. Khan;Gina Norato,2018-01-01,1,Neurology,508-514,10.1212/01.wnl.0000544243.58941.11,30097476,85056561688,2-s2.0-85056561688,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85056561688,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85056561688&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85056561688&origin=inward +Human Endogenous Retrovirus-K and TDP-43 Expression Bridges ALS and HIV Neuropathology,Nath,Renée N. Douville;Avindra Nath,2017-10-11,14,Frontiers in Microbiology,,10.3389/fmicb.2017.01986,,85032228981,2-s2.0-85032228981,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85032228981,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85032228981&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85032228981&origin=inward +Therapeutic Approaches for Zika Virus Infection of the Nervous System,Nath,Rachel P.M. Abrams;Avindra Nath;Jamie Solis,2017-10-01,9,Neurotherapeutics,1027-1048,10.1007/s13311-017-0575-2,28952036,85029898983,2-s2.0-85029898983,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85029898983,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85029898983&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85029898983&origin=inward +Grand challenges in neuroinfectious diseases,Nath,Avindra Nath,2017-09-14,1,Frontiers in Neurology,,10.3389/fneur.2017.00480,,85029641556,2-s2.0-85029641556,Article,,https://api.elsevier.com/content/abstract/scopus_id/85029641556,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85029641556&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85029641556&origin=inward +Cerebrospinal fluid examination in survivors of Ebola virus disease,Nath,Avindra Nath;Michael C. Sneller;Mosoka P. Fallah;Bridgette Jeanne Billioux;Eric J. Stavale;Joseph Dorbor;Bryan R. Smith,2017-09-01,9,JAMA Neurology,1141-1143,10.1001/jamaneurol.2017.1460,28715541,85029592541,2-s2.0-85029592541,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85029592541,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85029592541&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85029592541&origin=inward +Robert J. Cotter (1943-2012): from mass spectrometer development to the exploration of life.,Nath,Lerna Uzasci;Avindra Nath,2013-01-01,0,Journal of neuroimmune pharmacology : the official journal of the Society on NeuroImmune Pharmacology,1049-1050,10.1007/s11481-013-9482-4,23771593,85028124623,2-s2.0-85028124623,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85028124623,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85028124623&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85028124623&origin=inward +NMDA receptor activation by HIV-Tat protein is clade dependent (Journal of Neuroscience (2008) (12190-12198)),Nath,Joseph Steiner;Avindra Nath;Yan Huang;Wenxue Li;Tanya Malpica-Llanos;Anita Mahadevan;Thomas A. Darden;Rollie Reid;Parthasarthy Satishchandra;Susarla K. Shankar,2008-12-10,0,Journal of Neuroscience,,,,85042755769,2-s2.0-85042755769,Erratum,,https://api.elsevier.com/content/abstract/scopus_id/85042755769,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85042755769&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85042755769&origin=inward +Clinical neurovirology,Nath,Avindra Nath;Joseph R. Berger,2003-01-01,0,Clinical Neurovirology,1-634,,,85057930533,2-s2.0-85057930533,Book,,https://api.elsevier.com/content/abstract/scopus_id/85057930533,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85057930533&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85057930533&origin=inward +Preface,Nath,Avindra Nath;Joseph R. Berger,2003-01-01,0,Clinical Neurovirology,Vii-Viii,,,85057930233,2-s2.0-85057930233,Editorial,,https://api.elsevier.com/content/abstract/scopus_id/85057930233,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85057930233&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85057930233&origin=inward +Selective vulnerability of cerebellar granule neuroblasts and their progeny to drugs with abuse liability,Nath,Kurt F. Hauser;Robin J. Goody;Avindra Nath;James R. Pauly;Alois Saria;Valeriya K. Khurdayan,2003-01-01,21,Cerebellum,184-195,10.1080/14734220310016132,14509568,85047690403,2-s2.0-85047690403,Review,NIH,https://api.elsevier.com/content/abstract/scopus_id/85047690403,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85047690403&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85047690403&origin=inward +Metacognition and emotion – How accurate perception of own biases relates to positive feelings and hedonic capacity,Nugent,Pawel Kleka;Hanna Brycz;Allison C. Nugent;Joanna E. Szczepanik;Carlos A. Zarate;Agnieszka Fanslau,2020-07-01,0,Consciousness and Cognition,,10.1016/j.concog.2020.102936,32416543,85084468406,2-s2.0-85084468406,Article,NARSAD,https://api.elsevier.com/content/abstract/scopus_id/85084468406,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85084468406&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85084468406&origin=inward +"Correction: Ketamine metabolites, clinical response, and gamma power in a randomized, placebo-controlled, crossover trial for treatment-resistant major depression (Neuropsychopharmacology, (2020), 45, 8, (1398-1404), 10.1038/s41386-020-0663-6)",Nugent,Allison C. Nugent;Cristan A. Farmer;Todd D. Gould;Jacqueline Lovett;Lilian Adeojo;Peixiong Yuan;Jessica R. Gilbert;Carlos A. Zarate;Bashkim Kadriu;Jomy George;Lawrence T. Park;Ruin Moaddel,2020-07-01,0,Neuropsychopharmacology,1405,10.1038/s41386-020-0699-7,32376872,85085076323,2-s2.0-85085076323,Erratum,,https://api.elsevier.com/content/abstract/scopus_id/85085076323,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85085076323&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85085076323&origin=inward +"Ketamine metabolites, clinical response, and gamma power in a randomized, placebo-controlled, crossover trial for treatment-resistant major depression",Nugent,Allison C. Nugent;Cristan A. Farmer;Todd D. Gould;Jacqueline Lovett;Lilian Adeojo;Peixiong Yuan;Jessica R. Gilbert;Carlos A. Zarate;Bashkim Kadriu;Jomy George;Lawrence T. Park;Ruin Moaddel,2020-07-01,3,Neuropsychopharmacology,1398-1404,10.1038/s41386-020-0663-6,32252062,85083440937,2-s2.0-85083440937,Article,NARSAD,https://api.elsevier.com/content/abstract/scopus_id/85083440937,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85083440937&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85083440937&origin=inward +The Effect of Ketamine on Electrophysiological Connectivity in Major Depressive Disorder,Nugent,Elizabeth D. Ballard;Allison C. Nugent;Matthew J. Brookes;Prejaas K. Tewarie;Carlos A. Zarate;Jessica R. Gilbert,2020-06-10,0,Frontiers in Psychiatry,,10.3389/fpsyt.2020.00519,,85087025785,2-s2.0-85087025785,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85087025785,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85087025785&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85087025785&origin=inward +Evaluating global brain connectivity as an imaging marker for depression: influence of preprocessing strategies and placebo-controlled ketamine treatment,Nugent,Allison C. Nugent;Carlos A. Zarate;Anahit Mkrtchian;Bashkim Kadriu;Jennifer W. Evans;Christoph Kraus,2020-05-01,5,Neuropsychopharmacology,982-989,10.1038/s41386-020-0624-0,31995812,85079180564,2-s2.0-85079180564,Article,NARSAD,https://api.elsevier.com/content/abstract/scopus_id/85079180564,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85079180564&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85079180564&origin=inward +"Correction to: Mapping anticipatory anhedonia: an fMRI study (Brain Imaging and Behavior, (2019), 13, 6, (1624-1634), 10.1007/s11682-019-00084-w)",Nugent,Elizabeth D. Ballard;Allison C. Nugent;Joanna E. Szczepanik;Carl W. Lejuez;Carlos A. Zarate;Jennifer W. Evans;Jessica L. Reed,2020-04-01,0,Brain Imaging and Behavior,640,10.1007/s11682-019-00131-6,31172359,85067023923,2-s2.0-85067023923,Erratum,,https://api.elsevier.com/content/abstract/scopus_id/85067023923,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85067023923&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85067023923&origin=inward +Magnetoencephalographic Correlates of Suicidal Ideation in Major Depression,Nugent,Elizabeth D. Ballard;Allison C. Nugent;Christina S. Galiano;Carlos A. Zarate;Jessica R. Gilbert,2020-03-01,1,Biological Psychiatry: Cognitive Neuroscience and Neuroimaging,354-363,10.1016/j.bpsc.2019.11.011,31928949,85077719703,2-s2.0-85077719703,Article,FNIH,https://api.elsevier.com/content/abstract/scopus_id/85077719703,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85077719703&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85077719703&origin=inward +What we learn about bipolar disorder from large-scale neuroimaging: Findings and future directions from the ENIGMA Bipolar Disorder Working Group,Nugent,Bronwyn J. Overs;Orwa Dandash;Joaquim Radua;Melissa J. Green;Ana M. Díaz-Zuluaga;Erlend Bøen;Hilary P. Blumberg;David C. Glahn;Christian Knöchel;Derrek P. Hibar;Bartholomeus C.M. Haarman;Erick J. Canales-Rodríguez;Victoria Ives-Deliperi;Henricus G. Ruhe;Aart H. Schene;Giulia Tronchin;Allison C. Nugent;Rachel M. Brouwer;Tiril P. Gurholt;Beny Lafer;Oliver Gruber;Mikael Landén;Leila Nabulsi;Jose M. Goikolea;Arnaud Pouchon;Mary L. Phillips;Ling Li Zeng;Viola Oertel;Yash Patel;Philip B. Mitchell;Marcio G. Soeiro-de-Souza;Udo Dannlowski;Igor Nenadic;Pauline Favre;Dara M. Cannon;Caterina del Mar Bonnin;Giuseppe Delvecchio;Andreas Jansen;Bernd Kramer;Henrik Walter;Christoph Abé;Tristram A. Lett;Chantal Henry;Carlos López-Jaramillo;Michael Berk;Bernhard T. Baune;Abraham Nunes;Maria M. Rive;Sophia Frangou;Dag Alnæs;Tomas Hajek;Rodrigo Machado-Vieira;Francesco Benedetti;Martin Alda;Jorge Almeida;Gloria Roberts;Edith Pomarol-Clotet;Neeltje E.M. van Haren;Roel A. Ophoff;Josselin Houenou;Scott C. Fears;Tilo T.J. Kircher;Salvador Sarró;Daniel L. Pham;Sara Poletti;Danai Dima;Kang Sim;Elisa M.T. Melloni;Melissa E. Pauling;Ingrid Agartz;Lisa T. Eyler;Janice M. Fullerton;Amy C. Bilderbeck;Eduard Vieta;Marcella Bellani;Fabiano Nery;Xavier Caseras;Mircea Polosan;Bradley J. MacIntosh;Sophia I. Thomopoulos;Édouard Duchesnay;Tomas Paus;Sonja M.C. de Zwarte;Silvia Alonso-Lana;Dominik Grotegerd;Torbjørn Elvsåshagen;Colm McDonald;Paolo Brambilla;Carrie E. Bearden;Yann Quidé;Michael Bauer;Irene Bollettini;Raymond Salvador;Julian A. Pineda-Zapata;Christopher R.K. Ching;Fleur M. Howells;Theodore D. Satterthwaite;Miho Ota;Unn K. Haukvik;Cara Altimus,2020-01-01,0,Human Brain Mapping,,10.1002/hbm.25098,,85088655322,2-s2.0-85088655322,Review,,https://api.elsevier.com/content/abstract/scopus_id/85088655322,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85088655322&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85088655322&origin=inward +Mapping anticipatory anhedonia: an fMRI study,Nugent,Elizabeth D. Ballard;Allison C. Nugent;Joanna E. Szczepanik;Carl W. Lejuez;Carlos A. Zarate;Jennifer W. Evans;Jessica L. Reed,2019-12-01,1,Brain Imaging and Behavior,1624-1634,10.1007/s11682-019-00084-w,31030316,85064911728,2-s2.0-85064911728,Article,NARSAD,https://api.elsevier.com/content/abstract/scopus_id/85064911728,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85064911728&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85064911728&origin=inward +Functional Imaging of the Implicit Association of the Self With Life and Death,Nugent,Elizabeth D. Ballard;Julia S. Yarrington;Matthew K. Nock;Allison C. Nugent;Carlos A. Zarate;Daniel P. Dickstein;Joanna Szczepanik;Jennifer W. Evans;Jessica L. Reed,2019-12-01,2,Suicide and Life-Threatening Behavior,1600-1608,10.1111/sltb.12543,30761601,85061584307,2-s2.0-85061584307,Article,NARSAD,https://api.elsevier.com/content/abstract/scopus_id/85061584307,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85061584307&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85061584307&origin=inward +"Research on the pathophysiology, treatment, and prevention of suicide: Practical and ethical issues",Nugent,Elizabeth D. Ballard;Allison C. Nugent;Lawrence T. Park;Carlos A. Zarate,2019-11-01,1,BMC Psychiatry,,10.1186/s12888-019-2301-6,31675949,85074325264,2-s2.0-85074325264,Review,,https://api.elsevier.com/content/abstract/scopus_id/85074325264,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85074325264&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85074325264&origin=inward +Effects of Ketamine on Brain Activity During Emotional Processing: Differential Findings in Depressed Versus Healthy Control Participants,Nugent,Allison C. Nugent;Joanna E. Szczepanik;Maura L. Furey;Carlos A. Zarate;Jennifer W. Evans;Jessica L. Reed,2019-07-01,7,Biological Psychiatry: Cognitive Neuroscience and Neuroimaging,610-618,10.1016/j.bpsc.2019.01.005,30826253,85062038500,2-s2.0-85062038500,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85062038500,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85062038500&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85062038500&origin=inward +Ketamine has distinct electrophysiological and behavioral effects in depressed and healthy subjects,Nugent,Elizabeth D. Ballard;Allison C. Nugent;Nancy E. Brutsche;Carlos A. Zarate;Ruin Moaddel;Lawrence T. Park;Todd D. Gould,2019-07-01,40,Molecular Psychiatry,1040-1052,10.1038/s41380-018-0028-2,29487402,85042565493,2-s2.0-85042565493,Article,,https://api.elsevier.com/content/abstract/scopus_id/85042565493,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85042565493&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85042565493&origin=inward +Synaptic potentiation and rapid antidepressant response to ketamine in treatment-resistant major depression: A replication study,Nugent,Jessica R. Gilbert;Allison C. Nugent;Kathleen E. Wills;Carlos A. Zarate,2019-01-30,8,Psychiatry Research - Neuroimaging,64-66,10.1016/j.pscychresns.2018.09.001,30551012,85058137370,2-s2.0-85058137370,Article,NARSAD,https://api.elsevier.com/content/abstract/scopus_id/85058137370,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85058137370&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85058137370&origin=inward +Multimodal imaging reveals a complex pattern of dysfunction in corticolimbic pathways in major depressive disorder,Nugent,Allison C. Nugent;Sam L. Snider;Carlos A. Zarate;Dipavo Banerjee;Jennifer W. Evans;Cristan Farmer,2019-01-01,8,Human Brain Mapping,3940-3950,10.1002/hbm.24679,31179620,85067390070,2-s2.0-85067390070,Article,NARSAD,https://api.elsevier.com/content/abstract/scopus_id/85067390070,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85067390070&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85067390070&origin=inward +Altered cerebral benzodiazepine receptor binding in post-traumatic stress disorder,Nugent,Alexander Neumeister;Jessica Gill;Allison C. Nugent;Paul J. Carlson;Dennis S. Charney;Meena Vythilingam;Alicja Lerner;Omer Bonne;Inbal Reuveni;Wayne C. Drevets,2018-12-01,2,Translational Psychiatry,,10.1038/s41398-018-0257-9,30287828,85054428567,2-s2.0-85054428567,Article,,https://api.elsevier.com/content/abstract/scopus_id/85054428567,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85054428567&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85054428567&origin=inward +Default Mode Connectivity in Major Depressive Disorder Measured Up to 10 Days After Ketamine Administration,Nugent,Allison C. Nugent;Carlos A. Zarate;Lawrence T. Park;Joanna Szczepanik;Jennifer W. Evans;Nancy Brutsché,2018-10-15,37,Biological Psychiatry,582-590,10.1016/j.biopsych.2018.01.027,29580569,85044366429,2-s2.0-85044366429,Article,NARSAD,https://api.elsevier.com/content/abstract/scopus_id/85044366429,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85044366429&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85044366429&origin=inward +Neurophysiological Changes Associated with Antidepressant Response to Ketamine Not Observed in a Negative Trial of Scopolamine in Major Depressive Disorder,Nugent,Marc S. Lener;Maura Furey;Allison C. Nugent;Lawrence Park;Carlos A. Zarate;Jessica Ellis;Joanna Szczepanik;Cristan Farmer,2018-09-01,12,International Journal of Neuropsychopharmacology,10-18,10.1093/ijnp/pyy051,30184133,85057790880,2-s2.0-85057790880,Article,NARSAD,https://api.elsevier.com/content/abstract/scopus_id/85057790880,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85057790880&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85057790880&origin=inward +7T 1 H-MRS in major depressive disorder: A Ketamine Treatment Study,Nugent,Jonathan P. Roiser;Ningzhi Li;Allison C. Nugent;Sam L. Snider;Carlos A. Zarate;Dipavo Banerjee;Jun Shen;Níall Lally;Jennifer W. Evans;Li An,2018-08-01,10,Neuropsychopharmacology,1908-1914,10.1038/s41386-018-0057-1,29748628,85046810409,2-s2.0-85046810409,Article,NARSAD,https://api.elsevier.com/content/abstract/scopus_id/85046810409,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85046810409&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85046810409&origin=inward +Clinical Trial of the Potassium Channel Activator Diazoxide for Major Depressive Disorder Halted Due to Intolerability,Nugent,Marc S. Lener;Elizabeth D. Ballard;Allison C. Nugent;Fritz A. Henn;Ioline D. Henter;Aaron Yazdian;Minkyung Park;Carlos A. Zarate;Bashkim Kadriu;Shiwen Yuan;Mark J. Niciu;Lawrence T. Park;Cristan Farmer,2018-06-01,1,Journal of Clinical Psychopharmacology,243-246,10.1097/JCP.0000000000000866,29601316,85046080176,2-s2.0-85046080176,Article,,https://api.elsevier.com/content/abstract/scopus_id/85046080176,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85046080176&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85046080176&origin=inward +RETRACTED: F173. Negative Trial of Scopolamine in Major Depressive Disorder Does Not Demonstrate Neurophysiological Changes Seen With the Antidepressant Response of Ketamine,Nugent,Marc Lener;Maura Furey;Lawrence Park;Allison Nugent;Carlos Zarate;Jessica Ellis;Joanna Szczepanik;Cristan Farmer,2018-05-01,1,Biological psychiatry,S305-S306,10.1016/j.biopsych.2018.02.787,32005321,85072133190,2-s2.0-85072133190,Erratum,,https://api.elsevier.com/content/abstract/scopus_id/85072133190,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85072133190&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85072133190&origin=inward +Cortical abnormalities in bipolar disorder: An MRI analysis of 6503 individuals from the ENIGMA Bipolar Disorder Working Group,Nugent,A. M. McIntosh;C. Bourne;A. M. Dale;J. M. Goikolea;L. Abramovic;A. Nugent;M. V. Zanetti;H. C. Whalley;G. F. Busatto;M. C.G. Otaduy;M. L. Phillips;D. J. Veltman;B. Overs;G. Roberts;M. S. Schaufelberger;E. Ben;J. Starke;C. Abe;D. H. Wolf;N. Jahanshad;C. R.K. Ching;M. Alda;E. J. Canales-Rodriguez;J. Houenou;N. Yao;A. Pfennig;J. K. Rybakowski;E. Vieta;U. K. Haukvik;C. McDonald;G. M. Goodwin;N. S. Lawrence;N. Yalin;M. Bonnin;E. Sprooten;S. Alonso-Lana;C. B. Hartberg;G. Delvecchio;S. Hagenaars;B. Mwangi;B. T. Baune;T. Nickson;J. Savitz;C. E. Bearden;H. G. Ruhe;S. Trost;A. Uhlmann;L. T. Westlye;M. Fatjó-Vilas;J. R.C. Almeida;F. G. Nery;B. Krämer;J. M. Fullerton;A. H. Young;M. F. Ponteduro;N. T. Doan;T. Elvsashagen;E. Jimenez;D. P. Hibar;E. Pomarol-Clotet;M. Landén;A. C. Bilderbeck;M. Bauer;M. G. Soeiro-De-Souza;C. Simhandl;G. D. Pearlson;M. Keil;R. Redlich;S. C. Fears;M. Ingvar;H. Temmingh;J. W. Cheung;K. T. Chaim;D. Dima;A. Versace;W. H. Lee;A. H. Schene;B. Lafer;H. Kugel;M. M. Rive;C. A. Zarate;D. C. Glahn;T. M. Chaim-Avancini;F. L.S. Duran;P. G. Rosa;D. Grotegerd;P. Najt;M. J. Kempton;D. J. Stein;J. C. Soares;C. Henry;T. B. Meier;C. J. Ekman;A. J. Lloyd;D. M. Cannon;L. Rauer;T. G.M. Van Erp;M. P. Boks;F. M. Howells;L. M. Beard,2018-04-01,159,Molecular Psychiatry,932-942,10.1038/mp.2017.73,28461699,85044307410,2-s2.0-85044307410,Article,,https://api.elsevier.com/content/abstract/scopus_id/85044307410,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85044307410&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85044307410&origin=inward +Glutamatergic signaling drives ketamine-mediated response in depression: Evidence from dynamic causal modeling,Nugent,Allison C. Nugent;Julia S. Yarrington;Carlos A. Zarate;Jessica R. Gilbert;Kathleen E. Wills,2018-01-01,7,International Journal of Neuropsychopharmacology,740-747,10.1093/ijnp/pyy041,29668918,85055321060,2-s2.0-85055321060,Article,NARSAD,https://api.elsevier.com/content/abstract/scopus_id/85055321060,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85055321060&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85055321060&origin=inward +Ketamine normalizes brain activity during emotionally valenced attentional processing in depression,Nugent,Allison C. Nugent;Joanna E. Szczepanik;Maura L. Furey;Carlos A. Zarate;Jennifer W. Evans;Jessica L. Reed,2018-01-01,13,NeuroImage: Clinical,92-101,10.1016/j.nicl.2018.07.006,30094160,85049802328,2-s2.0-85049802328,Article,NARSAD,https://api.elsevier.com/content/abstract/scopus_id/85049802328,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85049802328&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85049802328&origin=inward +The antidepressant efficacy of subanesthetic-dose ketamine does not correlate with baseline subcortical volumes in a replication sample with major depressive disorder,Nugent,Marc Lener;Elizabeth D. Ballard;Allison C. Nugent;Lawrence Park;Nirmala Akula;Nancy E. Brutsche;Francis J. McMahon;Minkyung Park;Dawn F. Ionescu;Dipavo Banerjee;Rodrigo Machado-Vieira;Carlos A. Zarate;Mark J. Niciu;Nicolas D. Iadarola;David A. Luckenbaugh,2017-12-01,7,Journal of Psychopharmacology,1570-1577,10.1177/0269881117732514,29039254,85036582759,2-s2.0-85036582759,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85036582759,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85036582759&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85036582759&origin=inward +Active suicidal ideation during clinical antidepressant trials,Nugent,Elizabeth D. Ballard;Allison C. Nugent;Lawrence Park;Sam L. Snider;Carlos A. Zarate;David A. Luckenbaugh,2017-11-01,4,Psychiatry Research,303-308,10.1016/j.psychres.2017.07.065,28787656,85026764788,2-s2.0-85026764788,Article,NARSAD,https://api.elsevier.com/content/abstract/scopus_id/85026764788,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85026764788&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85026764788&origin=inward +Using Neuroimaging to Decipher the Mechanism of Action of Ketamine: A Pathway to Novel Therapeutics?,Nugent,Allison C. Nugent;Carlos A. Zarate,2017-10-01,0,Biological Psychiatry: Cognitive Neuroscience and Neuroimaging,549-551,10.1016/j.bpsc.2017.08.006,29560906,85032860727,2-s2.0-85032860727,Note,,https://api.elsevier.com/content/abstract/scopus_id/85032860727,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85032860727&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85032860727&origin=inward +Altered interaction with environmental reinforcers in major depressive disorder: Relationship to anhedonia,Nugent,Allison C. Nugent;Joanna E. Szczepanik;Ioline D. Henter;Maura L. Furey;Carlos A. Zarate;Carl W. Lejuez,2017-10-01,7,Behaviour Research and Therapy,170-177,10.1016/j.brat.2017.08.003,28806614,85029093166,2-s2.0-85029093166,Article,NARSAD,https://api.elsevier.com/content/abstract/scopus_id/85029093166,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85029093166&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85029093166&origin=inward +Subtle predictive movements reveal actions regardless of social context,Pereira,Maryam Vaziri-Pashkam;Emalie G. McMahon;Leslie G. Ungerleider;Ray Gonzalez;Charles Y. Zheng;Francisco Pereira,2019-01-01,1,Journal of Vision,1-16,10.1167/19.7.16,31355865,85070377579,2-s2.0-85070377579,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85070377579,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85070377579&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85070377579&origin=inward +Toward a universal decoder of linguistic meaning from brain activation,Pereira,Nancy Kanwisher;Samuel J. Gershman;Bin Lou;Samuel Ritter;Evelina Fedorenko;Matthew Botvinick;Brianna Pritchett;Francisco Pereira,2018-12-01,29,Nature Communications,,10.1038/s41467-018-03068-4,29511192,85043299770,2-s2.0-85043299770,Article,IARPA,https://api.elsevier.com/content/abstract/scopus_id/85043299770,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85043299770&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85043299770&origin=inward +Hypoplasia of cerebellar afferent networks in Down syndrome revealed by DTI-driven tensor based morphometry,Pierpaoli,Amritha Nayak;Liv S. Clasen;Catherine J. Stoodley;Elizabeth Adeyemi;M. Okan Irfanoglu;Neda Sadeghi;Carlo Pierpaoli;Nancy Raitano Lee,2020-12-01,0,Scientific Reports,,10.1038/s41598-020-61799-1,32214129,85082483311,2-s2.0-85082483311,Article,NIBIB,https://api.elsevier.com/content/abstract/scopus_id/85082483311,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85082483311&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85082483311&origin=inward +Image processing and analysis methods for the Adolescent Brain Cognitive Development Study,Pierpaoli,Aimee Goldstone;Steve Heeringa;James M. Bjork;Thomas Ernst;Adriana Galvan;Vani Pariyadath;Joanna Jacobus;Florence J. Breslin;Darrick T. Sturgeon;Mary Soules;Hauke Bartsch;Antonio Noronha;Carlo Pierpaoli;Anthony Steven Dick;Michael C. Riedel;Christian Hopfer;W. Kyle Simmons;Laura Hilmer;Damien A. Fair;M. Alejandra Infante;Rahul Desikan;Adolf Pfefferbaum;Marie T. Banich;Jonathan R. Polimeni;Mary M. Heitzeg;Richard Watts;Megan Herting;Carolina Makowski;Jerzy Bodurka;Devin Prouty;Oscar Miranda-Dominguez;M. Daniela Cornejo;Kevin Conway;Fiona C. Baker;Matthew T. Sutherland;Raul Gonzalez;Susan RB Weiss;John A. Matochik;Eric A. Earl;Hugh P. Garavan;Katia D. Howlett;Angela R. Laird;Kevin M. Gray;Elizabeth R. Sowell;Marsha Lopez;Linda Chang;Lindsay M. Squeglia;Yi Li;Feng Xue;David N. Kennedy;Linda B. Cottler;Wesley K. Thompson;Monica D. Rosenberg;Elizabeth Hoffman;Kristina Uban;Chelsea S. Sicat;Mirella Dapretto;Bonnie J. Nagel;Kara Bagot;Kevin Patrick;Michael P. Harms;Mariana Sanchez;Leo Sugrue;Paul D. Shilling;Jody Tanabe;Andre van der Kouwe;B. J. Casey;Thanh T. Trinh;Sara Jo Nixon;Roger Little;Christopher J. Pung;Martin P. Paulus;Samuel W. Hawes;Kilian M. Pohl;Susan Y. Bookheimer;Luke W. Hyde;Christine Cloak;Rebecca DelCarmen-Wiggins;Sarah W. Feldstein Ewing;Anders J. Perrone;Joshua Kuperman;Jay Giedd;Will M. Aklin;Amanda Sheffield Morris;Meyer Glantz;Ruben P. Alvarez;Jazmin Diaz;Octavio Ruiz de Leon;Scott Peltier;Donald J. Hagler;Sean N. Hatton;Joseph Sakai;Dana L. Wolff-Hughes;Gloria Reeves;Naomi Friedman;Andrew S. Nencka;Susan F. Tapert;John K. Hewitt;Michael C. Neale;Deanna M. Barch,2019-11-15,17,NeuroImage,,10.1016/j.neuroimage.2019.116091,31415884,85072244119,2-s2.0-85072244119,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85072244119,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85072244119&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85072244119&origin=inward +The effect of Zika virus infection in the ferret,Pierpaoli,William G. Valiant;Sharon L. Juliano;Francis T. Djankpa;Elizabeth B. Hutchinson;Mitali Chatterjee;Laura Reyes;Bernard Dardzinski;Carlo Pierpaoli;Joseph J. Mattapallil,2019-07-01,3,Journal of Comparative Neurology,1706-1719,10.1002/cne.24640,30680733,85061588504,2-s2.0-85061588504,Article,USUHS,https://api.elsevier.com/content/abstract/scopus_id/85061588504,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85061588504&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85061588504&origin=inward +Evaluating corrections for Eddy-currents and other EPI distortions in diffusion MRI: methodology and a dataset for benchmarking,Pierpaoli,M. Okan Irfanoglu;Amritha Nayak;Joelle Sarlls;Carlo Pierpaoli,2019-04-01,2,Magnetic Resonance in Medicine,2774-2787,10.1002/mrm.27577,30394561,85056086505,2-s2.0-85056086505,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85056086505,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85056086505&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85056086505&origin=inward +Characterization and correlation of signal drift in diffusion weighted MRI,Pierpaoli,Prasanna Parvathaneni;Colin B. Hansen;Roza G. Bayrak;Okan Irfanoglu;Justin A. Blaber;Kurt G. Schilling;Bennett A. Landman;Carlo Pierpaoli;Adam W. Anderson;Baxter P. Rogers;Allison E. Hainline;Vishwesh Nath,2019-04-01,0,Magnetic Resonance Imaging,133-142,10.1016/j.mri.2018.11.009,30468766,85057278514,2-s2.0-85057278514,Article,NCATS,https://api.elsevier.com/content/abstract/scopus_id/85057278514,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85057278514&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85057278514&origin=inward +The spectrum of brainstem malformations associated to mutations of the tubulin genes family: MRI and DTI analysis,Pierpaoli,Enza Maria Valente;Filippo Arrigoni;Romina Romaniello;Fabio Triulzi;Eugen Boltshauser;Renato Borgatti;Carlo Pierpaoli;Andrea Poretti;Thierry André Gerard Marie Huisman;Sara Nuovo;Maria Teresa Bassi;Denis Peruzzo,2019-02-01,6,European Radiology,770-782,10.1007/s00330-018-5610-0,30066250,85052084606,2-s2.0-85052084606,Article,ERC,https://api.elsevier.com/content/abstract/scopus_id/85052084606,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85052084606&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85052084606&origin=inward +Limits to anatomical accuracy of diffusion tractography using modern approaches,Pierpaoli,Prasanna Parvathaneni;Jonathan Rafael-Patino;Gaëtan Rensonnet;Kurt G. Schilling;Tim B. Dyrby;Elda Fischi;Adam W. Anderson;Vishwesh Nath;Peter Neher;M. Okan Irfanoglu;Muhamed Barakovic;Maxime Descoteaux;Alice Bates;Francois Rheault;Yogesh Rathi;Marco Pizzolato;Jasmeen Sidhu;Alessandro Daducci;Erick J. Canales-Rodríguez;Justin Blaber;Gabriel Girard;Ragini Verma;Jean Philippe Thiran;Cibu Thomas;Bennett A. Landman;Carlo Pierpaoli;Colin Hansen;Yurui Gao;Chao Huang;Liming Zhong;Hongtu Zhu;David Romascano;Ryan Cabeen;Arthur W. Toga;Jean Christophe Houde;Mario Ocampo-Pineda;Guillaume Theaud;Yonggang Shi;Simona Schiavi;Carl Fredrik Westin;Dogu Baran Aydogan;Maxime Chamberland,2019-01-15,27,NeuroImage,1-11,10.1016/j.neuroimage.2018.10.029,30317017,85054788458,2-s2.0-85054788458,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85054788458,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85054788458&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85054788458&origin=inward +Consideration of cerebrospinal fluid intensity variation in diffusion weighted MRI,Pierpaoli,Susan Resnick;Owen Williams;Prasanna Parvathaneni;Colin B. Hansen;Roza G. Bayrak;Okan Irfanoglu;Justin A. Blaber;Kurt G. Schilling;Lori Beason-Held;Carlo Pierpaoli;Adam W. Anderson;Baxter P. Rogers;Bennett A. Landman;Allison E. Hainline;Vishwesh Nath,2019-01-01,0,Progress in Biomedical Optics and Imaging - Proceedings of SPIE,,10.1117/12.2512949,,85068356425,2-s2.0-85068356425,Conference Paper,NIA,https://api.elsevier.com/content/abstract/scopus_id/85068356425,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85068356425&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85068356425&origin=inward +The phenotypic landscape of a Tbc1d24 mutant mouse includes convulsive seizures resembling human early infantile epileptic encephalopathy,Pierpaoli,Risa Tona;Laura D. Reyes;Lijin Dong;Wenqian Chen;Koichi Omori;Thomas B. Friedman;Ya Xian Wang;Robert J. Morell;Matthew F. Starost;Ronald S. Petralia;Yogita Chudasama;Takushi Miyoshi;Inna A. Belyantseva;Carlo Pierpaoli;Kevin D. Cravedi;Yoko Nakano;Talah T. Wafa;Jeeva P. Munasinghe;Johann Du Hoffmann;Tracy S. Fitzgerald;Botond Banfi,2019-01-01,5,Human Molecular Genetics,1530-1547,10.1093/hmg/ddy445,30602030,85062880596,2-s2.0-85062880596,Article,NIBIB,https://api.elsevier.com/content/abstract/scopus_id/85062880596,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85062880596&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85062880596&origin=inward +Tensor-based morphometry using scalar and directional information of diffusion tensor MRI data (DTBM): Application to hereditary spastic paraplegia,Pierpaoli,Pooja Modi;Filippo Arrigoni;Amritha Nayak;Maria Grazia D'Angelo;Elizabeth B. Hutchinson;M. Okan Irfanoglu;Neda Sadeghi;Cibu Thomas;Carlo Pierpaoli;Maria Teresa Bassi,2018-12-01,4,Human Brain Mapping,4643-4651,10.1002/hbm.24278,30253021,85053780358,2-s2.0-85053780358,Article,CDMRP,https://api.elsevier.com/content/abstract/scopus_id/85053780358,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85053780358&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85053780358&origin=inward +Detection and distinction of mild brain injury effects in a ferret model using diffusion tensor MRI (DTI) and DTI-driven tensor-based morphometry (D-TBM),Pierpaoli,M. O. Irfanoglu;Elizabeth B. Hutchinson;Neda Sadeghi;Michal E. Komlosh;Susan C. Schwerin;Carlo Pierpaoli;Kryslaine L. Radomski;Sharon L. Juliano,2018-08-17,2,Frontiers in Neuroscience,,10.3389/fnins.2018.00573,,85052203281,2-s2.0-85052203281,Article,NIBIB,https://api.elsevier.com/content/abstract/scopus_id/85052203281,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85052203281&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85052203281&origin=inward +Neuronal-Specific TUBB3 Is Not Required for Normal Neuronal Function but Is Essential for Timely Axon Regeneration,Pierpaoli,Eric A. Huebner;Alban Latremoliere;Max A. Tischfield;Michelle DeLisle;Mary C. Whitman;Chen Wu;Crystal Hermawan;Elaine Nguyen;Yanjie Fan;Takao Omura;Sheena Chew;Andrew Sheridan;Frederic Latremoliere;Clifford J. Woolf;Sara Golidy;Carlo Pierpaoli;Shu Hsien Sheu;Long Cheng;Chloe Alexandre;Elizabeth B. Hutchinson;Elizabeth C. Engle,2018-08-14,8,Cell Reports,1865-1879.e9,10.1016/j.celrep.2018.07.029,30110642,85051241212,2-s2.0-85051241212,Article,CDMRP,https://api.elsevier.com/content/abstract/scopus_id/85051241212,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85051241212&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85051241212&origin=inward +Progression of histopathological and behavioral abnormalities following mild traumatic brain injury in the male ferret,Pierpaoli,Elizabeth B. Hutchinson;Mitali Chatterjee;Susan C. Schwerin;Aminat O. Imam-Fulani;Carlo M. Pierpaoli;Kryslaine L. Radomski;Sharon L. Juliano,2018-04-01,4,Journal of Neuroscience Research,556-572,10.1002/jnr.24218,29360208,85040861897,2-s2.0-85040861897,Article,NIBIB,https://api.elsevier.com/content/abstract/scopus_id/85040861897,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85040861897&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85040861897&origin=inward +Phantom-based field maps for gradient nonlinearity correction in diffusion imaging,Pierpaoli,Justin Blaber;Allen T. Newton;Colin B. Hansen;Jeffrey J. Luci;Adam W. Anderson;Baxter P. Rogers;Carlo Pierpaoli;Bennett A. Landman;E. Brian Welch,2018-01-01,0,Progress in Biomedical Optics and Imaging - Proceedings of SPIE,,10.1117/12.2293786,,85049257605,2-s2.0-85049257605,Conference Paper,NIBIB,https://api.elsevier.com/content/abstract/scopus_id/85049257605,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85049257605&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85049257605&origin=inward +"Analysis of the effects of noise, DWI sampling, and value of assumed parameters in diffusion MRI models",Pierpaoli,Evren Özarslan;C. Guan Koay;Elizabeth B. Hutchinson;M. Okan Irfanoglu;Alan S. Barnett;Alexandru V. Avram;Michal E. Komlosh;Susan C. Schwerin;Carlo Pierpaoli;Sharon L. Juliano,2017-11-01,27,Magnetic Resonance in Medicine,1767-1780,10.1002/mrm.26575,28090658,85031324865,2-s2.0-85031324865,Article,,https://api.elsevier.com/content/abstract/scopus_id/85031324865,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85031324865&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85031324865&origin=inward +Defining an analytic framework to evaluate quantitative MRI markers of traumatic axonal injury: Preliminary results in a mouse closed head injury model,Pierpaoli,W. H. Cheng;M. O. Irfanoglu;R. Diaz-Arrastia;D. Namjoshi;C. Pierpaoli;P. Cripton;E. B. Hutchinson;M. Haber;C. Wellington;N. Sadeghi,2017-09-01,10,eNeuro,,10.1523/ENEURO.0164-17.2017,28966972,85032155283,2-s2.0-85032155283,Article,CNRM,https://api.elsevier.com/content/abstract/scopus_id/85032155283,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85032155283&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85032155283&origin=inward +ENIGMA and global neuroscience: A decade of large-scale studies of the brain in health and disease across more than 40 countries,Pine,Katrina L. Grasby;Gianfranco Spalletta;Georg Homuth;Carrie Esopenko;Fabrizio Piras;Daniel Garijo;Charlotte A.M. Cecil;Hans J. Grabe;Jun Soo Kwon;Janita Bralten;Carolien G.F. de Kovel;Graeme Fairchild;Sara Bertolín;Janna Marie Bas-Hoogendam;Eus J.W. Van Someren;Marieke Klein;Guohao Zhang;Tianye Jia;Norbert Hosten;Esther Walton;Karen Caeyenberghs;Gary Donohoe;Rachel M. Brouwer;Sylvane Desrivieres;Ronald A. Cohen;Bhim M. Adhikari;Yolanda Gil;Laurena Holleran;Joseph O’ Neill;Simon E. Fisher;Jian Chen;Courtney A. Filippi;Jean Paul Fouche;Guido A. van Wingen;Stephane A. De Brito;Udo Dannlowski;Pauline Favre;Laura A. Berner;Robert R. Althoff;Iliyan Ivanov;Natalia Shatokhina;Anderson M. Winkler;Stefan Ehrlich;Moji Aghajani;James H. Cole;Bernhard T. Baune;Abraham Nunes;Kevin Hilbert;Arielle R. Baskin-Sommers;Tomas Hajek;Nils Opel;Ulrike Lueken;Elena Pozzi;Premika S.W. Boedhoe;Tiffany C. Ho;Josselin Houenou;Neda Jahanshad;Lei Wang;Stephen V. Faraone;Daqiang Sun;David A. Baron;Je Yeon Yun;Leonardo Tozzi;Henry Völzke;Danai Dima;Thomas Frodl;Max A. Laansma;André Aleman;Ingrid Agartz;Jan K. Buitelaar;Lisa T. Eyler;Joanna Bright;Jeanne Leerssen;Ole A. Andreassen;Andre Altmann;Sophia I. Thomopoulos;Brenda L. Bartnik-Olson;Yanli Zhang-James;Merel C. Postema;Sonja M.C. de Zwarte;Margaret J. Wright;Willem B. Bruin;Alexander Teumer;Federica Piras;Robin Bülow;Carrie E. Bearden;Carles Soriano-Mas;Lauren E. Salminen;Sean N. Hatton;Emily L. Dennis;Yann Chye;Katharina Wittfeld;Amanda K. Tilot;Paul M. Thompson;Clyde Francks;Christopher R.K. Ching;Celia van der Merwe;Laura K.M. Han;Sinead Kelly;Patricia J. Conrod,2020-12-01,14,Translational Psychiatry,,10.1038/s41398-020-0705-1,32198361,85082148270,2-s2.0-85082148270,Review,NIH,https://api.elsevier.com/content/abstract/scopus_id/85082148270,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85082148270&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85082148270&origin=inward +Neural mechanisms underlying heterogeneous expression of threat-related attention in social anxiety,Pine,Travis C. Evans;Daniel S. Pine;Nathan A. Fox;Jennifer C. Britton;Yair Bar-Haim,2020-09-01,0,Behaviour Research and Therapy,,10.1016/j.brat.2020.103657,32682075,85087950578,2-s2.0-85087950578,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85087950578,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85087950578&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85087950578&origin=inward +2019 Articles of import and Impact,Pine,Elisabeth Binder;Ned H. Kalin;Shapir Rosenberg;Kathleen T. Brady;Daniel S. Pine;David A. Lewis;Madhukar Trivedi;Carolyn Rodriguez,2020-01-01,0,American Journal of Psychiatry,17-19,10.1176/appi.ajp.2019.19111124,31892299,85077438480,2-s2.0-85077438480,Editorial,,https://api.elsevier.com/content/abstract/scopus_id/85077438480,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85077438480&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85077438480&origin=inward +ENIGMA-anxiety working group: Rationale for and organization of large-scale neuroimaging studies of anxiety disorders,Pine,Anita Harrewijn;Sophia I. Thomopoulos;Moji Aghajani;Ulrike Lueken;Nic J.A. van der Wee;Dan J. Stein;Daniel S. Pine;Dick J. Veltman;Kevin Hilbert;Neda Jahanshad;Nynke A. Groenewold;Janna Marie Bas-Hoogendam;Gabrielle F. Freitag;Anderson M. Winkler;Paul M. Thompson,2020-01-01,0,Human Brain Mapping,,10.1002/hbm.25100,,85087404076,2-s2.0-85087404076,Review,,https://api.elsevier.com/content/abstract/scopus_id/85087404076,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85087404076&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85087404076&origin=inward +Associations Between Anxious and Depressive Symptoms and the Recognition of Vocal Socioemotional Expressions in Youth,Pine,Eric E. Nelson;Daniel S. Pine;Michele Morningstar;Brent I. Rappaport;Melanie A. Dirks,2019-05-04,5,Journal of Clinical Child and Adolescent Psychology,491-500,10.1080/15374416.2017.1350963,28820619,85027842611,2-s2.0-85027842611,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85027842611,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85027842611&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85027842611&origin=inward +Altered uncinate fasciculus microstructure in childhood anxiety disorders in boys but not girls,Pine,Ned H. Kalin;Lisa E. Williams;Daniel S. Pine;Patrick H. Roseboom;Do P.M. Tromp;Andrew L. Alexander;Gregory M. Rogers;Andrew S. Fox;Jonathan A. Oler;Brenda E. Benson,2019-03-01,6,American Journal of Psychiatry,208-216,10.1176/appi.ajp.2018.18040425,30654645,85062877576,2-s2.0-85062877576,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85062877576,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85062877576&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85062877576&origin=inward +Differential engagement of cognitive control regions and subgenual cingulate based upon presence or absence of comorbid anxiety with depression,Pine,Víctor G. Patrón;Alessandra M. Passarotti;Yi Shin Chang;Samantha D. Corwin;Daniel S. Pine;Jonathan P. Stange;Scott A. Langenecker;Kristy A. Skerrett;Natania A. Crane;Jon Kar Zubieta;Lisanne M. Jenkins;Katie L. Bessette,2018-12-01,1,Journal of Affective Disorders,371-380,10.1016/j.jad.2018.07.082,30145507,85051920438,2-s2.0-85051920438,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85051920438,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85051920438&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85051920438&origin=inward +Can a framework be established for the safe use of ketamine?,Pine,Yasmin L. Hurd;Tyrone D. Cannon;Daniel S. Pine;Javier Escobar;Mauricio Tohen;Joan Luby;A. John Rush;Yu Xin;Alan S. Brown;Terrie E. Moffitt;Maria Oquendo;Felton J. Earls;Roy H. Perlis;David A. Lewis;Carol A. Tamminga;Carlos López-Jaramillo;Helen S. Mayberg;Katherine L. Wisner;Eduard Vieta;Robert Freedman;Benjamin G. Druss,2018-07-01,8,American Journal of Psychiatry,587-589,10.1176/appi.ajp.2018.18030290,29656666,85049408362,2-s2.0-85049408362,Editorial,,https://api.elsevier.com/content/abstract/scopus_id/85049408362,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85049408362&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85049408362&origin=inward +Changes in neural activation underlying attention processing of emotional stimuli following treatment with positive search training in anxious children,Pine,Brendan P. Bradley;Allison M. Waters;Melanie J. Zimmer-Gembeck;Ross Cunnington;Yuan Cao;Karin Mogg;David H.K. Shum;Michelle G. Craske;Daniel S. Pine;Rachel Kershaw;Georg M. Kerbler,2018-04-01,2,Journal of Anxiety Disorders,22-30,10.1016/j.janxdis.2018.02.004,29554643,85044124198,2-s2.0-85044124198,Article,ARC,https://api.elsevier.com/content/abstract/scopus_id/85044124198,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85044124198&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85044124198&origin=inward +A systematic review of attentional biases in disorders involving binge eating,Pine,Kerri N. Boutelle;Lisa M. Shank;Monika Stojek;Eric E. Nelson;Scott G. Engel;Diana M. Bongiorno;Daniel S. Pine;Marian Tanofsky-Kraff;Jack A. Yanovski;Anna Vannucci;Andrew J. Waters,2018-04-01,16,Appetite,367-389,10.1016/j.appet.2018.01.019,29366932,85041589756,2-s2.0-85041589756,Review,NICHD,https://api.elsevier.com/content/abstract/scopus_id/85041589756,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85041589756&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85041589756&origin=inward +Linked networks for learning and expressing location-specific threat,Pine,Benjamin Suarez-Jimenez;Neil Burgess;Daniel S. Pine;John A. King;James A. Bisby;Aidan J. Horner,2018-01-30,5,Proceedings of the National Academy of Sciences of the United States of America,E1032-E1040,10.1073/pnas.1714691115,29326231,85041195832,2-s2.0-85041195832,Article,UCL,https://api.elsevier.com/content/abstract/scopus_id/85041195832,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85041195832&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85041195832&origin=inward +2017 in Review,Pine,A. John Rush;Susan K. Schultz;Rachel Katz;Daniel S. Pine;David A. Lewis;Robert Freedman;Carol A. Tamminga;Robert Michels,2017-12-01,0,The American journal of psychiatry,1140-1143,10.1176/appi.ajp.2017.17101073,29191032,85064965281,2-s2.0-85064965281,Editorial,,https://api.elsevier.com/content/abstract/scopus_id/85064965281,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85064965281&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85064965281&origin=inward +Elevating the role of subjective experience in the clinic: Response to fanselow and pennington,Pine,Daniel S. Pine;Joseph E. LeDoux,2017-11-01,14,American Journal of Psychiatry,1121-1122,10.1176/appi.ajp.2017.17070818r,29088936,85033214134,2-s2.0-85033214134,Letter,,https://api.elsevier.com/content/abstract/scopus_id/85033214134,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85033214134&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85033214134&origin=inward +"Efficacy and safety of selective serotonin reuptake inhibitors, serotonin-norepinephrine reuptake inhibitors, and placebo for common psychiatric disorders among children and adolescents: A systematic review and meta-analysis",Pine,Cosima Locher;Helen Koechlin;Daniel S. Pine;Irving Kirsch;Christoph Werner;Sean R. Zion;Joe Kossowsky;Ronald C. Kessler,2017-10-01,94,JAMA Psychiatry,1011-1020,10.1001/jamapsychiatry.2017.2432,28854296,85030655275,2-s2.0-85030655275,Article,SNSF,https://api.elsevier.com/content/abstract/scopus_id/85030655275,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85030655275&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85030655275&origin=inward +Can less be more? Open trial of a stepped care approach for child and adolescent anxiety disorders,Pine,Daniel S. Pine;Yasmin Rey;Jeremy W. Pettit;Daniella Vaclavik;Yair Bar-Haim;Michele Bechor;Raquel Melendez;Wendy K. Silverman;Victor Buitron,2017-10-01,6,Journal of Anxiety Disorders,7-13,10.1016/j.janxdis.2017.08.004,28843575,85028330408,2-s2.0-85028330408,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85028330408,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85028330408&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85028330408&origin=inward +The Unpredictive Brain Under Threat: A Neurocomputational Account of Anxious Hypervigilance,Pine,Daniel S. Pine;Christian Grillon;Cassie Overstreet;Marta I. Garrido;Brian R. Cornwell,2017-09-15,15,Biological Psychiatry,447-454,10.1016/j.biopsych.2017.06.031,28838469,85027895305,2-s2.0-85027895305,Article,,https://api.elsevier.com/content/abstract/scopus_id/85027895305,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85027895305&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85027895305&origin=inward +Interaction of induced anxiety and verbal working memory: Influence of trait anxiety,Pine,Nilam Patel;Catherine Stoodley;Daniel S. Pine;Christian Grillon;Monique Ernst,2017-09-01,3,Learning and Memory,407-413,10.1101/lm.044123.116,28814466,85027557045,2-s2.0-85027557045,Article,,https://api.elsevier.com/content/abstract/scopus_id/85027557045,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85027557045&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85027557045&origin=inward +"Validation of the NIMH-ChEFS adolescent face stimulus set in an adolescent, parent, and health professional sample",Pine,Andrea Trubanova;Daniel S. Pine;Jungmeen Kim-Spoon;Susan W. White;Marika C. Coffman;Thomas H. Ollendick;J. Anthony Richey,2015-12-01,9,International journal of methods in psychiatric research,275-286,10.1002/mpr.1490,26359940,85027938208,2-s2.0-85027938208,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85027938208,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85027938208&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85027938208&origin=inward +Cognitive control moderates early childhood temperament in predicting social behavior in 7-year-old children: an ERP study,Pine,Olga L. Walker;Daniel S. Pine;Nathan A. Fox;Heather A. Henderson;Jennifer M.artin McDermott;Kathryn A. Degnan;Connie Lamm,2014-09-01,51,Developmental science,667-681,10.1111/desc.12158,24754610,85027923353,2-s2.0-85027923353,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85027923353,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85027923353&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85027923353&origin=inward +Polishing the windows of the mind,Pine,Daniel S. Pine;Cameron S. Carter,2006-01-01,7,American Journal of Psychiatry,761-763,10.1176/ajp.2006.163.5.761,16648308,85047698791,2-s2.0-85047698791,Editorial,,https://api.elsevier.com/content/abstract/scopus_id/85047698791,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85047698791&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85047698791&origin=inward +Conflict of interest,Pine,Susan K. Schultz;Daniel S. Pine;David A. Lewis;Carol A. Tamminga;Robert Freedman;Robert Michels,2006-01-01,12,American Journal of Psychiatry,571-573,10.1176/ajp.2006.163.4.571,16585427,85047697920,2-s2.0-85047697920,Editorial,,https://api.elsevier.com/content/abstract/scopus_id/85047697920,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85047697920&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85047697920&origin=inward +Stress responsivity and HPA axis activity in juveniles: Results from a home-based CO2 inhalation study,Pine,John L. Moulton;Salvatore Mannuzza;Thomas A. Terleph;Daniel S. Pine;Girma Woldehawariat;Mary Guardino;Roxann Roberson-Nay;Rachel G. Klein,2006-01-01,14,American Journal of Psychiatry,738-740,10.1176/ajp.2006.163.4.738,16585453,85047700481,2-s2.0-85047700481,Article,,https://api.elsevier.com/content/abstract/scopus_id/85047700481,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85047700481&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85047700481&origin=inward +Missense variants in ATP1A3 and FXYD gene family are associated with childhood-onset schizophrenia,Rapoport,Patrick A. Dion;Claudine Laurent;Dan Spiegelman;Boris Chaumette;David Cohen;Alice Goldenberg;Alexandre Dionne-Laporte;Priscille Gerardin;Judith Rapoport;Guy A. Rouleau;Amirthagowri Ambalavanan;Vladimir Ferrafiat,2020-04-01,10,Molecular Psychiatry,821-830,10.1038/s41380-018-0103-8,29895895,85048372347,2-s2.0-85048372347,Article,,https://api.elsevier.com/content/abstract/scopus_id/85048372347,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85048372347&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85048372347&origin=inward +Childhood-Onset Schizophrenia and Early-onset Schizophrenia Spectrum Disorders: An Update,Rapoport,Nitin Gogtay;Shari Thomas;Judith L. Rapoport;David I. Driver,2020-01-01,2,Child and Adolescent Psychiatric Clinics of North America,71-90,10.1016/j.chc.2019.08.017,31708054,85074513250,2-s2.0-85074513250,Review,,https://api.elsevier.com/content/abstract/scopus_id/85074513250,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85074513250&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85074513250&origin=inward +Sleep neurophysiology in childhood onset schizophrenia,Rapoport,Peter A. Gochman;Ashura Buckley;Kerstin Hoedlmoser;Diane Dillard-Broadnax;Judith L. Rapoport;Andjela Markovic;Leila Tarokh;David I. Driver,2020-01-01,0,Journal of Sleep Research,,10.1111/jsr.13039,,85083968939,2-s2.0-85083968939,Article,,https://api.elsevier.com/content/abstract/scopus_id/85083968939,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85083968939&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85083968939&origin=inward +Neuronal impact of patient-specific aberrant NRXN1α splicing,Rapoport,Hardik Shah;Ian Ladran;Michael B. Fernando;P. J.Michael Deans;Madeline Halpern;Robert Sebra;Kristen J. Brennand;Esther Cheng;Megan Fitzgerald;Judith Rapoport;Gang Fang;Nadine Schrode;Peter Gochman;Alesia Antoine;Gabriel E. Hoffman;Gintaras Deikus;Natalie Barretto;Nadejda M. Tsankova;Robert McCullumsmith;Erin Flaherty;Khaled Alganem;Shijia Zhu;Nancy Francoeur,2019-12-01,4,Nature Genetics,1679-1690,10.1038/s41588-019-0539-z,31784728,85075779019,2-s2.0-85075779019,Article,ISMMS,https://api.elsevier.com/content/abstract/scopus_id/85075779019,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85075779019&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85075779019&origin=inward +NRXN1 is associated with enlargement of the temporal horns of the lateral ventricles in psychosis,Rapoport,Huma Asif;Godfrey Pearlson;Scot Hill;Carol Tamminga;Olivia Lutz;Victor Zeng;Shashwath A. Meda;David Curtis;Nicolas R. Bolo;Sarah Keedy;Tamar A. Grey;Philip Henson;David C. Glahn;James L. Reilly;John A. Sweeney;Deepthi Bannai;Siyuan Liu;Rebecca Shafee;Judith Rapoport;Chunyu Liu;Brett A. Clementz;Ney Alliey-Rodriguez;Elliot S. Gershon;Jaya Padmanabhan;Judith A. Badner;Jonathan Spring;Balaji Narayanan;Uzma Nawaz;Diane Gage;Katherine Reis;Madeline Klinger;Dung T. Hoang;Elena I. Ivleva;Lucas Coppes;Jeffrey R. Bishop;Neeraj Tandon;Rebekka Lencer;Peter Buckley;Matcheri S. Keshavan;Steven McCarroll;Rachal R. Hegde,2019-12-01,1,Translational Psychiatry,,10.1038/s41398-019-0564-9,31530798,85072270340,2-s2.0-85072270340,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85072270340,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85072270340&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85072270340&origin=inward +Exome sequencing of sporadic childhood-onset schizophrenia suggests the contribution of X-linked genes in males,Rapoport,Patrick A. Dion;Simon L. Girard;Dan Spiegelman;Ridha Joober;Boris Chaumette;Martine Therrien;Pingxing Xie;Alexandre Dionne-Laporte;Judith L. Rapoport;Cynthia V. Bourassa;Guy A. Rouleau;Qin He;Amirthagowri Ambalavanan;Lan Xiong;Sirui Zhou;Daniel Rochefort,2019-01-01,3,"American Journal of Medical Genetics, Part B: Neuropsychiatric Genetics",335-340,10.1002/ajmg.b.32683,30378261,85055885920,2-s2.0-85055885920,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85055885920,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85055885920&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85055885920&origin=inward +7 T MRI reveals hippocampal structural abnormalities associated with memory intrusions in childhood-onset schizophrenia,Rapoport,Peter Gochman;Dale Zhou;Rebecca Berman;Siyuan Liu;Diane Broadnax;Judith Rapoport;Adam Thomas;Xueping Zhou,2018-12-01,0,Schizophrenia Research,431-432,10.1016/j.schres.2018.07.023,30029830,85057850353,2-s2.0-85057850353,Letter,,https://api.elsevier.com/content/abstract/scopus_id/85057850353,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85057850353&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85057850353&origin=inward +Symptom dimensions and subgroups in childhood-onset schizophrenia,Rapoport,Peter Gochman;Kirsten E.S. Craddock;Dwight Dickinson;Siyuan Liu;Judith L. Rapoport;Xueping Zhou,2018-07-01,2,Schizophrenia Research,71-77,10.1016/j.schres.2017.10.045,29146021,85034602007,2-s2.0-85034602007,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85034602007,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85034602007&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85034602007&origin=inward +Preventive strategies for mental health,Rapoport,Jacob A. Vorstman;Elena Serrano-Drozdowskyj;Iris E. Sommer;Covadonga M. Díaz-Caneja;Robert Freedman;Patrick D. McGorry;Judith Rapoport;William Carpenter;Oscar Marín;Celso Arango;David McDaid,2018-07-01,55,The Lancet Psychiatry,591-604,10.1016/S2215-0366(18)30057-9,29773478,85047055700,2-s2.0-85047055700,Review,OPC,https://api.elsevier.com/content/abstract/scopus_id/85047055700,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85047055700&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85047055700&origin=inward +Transcriptional signatures of schizophrenia in hiPSC-derived NPCs and neurons are concordant with post-mortem adult brains,Rapoport,Ian Ladran;Brigham J. Hartley;Peter Gochman;Douglas M. Ruderfer;Pamela Sklar;Erin Flaherty;Gabriel E. Hoffman;Judith Rapoport;Kristen J. Brennand;Eli A. Stahl,2017-12-01,38,Nature Communications,,10.1038/s41467-017-02330-5,29263384,85038610723,2-s2.0-85038610723,Article,NYSCF,https://api.elsevier.com/content/abstract/scopus_id/85038610723,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85038610723&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85038610723&origin=inward +Erratum: Dysregulation of miRNA-9 in a Subset of Schizophrenia Patient-Derived Neural Progenitor Cells (Cell Reports (2016) 15(5) (1024–1036) (S2211124716303965) (10.1016/j.celrep.2016.03.090)),Rapoport,Hardik Shah;Brigham J. Hartley;Jessica Johnson;Ngoc Tran;Aaron Topol;Joel T. Dudley;Kristen J. Brennand;Judith Rapoport;Gang Fang;Gerard Cagney;Douglas M. Ruderfer;Mads E. Hauberg;Pamela Sklar;Chelsea Ann Rittenhouse;Ying Chih Wang;David Cotter;Peter A. Gochman;Yoav Hadas;Ben Readhead;Fred H. Gage;Manuel Mattheisen;Shijia Zhu;Jane English;Anthony Simone,2016-05-03,3,Cell Reports,2525,10.1016/j.celrep.2017.08.073,28877483,85028876053,2-s2.0-85028876053,Erratum,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85028876053,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85028876053&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85028876053&origin=inward +Characterization of molecular and cellular phenotypes associated with a heterozygous CNTNAP2 deletion using patient-derived hiPSC neural cells,Rapoport,Brigham J. Hartley;Deborah L. Levy;Inkyu S. Lee;Dheeraj Malhotra;Luciana W. Zuccherato;Jonathan Sebat;Judith Rapoport;Seok Man Ho;Shane McCarthy;Valentina Fossati;Kristen J. Brennand;James R. Lupski;Panagiotis Douvaras;Arthur J. Siegel;Ian G. Ladran;Claudia M.B. Carvalho,2015-06-24,32,npj Schizophrenia,,10.1038/npjschz.2015.19,,85056243298,2-s2.0-85056243298,Review,,https://api.elsevier.com/content/abstract/scopus_id/85056243298,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85056243298&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85056243298&origin=inward +Transcriptomic and cellular decoding of regional brain vulnerability to neurogenetic disorders,Raznahan,François M. Lalonde;Richard A.I. Bethlehem;Liv S. Clasen;Siyuan Liu;František Váša;Konrad Wagstyl;Declan G. Murphy;Petra E. Vértes;Daniel H. Geschwind;Damon Polioudakis;Joan C. Han;Sarah E. Morgan;Rafael Romero-Garcia;Ajay Nadig;Jonathan D. Blumenthal;Armin Raznahan;Luis de la Torre-Ubieta;Jakob Seidlitz;Casey Paquola;Edward T. Bullmore;Nancy R. Lee;Boris Bernhardt,2020-12-01,0,Nature Communications,,10.1038/s41467-020-17051-5,32620757,85087425878,2-s2.0-85087425878,Article,NICHD,https://api.elsevier.com/content/abstract/scopus_id/85087425878,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85087425878&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85087425878&origin=inward +Reciprocal Copy Number Variations at 22q11.2 Produce Distinct and Convergent Neurobehavioral Impairments Relevant for Schizophrenia and Autism Spectrum Disorder,Raznahan,Rachel K. Jonas;Gerhard Helleman;Ariana Vajdi;Amy Lin;Leila Kushan-Wells;Carrie E. Bearden;Lyle Kingsbury;Armin Raznahan;Laura Pacheco Hansen;Maria Jalbrzikowski,2020-08-01,1,Biological Psychiatry,260-272,10.1016/j.biopsych.2019.12.028,32143830,85081326717,2-s2.0-85081326717,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85081326717,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85081326717&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85081326717&origin=inward +Sex chromosome aneuploidy alters the relationship between neuroanatomy and cognition,Raznahan,Ethan Whitman;Liv S. Clasen;François M. Lalonde;Siyuan Liu;Allysa Warling;Jonathan D. Blumenthal;Armin Raznahan;Kathleen Wilson,2020-06-01,0,"American Journal of Medical Genetics, Part C: Seminars in Medical Genetics",493-505,10.1002/ajmg.c.31795,32515138,85086159262,2-s2.0-85086159262,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85086159262,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85086159262&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85086159262&origin=inward +Individual Variation in Functional Topography of Association Networks in Youth,Raznahan,Zaixu Cui;Tyler M. Moore;David R. Roalf;Christos Davatzikos;Desmond J. Oathes;Azeez Adebimpe;Russell T. Shinohara;Cedric H. Xia;Hongming Li;Daniel H. Wolf;Raquel E. Gur;Bart Larsen;Danielle S. Bassett;Armin Raznahan;Yong Fan;Matt Cieslak;Graham L. Baum;Damien A. Fair;Theodore D. Satterthwaite;Ruben C. Gur;Aaron F. Alexander-Bloch,2020-04-22,4,Neuron,340-353.e8,10.1016/j.neuron.2020.01.029,32078800,85081542531,2-s2.0-85081542531,Article,,https://api.elsevier.com/content/abstract/scopus_id/85081542531,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85081542531&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85081542531&origin=inward +Altered Sex Chromosome Dosage Induces Coordinated Shifts in Cortical Anatomy and Anatomical Covariance,Raznahan,Anastasia Xenophontos;Liv S. Clasen;Jakob Seidlitz;Siyuan Liu;Aaron Alexander-Bloch;Jay N. Giedd;Jonathan D. Blumenthal;Armin Raznahan,2020-04-14,3,Cerebral Cortex,2215-2228,10.1093/cercor/bhz235,31828307,85083913416,2-s2.0-85083913416,Article,,https://api.elsevier.com/content/abstract/scopus_id/85083913416,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85083913416&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85083913416&origin=inward +Imaging local genetic influences on cortical folding,Raznahan,Gil D. Hoftman;Godfrey Pearlson;Laura Almasyr;Amanda Rodrigue;Zhixin Lu;Harald H.H. Görring;Josephine Mollon;David C. Glahn;Russell T. Shinohara;Aaron F. Alexander-Bloch;Siyuan Liu;Emma Knowles;Raquel E. Gur;Simon N. Vandekar;John Blangero;Danielle S. Bassett;Armin Raznahan;Samuel R. Matthias;Jakob Seidlitz;Theodore D. Satterthwaite;Joanne E. Curran;Peter T. Fox,2020-03-31,0,Proceedings of the National Academy of Sciences of the United States of America,7430-7436,10.1073/pnas.1912064117,32170019,85082749827,2-s2.0-85082749827,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85082749827,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85082749827&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85082749827&origin=inward +Greater cortical thickness in individuals with ASD,Raznahan,Gabriel A. Devenyi;Michael D. Spencer;Rosemary J. Holt;Michael C. Craig;Michael V. Lombardo;Min Tae M. Park;Declan G.M. Murphy;Jason P. Lerch;Meng Chuan Lai;Evdokia Anagnostou;John Suckling;Stephanie Tullo;Amber N.V. Ruigrok;Christine Ecker;M. Mallar Chakravarty;Rhoshel Lenroot;Lindsay R. Chura;Raihaan Patel;Armin Raznahan;Jurgen Germann;Simon Baron-Cohen;Elizabeth Smith;Audrey Thurm;Margot J. Taylor;Saashi A. Bedford;Edward T. Bullmore;Dorothea L. Floris,2020-03-01,0,Molecular Psychiatry,507-508,10.1038/s41380-020-0691-y,32103162,85080043547,2-s2.0-85080043547,Note,,https://api.elsevier.com/content/abstract/scopus_id/85080043547,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85080043547&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85080043547&origin=inward +"Large-scale analyses of the relationship between sex, age and intelligence quotient heterogeneity and cortical morphometry in autism spectrum disorder",Raznahan,Gabriel A. Devenyi;Michael D. Spencer;Rosemary J. Holt;Michael C. Craig;Michael V. Lombardo;Min Tae M. Park;Declan G.M. Murphy;Jason P. Lerch;Meng Chuan Lai;Evdokia Anagnostou;John Suckling;Stephanie Tullo;Amber N.V. Ruigrok;Christine Ecker;M. Mallar Chakravarty;Rhoshel Lenroot;Lindsay R. Chura;Raihaan Patel;Armin Raznahan;Jurgen Germann;Simon Baron-Cohen;Elizabeth Smith;Audrey Thurm;Margot J. Taylor;Saashi A. Bedford;Edward T. Bullmore;Dorothea L. Floris,2020-03-01,8,Molecular Psychiatry,614-628,10.1038/s41380-019-0420-6,31028290,85065214199,2-s2.0-85065214199,Article,OBI,https://api.elsevier.com/content/abstract/scopus_id/85065214199,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85065214199&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85065214199&origin=inward +"The genetics of cortical myelination in young adults and its relationships to cerebral surface area, cortical thickness, and intelligence: A magnetic resonance imaging study of twins and families: Genetics of Cortical Myelination, Area, Thickness, and Intelligence",Raznahan,Armin Raznahan;Michael C. Neale;Siyuan Liu;J. Eric Schmitt,2020-02-01,2,NeuroImage,,10.1016/j.neuroimage.2019.116319,31678229,85075464173,2-s2.0-85075464173,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85075464173,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85075464173&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85075464173&origin=inward +Development of structure–function coupling in human brain networks during youth,Raznahan,Zaixu Cui;David R. Roalf;Tyler M. Moore;Kosha Ruparel;Philip A. Cook;Desmond J. Oathes;Russell T. Shinohara;Cedric H. Xia;Raquel E. Gur;Richard F. Betzel;Rastko Ciric;Bart Larsen;Danielle S. Bassett;Armin Raznahan;Matthew Cieslak;Graham L. Baum;Theodore D. Satterthwaite;Ruben C. Gur;Aaron F. Alexander-Bloch,2020-01-07,4,Proceedings of the National Academy of Sciences of the United States of America,771-778,10.1073/pnas.1912034117,31874926,85077497083,2-s2.0-85077497083,Article,Penn,https://api.elsevier.com/content/abstract/scopus_id/85077497083,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85077497083&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85077497083&origin=inward +"Advancing equity, diversity, and inclusion in the American College of Neuropsychopharmacology (ACNP): advances, challenges, and opportunities to accelerate progress",Raznahan,Dorothy Hatsukami;James C. Anthony;Armin Raznahan;Sherecce Fields;Carlos A. Zarate;Richard De La Garza;Jack E. Henningfield;Carlos A. Bolaños-Guzmán;Sandra D. Comer;Lawrence S. Brown;Debra Furr-Holden;Albert Garcia-Romeu,2020-01-01,0,Neuropsychopharmacology,,10.1038/s41386-020-0784-y,,85088859688,2-s2.0-85088859688,Note,,https://api.elsevier.com/content/abstract/scopus_id/85088859688,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85088859688&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85088859688&origin=inward +Sex-biased trajectories of amygdalo-hippocampal morphology change over human development,Raznahan,Liv S. Clasen;M. Mallar Chakravarty;Russell T. Shinohara;Jakob Seidlitz;Ari M. Fish;Cassidy L. McDermott;Francois Lalonde;Paul K. Reardon;Ajay Nadig;Jonathan D. Blumenthal;Armin Raznahan;Catherine Mankiw;Jason P. Lerch,2020-01-01,6,NeuroImage,,10.1016/j.neuroimage.2019.116122,31470127,85074153626,2-s2.0-85074153626,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85074153626,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85074153626&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85074153626&origin=inward +The Dynamic Associations between Cortical Thickness and General Intelligence are Genetically Mediated,Raznahan,Liv S. Clasen;Michael C. Neale;Greg L. Wallace;Joshua N. Pritikin;J. Eric Schmitt;Jay N. Giedd;Armin Raznahan;Nancy Raitano Lee,2019-12-17,4,Cerebral Cortex,4743-4752,10.1093/cercor/bhz007,30715232,85075462723,2-s2.0-85075462723,Article,NIEHS,https://api.elsevier.com/content/abstract/scopus_id/85075462723,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85075462723&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85075462723&origin=inward +A framework for the investigation of rare genetic disorders in neuropsychiatry,Raznahan,Alan Anticevic;Thomas Lehner;Joseph Hostyk;Jennifer G. Mulle;Sebastien Jacquemont;David C. Glahn;Christa L. Martin;Jonathan Sebat;Raquel E. Gur;Sergiu P. Pasca;Carrie E. Bearden;Ricardo Dolmetsch;Andres Moreno-De-Luca;Daniel H. Geschwind;David B. Goldstein;Stephan J. Sanders;Paul Avillach;David H. Ledbetter;Elise Douard;Anne Pariser;Rodney Samaco;Mustafa Sahin;Armin Raznahan;Audrey Thurm;Meera E. Modi;Guoping Feng,2019-10-01,9,Nature Medicine,1477-1487,10.1038/s41591-019-0581-5,31548702,85073086752,2-s2.0-85073086752,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85073086752,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85073086752&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85073086752&origin=inward +Comparison of Three-Dimensional Surface Imaging Systems Using Landmark Analysis,Raznahan,William A. Gahl;Denise K. Liberton;Rashmi Mishra;Margaret Beach;Irini Manoli;Janice S. Lee;Armin Raznahan,2019-09-01,1,Journal of Craniofacial Surgery,1869-1872,10.1097/SCS.0000000000005795,31335576,85071514202,2-s2.0-85071514202,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85071514202,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85071514202&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85071514202&origin=inward +Cortical patterning of abnormal morphometric similarity in psychosis is associated with brain expression of schizophrenia-related genes,Raznahan,Philip McGuire;Petra E. Vértes;Machteld Marcelis;Aiden Corvin;Jakob Seidlitz;Cristina Scarpazza;Sarah E. Morgan;David Mothersill;Rafael Romero-Garcia;Nicholas E. Clifton;Kirstie J. Whitaker;Jim van Os;Andrew Pocklington;Edward T. Bullmore;Therese van Amelsvoort;Armin Raznahan;Gary Donohoe,2019-05-07,11,Proceedings of the National Academy of Sciences of the United States of America,9604-9609,10.1073/pnas.1820754116,31004051,85065662406,2-s2.0-85065662406,Article,EC,https://api.elsevier.com/content/abstract/scopus_id/85065662406,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85065662406&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85065662406&origin=inward +Longitudinally mapping childhood socioeconomic status associations with cortical and subcortical morphology,Raznahan,François Lalonde;Liv S. Clasen;M. Mallar Chakravarty;Armin Raznahan;Jakob Seidlitz;Paul Kirkpatrick Reardon;Siyuan Liu;Cassidy L. McDermott;Deanna Greenstein;Ajay Nadig;Jonathan D. Blumenthal;Raihaan Patel;Jason P. Lerch,2019-02-20,23,Journal of Neuroscience,1365-1373,10.1523/JNEUROSCI.1808-18.2018,30587541,85061965677,2-s2.0-85061965677,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85061965677,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85061965677&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85061965677&origin=inward +Sex differences in the developing brain: insights from multimodal neuroimaging,Raznahan,Theodore D. Satterthwaite;Armin Raznahan;Antonia N. Kaczkurkin,2019-01-01,22,Neuropsychopharmacology,71-85,10.1038/s41386-018-0111-z,29930385,85048782995,2-s2.0-85048782995,Review,NARSAD,https://api.elsevier.com/content/abstract/scopus_id/85048782995,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85048782995&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85048782995&origin=inward +Characterization of autism spectrum disorder and neurodevelopmental profiles in youth with XYY syndrome,Raznahan,Anastasia Xenophontos;Colby Chlebowski;Audrey Thurm;Lisa Joseph;Armin Raznahan;Jakob Seidlitz;Liv Clasen;Laura Henry;Erin Torres;Bethany Sauls;Ari Fish;Jonathan Blumenthal;Cristan Farmer;Catherine Mankiw,2018-10-22,5,Journal of Neurodevelopmental Disorders,,10.1186/s11689-018-9248-7,30348076,85055166685,2-s2.0-85055166685,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85055166685,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85055166685&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85055166685&origin=inward +Phonemic and Semantic Verbal Fluency in Sex Chromosome Aneuploidy: Contrasting the Effects of Supernumerary X versus y Chromosomes on Performance,Raznahan,Liv S. Clasen;Gregory L. Wallace;Moshe Maiman;Manisha Udhnani;Jay N. Giedd;Jonathan D. Blumenthal;Armin Raznahan;Nancy Raitano Lee,2018-10-01,1,Journal of the International Neuropsychological Society,917-927,10.1017/S1355617718000723,30375320,85055615115,2-s2.0-85055615115,Article,,https://api.elsevier.com/content/abstract/scopus_id/85055615115,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85055615115&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85055615115&origin=inward +Effects of human sex chromosome dosage on spatial chromosome organization,Raznahan,Armin Raznahan;Jill L. Russ;Ziad Jowhar;Thomas Ried;Erin Torres;Darawalee Wangsa;Gianluca Pegoraro;Prabhakar R. Gudla;Tom Misteli;Sigal Shachar,2018-10-01,6,Molecular Biology of the Cell,2458-2469,10.1091/mbc.E18-06-0359,30091656,85054685381,2-s2.0-85054685381,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85054685381,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85054685381&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85054685381&origin=inward +On testing for spatial correspondence between maps of human brain structure and function,Raznahan,David C. Glahn;Russell T. Shinohara;Simon N. Vandekar;Siyuan Liu;Haochang Shou;Theodore D. Satterthwaite;Armin Raznahan;Aaron F. Alexander-Bloch,2018-09-01,22,NeuroImage,540-551,10.1016/j.neuroimage.2018.05.070,29860082,85048207827,2-s2.0-85048207827,Article,,https://api.elsevier.com/content/abstract/scopus_id/85048207827,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85048207827&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85048207827&origin=inward +Carriage of supernumerary sex chromosomes decreases the volume and alters the shape of limbic structures,Raznahan,Liv S. Clasen;M. Mallar Chakravarty;Jakob Seidlitz;Cassidy L. McDermott;Francois Lalonde;Paul K. Reardon;Ajay Nadig;Jonathan D. Blumenthal;Armin Raznahan;Jason P. Lerch,2018-09-01,6,eNeuro,,10.1523/ENEURO.0265-18.2018,30713992,85061023853,2-s2.0-85061023853,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85061023853,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85061023853&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85061023853&origin=inward +Genetics-First Approaches in Biological Psychiatry,Raznahan,Armin Raznahan,2018-08-15,1,Biological Psychiatry,234-235,10.1016/j.biopsych.2018.06.008,30071946,85050086420,2-s2.0-85050086420,Note,NIH,https://api.elsevier.com/content/abstract/scopus_id/85050086420,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85050086420&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85050086420&origin=inward +Sex-chromosome dosage effects on gene expression in humans,Raznahan,Daniel H. Geschwind;Liv S. Clasen;Andrew R. Zinn;Jasen Wise;Danny Wangsa;Thomas Ried;Jay N. Giedd;Judith Ross;Neelroop N. Parikshak;Vijay Chandran;Declan G.M. Murphy;Patrick F. Bolton;Jonathan D. Blumenthal;Armin Raznahan;Aaron F. Alexander-Bloch,2018-07-10,31,Proceedings of the National Academy of Sciences of the United States of America,7398-7403,10.1073/pnas.1802889115,29946024,85049635443,2-s2.0-85049635443,Article,,https://api.elsevier.com/content/abstract/scopus_id/85049635443,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85049635443&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85049635443&origin=inward +HiCTMap: Detection and analysis of chromosome territory structure and position by high-throughput imaging,Raznahan,Armin Raznahan;Jill L. Russ;Ziad Jowhar;Thomas Ried;Darawalee Wangsa;Gianluca Pegoraro;Prabhakar R. Gudla;Tom Misteli;Sigal Shachar,2018-06-01,8,Methods,30-38,10.1016/j.ymeth.2018.01.013,29408376,85044649476,2-s2.0-85044649476,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85044649476,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85044649476&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85044649476&origin=inward +"Neuroanatomical phenotypes in mental illness: Identifying convergent and divergent cortical phenotypes across autism, ADHD and schizophrenia",Raznahan,Nitin Gogtay;M. Mallar Chakravarty;Min Tae M. Park;Philip Shaw;Jason P. Lerch;Armin Raznahan,2018-05-01,17,Journal of Psychiatry and Neuroscience,201-212,10.1503/jpn.170094,29688876,85046109296,2-s2.0-85046109296,Article,,https://api.elsevier.com/content/abstract/scopus_id/85046109296,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85046109296&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85046109296&origin=inward +Morphometric Similarity Networks Detect Microscale Cortical Organization and Predict Inter-Individual Cognitive Variation,Raznahan,Maxwell Shinn;Jakob Seidlitz;Liv Clasen;Adam Messinger;Raymond J. Dolan;Paul Kirkpatrick Reardon;Siyuan Liu;Peter Fonagy;Peter B. Jones;Rafael Romero-Garcia;František Váša;Kirstie J. Whitaker;Ian M. Goodyer;Edward T. Bullmore;Konrad Wagstyl;Armin Raznahan;David A. Leopold;Petra E. Vértes,2018-01-03,49,Neuron,231-247.e7,10.1016/j.neuron.2017.11.039,29276055,85038870052,2-s2.0-85038870052,Article,WT,https://api.elsevier.com/content/abstract/scopus_id/85038870052,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85038870052&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85038870052&origin=inward +The genetic contributions to maturational coupling in the human cerebrum: A longitudinal pediatric twin imaging study,Raznahan,Jay N. Giedd;Armin Raznahan;Michael C. Neale;J. Eric Schmitt,2018-01-01,6,Cerebral Cortex,3184-3191,10.1093/cercor/bhx190,28968785,85055023744,2-s2.0-85055023744,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85055023744,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85055023744&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85055023744&origin=inward +Sulcal polymorphisms of the IFC and ACC contribute to inhibitory control variability in children and adults,Raznahan,Carole Peyrin;Cloélia Tissier;Olivier Etard;Armin Raznahan;Sylvain Charron;François Orliac;Arnaud Cachia;Olivier Houdé;Grégoire Borst;Adriano Linzarini;Geneviève Allaire-Duquette;Nicolas Poirel;Katell Mevel;Sonia Dollfus,2018-01-01,2,eNeuro,,10.1523/ENEURO.0197-17.2018,29527565,85045673387,2-s2.0-85045673387,Article,,https://api.elsevier.com/content/abstract/scopus_id/85045673387,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85045673387&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85045673387&origin=inward +Normative brain size variation and brain shape diversity in humans,Raznahan,Liv S. Clasen;M. Mallar Chakravarty;Russell T. Shinohara;Jay N. Giedd;Jakob Seidlitz;Francois M. Lalonde;Siyuan Liu;Simon Vandekar;Theodore D. Satterthwaite;Aaron Alexander-Bloch;Min Tae M. Park;Raquel E. Gur;Raihaan Patel;P. K. Reardon;Jonathan D. Blumenthal;Armin Raznahan;Ruben C. Gur;Jason P. Lerch,2018-01-01,36,Science,1222-1227,10.1126/science.aar2578,29853553,85048179321,2-s2.0-85048179321,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85048179321,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85048179321&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85048179321&origin=inward +"Influences of Brain Size, Sex, and Sex Chromosome Complement on the Architecture of Human Cortical Folding",Raznahan,Liv S. Clasen;Jay N. Giedd;Ari M. Fish;Arnaud Cachia;Jean François Mangin;Deanna Greenstein;Jonathan D. Blumenthal;P. K. Reardon;Clara Fischer;Armin Raznahan;Catherine Mankiw,2017-12-01,15,"Cerebral cortex (New York, N.Y. : 1991)",5557-5567,10.1093/cercor/bhw323,27799275,85044560454,2-s2.0-85044560454,Article,,https://api.elsevier.com/content/abstract/scopus_id/85044560454,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85044560454&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85044560454&origin=inward +Spatial gene expression analysis of neuroanatomical differences in mouse models,Raznahan,Lucy R. Osborne;Armin Raznahan;Sean E. Egan;Craig M. Powell;Jacob Ellegood;Randy D. Blakely;Diane M. Robins;Michael W. Salter;Ameet S. Sengar;Rand Askalan;Jason P. Lerch;Darren J. Fernandes;Emanuel Dicicco-Bloom;Jeremy Veenstra-VanderWeele,2017-12-01,5,NeuroImage,220-230,10.1016/j.neuroimage.2017.08.065,28882630,85030164382,2-s2.0-85030164382,Article,NSERC,https://api.elsevier.com/content/abstract/scopus_id/85030164382,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85030164382&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85030164382&origin=inward +Multiple sclerosis lesions in motor tracts from brain to cervical cord: spatial distribution and correlation with disability,Reich,Daniel S. Reich;Renxin Chu;Jennifer Lefeuvre;Benoit Combès;Jan Hillert;Massimo Filippi;Govind Nair;Raphaël Chouteau;Bertrand Audoin;Kouhei Kamiya;Tobias Granberg;Paola Valsasina;Masaaki Hori;Pierre Labauge;Xavier Ayrignac;Maria A. Rocca;Francesca Galassi;Atef Badji;Russell Ouellette;Jérôme De Seze;Julien Cohen-Adad;Lydia Chougar;Gilles Edan;Rohit Bakshi;Elise Bannier;Yasuhiko Tachibana;Nicolas Collongues;Clarisse Carra-Dalliere;Leszek Stawiarz;Jean Pelletier;Adil Maarouf;Charley Gros;Jason Talbott;Virginie Callot;Anne Kerbrat;Josefina Maranzano,2020-07-01,0,Brain : a journal of neurology,2089-2105,10.1093/brain/awaa162,32572488,85088255790,2-s2.0-85088255790,Article,,https://api.elsevier.com/content/abstract/scopus_id/85088255790,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85088255790&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85088255790&origin=inward +Gadolinium should always be used to assess disease activity in MS – Yes,Reich,Daniel S. Reich;Cristina Granziera,2020-06-01,1,Multiple Sclerosis Journal,765-766,10.1177/1352458520911174,32484018,85085876994,2-s2.0-85085876994,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85085876994,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85085876994&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85085876994&origin=inward +Problems and Pitfalls of Identifying Remyelination in Multiple Sclerosis,Reich,Ragnhildur Thóra Káradóttir;Daniel S. Reich;Bruno Stankoff;Catherine Lubetzki;Robin J.M. Franklin;Sarah Foerster;Bjoern Neumann;Benedetta Bodini;Bernard Zalc;Dwight E. Bergles;Chao Zhao;Luke L. Lairson,2020-05-07,1,Cell Stem Cell,617-619,10.1016/j.stem.2020.03.017,32386552,85084118366,2-s2.0-85084118366,Article,AMRF,https://api.elsevier.com/content/abstract/scopus_id/85084118366,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85084118366&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85084118366&origin=inward +Paramagnetic Rim Sign in Radiologically Isolated Syndrome,Reich,Aditya Bharatha;Melanie Guenette;Daniel S. Reich;Jiwon Oh;Suradech Suthiphosuwan;Pascal Sati;Martina Absinta,2020-05-01,0,JAMA Neurology,653-655,10.1001/jamaneurol.2020.0124,32150224,85081654331,2-s2.0-85081654331,Letter,NIH,https://api.elsevier.com/content/abstract/scopus_id/85081654331,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85081654331&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85081654331&origin=inward +CVSnet: A machine learning approach for automated central vein sign assessment in multiple sclerosis,Reich,Francesco La Rosa;Reto Meuli;Daniel S. Reich;Tobias Kober;Pascal Sati;Renaud Du Pasquier;Pietro Maggi;Jonas Richiardi;Mário João Fartaria;João Jorge;Cristina Granziera;Meritxell Bach Cuadra;Martina Absinta,2020-05-01,0,NMR in Biomedicine,,10.1002/nbm.4283,32125737,85081028361,2-s2.0-85081028361,Article,CNHF,https://api.elsevier.com/content/abstract/scopus_id/85081028361,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85081028361&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85081028361&origin=inward +Imaging Mechanisms of Disease Progression in Multiple Sclerosis: Beyond Brain Atrophy,Reich,Daniel Pelletier;Daniel S. Reich;George R.Wayne Moore;Seth A. Smith;Daniel Ontaneda;Daniel M. Harrison;Russell T. Shinohara;Roland G. Henry;Peter A. Calabresi;Riley Bove;Nancy L. Sicotte;Francesca Bagnato;Julien Cohen-Adad;Cornelia Laule;Gülin Öz;Zhengxin Cai;Susan A. Gauthier;Sarah A. Morrow;Jiwon Oh;Eric C. Klawiter;William D. Rooney,2020-05-01,1,Journal of Neuroimaging,251-266,10.1111/jon.12700,,85084836258,2-s2.0-85084836258,Review,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85084836258,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85084836258&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85084836258&origin=inward +The “central vein sign” in patients with diagnostic “red flags” for multiple sclerosis: A prospective multicenter 3T study,Reich,Reto Meuli;Daniel S. Reich;Pascal Sati;Renaud Du Pasquier;Bernard Dachy;Pietro Maggi;Caroline Pot;Gaetano Perrotta;Marie Théaudin;Luca Massacesi;Massimo Filippi;Martina Absinta,2020-04-01,7,Multiple Sclerosis Journal,421-432,10.1177/1352458519876031,31536435,85073936532,2-s2.0-85073936532,Article,CNHF,https://api.elsevier.com/content/abstract/scopus_id/85073936532,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85073936532&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85073936532&origin=inward +Effect of disease-modifying therapies on subcortical gray matter atrophy in multiple sclerosis,Reich,Shiv Saidha;Dzung L. Pham;Esther Ogbuokiri;Daniel S. Reich;Ellen M. Mowry;Jerry L. Prince;Elias S. Sotirchos;Jeffrey Glaister;Natalia Gonzalez-Caldito;Blake E. Dewey;Peter A. Calabresi;Angeliki Filippatou;Hunter Risher;Ohemaa Kwakyi;Sydney Feldman;Ciprian Crainiceanu;Kathryn C. Fitzgerald;Peter C. Van Zijl,2020-03-01,3,Multiple Sclerosis Journal,312-321,10.1177/1352458519826364,30741108,85061580415,2-s2.0-85061580415,Article,,https://api.elsevier.com/content/abstract/scopus_id/85061580415,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85061580415&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85061580415&origin=inward +Targeted Complement Inhibition at Synapses Prevents Microglial Synaptic Engulfment and Synapse Loss in Demyelinating Disease,Reich,Daniel S. Reich;Rejani B. Kunjamma;Brian Popko;Jonathan Jung;Cory M. Willis;Stephen J. Crocker;Sebastian Werneburg;Natalia P. Biscola;Leif A. Havton;Seung Kwon Ha;Guangping Gao;Dorothy P. Schafer;Nicholas J. Luciano,2020-01-14,6,Immunity,167-182.e7,10.1016/j.immuni.2019.12.004,31883839,85077636150,2-s2.0-85077636150,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85077636150,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85077636150&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85077636150&origin=inward +Experimental design and sample size considerations in longitudinal magnetic resonance imaging-based biomarker detection for multiple sclerosis,Reich,Daniel S. Reich;Russell T. Shinohara;Ani Eloyan;Blake E. Dewey;Menghan Hu;Matthew K. Schindler,2020-01-01,0,Statistical Methods in Medical Research,,10.1177/0962280220904392,32070238,85081693515,2-s2.0-85081693515,Article,,https://api.elsevier.com/content/abstract/scopus_id/85081693515,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85081693515&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85081693515&origin=inward +Five-year longitudinal changes in quantitative spinal cord MRI in multiple sclerosis,Reich,Peter van Zijl;Min Chen;Daniel S. Reich;Jiwon Oh;Suradech Suthiphosuwan;Marie Diener-West;Peter A. Calabresi;Kateryna Cybulsky;Jerry Prince;Blake Dewey;Estelle Seyman,2020-01-01,0,Multiple Sclerosis Journal,,10.1177/1352458520923970,,85085701874,2-s2.0-85085701874,Article,MSSOC,https://api.elsevier.com/content/abstract/scopus_id/85085701874,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85085701874&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85085701874&origin=inward +Open-source pipeline for multi-class segmentation of the spinal cord with deep learning,Reich,Daniel S. Reich;Jennifer Lefeuvre;Pascal Sati;Charley Gros;Christian S. Perone;Julien Cohen-Adad;François Paugam,2019-12-01,2,Magnetic Resonance Imaging,21-27,10.1016/j.mri.2019.04.009,31004711,85064629816,2-s2.0-85064629816,Article,FRQNT,https://api.elsevier.com/content/abstract/scopus_id/85064629816,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85064629816&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85064629816&origin=inward +Assessment of lesions on magnetic resonance imaging in multiple sclerosis: practical guidelines,Reich,Tarek A. Yousry;Maria A. Rocca;Brenda L. Banwell;Daniel S. Reich;Friedemann Paul;Anthony Traboulsee;Catherine Lubetzki;Ahmed T. Toosy;Paolo Preziosa;Frederik Barkhof;Olga Ciccarelli;Mike P. Wattjes;Achim Gass;Jeroen J.G. Geurts;Nicola De Stefano;Massimo Filippi;Brian G. Weinshenker,2019-07-01,20,Brain,1858-1875,10.1093/brain/awz144,31209474,85068522090,2-s2.0-85068522090,Review,FISM,https://api.elsevier.com/content/abstract/scopus_id/85068522090,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85068522090&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85068522090&origin=inward +Automated Detection and Segmentation of Multiple Sclerosis Lesions Using Ultra-High-Field MP2RAGE,Reich,Daniel S. Reich;Tobias Kober;Pascal Sati;Kieran O'Brien;Mário João Fartaria;Ernst Wilhelm Radue;Alexandra Todea;Cristina Granziera;Meritxell Bach Cuadra;Reza Rahmanzadeh,2019-06-01,6,Investigative Radiology,356-364,10.1097/RLI.0000000000000551,30829941,85065530203,2-s2.0-85065530203,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85065530203,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85065530203&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85065530203&origin=inward +A Spatio-Temporal Model for Longitudinal Image-on-Image Regression,Reich,Arnab Hazra;Daniel S. Reich;Russell T. Shinohara;Ana Maria Staicu;Brian J. Reich,2019-04-15,0,Statistics in Biosciences,22-46,10.1007/s12561-017-9206-z,,85031898757,2-s2.0-85031898757,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85031898757,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85031898757&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85031898757&origin=inward +Imaging outcome measures of neuroprotection and repair in MS: A consensus statement from NAIMS,Reich,Daniel Pelletier;Yunyan Zhang;Sridar Narayanan;Daniel S. Reich;Govind Nair;David K.B. Li;Caterina Mainero;Daniel Ontaneda;Douglas L. Arnold;Christina Azevedo;Flavia Nelson;Russell T. Shinohara;Shannon Kolind;Peter A. Calabresi;Ravi S. Menon;Nancy L. Sicotte;Pascal Sati;Daniel Schwartz;Rohit Bakshi;Susan Gauthier;Yi Wang;Blake Dewey;Ciprian Crainiceanu;Tarek Yousry;Anthony Traboulsee;Mathilde Inglese;Jiwon Oh;Alexander Rauscher;Eric C. Klawiter;Ian Tagge;Roland Henry;Youngjin Yoo;William Rooney;Leorah Freeman;Martina Absinta,2019-03-12,9,Neurology,519-533,10.1212/WNL.0000000000007099,30787160,85062886285,2-s2.0-85062886285,Review,CIHR,https://api.elsevier.com/content/abstract/scopus_id/85062886285,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85062886285&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85062886285&origin=inward +Imaging of meningeal inflammation should become part of the routine MRI protocol – Yes,Reich,Daniel S. Reich;Martina Absinta,2019-03-01,2,Multiple Sclerosis Journal,330-331,10.1177/1352458518794082,,85060215290,2-s2.0-85060215290,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85060215290,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85060215290&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85060215290&origin=inward +Spatial distribution of multiple sclerosis lesions in the cervical spinal cord,Reich,Erik Charlson;Daniel S. Reich;Sridar Narayanan;Jennifer Lefeuvre;Henitsoa Rasoanandrianina;Jan Hillert;Massimo Filippi;Govind Nair;Bertrand Audoin;Kouhei Kamiya;Tobias Granberg;Paola Valsasina;Masaaki Hori;Pierre Labauge;Ren Zhuoquiong;Caterina Mainero;Seth A. Smith;Maria A. Rocca;Shahamat Tauhid;Dominique Eden;Olga Ciccarelli;Atef Badji;Russell Ouellette;Julien Cohen-Adad;Lydia Chougar;Yaou Liu;Gilles Edan;Marios Yiannakas;Hugh Kearney;Jean Christophe Brisset;Rohit Bakshi;Elise Bannier;Timothy M. Shepherd;Yasuhiko Tachibana;Benjamin De Leener;Leszek Stawiarz;Jean Pelletier;Charley Gros;Jason Talbott;Virginie Callot;Anne Kerbrat;Constantina Andrada Treaba;Josefina Maranzano;Ferran Prados;Sara M. Dupont,2019-03-01,15,Brain,633-646,10.1093/brain/awy352,30715195,85062529087,2-s2.0-85062529087,Article,DOD,https://api.elsevier.com/content/abstract/scopus_id/85062529087,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85062529087&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85062529087&origin=inward +Retinal measurements predict 10-year disability in multiple sclerosis,Reich,Elliot M. Frohman;James Nguyen;Daniel S. Reich;Julia Button;Natalia Gonzalez Caldito;Peter A. Calabresi;Eliza Gordon-Lipkin;Kathryn C. Fitzgerald;Alissa Rothman;Shiv Saidha;Elias S. Sotirchos;John N. Ratchford;Stephanie B. Syc-Mazurek;Ciprian Crainiceanu;Laura J. Balcer;Ellen M. Mowry;Scott D. Newsome;Teresa C. Frohman;Olwen C. Murphy,2019-02-01,4,Annals of Clinical and Translational Neurology,222-232,10.1002/acn3.674,,85060351513,2-s2.0-85060351513,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85060351513,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85060351513&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85060351513&origin=inward +Spinal cord involvement in multiple sclerosis and neuromyelitis optica spectrum disorders,Reich,Burkhard Becher;Nicola De Stefano;Kazuo Fujihara;Steven Galetta;Myla Goldman;Maria Pia Amato;Ruth Ann Marrie;Aaron Miller;Daniel Pelletier;Olaf Stuve;Jerome De Sèze;Claudia Lucchinetti;Eoin Flanagan;Per Soelberg Sorensen;Wallace Brownlee;Jeremy Chatway;Anke Henning;Benjamin Greenberg;Tanuja Chitnis;François Bethoux;Claudia Gandini Wheeler-Kingshott;Friedemann Paul;Maria Assunta Rocca;Bruce Bebo;Sebastien Ourselin;Frederik Barkhof;Olga Ciccarelli;Jorge Correale;Jeffrey A. Cohen;Carsten Lukas;David Miller;Cornelia Laule;Mark Freedman;Ellen Mowry;Maria Sormani;Alan Thompson;Brian Weinshenker;Ludwig Kappos;Xavier Montalban;Giancarlo Comi;Sandra Vukusic;Bernhard Hemmer;Junqian Xu;Jeffrey Cohen;Stephen Reingold;Brian G. Weinshenker;Hans Peter Hartung;Peter Calabresi;Franz Fazekas;Daniel Reich;Anthony Traboulsee;Maria Trojano;Jean Philippe Ranjeva;Regina Schlaerger;Emmanuelle Waubant;Bruce Trapp;Fred Lublin;Alex Rovira;Alexander Brandt;Bernard Uitdehaag;Brenda Banwell;Mar Tintoré;Hans Lassmann;Stephen C. Reingold;Izlem Izbudak;Michael Levy;Claudia Chien,2019-02-01,23,The Lancet Neurology,185-197,10.1016/S1474-4422(18)30460-5,30663608,85060049167,2-s2.0-85060049167,Review,NIHR,https://api.elsevier.com/content/abstract/scopus_id/85060049167,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85060049167&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85060049167&origin=inward +The central vein sign in radiologically isolated syndrome,Reich,D. S. Reich;M. Guenette;A. Bharatha;P. Sati;X. Montalban;J. Oh;S. Suthiphosuwan,2019-01-01,6,American Journal of Neuroradiology,776-783,10.3174/ajnr.A6045,31000526,85066163764,2-s2.0-85066163764,Article,,https://api.elsevier.com/content/abstract/scopus_id/85066163764,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85066163764&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85066163764&origin=inward +Multisite reliability and repeatability of an advanced brain MRI protocol,Reich,Daniel Pelletier;Daniel S. Reich;Nico Papinutto;Jiwon Oh;Roland G. Henry;Sinyeob Ahn;Peter A. Calabresi;Rohit Bakshi;R. Todd Constable;Govind Nair;Russell Shinohara;Ian Tagge;Nancy L. Sicotte;Daniel L. Schwartz;William D. Rooney;John Grinstead;Katherine Powers,2019-01-01,7,Journal of Magnetic Resonance Imaging,878-888,10.1002/jmri.26652,30652391,85060152881,2-s2.0-85060152881,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85060152881,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85060152881&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85060152881&origin=inward +Automatic segmentation of the spinal cord and intramedullary multiple sclerosis lesions with convolutional neural networks,Reich,Erik Charlson;Daniel S. Reich;Shahabeddin Vahdat;Jennifer Lefeuvre;Ali Khatibi;Henitsoa Rasoanandrianina;Sridar Narayanan;Jan Hillert;Massimo Filippi;Govind Nair;Bertrand Audoin;Kouhei Kamiya;Tobias Granberg;Paola Valsasina;Masaaki Hori;Ren Zhuoquiong;Pierre Labauge;Caterina Mainero;Maria A. Rocca;Shahamat Tauhid;Dominique Eden;Olga Ciccarelli;Atef Badji;Russell Ouellette;Allan R. Martin;Michael G. Fehlings;Julien Cohen-Adad;Lydia Chougar;Yaou Liu;Gilles Edan;Marios Yiannakas;Hugh Kearney;Timothy Shepherd;Jean Christophe Brisset;Rohit Bakshi;Elise Bannier;Julien Doyon;Yasuhiko Tachibana;Benjamin De Leener;Seth Smith;Leszek Stawiarz;Jean Pelletier;Donald G. McLaren;Charley Gros;Jason Talbott;Virginie Callot;Vincent Auclair;Anne Kerbrat;Constantina Andrada Treaba;Josefina Maranzano;Ferran Prados;Sara M. Dupont,2019-01-01,20,NeuroImage,901-915,10.1016/j.neuroimage.2018.09.081,30300751,85054688847,2-s2.0-85054688847,Article,INRS,https://api.elsevier.com/content/abstract/scopus_id/85054688847,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85054688847&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85054688847&origin=inward +Development of a PET radioligand for potassium channels to image CNS demyelination,Reich,Peter Herscovitch;Daniel S. Reich;Andrew V. Caprariello;Hsiu Ming Tsai;Brian Popko;Shih Hsun Cheng;Jorge E. Sánchez-Rodríguez;Robert H. Miller;Rolf E. Swenson;Chin Tu Chen;Xiang Zhang;Jerome J. Lacroix;Falguni Basuli;Francisco Bezanilla;Richard Freifelder;Dhanabalan Murali;Pedro Brugarolas;Onofre DeJesus,2018-12-01,9,Scientific Reports,,10.1038/s41598-017-18747-3,29330383,85043512995,2-s2.0-85043512995,Article,CONACYT,https://api.elsevier.com/content/abstract/scopus_id/85043512995,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85043512995&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85043512995&origin=inward +"The NAIMS cooperative pilot project: Design, implementation and future directions",Reich,Daniel Pelletier;Daniel S. Reich;Nico Papinutto;Jiwon Oh;Russell T. Shinohara;Daniel Schwartz;Roland G. Henry;Peter A. Calabresi;Govind Nair;Rohit Bakshi;R. Todd Constable;Nancy L. Sicotte;Ian Tagge;William Rooney;Ciprian Crainiceanu;Jack H. Simon,2018-11-01,3,Multiple Sclerosis Journal,1770-1772,10.1177/1352458517739990,,85043373122,2-s2.0-85043373122,Article,,https://api.elsevier.com/content/abstract/scopus_id/85043373122,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85043373122&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85043373122&origin=inward +Brain and retinal atrophy in African-Americans versus Caucasian-Americans with multiple sclerosis: A longitudinal study,Reich,Nicholas Fioravante;James Nguyen;Daniel S. Reich;Norah J. Cowley;Jeffrey Glaister;Laura Balcer;Peter C.M. Van Zijl;Sydney Feldman;Elliot Frohman;Natalia Gonzalez Caldito;Peter A. Calabresi;Kathryn C. Fitzgerald;Alissa Rothman;Shiv Saidha;Dzung L. Pham;Elias S. Sotirchos;Blake E. Dewey;Omar Al-Louzi;Hunter Risher;Ohemaa Kwakyi;Jerry Prince;Ciprian Crainiceanu;Esther Ogbuokiri;Ellen M. Mowry;Jiwon Oh;Dorlan Kimbrough;Teresa C. Frohman,2018-11-01,11,Brain,3115-3129,10.1093/brain/awy245,30312381,85055619692,2-s2.0-85055619692,Article,,https://api.elsevier.com/content/abstract/scopus_id/85055619692,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85055619692&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85055619692&origin=inward +Automated integration of multimodal MRI for the probabilistic detection of the central vein sign in white matter lesions,Reich,A. Solomon;D. Ontaneda;M. K. Schindler;D. S. Reich;R. T. Shinohara;D. L. Pham;P. Sati;J. D. Dworkin;M. L. Martin;R. Watts,2018-10-01,8,American Journal of Neuroradiology,1806-1813,10.3174/ajnr.A5765,30213803,85054601944,2-s2.0-85054601944,Article,NIBIB,https://api.elsevier.com/content/abstract/scopus_id/85054601944,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85054601944&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85054601944&origin=inward +Detecting Demyelination by PET: The Lesion as Imaging Target,Reich,Brian Popko;Daniel S. Reich;Pedro Brugarolas,2018-07-19,3,Molecular Imaging,,10.1177/1536012118785471,30039728,85054874924,2-s2.0-85054874924,Note,AMRF,https://api.elsevier.com/content/abstract/scopus_id/85054874924,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85054874924&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85054874924&origin=inward +Identification of chronic active multiple sclerosis lesions on 3T MRI,Reich,M. K. Schindler;M. Absinta;D. S. Reich;A. Fechner;P. Sati;G. Nair,2018-07-01,11,American Journal of Neuroradiology,1233-1238,10.3174/ajnr.A5660,29724768,85049867380,2-s2.0-85049867380,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85049867380,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85049867380&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85049867380&origin=inward +Diagnostic performance of central vein sign for multiple sclerosis with a simplified three-lesion algorithm,Reich,Richard Watts;Daniel S. Reich;Pascal Sati;Andrew J. Solomon;Martina Absinta;Daniel Ontaneda,2018-05-01,20,Multiple Sclerosis Journal,750-757,10.1177/1352458517726383,,85042269593,2-s2.0-85042269593,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85042269593,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85042269593&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85042269593&origin=inward +An automated statistical technique for counting distinct multiple sclerosis lesions,Reich,K. A. Linn;G. M. Fleishman;R. Bakshi;R. G. Henry;D. Pelletier;W. Rooney;D. S. Reich;I. Oguz;N. L. Sicotte;R. T. Shinohara;J. D. Dworkin;P. A. Calabresi;N. Papinutto;G. Nair;W. Stern;J. Oh,2018-04-01,6,American Journal of Neuroradiology,626-633,10.3174/ajnr.A5556,29472300,85045218334,2-s2.0-85045218334,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85045218334,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85045218334&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85045218334&origin=inward +Photon-Counting Computed Tomography for Vascular Imaging of the Head and Neck: First in Vivo Human Results,Reich,David A. Bluemke;Bernhard Krauss;Daniel S. Reich;Steffen Kappler;Tyler E. Cork;Mohammadhadi Bagheri;Stefan Ulzheimer;Amir Pourmorteza;Rolf Symons,2018-03-01,32,Investigative Radiology,135-142,10.1097/RLI.0000000000000418,28926370,85042356959,2-s2.0-85042356959,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85042356959,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85042356959&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85042356959&origin=inward +Brain atrophy in multiple sclerosis: How deep must we go?,Reich,Erin S. Beck;Daniel S. Reich,2018-02-01,2,Annals of Neurology,208-209,10.1002/ana.25148,29328526,85041569941,2-s2.0-85041569941,Note,,https://api.elsevier.com/content/abstract/scopus_id/85041569941,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85041569941&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85041569941&origin=inward +An efficient new method for the synthesis of 3-[18F]fluoro-4-aminopyridine via Yamada-Curtius rearrangement,Reich,Daniel S. Reich;Rolf E. Swenson;Xiang Zhang;Falguni Basuli;Pedro Brugarolas,2018-02-01,4,Journal of Labelled Compounds and Radiopharmaceuticals,112-117,10.1002/jlcr.3560,28870001,85036495933,2-s2.0-85036495933,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85036495933,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85036495933&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85036495933&origin=inward +Central vein sign differentiates Multiple Sclerosis from central nervous system inflammatory vasculopathies,Reich,Daniel S. Reich;Vittorio Martinelli;Domenico Prisco;Alessandro Barilaro;Matteo Grammatico;Giacomo Emmi;Niloufar Sadeghi;Anna Maria Repice;Roberta Scotti;Luca Massacesi;Luisa Vuolo;Pascal Sati;Gaetano Perrotta;Lorenzo Emmi;Bernard Dachy;Pietro Maggi;Gregorio Spagni;Giovanna Carlucci;Massimo Filippi;Martina Absinta,2018-02-01,46,Annals of Neurology,283-294,10.1002/ana.25146,29328521,85042290887,2-s2.0-85042290887,Article,CNHF,https://api.elsevier.com/content/abstract/scopus_id/85042290887,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85042290887&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85042290887&origin=inward +Multiple sclerosis,Reich,Peter A. Calabresi;Daniel S. Reich;Claudia F. Lucchinetti,2018-01-11,351,New England Journal of Medicine,169-180,10.1056/NEJMra1401483,29320652,85040657293,2-s2.0-85040657293,Review,,https://api.elsevier.com/content/abstract/scopus_id/85040657293,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85040657293&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85040657293&origin=inward +A deep learning based anti-aliasing self super-resolution algorithm for MRI,Reich,Dzung L. Pham;Jonghye Woo;Can Zhao;Daniel S. Reich;Jiwon Oh;Jerry L. Prince;Pascal Sati;Blake E. Dewey;Peter A. Calabresi;Aaron Carass,2018-01-01,6,Lecture Notes in Computer Science (including subseries Lecture Notes in Artificial Intelligence and Lecture Notes in Bioinformatics),100-108,10.1007/978-3-030-00928-1_12,,85054053751,2-s2.0-85054053751,Conference Paper,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85054053751,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85054053751&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85054053751&origin=inward +Neurovascular unit: Basic and clinical imaging with emphasis on advantages of ferumoxytol,Reich,Daniel S. Reich;Yueh Lee;Edward A. Neuwelt;Mauricio Castillo;Saeid Taheri;Heike Daldrup-Link;Csanad Varallyay;Haris Sair;Danica Stanimirovic;Bronwyn Hamilton;Rajan Jain;Jeffrey Iliff;Joao Prola Netto;Lester R. Drewes;Kenneth A. Krohn;Seymur Gahramanov;Christopher D'Esterre;Ashok Panigrahy;Berislav Zlokovic,2018-01-01,9,Neurosurgery,770-780,10.1093/neuros/nyx357,28973554,85041600703,2-s2.0-85041600703,Review,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85041600703,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85041600703&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85041600703&origin=inward +Fibrinogen Activates BMP Signaling in Oligodendrocyte Progenitor Cells and Inhibits Remyelination after Vascular Damage,Reich,Lauriane Pous;Stephen P.J. Fancy;Daniel S. Reich;Michael D. Wu;Andrea Thor;Mark H. Ellisman;Kae Jiun Chang;Jae Kyu Ryu;Stephanie Yahn;Andrew S. Mendiola;Christian Schachtrup;Katerina Akassoglou;Eric J. Huang;Jae K. Lee;Jonah R. Chan;Catriona A. Syme;Eric A. Bushong;Wanjiru Kamau-Devers;Sophia Bardehle;Pamela E. Rios Coronado;Ainhoa Etxeberria;May H. Han;Anke Meyer-Franke;David H. Rowitch;Bernat Baeza-Raja;Mark A. Petersen;Martina Absinta;Hans Lassmann,2017-12-06,40,Neuron,1003-1012.e7,10.1016/j.neuron.2017.10.008,29103804,85035018116,2-s2.0-85035018116,Article,CNHF,https://api.elsevier.com/content/abstract/scopus_id/85035018116,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85035018116&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85035018116&origin=inward +Photon-counting CT of the brain: In Vivo human results and image-quality assessment,Reich,R. Symons;T. E. Cork;D. S. Reich;M. Bagheri;S. Ulzheimer;D. A. Bluemke;A. Pourmorteza;S. Kappler,2017-12-01,18,American Journal of Neuroradiology,2257-2263,10.3174/ajnr.A5402,28982793,85038595696,2-s2.0-85038595696,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85038595696,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85038595696&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85038595696&origin=inward +Human and nonhuman primate meninges harbor lymphatic vessels that can be visualized noninvasively by MRI,Reich,Jonathan Kipnis;Stefania Pittaluga;Daniel S. Reich;Kareem A. Zaghloul;Pascal Sati;Govind Nair;Seung Kwon Ha;Antoine Louveau;Maryknoll Palisoc;Nicholas J. Luciano;Martina Absinta,2017-10-03,120,eLife,,10.7554/eLife.29738.001,28971799,85032886612,2-s2.0-85032886612,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85032886612,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85032886612&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85032886612&origin=inward +7T MRI Visualization of Cortical Lesions in Adolescents and Young Adults with Pediatric-Onset Multiple Sclerosis,Reich,Daniel Reich;Pascal Sati;Blake E. Dewey;Brenda Banwell;Varun Sethi;Sona Narula;Amy T. Waldman;Ritobrato Datta;Sophia Ly,2017-09-01,6,Journal of Neuroimaging,447-452,10.1111/jon.12465,28796432,85028546595,2-s2.0-85028546595,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85028546595,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85028546595&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85028546595&origin=inward +Volumetric analysis from a harmonized multisite brain MRI study of a single subject with multiple sclerosis,Reich,R. Bakshi;S. Tummala;S. Roy;P. A. Calabresi;W. Stern;F. Yousuf;J. Oh;D. Pelletier;D. L. Pham;G. Nair;J. Doshi;K. A. Linn;W. Rooney;D. S. Reich;N. Papinutto;A. Zhu;G. Kim;N. L. Sicotte;R. G. Henry;R. T. Shinohara;C. Davatzikos,2017-08-01,35,American Journal of Neuroradiology,1501-1509,10.3174/ajnr.A5254,28642263,85027405388,2-s2.0-85027405388,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85027405388,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85027405388&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85027405388&origin=inward +MRI evaluation of thalamic volume differentiates MS from common mimics,Reich,Richard Watts;Daniel S. Reich;Blake E. Dewey;Andrew J. Solomon,2017-01-01,20,Neurology: Neuroimmunology and NeuroInflammation,,10.1212/NXI.0000000000000387,,85028648717,2-s2.0-85028648717,Article,UVM,https://api.elsevier.com/content/abstract/scopus_id/85028648717,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85028648717&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85028648717&origin=inward +"Transdermal estradiol for postpartum depression: results from a pilot randomized, double-blind, placebo-controlled study",Schmidt,David R. Rubinow;Pedro E. Martinez;Howard J. Li;Linda A. Schenkel;Lynnette K. Nieman;Xiaobai Li;Peter J. Schmidt,2020-06-01,1,Archives of Women's Mental Health,401-412,10.1007/s00737-019-00991-3,31372757,85070104836,2-s2.0-85070104836,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85070104836,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85070104836&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85070104836&origin=inward +Sex differences and the neurobiology of affective disorders,Schmidt,David R. Rubinow;Peter J. Schmidt,2019-01-01,26,Neuropsychopharmacology,111-128,10.1038/s41386-018-0148-z,30061743,85052597674,2-s2.0-85052597674,Review,NIH,https://api.elsevier.com/content/abstract/scopus_id/85052597674,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85052597674&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85052597674&origin=inward +Progesterone and plasma metabolites in women with and in those without premenstrual dysphoric disorder,Schmidt,Danny Alexander;Arianna Di Florio;David R. Rubinow;Peter J. Schmidt,2018-12-01,1,Depression and Anxiety,1168-1177,10.1002/da.22827,30184299,85052917681,2-s2.0-85052917681,Article,EC,https://api.elsevier.com/content/abstract/scopus_id/85052917681,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85052917681&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85052917681&origin=inward +The role of ovarian steroids in affective disorders,Schmidt,Crystal Edler Schiller;Shau Ming Wei;David R. Rubinow;Peter J. Schmidt,2018-10-01,2,Current Opinion in Behavioral Sciences,103-112,10.1016/j.cobeha.2018.04.013,,85049022815,2-s2.0-85049022815,Review,NIH,https://api.elsevier.com/content/abstract/scopus_id/85049022815,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85049022815&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85049022815&origin=inward +Efficacy of transdermal estradiol and micronized progesterone in the prevention of depressive symptoms in the menopause transition: A randomized clinical trial,Schmidt,David R. Rubinow;Kai Xia;Jennifer L. Gordon;Tory A. Eisenlohr-Moul;Susan S. Girdler;Peter J. Schmidt,2018-02-01,49,JAMA Psychiatry,149-157,10.1001/jamapsychiatry.2017.3998,29322164,85041686502,2-s2.0-85041686502,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85041686502,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85041686502&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85041686502&origin=inward +Is there a role for reproductive steroids in the etiology and treatment of affective disorders?,Schmidt,David R. Rubinow;Peter J. Schmidt,2018-01-01,3,Dialogues in Clinical Neuroscience,187-196,,30581288,85058915842,2-s2.0-85058915842,Article,,https://api.elsevier.com/content/abstract/scopus_id/85058915842,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85058915842&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85058915842&origin=inward +Perimenopausal depression and early menopause: Cause or consequence?,Schmidt,Katherine M. Reding;David R. Rubinow;Peter J. Schmidt,2017-12-01,3,Menopause,1333-1335,10.1097/GME.0000000000001016,29040218,85037028047,2-s2.0-85037028047,Editorial,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85037028047,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85037028047&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85037028047&origin=inward +Premenstrual dysphoric disorder symptoms following ovarian suppression: Triggered by change in ovarian steroid levels but not continuous stable levels,Schmidt,David R. Rubinow;Pedro E. Martinez;Deloris E. Koziol;Lynnette K. Nieman;Paul G. Wakim;Linda Schenkel;Karla D. Thompson;Peter J. Schmidt,2017-10-01,31,American Journal of Psychiatry,980-989,10.1176/appi.ajp.2017.16101113,28427285,85031126452,2-s2.0-85031126452,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85031126452,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85031126452&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85031126452&origin=inward +The steroid metabolome in women with premenstrual dysphoric disorder during GnRH agonist-induced ovarian suppression: effects of estradiol and progesterone addback,Schmidt,R. Kaddurah-Daouk;A. Motsinger-Reif;J. M. Reuter;C. P. Smith;D. R. Rubinow;H. R. Kucera;L. K. Nieman;T. V. Nguyen;P. J. Schmidt;N. W. Gaikwad;D. M. Rotroff,2017-08-08,8,Translational psychiatry,e1193,10.1038/tp.2017.146,28786978,85046250338,2-s2.0-85046250338,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85046250338,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85046250338&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85046250338&origin=inward +Rapid response to fluoxetine in women with premenstrual dysphoric disorder,Schmidt,David R. Rubinow;Graca M.P. Cardoso;Pedro E. Martinez;Emma M. Steinberg;Peter J. Schmidt,2012-01-01,24,Depression and Anxiety,531-540,10.1002/da.21959,22565858,85027948466,2-s2.0-85027948466,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85027948466,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85027948466&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85027948466&origin=inward +Using virtual reality to define the mechanisms linking symptoms with cognitive deficits in attention deficit hyperactivity disorder,Shaw,Aman Mangalmurti;Barrington Quarrie;Wendy Sharp;Philip Shaw;Susan Persky;William D. Kistler,2020-12-01,0,Scientific Reports,,10.1038/s41598-019-56936-4,31953449,85078063783,2-s2.0-85078063783,Article,NHGRI,https://api.elsevier.com/content/abstract/scopus_id/85078063783,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85078063783&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85078063783&origin=inward +Adolescent Attention-Deficit/Hyperactivity Disorder: Understanding Teenage Symptom Trajectories,Shaw,Philip Shaw;Gustavo Sudre,2020-01-01,0,Biological Psychiatry,,10.1016/j.biopsych.2020.06.004,,85088856774,2-s2.0-85088856774,Review,NHGRI,https://api.elsevier.com/content/abstract/scopus_id/85088856774,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85088856774&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85088856774&origin=inward +Consortium neuroscience of attention deficit/hyperactivity disorder and autism spectrum disorder: The ENIGMA adventure,Shaw,Claiton H.D. Bau;Ruth L. O'Gorman Tuura;Andreas Reif;Filippo Muratori;Jeffery N. Epstein;Jacqueline Fitzgerald;Evdokia Anagnostou;Klaus Peter Lesch;Luisa Lazaro;Christine Ecker;Marieke Klein;Sara Calderoni;Mark A. Bellgrove;Christine Deruelle;Oscar Vilarroya;Jane McGrath;Beatriz Luna;J. Antoni Ramos-Quiroga;Barbara Franke;Damien A. Fair;Marlene Behrmann;Mara Parellada;Joost Janssen;Katya Rubia;Paulo Mattos;Mario R. Louza;Yash Patel;Eileen Oberwelland-Weiss;Ilan Dinstein;Louise Gallagher;Liesbeth Reneman;Kirsten O'Hearn;Joel T. Nigg;Annette Conzelmann;Philip Shaw;Daan van Rooij;Eugenio H. Grevet;Martine Hoogman;Kerstin Konrad;Stefan Ehrlich;Georgii Karkashadze;Pedro G.P. Rosa;Alessandra Retico;Neda Jahanshad;Stephen V. Faraone;Iva Ilioska;Jan Haavik;Daniel Brandeis;Clodagh Murphy;Silvia Brem;Celso Arango;Jonna Kuntsi;Rosa Calvo;Thomas Frodl;Paul Pauli;Christine M. Freitag;Jan K. Buitelaar;Francisco X. Castellanos;Premika Boedhoe;Leanne Tamm;Eileen Daly;Tomas Paus;Sarah Durston;Yanli Zhang-James;Merel C. Postema;Odile A. van den Heuvel;Jason P. Lerch;Tim J. Silk;Geraldo F. Busatto;Kerstin J. Plessen;Guillaume Auzias;Susanne Walitza;David Coghill;Joseph A. King;Paul M. Thompson;Tobias Banaschewski;Pieter J. Hoekstra;Clyde Francks;Ting Li;Jaap Oosterlaan,2020-01-01,0,Human Brain Mapping,,10.1002/hbm.25029,32420680,85084801312,2-s2.0-85084801312,Review,,https://api.elsevier.com/content/abstract/scopus_id/85084801312,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85084801312&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85084801312&origin=inward +Mapping the neuroanatomic substrates of cognition in familial attention deficit hyperactivity disorder,Shaw,Wendy Sharp;Gustavo Sudre;Rachel Muster;Steven Kasparek;Philip Shaw;Saadia Choudhury,2019-03-01,1,Psychological Medicine,590-597,10.1017/S0033291718001241,29792238,85047352313,2-s2.0-85047352313,Article,,https://api.elsevier.com/content/abstract/scopus_id/85047352313,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85047352313&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85047352313&origin=inward +"Associations between neighborhood, family factors and symptom change in childhood attention deficit hyperactivity disorder",Shaw,Aman Mangalmurti;Wendy Sharp;Carlisha Hall;Philip Shaw;Saadia Choudhury,2019-01-01,6,Social Science and Medicine,,10.1016/j.socscimed.2019.02.054,,85062462961,2-s2.0-85062462961,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85062462961,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85062462961&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85062462961&origin=inward +"Mapping associations between polygenic risks for childhood neuropsychiatric disorders, symptoms of attention deficit hyperactivity disorder, cognition, and the brain",Shaw,Aman Mangalmurti;Wendy Sharp;Gustavo Sudre;Ayaka Ishii-Takahashi;Philip Shaw;Saadia Choudhury;Jennifer Frederick,2019-01-01,0,Molecular Psychiatry,,10.1038/s41380-019-0350-3,,85060917690,2-s2.0-85060917690,Article,,https://api.elsevier.com/content/abstract/scopus_id/85060917690,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85060917690&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85060917690&origin=inward +Brain imaging of the cortex in ADHD: A coordinated analysis of large-scale clinical and population-based samples,Shaw,Ruth L. O'Gorman Tuura;Norbert Skokauskas;Andreas Reif;Alexandr Baranov;Hanan El Marroun;Ramona Baur-Streubel;Jeffery N. Epstein;Tiffany M. Chaim-Avancini;Yuliya N. Yoncheva;Klaus Peter Lesch;Clare Kelly;Luisa Lazaro;Tinatin Gogberashvili;Mark A. Bellgrove;Bob Oranje;Lizanne J.S. Schweren;Leyla Namazova-Baranova;Mariam Zentis;Stephanie E. Novotny;Katya Rubia;Paulo Mattos;Mario R. Louza;Yolanda Vives-Gilabert;Thomas Wolfers;Andreas J. Fallgatter;Kaylita C. Chantiluke;Sarah Baumeister;Bernd Kardatzki;Ivanei E. Bramati;Liesbeth Reneman;Annette Conzelmann;Fernanda Tovar-Moll;Elena Shumskaya;Matt C. Gabel;Tonya White;Martine Hoogman;Kerstin Konrad;Eric A. Earl;Astri J. Lundervold;Georgii Karkashadze;Mitul A. Mehta;Pedro G.P. Rosa;Anastasia Christakou;Sabin Khadka;Terry L. Jernigan;Georg G. Von Polier;Anouk Schrantee;Juan Carlos Soliva Vila;Sara Lera-Miguel;Neda Jahanshad;Anna Calvo;Anatoly Anikin;Alysa E. Doyle;Eileen Oberwelland Weiss;Joao P. Guimaraes;Marcel P. Zwiers;Jan Haavik;Theo G.M. van Erp;Daniel Brandeis;Silvia Brem;Hazel McCarthy;Ana I. Cubillo;Jonna Kuntsi;Gregor Kohls;Thomas Frodl;Anastasia Solovieva;Paul Pauli;Kathrin C. Zierhut;Francisco X. Castellanos;Catharina A. Hartman;Thomas Ethofer;Leanne Tamm;Jochen Seitz;Sara Ambrosino;Georg C. Ziegler;Rosa Nicolau;Anders M. Dale;Sarah Hohmann;Ryan Muetzel;Maarten Mennes;Charles B. Malpas;Lena Schwarz;Tim J. Silk;Marie F. Høvik;Geraldo F. Busatto;Kerstin J. Plessen;Gustavo Sudre;Dirk J. Heslenfeld;Neil A. Harrison;Susanne Walitza;David Coghill;Joseph Biederman;Philip Asherson;Alasdair Vance;Yannis Paloyelis;Tobias Banaschewski;Dmitry Kapilushniy;Mara Cercignani;Marcus V. Zanetti;Patrick De Zeeuw Oranje,2019-01-01,25,American Journal of Psychiatry,531-542,10.1176/appi.ajp.2019.18091033,31014101,85069237582,2-s2.0-85069237582,Article,,https://api.elsevier.com/content/abstract/scopus_id/85069237582,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85069237582&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85069237582&origin=inward +Shared endo-phenotypes of default mode dsfunction in attention deficit/hyperactivity disorder and autism spectrum disorder,Shaw,Jonathan Smallwood;Gaël Varoquaux;Bertrand Thirion;Daniel Margulies;Julius M. Kernbach;Theodore D. Satterthwaite;Sarah Krall;Danielle S. Bassett;Danilo Bzdok;Philip Shaw;Kerstin Konrad,2018-12-01,12,Translational Psychiatry,,10.1038/s41398-018-0179-6,30018328,85050381330,2-s2.0-85050381330,Article,DFG,https://api.elsevier.com/content/abstract/scopus_id/85050381330,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85050381330&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85050381330&origin=inward +Growing out of attention deficit hyperactivity disorder: Insights from the ‘remitted’ brain,Shaw,Aman Mangalmurti;Philip Shaw;Gustavo Sudre,2018-11-01,7,Neuroscience and Biobehavioral Reviews,198-209,10.1016/j.neubiorev.2018.08.010,30194962,85053213544,2-s2.0-85053213544,Review,,https://api.elsevier.com/content/abstract/scopus_id/85053213544,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85053213544&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85053213544&origin=inward +ADHD Neuroimaging: What's new?,Shaw,Philip Shaw,2018-10-01,0,Psychiatric Times,,,,85056122070,2-s2.0-85056122070,Article,,https://api.elsevier.com/content/abstract/scopus_id/85056122070,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85056122070&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85056122070&origin=inward +"A multicohort, longitudinal study of cerebellar development in attention deficit hyperactivity disorder",Shaw,Gabriel A. Devenyi;Aman Mangalmurti;M. Mallar Chakravarty;Min Tae Park;Henning Tiemeier;Sarah Durston;Chava Zibman;Georg von Polier;Gustavo Sudre;Tonya White;Ayaka Ishii-Takahashi;Steven Kasparek;Philip Shaw;Ryan Muetzel;Devon Shook;Martine Hoogman;Kerstin Konrad,2018-10-01,8,Journal of Child Psychology and Psychiatry and Allied Disciplines,1114-1123,10.1111/jcpp.12920,29693267,85047953997,2-s2.0-85047953997,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85047953997,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85047953997&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85047953997&origin=inward +"Genetic associations with childhood brain growth, defined in two longitudinal cohorts",Shaw,Tonya J. White;Philip R. Jansen;Cristina M. Justice;Wendy Sharp;Alexander F. Wilson;Eszter Szekely;Henning Tiemeier;Ryan L. Muetzel;Jeremy A. Sabourin;Tae Hwi Linus Schwantes-An;Heejong Sung;Philip Shaw,2018-06-01,4,Genetic Epidemiology,405-414,10.1002/gepi.22122,29682794,85045838954,2-s2.0-85045838954,Article,JHU,https://api.elsevier.com/content/abstract/scopus_id/85045838954,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85045838954&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85045838954&origin=inward +Automated quality assessment of structural magnetic resonance images in children: Comparison with visual inspection and surface-based reconstruction,Shaw,Philip R. Jansen;Frank C. Verhulst;Henning Tiemeier;Andrew M. Michael;Gustavo Sudre;Ryan L. Muetzel;Hanan El Marroun;Philip Shaw;Tonya White;Anqi Qiu,2018-03-01,14,Human Brain Mapping,1218-1231,10.1002/hbm.23911,29206318,85037329738,2-s2.0-85037329738,Article,EUR,https://api.elsevier.com/content/abstract/scopus_id/85037329738,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85037329738&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85037329738&origin=inward +Growing up: Evolving concepts of adult attention deficit hyperactivity disorder,Shaw,Philip Shaw,2018-02-01,0,American Journal of Psychiatry,95-96,10.1176/appi.ajp.2017.17111257,29385829,85041697555,2-s2.0-85041697555,Editorial,,https://api.elsevier.com/content/abstract/scopus_id/85041697555,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85041697555&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85041697555&origin=inward +Tracking brain development and dimensional psychiatric symptoms in children: A longitudinal population-based neuroimaging study,Shaw,Vincent W.V. Jaddoe;Laura M.E. Blanken;Frank C. Verhulst;Henning Tiemeier;Ryan L. Muetzel;Gustavo Sudre; Jan van der Ende;Tonya White;Philip Shaw; Hanan El Marroun;Aad Van der Lugt,2018-01-01,28,American Journal of Psychiatry,54-62,10.1176/appi.ajp.2017.16070813,28817944,85040347782,2-s2.0-85040347782,Article,H2020,https://api.elsevier.com/content/abstract/scopus_id/85040347782,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85040347782&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85040347782&origin=inward +Timely Research in Bipolar Disorder and Attention-Deficit/Hyperactivity Disorder,Shaw,Hilary P. Blumberg;Philip Shaw,2017-11-01,0,Biological Psychiatry,621-622,10.1016/j.biopsych.2017.08.019,28965559,85032274796,2-s2.0-85032274796,Note,NHGRI,https://api.elsevier.com/content/abstract/scopus_id/85032274796,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85032274796&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85032274796&origin=inward +Multimodal mapping of the brain’s functional connectivity and the adult outcome of attention deficit hyperactivity disorder,Shaw,Wendy Sharp;Eszter Szekely;Gustavo Sudre;Steven Kasparek;Philip Shaw,2017-10-31,17,Proceedings of the National Academy of Sciences of the United States of America,11787-11792,10.1073/pnas.1705229114,29078281,85032726930,2-s2.0-85032726930,Article,NHGRI,https://api.elsevier.com/content/abstract/scopus_id/85032726930,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85032726930&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85032726930&origin=inward +Trajectories of Anatomic Brain Development as a Phenotype,Shaw,Nitin Gogtay;Francois Lalonde;Julia Tossell;Anjene Addington;Rhoshel K. Lenroot;Philip Shaw;Mark Celano;Jay N. Giedd;Samantha White,2008-05-20,5,Growth Factors and Psychiatric Disorders,101-112,10.1002/9780470751251.ch9,,85050998254,2-s2.0-85050998254,Chapter,,https://api.elsevier.com/content/abstract/scopus_id/85050998254,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85050998254&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85050998254&origin=inward +RNA-seq analysis of chondrocyte transcriptome reveals genetic heterogeneity in LG/J and SM/J murine strains,Shen,X. Duan;L. Cai;R. J. O'Keefe;M. F. Rai;E. J. Schmidt;J. Shen;J. M. Cheverud;E. D. Tycksen,2020-04-01,0,Osteoarthritis and Cartilage,516-527,10.1016/j.joca.2020.01.001,31945456,85078929390,2-s2.0-85078929390,Article,NIAMS,https://api.elsevier.com/content/abstract/scopus_id/85078929390,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85078929390&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85078929390&origin=inward +Inhibition of the Prostaglandin EP-1 Receptor in Periosteum Progenitor Cells Enhances Osteoblast Differentiation and Fracture Repair,Shen,Hani A. Awad;Jie Shen;Marina Feigenson;Alayna E. Loiselle;Jennifer H. Jonason;Regis J. O’Keefe,2020-03-01,0,Annals of Biomedical Engineering,927-939,10.1007/s10439-019-02264-7,30980293,85064206134,2-s2.0-85064206134,Article,NIAMS,https://api.elsevier.com/content/abstract/scopus_id/85064206134,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85064206134&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85064206134&origin=inward +Dnmt3b ablation impairs fracture repair through upregulation of Notch pathway,Shen,Jie Shen;Jianjun Guan;Taotao Xu;Hongting Jin;Cuicui Wang;Regis O’Keefe;Peijian Tong;Jun Ying;Yousef Abu-Amer,2020-02-13,0,JCI Insight,,10.1172/jci.insight.131816,32051335,85081672419,2-s2.0-85081672419,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85081672419,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85081672419&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85081672419&origin=inward +Peripheral Blood Stem Cell Therapy Does Not Improve Outcomes of Femoral Head Osteonecrosis With Cap-Shaped Separated Cartilage Defect,Shen,Pinger Wang;Jie Shen;Hongting Jin;Quanwei Ding;Peijian Tong;Jun Ying;Regis J. O'Keefe;Di Chen,2020-02-01,2,Journal of Orthopaedic Research,269-276,10.1002/jor.24471,31520480,85076543018,2-s2.0-85076543018,Article,ZJTCM,https://api.elsevier.com/content/abstract/scopus_id/85076543018,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85076543018&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85076543018&origin=inward +Runx2 plays a central role in Osteoarthritis development,Shen,Jie Shen;Zhen Zou;Dongyeon J. Kim;Regis J. O'Keefe;Di Chen,2020-01-01,0,Journal of Orthopaedic Translation,,10.1016/j.jot.2019.11.008,,85083722602,2-s2.0-85083722602,Review,NIH,https://api.elsevier.com/content/abstract/scopus_id/85083722602,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85083722602&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85083722602&origin=inward +Activation of β-catenin in Col2-expressing chondrocytes leads to osteoarthritis-like defects in hip joint,Shen,Pinger Wang;Jie Shen;Zhen Zou;Hongting Jin;Qinwen Ge;Di Chen;Luwei Xiao;Lei Zhang;Rui Xu;Jun Ying;Peijian Tong;Rui Dong;Peng Zhang;Zhenyu Shi;Liang Fang;Chen Luo;Chenjie Xia,2019-10-01,2,Journal of Cellular Physiology,18535-18543,10.1002/jcp.28491,30912140,85063408421,2-s2.0-85063408421,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85063408421,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85063408421&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85063408421&origin=inward +Inhibition of 4-aminobutyrate aminotransferase protects against injury-induced osteoarthritis in mice,Shen,Audrey McAlinden;Jie Shen;Taotao Xu;Cuicui Wang;Jun Ying;Regis J. O'Keefe,2019-09-19,2,JCI Insight,,10.1172/jci.insight.128568,31534049,85072655136,2-s2.0-85072655136,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85072655136,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85072655136&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85072655136&origin=inward +Epigenetic and therapeutic implications of dnmt3b in temporomandibular joint osteoarthritis,Shen,Mo Chen;Jeremy J. Mao;Jie Shen;Xuedong Zhou;Zhi Li;Yue Zhou;Jian Zhou;Regis J. O’Keefe,2019-01-01,3,American Journal of Translational Research,1736-1747,,,85065239317,2-s2.0-85065239317,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85065239317,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85065239317&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85065239317&origin=inward +Ablation of Dnmt3b in chondrocytes suppresses cell maturation during embryonic development,Shen,Regis O'Keefe;Jie Shen;Taotao Xu;Cuicui Wang;Peijian Tong,2018-07-01,5,Journal of Cellular Biochemistry,5852-5863,10.1002/jcb.26775,29637597,85045206493,2-s2.0-85045206493,Article,CSC,https://api.elsevier.com/content/abstract/scopus_id/85045206493,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85045206493&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85045206493&origin=inward +Loss of Dnmt3b in Chondrocytes Leads to Delayed Endochondral Ossification and Fracture Repair,Shen,Yousef Abu-Amer;Jie Shen;Cuicui Wang;Regis J. O'Keefe,2018-02-01,10,Journal of Bone and Mineral Research,283-297,10.1002/jbmr.3305,29024060,85032803491,2-s2.0-85032803491,Article,NIAMS,https://api.elsevier.com/content/abstract/scopus_id/85032803491,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85032803491&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85032803491&origin=inward +Distinct metabolic programs induced by TGF-β1 and BMP2 in human articular chondrocytes with osteoarthritis,Shen,Regis J. O'Keefe;Jie Shen;Cuicui Wang;Richard M. Silverman,2018-01-01,14,Journal of Orthopaedic Translation,66-73,10.1016/j.jot.2017.12.004,,85041317477,2-s2.0-85041317477,Article,NIAMS,https://api.elsevier.com/content/abstract/scopus_id/85041317477,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85041317477&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85041317477&origin=inward +DNA methyltransferase 3b regulates articular cartilage homeostasis by altering metabolism,Shen,Jason Myers;Audrey McAlinden;Jie Shen;Taotao Xu;John M. Ashton;Cuicui Wang;Michael J. Zuscik;Daofeng Li;Ting Wang;Regis J. O'Keefe,2017-06-15,17,JCI insight,,10.1172/jci.insight.93612,28614801,85031721539,2-s2.0-85031721539,Article,NCI,https://api.elsevier.com/content/abstract/scopus_id/85031721539,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85031721539&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85031721539&origin=inward +Complex post-traumatic stress symptoms in female adolescents: the role of emotion dysregulation in impairment and trauma exposure after an acute sexual assault,Stringaris,Argyris Stringaris;Kia Chong Chua;Venetia Clarke;Patrick Smith;Laia Villalta;Tami Kramer;Russell M. Viner;Sophie Khadr,2020-12-31,1,European Journal of Psychotraumatology,,10.1080/20008198.2019.1710400,,85077686165,2-s2.0-85077686165,Article,,https://api.elsevier.com/content/abstract/scopus_id/85077686165,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85077686165&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85077686165&origin=inward +Associations between brain activity and endogenous and exogenous cortisol – A systematic review,Stringaris,Anita Harrewijn;Argyris Stringaris;Simone Pisano;Daniel S. Pine;Sarah M. Jackson;Katharina Clore-Gronenborn;Pablo Vidal-Ribas,2020-10-01,0,Psychoneuroendocrinology,,10.1016/j.psyneuen.2020.104775,32592873,85086995654,2-s2.0-85086995654,Review,NIH,https://api.elsevier.com/content/abstract/scopus_id/85086995654,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85086995654&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85086995654&origin=inward +Heavy drinking in adolescents is associated with change in brainstem microstructure and reward sensitivity,Stringaris,Patricia Conrod;Herta Flor;Sarah Hohmann;Dimitri Papadopoulos-Orfanos;Robert Goodman;Frauke Nees;Michael N. Smolka;Anna Cattrell;Rüdiger Brühl;Ruben Miranda;Viola Kappel;Vincent Frouin;Uli Bromberg;Erin Burke Quinlan;Sarah Jurk;Arun L.W. Bokde;Gunter Schumann;Irina Filippi;Marie Laure Paillère Martinot;Luise Poustka;Henrik Walter;Eric Artiges;Corinna Isensee;Juergen Gallinat;Penny Gowland;Robert Whelan;Andreas Becker;Sabina Millenet;Tahmine Fadai;André Galinowski;Betteke M. van Noort;Jean Luc Martinot;Yvonne Grimmer;Argyris Stringaris;Tobias Banaschewski;Christian Büchel;Juliane H. Fröhner;Hugh Garavan;Hervé Lemaitre;Jani Penttilä;Sylvane Desrivières;Andreas Heinz;Maren Struve,2020-05-01,0,Addiction Biology,,10.1111/adb.12781,31328396,85069739278,2-s2.0-85069739278,Article,FRC,https://api.elsevier.com/content/abstract/scopus_id/85069739278,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85069739278&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85069739278&origin=inward +Sex effects on structural maturation of the limbic system and outcomes on emotional regulation during adolescence,Stringaris,Patricia Conrod;Eva Menningen;Michael N. Smolka;Anna Cattrell;Vincent Frouin;Uli Bromberg;Sarah Jurk;Gunter Schumann;Irina Filippi;Betteke van Noort;Henrik Walter;Eric Artiges;Hélène Vulser;Dimitri Papadopoulos Orfanos;Veronika Ziesch;Nora C. Vetter;Rubén Miranda;Jean Luc Martinot;Jurgen Gallinat;Argyris Stringaris;Yvonne Grimmer;Hervé Lemaître;Pauline Bezivin Frere;Marie Laure Paillère-Martinot;Jani Penttilä,2020-04-15,1,NeuroImage,,10.1016/j.neuroimage.2019.116441,31811901,85078193630,2-s2.0-85078193630,Article,ANR,https://api.elsevier.com/content/abstract/scopus_id/85078193630,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85078193630&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85078193630&origin=inward +Annual Research Review: Defining and treating pediatric treatment-resistant depression,Stringaris,Michael H. Bloch;Argyris Stringaris;Jennifer B. Dwyer;David A. Brent,2020-03-01,1,Journal of Child Psychology and Psychiatry and Allied Disciplines,312-332,10.1111/jcpp.13202,32020643,85079068611,2-s2.0-85079068611,Review,AFSP,https://api.elsevier.com/content/abstract/scopus_id/85079068611,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85079068611&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85079068611&origin=inward +The Role of Paternal Accommodation of Paediatric OCD Symptoms: Patterns and Implications for Treatment Outcomes,Stringaris,Argyris Stringaris;Georgina Krebs;David Mataix-Cols;Isobel Heyman;Caroline Stokes;Cynthia Turner;Benedetta Monzani;Pablo Vidal-Ribas,2020-01-01,0,Journal of Abnormal Child Psychology,,10.1007/s10802-020-00678-9,,85088107056,2-s2.0-85088107056,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85088107056,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85088107056&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85088107056&origin=inward +Linked patterns of biological and environmental covariation with brain structure in adolescence: a population-based longitudinal study,Stringaris,Alex Ing;Herta Flor;Tomáš Paus;Frauke Nees;Michael N. Smolka;Erin Burke Quinlan;Arun L.W. Bokde;Gunter Schumann;Amirhossein Modabbernia;Marie Laure Paillère Martinot;Dominik A. Moser;Luise Poustka;Henrik Walter;Eric Artiges;Bernd Ittermann;Dimitri Papadopoulos Orfanos;Gareth J. Barker;Penny Gowland;Robert Whelan;Andreas Becker;Corinna Insensee;Abraham Reichenberg;Sabina Millenet;Betteke M. van Noort;Jean Luc Martinot;Tobias Banaschewski;Yvonne Grimmer;Hugh Garavan;Argyris Stringaris;Juliane H. Fröhner;Sophia Frangou;Jani Penttilä;Sylvane Desrivières;Antoine Grigis;Andreas Heinz;Gaelle E. Doucet,2020-01-01,0,Molecular Psychiatry,,10.1038/s41380-020-0757-x,32444868,85085341287,2-s2.0-85085341287,Article,Inserm,https://api.elsevier.com/content/abstract/scopus_id/85085341287,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85085341287&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85085341287&origin=inward +Editorial: Are computers going to take over: implications of machine learning and computational psychiatry for trainees and practising clinicians,Stringaris,Argyris Stringaris,2019-12-01,1,Journal of Child Psychology and Psychiatry and Allied Disciplines,1251-1253,10.1111/jcpp.13168,31724195,85074959312,2-s2.0-85074959312,Editorial,,https://api.elsevier.com/content/abstract/scopus_id/85074959312,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85074959312&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85074959312&origin=inward +Identification of neurobehavioural symptom groups based on shared brain mechanisms,Stringaris,Alex Ing;Nicole Tay;Patricia Conrod;Herta Flor;Thomas Wolfers;Frauke Nees;Michael N. Smolka;Vincent Frouin;Viola Kappel;Uli Bromberg;Erin Burke Quinlan;Philip A. Spechler;John Ashburner;Arun L.W. Bokde;Gunter Schumann;Philipp G. Sämann;Marie Laure Paillère Martinot;Betteke van Noort;Luise Poustka;Henrik Walter;Jan Buitelaar;Congying Chu;Bernd Ittermann;Andreas Meyer-Lindenberg;Dimitri Papadopoulos Orfanos;Trevor W. Robbins;Tianye Jia;Ingrid Agartz;Penny Gowland;Robert Whelan;Sabina Millenet;Ilya M. Veer;Tahmine Fadai;Edward D. Barker;Jean Luc Martinot;Tobias Banaschewski;Francesca Biondo;Christian Büchel;Hugh Garavan;Yvonne Grimmer;Argyris Stringaris;Elisabeth Binder;Andre Marquand;Gabriel Robert;Hervé Lemaitre;Jani Penttilä;Sylvane Desrivières;Andreas Heinz;Maren Struve;Ole A. Andreassen,2019-12-01,4,Nature Human Behaviour,1306-1318,10.1038/s41562-019-0738-8,31591521,85076447002,2-s2.0-85076447002,Article,BMBF,https://api.elsevier.com/content/abstract/scopus_id/85076447002,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85076447002&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85076447002&origin=inward +Pubertal maturation and sex effects on the default-mode network connectivity implicated in mood dysregulation,Stringaris,C. Nymberg;Z. Pausova;Anna Cattrell;Rüdiger Brühl;Arun L.W. Bokde;G. J. Barker;K. Stueber;D. Hall;Juergen Gallinat;Penny Gowland;B. Ruggeri;N. Ivanov;Jean Luc Martinot;Christian Büchel;C. Newman;A. Ihlenfeld;H. Werts;N. Bordas;J. Jones;Sylvane Desrivières;Y. Schwartz;M. Fauth-Bühler;N. Subramaniam;S. Ripke;S. Millenet;Henrik Walter;E. Mennigen;B. Walaszek;Betteke M. van Noort;C. Mallik;T. Hübner;Argyris Stringaris;L. Topper;T. Paus;Antoine Grigis;Maren Struve;Z. Bricaud;D. Theobald;Herta Flor;Frauke Nees;L. Smith;Michael N. Smolka;Ruben Miranda;N. Strache;D. Carter;Marie Laure Paillère Martinot;Luise Poustka;J. Yacubian;N. Heym;S. Schneider;C. Bach;D. Schmidt;J. Ireland;T. Jia;M. Rapp;Herve Lemaitre;Adam X. Gorka;Hugh Garavan;Christian Grillon;Jani Penttilä;Andreas Heinz;K. Head;J. Reuter;Patricia Conrod;Dimitri Papadopoulos-Orfanos;A. Tahmasebi;B. Thyreau;V. Ziesch;J. Rogers;Viola Kappel;I. Filippi;Uli Bromberg;Gunter Schumann;R. Spanagel;J. B. Poline;N. C. Vetter;Eric Artiges;L. Albrecht;D. Stephens;Tiffany Lago;Robert Whelan;F. Gollier-Briant;Brenda Benson;Tahmine Fadai;A. Ströhle;Tobias Banaschewski;Yvonne Grimmer;C. Connolly;S. Nugent;J. Dalley;S. Havatzias;Monique Ernst;K. Müller;A. Galinowski,2019-12-01,2,Translational Psychiatry,,10.1038/s41398-019-0433-6,30804326,85062069450,2-s2.0-85062069450,Article,WT,https://api.elsevier.com/content/abstract/scopus_id/85062069450,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85062069450&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85062069450&origin=inward +Reward processing in adolescent depression across neuroimaging modalities: A review,Stringaris,Argyris Stringaris;Georgia O’Callaghan,2019-11-01,2,Zeitschrift fur Kinder- und Jugendpsychiatrie und Psychotherapie,535-541,10.1024/1422-4917/a000663,30957688,85074676470,2-s2.0-85074676470,Review,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85074676470,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85074676470&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85074676470&origin=inward +Bidirectional Associations Between Stress and Reward Processing in Children and Adolescents: A Longitudinal Neuroimaging Study,Stringaris,Anita Harrewijn;Argyris Stringaris;Aria D. Vitale;Nathan A. Fox;Hanna Keren;Daniel S. Pine;Brenda Benson;Pablo Vidal-Ribas,2019-10-01,2,Biological Psychiatry: Cognitive Neuroscience and Neuroimaging,893-901,10.1016/j.bpsc.2019.05.012,31324591,85072598688,2-s2.0-85072598688,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85072598688,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85072598688&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85072598688&origin=inward +Promotion of Wellbeing for Children of Parents With Mental Illness: A Model Protocol for Research and Intervention,Stringaris,Camilla Lauritzen;Argyris Stringaris;Karin van Doesum;Richard Musil;Floor van Santvoort;Allan H. Young;Charlotte Reedtz;Thomas Schulze;Giovanni de Girolamo;Michael Berk;Therese van Amelsvoort;Giulia Signorini;Geneviève Piché;Philippe Conus,2019-09-06,1,Frontiers in Psychiatry,,10.3389/fpsyt.2019.00606,,85072828438,2-s2.0-85072828438,Article,UiT,https://api.elsevier.com/content/abstract/scopus_id/85072828438,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85072828438&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85072828438&origin=inward +The initiation of cannabis use in adolescence is predicted by sex-specific psychosocial and neurobiological features,Stringaris,Catherine Orr;Jean Baptiste Poline;Bader Chaarani;Alexis Barbot;Anna Cattrell;Arun L.W. Bokde;Eva Mennigen;Nicholas D'Alberto;Eva Loth;Dirk Schmidt;Kerstin Stueber;Marcella Rietschel;Tianye Jia;Bernadeta Walaszek;Penny Gowland;Scott Mackey;Sabina Millenet;Kathrin Müller;Ruediger Brühl;Jean Luc Martinot;Christian Büchel;Zdenka Pausova;Hervé Lemaitre;Sylvane Desrivières;Barbara Ruggeri;Benjamin Thyreau;Lauren Topper;Lindsay Smith;Karl Mann;Vincent Frouin;Richard Watts;Chris Andrew;Kelsey E. Hudson;Mira Fauth-Bühler;Stephan Ripke;Henrik Walter;Jessica Massicotte;Robert R. Althoff;Bernd Ittermann;Zuleima Bricaud;Jürgen Gallinat;Catherine Mallik;Amir Tahmasebi;Christophe Lalanne;Argyris Stringaris;Jani Pentillä;Stephanie Havatzias;Andreas Ströhle;Nora Vetter;Maren Struve;Craig Newman;Alexandra Potter;Herta Flor;Albrecht Ihlenfeld;Frauke Nees;Nikolay Ivanov;Michael N. Smolka;Philip A. Spechler;Fanny Briand;Marie Laure Paillère Martinot;Luise Poustka;Dimitri Papadopoulos Orfanos;André Galinowski;Hugh Garavan;Andreas Heinz;Jan Reuter;Yannick Schwartz;Juliana Yacubian;Tomáš Paus;Helene Vulser;Uli Bromberg;Rainer Spanagel;Nicholas Allgaier;Gunter Schumann;Kay Head;Stephen T. Higgins;Nadja Heym;Charlotte Nymberg;Thomas Hübner;Robert Whelan;Claire Lawrence;Veronika Ziesch;Tahmine Fadai;Nicole Strache;Michael Rapp;Tobias Banaschewski;Yvonne Grimmer;Matthew D. Albaugh;Laurence Reed;Helen Werts;Sarah Rodehacke;Patricia J. Conrod,2019-08-01,6,European Journal of Neuroscience,2346-2356,10.1111/ejn.13989,29889330,85055048096,2-s2.0-85055048096,Article,WT,https://api.elsevier.com/content/abstract/scopus_id/85055048096,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85055048096&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85055048096&origin=inward +"Low Smoking Exposure, the Adolescent Brain, and the Modulating Role of CHRNA5 Polymorphisms",Stringaris,Catherine Orr;Jean Baptiste Poline;Sophia Schneider;Bader Chaarani;Alexis Barbot;Anna Cattrell;Arun L.W. Bokde;Eva Mennigen;Nicholas D'Alberto;Eva Loth;Dirk Schmidt;Kerstin Stueber;Kees Jan Kan;Marcella Rietschel;Tianye Jia;Bernadeta Walaszek;Penny Gowland;Scott Mackey;Sabina Millenet;Kathrin Müller;Ruediger Brühl;Jean Luc Martinot;Fanny Gollier Briand;Christian Büchel;Zdenka Pausova;Hervé Lemaitre;Sylvane Desrivières;Barbara Ruggeri;Benjamin Thyreau;Lauren Topper;Lindsay Smith;Karl Mann;Vincent Frouin;Chris Andrew;Jennifer Jones;Kelsey E. Hudson;Mira Fauth-Bühler;Stephan Ripke;Henrik Walter;Jessica Massicotte;Robert R. Althoff;Bernd Ittermann;Zuleima Bricaud;Jürgen Gallinat;Catherine Mallik;Amir Tahmasebi;Christophe Lalanne;Argyris Stringaris;Jani Pentillä;Stephanie Havatzias;Andreas Ströhle;Nora Vetter;Maren Struve;Patrick Constant;Craig Newman;Alexandra Potter;Herta Flor;Albrecht Ihlenfeld;Frauke Nees;Nikolay Ivanov;Michael N. Smolka;Philip A. Spechler;Luise Poustka;Elliot A. Stein;André Galinowski;Hugh Garavan;Andreas Heinz;Jan Reuter;Yannick Schwartz;Juliana Yacubian;Tomáš Paus;Dimitri Papadopoulos-Orfanos;Helene Vulser;Uli Bromberg;Rainer Spanagel;Gunter Schumann;Kay Head;Stephen T. Higgins;Nadja Heym;Charlotte Nymberg;Thomas Hübner;Robert Whelan;Claire Lawrence;Veronika Ziesch;Tahmine Fadai;Nicole Strache;Michael Rapp;Tobias Banaschewski;Yvonne Grimmer;Laurence Reed;Helen Werts;Sarah Rodehacke;Patricia J. Conrod,2019-07-01,2,Biological Psychiatry: Cognitive Neuroscience and Neuroimaging,672-679,10.1016/j.bpsc.2019.02.006,31072760,85065211708,2-s2.0-85065211708,Article,WT,https://api.elsevier.com/content/abstract/scopus_id/85065211708,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85065211708&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85065211708&origin=inward +Extending the Construct Network of Trait Disinhibition to the Neuroimaging Domain: Validation of a Bridging Scale for Use in the European IMAGEN Project,Stringaris,Patricia Conrod;James R. Yancey;Herta Flor;Frauke Nees;Michael N. Smolka;Angela Heinrich;Vincent Frouin;Laura E. Drislane;Uli Bromberg;Erin Burke Quinlan;Arun L.W. Bokde;Gunter Schumann;Marie Laure Paillère Martinot;Betteke van Noort;Jens Foell;Luise Poustka;Henrik Walter;Bernd Ittermann;Dimitri Papadopoulos Orfanos;Sarah J. Brislin;Penny Gowland;Robert Whelan;Tahmine Fadai;Jean Luc Martinot;Tobias Banaschewski;Christian Büchel;Hugh Garavan;Argyris Stringaris;Juliane H. Fröhner;Yvonne Grimmer;Christopher J. Patrick;Sylvane Desrivières;Andreas Heinz;Maren Struve,2019-06-01,6,Assessment,567-581,10.1177/1073191118759748,29557190,85044347238,2-s2.0-85044347238,Article,Inserm,https://api.elsevier.com/content/abstract/scopus_id/85044347238,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85044347238&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85044347238&origin=inward +Dimensions and subtypes of oppositionality and their relation to comorbidity and psychosocial characteristics,Stringaris,Argyris Stringaris;Anders Bo Bojesen;Christian Sibbersen;Ardesheer Talati;Rikke Wesselhoeft;Rune Voss Kristensen,2019-03-11,4,European Child and Adolescent Psychiatry,351-365,10.1007/s00787-018-1199-8,30003396,85049770959,2-s2.0-85049770959,Article,"FSS, DFF",https://api.elsevier.com/content/abstract/scopus_id/85049770959,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85049770959&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85049770959&origin=inward +Structural Brain Connectivity in Childhood Disruptive Behavior Problems: A Multidimensional Approach,Stringaris,Vincent W.V. Jaddoe;Argyris Stringaris;Henning Tiemeier;James J. Hudziak;Ryan L. Muetzel;Koen Bolhuis;Steven A. Kushner;Tonya White;Manon H.J. Hillegers,2019-02-15,4,Biological Psychiatry,336-344,10.1016/j.biopsych.2018.07.005,30119874,85051521885,2-s2.0-85051521885,Article,EUR,https://api.elsevier.com/content/abstract/scopus_id/85051521885,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85051521885&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85051521885&origin=inward +Debate: Pediatric bipolar disorder – divided by a common language?,Stringaris,Argyris Stringaris,2019-02-01,0,Child and Adolescent Mental Health,106-107,10.1111/camh.12314,32677239,85060732157,2-s2.0-85060732157,Note,,https://api.elsevier.com/content/abstract/scopus_id/85060732157,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85060732157&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85060732157&origin=inward +Probing the Irritability−Suicidality Nexus,Stringaris,Argyris Stringaris;Pablo Vidal-Ribas,2019-01-01,1,Journal of the American Academy of Child and Adolescent Psychiatry,18-19,10.1016/j.jaac.2018.08.014,30577933,85058513073,2-s2.0-85058513073,Editorial,,https://api.elsevier.com/content/abstract/scopus_id/85058513073,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85058513073&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85058513073&origin=inward +Editorial: Should child psychiatry be more like paediatric oncology?,Stringaris,Argyris Stringaris;Kate Stringaris,2018-12-01,2,Journal of Child Psychology and Psychiatry and Allied Disciplines,1225-1227,10.1111/jcpp.13006,30450645,85056743712,2-s2.0-85056743712,Editorial,,https://api.elsevier.com/content/abstract/scopus_id/85056743712,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85056743712&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85056743712&origin=inward +Early variations in white matter microstructure and depression outcome in adolescents with subthreshold depression,Stringaris,Tomas Paus;Patricia Conrod;Herta Flor;Eleni Tzavara;Dimitri Papadopoulos-Orfanos;Robert Goodman;Frauke Nees;Michael N. Smolka;Anna Cattrell;Rüdiger Brühl;Charbel Massaad;Ruben Miranda;Viola Kappel;Uli Bromberg;Vincent Frouin;Arun L.W. Bokde;Gunter Schumann;Marie Laure Paillère Martinot;Luise Poustka;Henrik Walter;Eric Artiges;Hélène Vulser;Gareth J. Barker;Juergen Gallinat;Penny Gowland;Betteke M. Van Noort;Robert Whelan;Tahmine Fadai;Jean Luc Martinot;Yvonne Grimmer;Argyris Stringaris;Tobias Banaschewski;Christian Büchel;Hugh Garavan;Hervé Lemaitre;Jani Penttilä;Sylvane Desrivières;Andreas Heinz;Maren Struve;Sarah Rodehacke,2018-12-01,5,American Journal of Psychiatry,1255-1264,10.1176/appi.ajp.2018.17070825,30111185,85057593778,2-s2.0-85057593778,Article,WT,https://api.elsevier.com/content/abstract/scopus_id/85057593778,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85057593778&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85057593778&origin=inward +Innovations in Practice: Body dysmorphic disorder in youth – using the Development and Well-Being Assessment as a tool to improve detection in routine clinical practice,Stringaris,Laura Bowyer;Argyris Stringaris;Georgina Krebs;Vanessa Buckley;Amita Jassi;Robert Goodman;Bruce Clark,2018-09-01,0,Child and Adolescent Mental Health,291-294,10.1111/camh.12268,32677303,85042525829,2-s2.0-85042525829,Article,MRC,https://api.elsevier.com/content/abstract/scopus_id/85042525829,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85042525829&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85042525829&origin=inward +A Methylome-Wide Association Study of Trajectories of Oppositional Defiant Behaviors and Biological Overlap With Attention Deficit Hyperactivity Disorder,Stringaris,Thomas G. O'Connor;Argyris Stringaris;Caroline L. Relton;Barbara Maughan;Tom R. Gaunt;Alan J. Meehan;Wendy McArdle;Richard Rowe;Esther Walton;Charlotte A.M. Cecil;Sara R. Jaffee;Edward D. Barker,2018-09-01,5,Child Development,1839-1855,10.1111/cdev.12957,28929496,85030032652,2-s2.0-85030032652,Article,ESRC,https://api.elsevier.com/content/abstract/scopus_id/85030032652,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85030032652&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85030032652&origin=inward +Should Clinicians Split or Lump Psychiatric Symptoms? The Structure of Psychopathology in Two Large Pediatric Clinical Samples from England and Norway,Stringaris,Argyris Stringaris;Per Håkan Brøndbo;Nada Zahreddine;Robert Goodman;Emily Simonoff;Børge Mathiassen;Lorena Fernández de la Cruz;Pablo Vidal-Ribas,2018-08-01,1,Child Psychiatry and Human Development,607-620,10.1007/s10578-017-0777-1,29243079,85038117790,2-s2.0-85038117790,Article,WT,https://api.elsevier.com/content/abstract/scopus_id/85038117790,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85038117790&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85038117790&origin=inward +Special Editorial: Open science and the Journal of Child Psychology & Psychiatry – next steps?,Stringaris,Alice Gregory;Chris Hollis;Megan Gunnar;Jonathan Green;Kelly Klump;A. J.(Tineke) Oldehinkel;Eric Fombonne;Pasco Fearon;Michael H. Bloch;Daniel Brandeis;Charles H. Zeanah;Klaus Peter Lesch;Paul Ramchandani;Sabine Landau;S. Alexandra Burt;Argyris Stringaris;Sara Jaffee;Bradley Peterson;Jeff M. Halperin;Joan Asarnow;Edmund Sonuga-Barke,2018-07-01,4,Journal of Child Psychology and Psychiatry and Allied Disciplines,826-827,10.1111/jcpp.12929,29806217,85047664251,2-s2.0-85047664251,Editorial,,https://api.elsevier.com/content/abstract/scopus_id/85047664251,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85047664251&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85047664251&origin=inward +Emotion regulation difficulties in traumatized youth: a meta-analysis and conceptual review,Stringaris,P. Smith;N. Hickin;A. Stringaris;L. Villalta,2018-04-01,7,European Child and Adolescent Psychiatry,527-544,10.1007/s00787-018-1105-4,29380069,85041097484,2-s2.0-85041097484,Article,,https://api.elsevier.com/content/abstract/scopus_id/85041097484,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85041097484&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85041097484&origin=inward +Distinct brain structure and behavior related to ADHD and conduct disorder traits,Stringaris,Frida Bayard;Patricia Conrod;Rita Almeida;Herta Flor;Tomáš Paus;Frauke Nees;Michael N. Smolka;Vincent Frouin;Viola Kappel;Uli Bromberg;Erin Burke Quinlan;Arun L.W. Bokde;Predrag Petrovic;Gunter Schumann;Marie Laure Paillère Martinot;Betteke van Noort;Charlotte Nymberg Thunell;Luise Poustka;Henrik Walter;Bernd Ittermann;Dimitri Papadopoulos Orfanos;Christoph Abé;Penny Gowland;Gareth Barker;Robert Whelan;Nora C. Vetter;Tahmine Fadai;Jean Luc Martinot;Tobias Banaschewski;Christian Büchel;Hugh Garavan;Argyris Stringaris;Yvonne Grimmer;Jani Penttilä;Sylvane Desrivières;Andreas Heinz;Maren Struve,2018-01-01,3,Molecular Psychiatry,,10.1038/s41380-018-0202-6,,85052304815,2-s2.0-85052304815,,,https://api.elsevier.com/content/abstract/scopus_id/85052304815,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85052304815&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85052304815&origin=inward +Editorial: What is depression?,Stringaris,Argyris Stringaris,2017-12-01,8,Journal of Child Psychology and Psychiatry and Allied Disciplines,1287-1289,10.1111/jcpp.12844,29148049,85034094326,2-s2.0-85034094326,Editorial,,https://api.elsevier.com/content/abstract/scopus_id/85034094326,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85034094326&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85034094326&origin=inward +Practitioner review: Current best practice in the use of parent training and other behavioural interventions in the treatment of children and adolescents with attention deficit hyperactivity disorder,Stringaris,Maite Ferrin;Michel Lecendreux;Chris Hollis;Paramala Santosh;David Daley;Emily Simonoff;Marina Danckaerts;Hans Christoph Steinhausen;Ian C.K. Wong;Samuele Cortese;Barbara J. Van Den Hoofdakker;Daniel Brandeis;Jan Buitelaar;David Coghill;Edmund J. Sonuga-Barke;Saskia Van Der Oord;Margaret Thompson;Cesar Soutullo;Philip Asherson;Eric Taylor;Martin Holtmann;Manfred Doepfner;Ralf W. Dittmann;Tobias Banaschewski;Argyris Stringaris;Eric Konofal;Alessandro Zuddas;Aribert Rothenberger,2017-10-30,23,Journal of Child Psychology and Psychiatry and Allied Disciplines,932-947,10.1111/jcpp.12825,29083042,85033213150,2-s2.0-85033213150,Article,OPC,https://api.elsevier.com/content/abstract/scopus_id/85033213150,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85033213150&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85033213150&origin=inward +Autoantibody Biomarkers for Basal Ganglia Encephalitis in Sydenham Chorea and Pediatric Autoimmune Neuropsychiatric Disorder Associated With Streptococcal Infections,Swedo,Rebecca Hommer;Susan E. Swedo;Julie A. Stoner;Sean Reim;Adita Mascaro-Blanco;Jennifer L. Chain;Kathy Alvarez;Paul Grant;Ivana Kawikova;Kyle Williams;Madeleine W. Cunningham;Rebecca Bentley;James F. Leckman,2020-06-24,0,Frontiers in Psychiatry,,10.3389/fpsyt.2020.00564,,85087690834,2-s2.0-85087690834,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85087690834,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85087690834&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85087690834&origin=inward +Functional genomics analysis of Phelan-McDermid syndrome 22q13 region during human neurodevelopment,Swedo,Susan E. Swedo;Catherine A. Ziats;Ahmed Mahfouz;Luke P. Grosvenor;Sara M. Sarasua;Owen M. Rennert;Audrey E. Thurm;Mark N. Ziats,2019-03-01,1,PLoS ONE,,10.1371/journal.pone.0213921,30875393,85062986137,2-s2.0-85062986137,Article,,https://api.elsevier.com/content/abstract/scopus_id/85062986137,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85062986137&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85062986137&origin=inward +Functional brain connectivity in electrical status epilepticus in sleep,Swedo,Susan E. Swedo;Steven H. Mott;Cristan A. Farmer;Amara L. Krag;Richard P. Morse;Gregory L. Holmes;Scott A. Burroughs;Audrey E. Thurm;Ashura W. Buckley,2019-02-01,1,Epileptic Disorders,55-64,10.1684/epd.2019.1027,30767900,85063424008,2-s2.0-85063424008,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85063424008,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85063424008&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85063424008&origin=inward +"The Gestalt of functioning in autism spectrum disorder: Results of the international conference to develop final consensus International Classification of Functioning, Disability and Health core sets",Swedo,Soheil Mahdi;Bruce Tonge;Wolfgang Segerer;Melissa Selb;Sven Bölte;Susan Swedo;Cory Shulman;Petrus J. de Vries;Virginia Wong;Lonnie Zwaigenbaum;Mats Granlund;John E. Robison,2019-02-01,25,Autism,449-467,10.1177/1362361318755522,29378422,85041576618,2-s2.0-85041576618,Article,VR,https://api.elsevier.com/content/abstract/scopus_id/85041576618,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85041576618&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85041576618&origin=inward +Cerebrospinal fluid vasopressin and symptom severity in children with autism,Swedo,Audrey Thurm;Ozge Oztan;Susan E. Swedo;Joseph P. Garner;Antonio Y. Hardan;Karen J. Parker;Elliott H. Sherr;Sonia Partap;Cristan Farmer,2018-10-01,5,Annals of Neurology,611-615,10.1002/ana.25314,30152888,85053818901,2-s2.0-85053818901,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85053818901,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85053818901&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85053818901&origin=inward +"Spindle activity in young children with autism, developmental delay, or typical development",Swedo,Susan E. Swedo;Cristan A. Farmer;Priyanka Chilakamarri;Gregory L. Holmes;Audrey E. Thurm;Ashura W. Buckley,2018-07-10,6,Neurology,e112-e122,10.1212/WNL.0000000000005759,29875224,85063393199,2-s2.0-85063393199,Article,,https://api.elsevier.com/content/abstract/scopus_id/85063393199,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85063393199&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85063393199&origin=inward +Longitudinal outcomes of children with pediatric autoimmune neuropsychiatric disorder associated with streptococcal infections (PANDAS),Swedo,Rebecca Hommer;Precilla D’Souza;Riley Kessler;Susan Swedo;Jill Leon;Paul Grant;Cristan Farmer;Kyle Williams;James F. Leckman,2018-05-01,5,European Child and Adolescent Psychiatry,637-643,10.1007/s00787-017-1077-9,29119300,85033363617,2-s2.0-85033363617,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85033363617,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85033363617&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85033363617&origin=inward +Differential binding of antibodies in PANDAS patients to cholinergic interneurons in the striatum,Swedo,Christopher Pittenger;Susan Swedo;Paul Grant;Kantiya Jindachomthong;Maximiliano Rapanelli;Luciana R. Frick;Kyle Williams;James F. Leckman,2018-03-01,6,"Brain, Behavior, and Immunity",304-311,10.1016/j.bbi.2017.12.004,29233751,85039435191,2-s2.0-85039435191,Article,CMHCF,https://api.elsevier.com/content/abstract/scopus_id/85039435191,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85039435191&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85039435191&origin=inward +Classifying and characterizing the development of adaptive behavior in a naturalistic longitudinal study of young children with autism,Swedo,Audrey Thurm;Cristan Farmer;Susan E. Swedo;Lauren Swineford,2018-01-05,15,Journal of Neurodevelopmental Disorders,,10.1186/s11689-017-9222-9,29329511,85040442125,2-s2.0-85040442125,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85040442125,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85040442125&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85040442125&origin=inward +Anorexia and autoimmunity: Challenging the etiologic constructs of disordered eating,Swedo,Rebecca E. Hommer;Susan E. Swedo,2017-12-01,1,Pediatrics,,10.1542/peds.2017-3060,29122974,85037700428,2-s2.0-85037700428,Note,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85037700428,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85037700428&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85037700428&origin=inward +Riluzole Serum Concentration in Pediatric Patients Treated for Obsessive-Compulsive Disorder,Swedo,Susan Swedo;Jane Song;Paul Grant;Cristan Farmer;Timothy Kish,2017-12-01,0,Journal of Clinical Psychopharmacology,713-716,10.1097/JCP.0000000000000797,29045303,85033792745,2-s2.0-85033792745,Article,,https://api.elsevier.com/content/abstract/scopus_id/85033792745,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85033792745&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85033792745&origin=inward +Overview of Treatment of Pediatric Acute-Onset Neuropsychiatric Syndrome,Swedo,Tanya K. Murphy;Susan E. Swedo;Jennifer Frankovich,2017-09-01,19,Journal of Child and Adolescent Psychopharmacology,562-565,10.1089/cap.2017.0042,28722464,85049715667,2-s2.0-85049715667,Review,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85049715667,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85049715667&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85049715667&origin=inward +Clinical Management of Pediatric Acute-Onset Neuropsychiatric Syndrome: Part i - Psychiatric and Behavioral Interventions,Swedo,Gail Bernstein;Josephine Elia;Margo Thienemann;Tanya Murphy;Susan Swedo;Jennifer Frankovich;Cynthia Kapphahn;Kiki Chang;Richard Shaw;James Leckman;Daniel Geller;Kyle Williams,2017-09-01,32,Journal of Child and Adolescent Psychopharmacology,566-573,10.1089/cap.2016.0145,28722481,85040323549,2-s2.0-85040323549,Article,CDC,https://api.elsevier.com/content/abstract/scopus_id/85040323549,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85040323549&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85040323549&origin=inward +Clinical management of pediatric acute-onset neuropsychiatric syndrome: Part II—use of immunomodulatory therapies,Swedo,Michael Daines;Mark Pasternack;Bahare Farhadian;Mady Hornig;Reuven Bromberg;Dritan Agalliu;Daniel Geller;Margo Thienemann;Tanya Murphy;Theresa Willett;Joseph Hernandez;Kyle Williams;Gail Bernstein;Russell C. Dale;Jennifer Frankovich;Kiki Chang;Elizabeth Latimer;James Leckman;Kayla Brown;Janell Sherr;Hayley Gans;Susan Swedo;Terence Sanger;Eyal Muscal;Madeleine Cunningham;Richard Shaw;Michael Cooperstock;Yujuan Zhang;Harry Chugani,2017-09-01,28,Journal of Child and Adolescent Psychopharmacology,574-593,10.1089/cap.2016.0148,,85033219753,2-s2.0-85033219753,Article,,https://api.elsevier.com/content/abstract/scopus_id/85033219753,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85033219753&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85033219753&origin=inward +Sydenham's Chorea: A Model for Childhood Autoimmune Neuropsychiatric Disorders,Swedo,Susan E. Swedo,1994-01-01,252,JAMA: The Journal of the American Medical Association,1788-1791,10.1001/jama.272.22.1788,7661914,85047692875,2-s2.0-85047692875,Article,,https://api.elsevier.com/content/abstract/scopus_id/85047692875,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85047692875&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85047692875&origin=inward +Guidelines for the content and format of PET brain data in publications and archives: A consensus paper,Thomas,Peter Herscovitch;J. John Mann;Thomas E. Nichols;Richard E. Carson;Stefan Appelhoff;Peter J.H. Scott;Graham Searle;Francesca Zanderigo;Gaia Rizzo;Ciprian Catana;Todd Ogden;Dean F. Wong;Doris Doudet;Julie Price;Peter S. Talbot;Jeih San Liow;Rupert Lanzenberger;Tetsuya Suhara;Gitte M. Knudsen;Guy Bormans;Melanie Ganz;Pedro Rosa-Neto;Victor W. Pike;Christer Halldin;Granville J. Matheson;Ronald Boellaard;Douglas N. Greve;Roger N. Gunn;Mark Lubberink;Adriaan A. Lammertsma;Maqsood Yaqub;Talakad G. Lohith;Henry Huang;Sune H. Keller;Mattia Veronese;Martin Schain;Sami Zoghbi;Martin Nørgaard;Antony D. Gee;Adam Thomas;Robert B. Innis;Mark Slifstein;Ramin Parsey;Chul H. Lyoo,2020-08-01,2,Journal of Cerebral Blood Flow and Metabolism,1576-1585,10.1177/0271678X20905433,32065076,85081976410,2-s2.0-85081976410,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85081976410,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85081976410&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85081976410&origin=inward +Behavioral flexibility is associated with changes in structure and function distributed across a frontal cortical network in macaques,Thomas,Mark E. Walton;Franz X. Neubert;Mark J. Buckley;Jérôme Sallet;Rogier B. Mars;Andrew H. Bell;Georgios K. Papageorgiou;Léa Roumazeilles;Steven Cuell;Jesper Anderson;Adam Thomas;Kristine Krug;Bashir Ahmed;Jill X. O'Reilly;Mary Ann P. Noonan;Jackson Smith;Matthew F.S. Rushworth,2020-05-01,1,PLoS Biology,,10.1371/journal.pbio.3000605,32453728,85085981788,2-s2.0-85085981788,Article,BBSRC,https://api.elsevier.com/content/abstract/scopus_id/85085981788,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85085981788&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85085981788&origin=inward +Crowdsourced MRI quality metrics and expert quality annotations for training of humans and machines,Thomas,Russell A. Poldrack;Jan C. Varada;Krzysztof J. Gorgolewski;Oscar Esteban;Sean Marrett;Adam G. Thomas;Ross W. Blair;Dylan M. Nielson,2019-12-01,2,Scientific Data,,10.1038/s41597-019-0035-4,30975998,85064830641,2-s2.0-85064830641,,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85064830641,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85064830641&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85064830641&origin=inward +The brain-structural correlates of mathematical expertise,Thomas,Roi Cohen Kadosh;Marie Schaer;Ann Dowker;Devin B. Terhune;Rogier B. Mars;Tudor Popescu;Adam Thomas;Elie Sader,2019-05-01,4,Cortex,140-150,10.1016/j.cortex.2018.10.009,30424836,85056252714,2-s2.0-85056252714,Article,ERC,https://api.elsevier.com/content/abstract/scopus_id/85056252714,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85056252714&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85056252714&origin=inward +Hippocampal functional dynamics are clinically implicated in autoimmune encephalitis with faciobrachial dystonic seizures,Thomas,Clive R. Rosenthal;Jonathan G. Best;Charlotte J. Stagg;Adam G. Thomas;Adam Al-Diwani;Sarosh R. Irani;Natalie L. Voets;Julia C. Nantes,2018-09-04,4,Frontiers in Neurology,,10.3389/fneur.2018.00736,,85053051902,2-s2.0-85053051902,Article,,https://api.elsevier.com/content/abstract/scopus_id/85053051902,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85053051902&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85053051902&origin=inward +"A very simple, re-executable neuroimaging publication",Thomas,David B. Keator;David N. Kennedy;Satrajit S. Ghosh;Jean Baptiste Poline;Yaroslav O. Halchenko;Adam G. Thomas;Daniel A. Kessler,2017-01-01,1,F1000Research,,10.12688/f1000research.10783.2,,85027265179,2-s2.0-85027265179,Article,,https://api.elsevier.com/content/abstract/scopus_id/85027265179,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85027265179&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85027265179&origin=inward +A phenome-wide association and Mendelian Randomisation study of polygenic risk for depression in UK Biobank,Thurm,Jakob Grove;Lili Milani;Georg Homuth;Peter McGuffin;Robert M. Maier;Jonas Bybjerg-Grauholm;Stefan Herms;Yuri Milaneschi;Aartjan T.F. Beekman;Wolfgang Maier;Matthias Nauck;Erin C. Dunn;Gregory E. Crawford;Nese Direk;Michael Gill;Jerome C. Foo;Yihan Li;Lisa A. Jones;Divya Mehta;Enda M. Byrne;Baptiste Couvy-Duchesne;Zoltán Kutalik;Patrick McGrath;Conor V. Dolan;Farnush Farhadi Hassan Kiadeh;Dale R. Nyholt;Stephan Ripke;David M. Howard;Penelope A. Lind;Christine Søholm Hansen;Michael J. Owen;Francis M. Mondimore;Gail Davies;Julia Kraft;Thalia C. Eley;Toni Kim Clarke;Andreas J. Forstner;Lynsey S. Hall;Marie Bækvad-Hansen;James A. Knowles;Ian J. Deary;Hogni Oskarsson;Carsten Horn;Warren W. Kretzschmar;Bernard Ng;Jonathan Marchini;Hilary K. Finucane;Julien Bryois;Ian Jones;W. David Hill;Fernando S. Goes;Isaac S. Kohane;Dean F. MacKinnon;Na Cai;Hamdi Mbarek;Marcus Ising;Valentina Escott-Price;Evelin Mihailov;Franziska Degenhardt;Eske M. Derks;David M. Hougaard;Mark J. Adams;Christel M. Middeldorp;Paul F. O’Reilly;Tim B. Bigdeli;Enrique Castelao;Michel G. Nivard;Nick Craddock;Héléna A. Gaspar;Sarah E. Medland;Jonathan R.I. Coleman;Scott D. Gordon;Henriette N. Buttenschøn;Josef Frank;Jane Hvarregaard Christensen;Thomas F. Hansen;Grant W. Montgomery;Jouke Jan Hottenga;Rick Jansen;Tracy M. Air;Eric Jorgenson;Naomi R. Wray;Niamh Mullins;Xueyi Shen;Sara Mostafavi;Lucía Colodro-Conde;Per Hoffmann;Donald J. MacIntyre;Abdel Abdellaoui;Ian B. Hickie;Maciej Trzaskowski;Elisabeth B. Binder;Silviu Alin Bacanu;Till F.M. Andlauer;Andrew M. McIntosh;Manuel Mattheisen;Esben Agerbo,2020-12-01,0,Nature Communications,,10.1038/s41467-020-16022-0,32385265,85084721245,2-s2.0-85084721245,Article,RCPE,https://api.elsevier.com/content/abstract/scopus_id/85084721245,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85084721245&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85084721245&origin=inward +"The Genetics of the Mood Disorder Spectrum: Genome-wide Association Analyses of More Than 185,000 Cases and 439,000 Controls",Thurm,Richard Belliveau;Monika Budde;Miquel Casas;Chun Chieh Fan;Tatiana M. Foroud;Jennifer M. Whitehead Pavlides;Erlend Bøen;Jonas Bybjerg-Grauholm;Srdjan Djurovic;Aartjan T.F. Beekman;Alexander W. Charney;Jack D. Barchas;Nelson B. Freimer;Judith A. Badner;Liz Forty;Erin C. Dunn;Gregory E. Crawford;Nese Direk;Jerome C. Foo;Sarah E. Bergen;Julie Garnham;Enda M. Byrne;Baptiste Couvy-Duchesne;Amanda L. Dobbyn;Christine Fraser;Conor V. Dolan;J. Raymond DePaulo;Margit Burmeister;Stephan Ripke;Annelie Nordin Adolfsson;Tune H. Pers;Gail Davies;Thalia C. Eley;Toni Kim Clarke;Andreas J. Forstner;Marie Bækvad-Hansen;Verneri Antilla;Ian J. Deary;Huda Akil;Eli A. Stahl;Claire Churchhouse;Hilary K. Finucane;Julien Bryois;Piotr M. Czerski;Na Cai;Valentina Escott-Price;Franziska Degenhardt;Ney Alliey-Rodriguez;Adebayo Anjorin;Sandra Van der Auwera;Eske M. Derks;Liam Abbott;Stacy Steinberg;David St Clair;Andrew McQuillin;Mark J. Adams;Danfeng Chen;Vassily Trubetskoy;William Bunney;Tim B. Bigdeli;Swapnil Awasthi;Felecia Cerrato;Katrin Gade;Enrique Castelao;Pablo Cervantes;Cristiana Cruceanu;James Boocock;Héléna A. Gaspar;Matthew Flickinger;Jonathan R.I. Coleman;William Byerley;Nicholas Bass;Peter A. Holmans;Christiaan A. de Leeuw;Henriette N. Buttenschøn;Anders M. Dale;Josef Frank;Jane Hvarregaard Christensen;Louise Frisén;Kimberly Chambert;Ashley Dumont;David W. Craig;Torbjørn Elvsåshagen;William Coryell;Michael Bauer;Jurgen Del-Favero;Marco Boks;Lucía Colodro-Conde;Diane Gage;Thomas D. Als;Sascha B. Fischer;Abdel Abdellaoui;Yunpeng Wang;Maciej Trzaskowski;Elisabeth B. Binder;Silviu Alin Bacanu;Till F.M. Andlauer;Manuel Mattheisen;Esben Agerbo;Diego Albani,2020-07-15,5,Biological Psychiatry,169-184,10.1016/j.biopsych.2019.10.015,31926635,85078024661,2-s2.0-85078024661,Article,NRW,https://api.elsevier.com/content/abstract/scopus_id/85078024661,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85078024661&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85078024661&origin=inward +Quantitative genome-wide association analyses of receptive language in the Danish High Risk and Resilience Study,Thurm,Jessica Ohland;Camilla A.J. Christiani;Jonas Bybjerg-Grauholm;Ole Mors;Ron Nudel;Katrine S. Spang;Aja N. Greve;Md Jamal Uddin;Jens Richardt M. Jepsen;Anne A.E. Thorup;Merete Nordentoft;Birgitte K. Burton;Ditte L. Gantriis;Thomas Werge;Ditte Ellersgaard;Nicoline Hemager,2020-07-07,0,BMC Neuroscience,,10.1186/s12868-020-00581-5,32635940,85087725531,2-s2.0-85087725531,Article,,https://api.elsevier.com/content/abstract/scopus_id/85087725531,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85087725531&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85087725531&origin=inward +Genetic liability to ADHD and substance use disorders in individuals with ADHD,Thurm,Ole Mors;Lucy Riglin;Kate Langley;Merete Nordentoft;Jonas Bybjerg-Grauholm;Anita Thapar;Henriette Thisted Horsdal;Preben Bo Mortensen;Søren Dalsgaard;Thomas Werge;Cæcilie Ottosen;Thomas Damm Als;David Hougaard;Marie Bækvad Hansen;Isabell Brikell;Theresa Wimberley;Anders D. Børglum;Esben Agerbo;Ditte Demontis,2020-07-01,1,Addiction,1368-1377,10.1111/add.14910,31803957,85078053867,2-s2.0-85078053867,Article,WT,https://api.elsevier.com/content/abstract/scopus_id/85078053867,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85078053867&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85078053867&origin=inward +Genome-wide gene-environment analyses of major depressive disorder and reported lifetime traumatic experiences in UK Biobank,Thurm,Jakob Grove;Lili Milani;Georg Homuth;Peter McGuffin;Robert M. Maier;Jonas Bybjerg-Grauholm;Stefan Herms;Yuri Milaneschi;Aartjan T.F. Beekman;Mark James Adams;Wolfgang Maier;Erin C. Dunn;Gregory E. Crawford;Nese Direk;Michael Gill;Jerome C. Foo;Yihan Li;Lisa A. Jones;Divya Mehta;Enda M. Byrne;Baptiste Couvy-Duchesne;Zoltán Kutalik;Patrick McGrath;Conor V. Dolan;Farnush Farhadi Hassan Kiadeh;Stephan Ripke;David M. Howard;Penelope A. Lind;Christine Søholm Hansen;Kirstin L. Purves;Francis M. Mondimore;Christopher Rayner;Gail Davies;Julia Kraft;Thalia C. Eley;Toni Kim Clarke;Andreas J. Forstner;Lynsey S. Hall;Marie Bækvad-Hansen;James A. Knowles;Ian J. Deary;Carsten Horn;Warren W. Kretzschmar;Jonathan Marchini;Hilary K. Finucane;Julien Bryois;Ian Jones;Fernando S. Goes;Isaac S. Kohane;Dean F. MacKinnon;Na Cai;Hamdi Mbarek;Marcus Ising;Valentina Escott-Price;Evelin Mihailov;Franziska Degenhardt;Sandra Van der Auwera;Eske M. Derks;David M. Hougaard;Mark J. Adams;Christel M. Middeldorp;Christopher Hübel;Tim B. Bigdeli;Enrique Castelao;Nick Craddock;Karmel W. Choi;Héléna A. Gaspar;Sarah E. Medland;Jonathan R.I. Coleman;Scott D. Gordon;Henriette N. Buttenschøn;Josef Frank;Jane Hvarregaard Christensen;Thomas F. Hansen;Donald M. Lyall;Grant W. Montgomery;Jouke Jan Hottenga;Rick Jansen;Tracy M. Air;Eric Jorgenson;Naomi R. Wray;Niamh Mullins;Sara Mostafavi;Lucía Colodro-Conde;Per Hoffmann;Carol Kan;Shing Wan Choi;Donald J. MacIntyre;Abdel Abdellaoui;Ian B. Hickie;Maciej Trzaskowski;Elisabeth B. Binder;Silviu Alin Bacanu;Wouter J. Peyrot;Till F.M. Andlauer;Katrina A.S. Davis;Manuel Mattheisen;Esben Agerbo,2020-07-01,7,Molecular Psychiatry,1430-1446,10.1038/s41380-019-0546-6,31969693,85078355026,2-s2.0-85078355026,Article,NIHR,https://api.elsevier.com/content/abstract/scopus_id/85078355026,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85078355026&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85078355026&origin=inward +A Cluster of Autism-Associated Variants on X-Linked NLGN4X Functionally Resemble NLGN4Y,Thurm,Katherine W. Roche;Michael A. Bemben;Audrey Thurm;Kareem A. Zaghloul;Wei Lu;John D. Badger;Julie L. Lauzon;Yan Li;Kunwei Wu;Alexander W. Lehr;Mahim Jain;Thien A. Nguyen;Saurabh Pandey;Tongguang Wang,2020-06-03,1,Neuron,759-768.e7,10.1016/j.neuron.2020.03.008,32243781,85085311548,2-s2.0-85085311548,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85085311548,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85085311548&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85085311548&origin=inward +"Neurodevelopmental Characterization of Young Children Diagnosed with Niemann-Pick Disease, Type C1",Thurm,Colby Chlebowski;Audrey Thurm;Cristan Farmer;Simona Bianconi;Elizabeth Berry-Kravis;Dee Adedipe;Forbes D. Porter;Nicole Farhat;Edythe Wiggs;Madison Weiss;Lisa Joseph,2020-06-01,0,Journal of developmental and behavioral pediatrics : JDBP,388-396,10.1097/DBP.0000000000000785,32073546,85086749750,2-s2.0-85086749750,Article,,https://api.elsevier.com/content/abstract/scopus_id/85086749750,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85086749750&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85086749750&origin=inward +A large population-based investigation into the genetics of susceptibility to gastrointestinal infections and the link between gastrointestinal infections and mental illness,Thurm,Ole Mors;Jonas Bybjerg-Grauholm;David M. Hougaard;Ron Nudel;Merete Nordentoft;Vivek Appadurai;Preben Bo Mortensen;Mark J. Daly;Wesley K. Thompson;Michael E. Benros;Anders D. Børglum;Thomas Werge;Andrew J. Schork;Alfonso Buil,2020-05-01,0,Human Genetics,593-604,10.1007/s00439-020-02140-8,32152699,85081732814,2-s2.0-85081732814,Article,AU,https://api.elsevier.com/content/abstract/scopus_id/85081732814,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85081732814&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85081732814&origin=inward +Diffusion Tensor Imaging Abnormalities in the Uncinate Fasciculus and Inferior Longitudinal Fasciculus in Phelan-McDermid Syndrome,Thurm,Ellen Hanson;Craig M. Powell;Paige Siper;Jennifer M. Phillips;Jonathan A. Bernstein;Elizabeth Berry Kravis;Stormi P. White;Rajna Filip-Dhima;Simon Warfield;Siddharth Srivastava;Craig Powell;Anna K. Prohl;Mustafa Sahin;Benoit Scherrer;Kush Kapur;Audrey Thurm;Joseph D. Buxbaum;Elizabeth Berry-Kravis;Latha Soorya;Alexander Kolevzon;Julia Bassell;Kira Dies;Simon K. Warfield,2020-05-01,0,Pediatric Neurology,24-31,10.1016/j.pediatrneurol.2020.01.006,32107139,85080031211,2-s2.0-85080031211,Article,NICHD,https://api.elsevier.com/content/abstract/scopus_id/85080031211,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85080031211&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85080031211&origin=inward +A genome-wide association study on medulloblastoma,Thurm,Beatrice Melin;Carl Wibom;Astrid Sehested;Long T. Hung;Birgitta Lannering;Maria Feychting;Lisbeth S. Schmidt;Jonas Bybjerg-Grauholm;Danuta Januszkiewicz-Lewandowska;Ashley S. Margol;Maral Adel Fahmideh;Kristina Kjaerheim;Martin Röösli;Roberta McKean-Cowdin;Joachim Schüz;Claudia Kuehni;W. James Gauderman;Isabelle Deltour;Christoffer Johansen;Shahab Asgharzadeh;Tore Tynes;Ulf Hjalmars;David M. Hougaard;Ching C. Lau;Anna M. Dahlin;Susan Searles Nielsen;Tone Eggen;Jessica Barrington-Trimis;Lars Klæboe;Michael Grotzer;Janis Yee;Michaela Prochazka;Jerzy Nowak;Lisa Mirabello;Marta Fichna;Rebekah J. Kennedy;Ulrika Andersson;Michael E. Scheurer,2020-04-01,0,Journal of Neuro-Oncology,309-315,10.1007/s11060-020-03424-9,32056145,85079528189,2-s2.0-85079528189,Article,VR,https://api.elsevier.com/content/abstract/scopus_id/85079528189,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85079528189&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85079528189&origin=inward +"Practice guideline: Treatment for insomnia and disrupted sleep behavior in children and adolescents with autism spectrum disorder: Report of the Guideline Development, Dissemination, and Implementation Subcommittee of the American Academy of Neurology",Thurm,Ashura Williams Buckley;Thomas Gaughan;Aubyn Stahmer;Gary Gronseth;Maryam Oskoui;Geraldine Dawson;Max Wiznitzer;Roberto Tuchman;Linmarie Sikich;David Gloss;Robert L. Findling;Zachary Warren;Riley Kessler;Daniel Coury;Melissa J. Armstrong;Judith Owens;Audrey Thurm;Anshu Batra;Shannon Merillat;Deborah Hirtz;Amy Wetherby;Diane Donley;David Michelson;Stephen Ashwal;Carolyn Bridgemohan;Tamara Pringsheim,2020-03-03,2,Neurology,392-404,10.1212/WNL.0000000000009033,32051244,85081127262,2-s2.0-85081127262,Article,,https://api.elsevier.com/content/abstract/scopus_id/85081127262,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85081127262&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85081127262&origin=inward +"Language deficits in specific language impairment, attention deficit/hyperactivity disorder, and autism spectrum disorder: An analysis of polygenic risk",Thurm,Jessica Ohland;Camilla A.J. Christiani;Jonas Bybjerg-Grauholm;Ole Mors;Ditte V. Ellersgaard;Ron Nudel;Katrine S. Spang;Aja N. Greve;Md Jamal Uddin;Jens Richardt M. Jepsen;Anne A.E. Thorup;Merete Nordentoft;Birgitte K. Burton;Ditte L. Gantriis;Thomas Werge;Nicoline Hemager,2020-03-01,1,Autism Research,369-381,10.1002/aur.2211,31577390,85073945418,2-s2.0-85073945418,Article,AU,https://api.elsevier.com/content/abstract/scopus_id/85073945418,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85073945418&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85073945418&origin=inward +Classical Human Leukocyte Antigen Alleles and C4 Haplotypes Are Not Significantly Associated With Depression,Thurm,Jakob Grove;Glyn Lewis;Myrna M. Weissman;Georg Homuth;Peter McGuffin;Hans J. Grabe;Jonas Bybjerg-Grauholm;Stefan Herms;Yuri Milaneschi;Henning Tiemeier;Aartjan T.F. Beekman;Gerome Breen;Erin C. Dunn;Gregory E. Crawford;Martin Preisig;Nese Direk;Michael Gill;Jerome C. Foo;Lisa A. Jones;Enda M. Byrne;Zoltán Kutalik;Baptiste Couvy-Duchesne;Conor V. Dolan;Susanne Lucae;Farnush Farhadi Hassan Kiadeh;Douglas F. Levinson;Udo Dannlowski;Stephan Ripke;David M. Howard;Penelope A. Lind;Christine Søholm Hansen;Kirstin L. Purves;Gail Davies;Patrick F. Sullivan;Thalia C. Eley;Jianxin Shi;Toni Kim Clarke;Andreas J. Forstner;Lynsey S. Hall;Marie Bækvad-Hansen;Ken B. Hanscombe;Stanley I. Shyn;Bernhard T. Baune;James A. Knowles;Ian J. Deary;Carsten Horn;Ole Mors;Hilary K. Finucane;Rudolf Uher;Ian Jones;Julien Bryois;Fernando S. Goes;Patrik K. Magnusson;Na Cai;Marcus Ising;Valentina Escott-Price;Steven P. Hamilton;Franziska Degenhardt;Sandra Van der Auwera;Eske M. Derks;David M. Hougaard;Mark J. Adams;Eco J.C. de Geus;Tim B. Bigdeli;Enrique Castelao;Nick Craddock;Héléna A. Gaspar;Jonathan R.I. Coleman;Nancy L. Pedersen;Scott D. Gordon;Henriette N. Buttenschøn;Josef Frank;Jane Hvarregaard Christensen;Thomas F. Hansen;Douglas H.R. Blackwood;Jouke Jan Hottenga;Fabian Streit;Rick Jansen;Tracy M. Air;Bertram Müller-Myhsok;Naomi R. Wray;Sara Mostafavi;Lucía Colodro-Conde;Per Hoffmann;Shing Wan Choi;Abdel Abdellaoui;Ian B. Hickie;Kylie P. Glanville;Jordan W. Smoller;Jack Euesden;Maciej Trzaskowski;Elisabeth B. Binder;James B. Potash;Silviu Alin Bacanu;Till F.M. Andlauer;Andrew M. McIntosh;Manuel Mattheisen;Esben Agerbo;Dorret I. Boomsma;Brenda W.J.H. Penninx,2020-03-01,1,Biological Psychiatry,419-430,10.1016/j.biopsych.2019.06.031,31570195,85072749953,2-s2.0-85072749953,Article,NIHR,https://api.elsevier.com/content/abstract/scopus_id/85072749953,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85072749953&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85072749953&origin=inward +Psychiatric illness and regression in individuals with Phelan-McDermid syndrome,Thurm,Audrey Thurm;Teresa M. Kohlenberg;Alexander Kolevzon;Catalina Betancur;Brittany McLarney;M. Pilar Trelles,2020-02-12,1,Journal of Neurodevelopmental Disorders,,10.1186/s11689-020-9309-6,32050889,85079336071,2-s2.0-85079336071,Article,,https://api.elsevier.com/content/abstract/scopus_id/85079336071,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85079336071&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85079336071&origin=inward +Large-Scale Exome Sequencing Study Implicates Both Developmental and Functional Changes in the Neurobiology of Autism,Thurm,Jakob Grove;Michael L. Cuccaro;Behrang Mahjani;Aarno Palotie;Isaac Pessah;Chiara Fallerini;Jiebiao Wang;Joon Yong An;Per Magnus;Shan Dong;Jonas Bybjerg-Grauholm;Margaret Pericak-Vance;Antonio M. Persico;Angel Carracedo;Alfredo Brusco;Brooke Sheppard;Hilary Coon;Eric M. Morrow;Enrico Domenici;Marcus C.Y. Chan;Benjamin M. Neale;Minshi Peng;Astanand Jugessur;Maria Rita Passos-Bueno;Daniel Geschwind;Harrison Brand;Rachel Nguyen;Yunin Ludena;Mara Parellada;Idan Menashe;F. Kyle Satterstrom;Utku Norman;Maureen S. Mulhern;Lambertus Klei;Branko Aleksic;Gail E. Herman;Xinyi Xu;Andreas G. Chiocchetti;Giovanni Battista Ferrero;Preben Bo Mortensen;Elizabeth E. Guerrero;Diego Lopergolo;Irva Hertz-Picciotto;W. Ian Lipkin;Eduarda M.S. Montenegro;Carla Lintas;Suma Jacob;Michael S. Breen;Itaru Kushima;Patricia Maciel;Menachem Fromer;Kaija Puura;Jennifer Reichert;Ole Mors;Mykyta Artomov;Emily Hansen-Kiss;J. Jay Gargus;Merete Nordentoft;Xin He;Ryan Doan;Ryan Collins;Jesslyn Jamison;Norio Ozaki;Miia Kaartinen;Fátima Lopes;David M. Hougaard;Sherif Gerges;Judith Miller;Nell Maltman;Montserrat Fernández-Prieto;Elaine T. Lim;Christine M. Freitag;Pierandrea Muglia;Stephen Guter;Javier González-Peñas;Aparna Bhaduri;Bernardo Dalla Bernardina;Matthew Mosconi;Alexander Kolevzon;Gal Meiri;Somer Bishop;Grace Schwartz;Danielle Moreira;Brian H.Y. Chung;Richard Anney;Christina M. Hultman;Christine Stevens;Mafalda Barbosa;Gun Peggy Knudsen;Terho Lehtimäki;So Lun Lee;Jack A. Kosmicki;Iuliana Ionita-Laza;Dara S. Manoach;Nancy Minshew;Danielle Halpern;Elisa Giorgio;Caroline Dias;Aurora Curró;Silvia De Rubeis,2020-02-06,55,Cell,568-584.e23,10.1016/j.cell.2019.12.036,31981491,85078664833,2-s2.0-85078664833,Article,ASF,https://api.elsevier.com/content/abstract/scopus_id/85078664833,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85078664833&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85078664833&origin=inward +"Concordance of the Vineland Adaptive Behavior Scales, second and third editions",Thurm,A. Thurm;C. Chlebowski;D. Adedipe;C. Farmer;V. H. Bal,2020-01-01,1,Journal of Intellectual Disability Research,18-26,10.1111/jir.12691,31657503,85074661247,2-s2.0-85074661247,Article,NICHD,https://api.elsevier.com/content/abstract/scopus_id/85074661247,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85074661247&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85074661247&origin=inward +Functional near-infrared spectroscopy in toddlers: Neural differentiation of communicative cues and relation to future language abilities,Thurm,Audrey Thurm;Elizabeth G. Smith;Afrouz Anderson;Emma Condy;Lauren Swineford;Stacy S. Manwaring;Elizabeth Redcay;Amir Gandjbakhche,2020-01-01,0,Developmental Science,,10.1111/desc.12948,,85082721522,2-s2.0-85082721522,Article,,https://api.elsevier.com/content/abstract/scopus_id/85082721522,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85082721522&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85082721522&origin=inward +Sex differences in scores on standardized measures of autism symptoms: a multisite integrative data analysis,Thurm,Somer L. Bishop;Audrey Thurm;Stelios Georgiades;Cristan A. Farmer;Aaron J. Kaat;Stephen M. Kanne;Catherine Lord;Amy N. Esler;Sheila S. Ghods;Amy M. Shui;Young Shin Kim,2020-01-01,1,Journal of Child Psychology and Psychiatry and Allied Disciplines,,10.1111/jcpp.13242,,85083650031,2-s2.0-85083650031,Article,,https://api.elsevier.com/content/abstract/scopus_id/85083650031,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85083650031&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85083650031&origin=inward +Genome-wide association study identifies locus at chromosome 2q32.1 associated with syncope and collapse,Thurm,Jonas Bybjerg-Grauholm;David M. Hougaard;Stig Haunsø;Morten S. Olesen;Thomas A. Jepps;Gustav Ahlberg;Jesper H. Svendsen;Michael Christiansen;Morten W. Skov;Christian M. Hagen;Jonas Ghouse;Jørgen K. Kanters;Paula Hedley;Laura Andreasen;Katra Hadji-Turdeghal;Marie Bækvad-Hansen,2020-01-01,2,Cardiovascular Research,138-148,10.1093/cvr/cvz106,31049583,85076873985,2-s2.0-85076873985,Article,,https://api.elsevier.com/content/abstract/scopus_id/85076873985,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85076873985&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85076873985&origin=inward +Psychometric Study of the Social Responsiveness Scale in Phelan–McDermid Syndrome,Thurm,Alison Durkin;Audrey Thurm;Paige Siper;Joseph D. Buxbaum;Jennifer Foss-Feig;Elizabeth Berry-Kravis;Maria del Pilar Trelles;Kellie Gergoudis;Craig M. Powell;Latha Soorya;Jonathan A. Bernstein;Alexander Kolevzon;Alan Weinberg;Mustafa Sahin;Cristan Farmer;Jonathan Templin;Jordana Weissman,2020-01-01,0,Autism Research,,10.1002/aur.2299,,85084615648,2-s2.0-85084615648,Article,,https://api.elsevier.com/content/abstract/scopus_id/85084615648,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85084615648&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85084615648&origin=inward +"Correction: Genome-wide gene-environment analyses of major depressive disorder and reported lifetime traumatic experiences in UK Biobank (Molecular Psychiatry, (2020), 10.1038/s41380-019-0546-6)",Thurm,Jakob Grove;Lili Milani;Georg Homuth;Peter McGuffin;Robert M. Maier;Jonas Bybjerg-Grauholm;Stefan Herms;Yuri Milaneschi;Aartjan T.F. Beekman;Mark James Adams;Wolfgang Maier;Erin C. Dunn;Gregory E. Crawford;Nese Direk;Michael Gill;Jerome C. Foo;Yihan Li;Lisa A. Jones;Divya Mehta;Enda M. Byrne;Baptiste Couvy-Duchesne;Zoltán Kutalik;Patrick McGrath;Conor V. Dolan;Farnush Farhadi Hassan Kiadeh;Stephan Ripke;David M. Howard;Penelope A. Lind;Christine Søholm Hansen;Kirstin L. Purves;Francis M. Mondimore;Christopher Rayner;Gail Davies;Julia Kraft;Thalia C. Eley;Toni Kim Clarke;Andreas J. Forstner;Lynsey S. Hall;Marie Bækvad-Hansen;James A. Knowles;Ian J. Deary;Carsten Horn;Warren W. Kretzschmar;Jonathan Marchini;Hilary K. Finucane;Julien Bryois;Ian Jones;Fernando S. Goes;Isaac S. Kohane;Dean F. MacKinnon;Na Cai;Hamdi Mbarek;Marcus Ising;Valentina Escott-Price;Evelin Mihailov;Franziska Degenhardt;Sandra Van der Auwera;Eske M. Derks;David M. Hougaard;Mark J. Adams;Christel M. Middeldorp;Christopher Hübel;Tim B. Bigdeli;Enrique Castelao;Nick Craddock;Karmel W. Choi;Héléna A. Gaspar;Sarah E. Medland;Jonathan R.I. Coleman;Scott D. Gordon;Henriette N. Buttenschøn;Josef Frank;Jane Hvarregaard Christensen;Thomas F. Hansen;Donald M. Lyall;Grant W. Montgomery;Jouke Jan Hottenga;Rick Jansen;Tracy M. Air;Eric Jorgenson;Naomi R. Wray;Niamh Mullins;Sara Mostafavi;Lucía Colodro-Conde;Per Hoffmann;Carol Kan;Shing Wan Choi;Donald J. MacIntyre;Abdel Abdellaoui;Ian B. Hickie;Maciej Trzaskowski;Elisabeth B. Binder;Silviu Alin Bacanu;Wouter J. Peyrot;Till F.M. Andlauer;Katrina A.S. Davis;Manuel Mattheisen;Esben Agerbo,2020-01-01,0,Molecular Psychiatry,,10.1038/s41380-020-0779-4,32424234,85084993846,2-s2.0-85084993846,Erratum,,https://api.elsevier.com/content/abstract/scopus_id/85084993846,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85084993846&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85084993846&origin=inward +Association of polygenic score for major depression with response to lithium in patients with bipolar disorder,Thurm,Barbara König;Ichiro Kusumi;Susan L. McElroy;Caterina Chillotti;Peter Falkai;Andreas Reif;Alfonso Tortorella;Ryota Hashimoto;Stefan Herms;Francesc Colom;Aartjan T.F. Beekman;Urban Ösby;Layla Kassem;Joanna M. Biernacka;Stephane Jamain;Nina Dalkner;Sergi Papiol;Lena Backlund;Frank Bellivier;Nirmala Akula;Susanne Bengesser;Susan G. Leckband;Enda M. Byrne;Mikael Landén;Esther Jiménez;Po Hsiu Kuo;Sarah Kittel-Schneider;Andrea Pfennig;J. Raymond DePaulo;Paul Grof;Antonio Benabarre;Stephan Ripke;Micah Cearns;Sébastien Gard;Francis M. Mondimore;Abesh Kumar Bhattacharjee;Clara Brichant-Petitjean;Sebastian Kliwicki;Andreas J. Forstner;Marie Bækvad-Hansen;Claire O’Donovan;Lina Martinsson;Bárbara Arias;Kazufumi Akiyama;Andrea Hofmann;Alexandre Dayer;Mirko Manchia;Fernando S. Goes;Markus M. Nöthen;Liping Hou;Tatyana Shekhtman;Scott R. Clark;Piotr M. Czerski;Armin Birner;Klaus Oliver Schubert;Urs Heilbronner;Norio Ozaki;Franziska Degenhardt;Hsi Chung Chen;Raffaella Ardau;Michael J. McCarthy;Mark J. Adams;Julie S. Garnham;Jean Pierre Kahn;Tim B. Bigdeli;Janice M. Fullerton;Maria Grigoroiu-Serbanescu;Pablo Cervantes;Cristiana Cruceanu;Mazda Adli;Tadafumi Kato;Yi Hsiang Hsu;Sven Cichon;Tomas Novák;Marion Leboyer;Tracy M. Air;Azmeraw T. Amare;Palmiero Monteleone;Louise Frisen;Jean Michel Aubry;Catharina Lavebratt;Naomi R. Wray;Joanna Hauser;Gonzalo Laje;Bruno Étain;Mark A. Frye;Fasil Tekola-Ayele;Per Hoffmann;John R. Kelsoe;Abdel Abdellaoui;Maciej Trzaskowski;James B. Potash;Elisabeth B. Binder;Silviu Alin Bacanu;Caroline M. Nievergelt;Marina Mitjans;Till F.M. Andlauer;Manuel Mattheisen;Esben Agerbo;Maria Del Zompo,2020-01-01,1,Molecular Psychiatry,,10.1038/s41380-020-0689-5,,85081737215,2-s2.0-85081737215,Article,EUR,https://api.elsevier.com/content/abstract/scopus_id/85081737215,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85081737215&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85081737215&origin=inward +"Genomic Relationships, Novel Loci, and Pleiotropic Mechanisms across Eight Psychiatric Disorders",Thurm,Jakob Grove;Hyejung Won;Alicia R. Martin;Phil H. Lee;Rolf Adolfsson;Miquel Casas;Andreas Reif;Bru Cormand;Duncan S. Palmer;Patrick Turley;Jonas Bybjerg-Grauholm;Josephine Elia;Russell Schachar;Robert D. Oades;Klaus Peter Lesch;Jennifer L. Moran;Yen Chen A. Feng;Hakon Hakonarson;Danielle Posthuma;Sandra K. Loo;Jaakko Kaprio;Marianne G. Pedersen;Aribert Rothenberger;Jennifer Crosbie;Ditte Demontis;Tetyana Zayats;F. Kyle Satterstrom;Meg M.J. Wang;Kate Langley;Giovanni Coppola;Marta Ribasés;Raymond K. Walters;Mark Bellgrove;Laramie E. Duncan;Preben B. Mortensen;Luis A. Rohde;Carsten B. Pedersen;Triinu Peters;Marie Bækvad-Hansen;Gísli Baldursson;Patrick W.L. Leung;M. J. Arranz;Amaia Hervás;Hreinn Stefansson;Eli A. Stahl;Maria Soler Artigas;Ole Mors;Claire Churchhouse;Elliot M. Tucker-Drob;Christie L. Burton;Timothy Poterba;Josep Antoni Ramos-Quiroga;Jacob Rosenthal;Francesco Bettella;Alysa E. Doyle;Jan Haavik;Ziarih Hawi;Thomas Werge;Olafur O. Gudmundsson;Jan Buitelaar;Eske M. Derks;Stacy Steinberg;Jonna Kuntsi;David M. Hougaard;Edwin H. Cook;Richard A. Belliveau;Joanna Martin;Felecia Cerrato;Christine S. Hansen;Verneri Anttila;Michel G. Nivard;Catharina A. Hartman;Joseph D. Buxbaum;Henry R. Kranzler;Jurjen J. Luykx;Dongmei Yu;Zhaozhong Zhu;Sarah E. Medland;George Kirov;Kimberly Chambert;Ashley Dumont;Dan E. Arking;Andrew D. Grotzinger;Søren Dalsgaard;Cristina Sánchez-Mora;G. Bragi Walters;Daniel P. Howrigan;Clement C. Zai;Philip Asherson;Hailiang Huang;Richard J.L. Anney;Tobias Banaschewski;Pieter J. Hoekstra;Paula Rovira;Esben Agerbo;Tian Ge;Sintia Belangero;Jesper B. Poulsen;James J. McGough;Anna Keski-Rahkonen,2019-12-12,32,Cell,1469-1482.e11,10.1016/j.cell.2019.11.020,31835028,85076270049,2-s2.0-85076270049,Article,JHU,https://api.elsevier.com/content/abstract/scopus_id/85076270049,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85076270049&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85076270049&origin=inward +Reduced neonatal brain-derived neurotrophic factor is associated with autism spectrum disorders,Thurm,Ole Mors;Jonas Bybjerg-Grauholm;Nis Borbye-Lorenzen;Michael Christiansen;Preben Bo Mortensen;Kristin Skogstrand;David Michael Hougaard;Thomas Werge;Merethe Nordentoft;Anders Børglum;Marie Bækvad-Hansen;Christian Munch Hagen,2019-12-01,5,Translational Psychiatry,,10.1038/s41398-019-0587-2,31591381,85073078772,2-s2.0-85073078772,Article,NNF,https://api.elsevier.com/content/abstract/scopus_id/85073078772,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85073078772&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85073078772&origin=inward +A large-scale genomic investigation of susceptibility to infection and its association with mental disorders in the Danish population,Thurm,Ole Mors;Jonas Bybjerg-Grauholm;David M. Hougaard;Ron Nudel;Merete Nordentoft;Preben B. Mortensen;Vivek Appadurai;Wesley K. Thompson;Mark J. Daly;Michael E. Benros;Anders D. Børglum;Esben Agerbo;Thomas Werge;Andrew J. Schork;Alfonso Buil;Yunpeng Wang,2019-12-01,1,Translational Psychiatry,,10.1038/s41398-019-0622-3,31712607,85074835924,2-s2.0-85074835924,Article,AU,https://api.elsevier.com/content/abstract/scopus_id/85074835924,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85074835924&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85074835924&origin=inward +Autism spectrum disorder and attention deficit hyperactivity disorder have a similar burden of rare protein-truncating variants,Thurm,Jakob Grove;Ole Mors;Julian B. Maller;Merete Nordentoft;Mark J. Daly;Raymond K. Walters;Duncan S. Palmer;Jonas Bybjerg-Grauholm;Emilie M. Wigdor;Christine Stevens;Preben Bo Mortensen;Jack A. Kosmicki;David M. Hougaard;Francesco Lescai;Benjamin M. Neale;Marie Bækvad-Hansen;Tarjinder Singh;Thomas M. Werge;Elise B. Robinson;Anders D. Børglum;Ditte Demontis;F. Kyle Satterstrom,2019-12-01,9,Nature Neuroscience,1961-1965,10.1038/s41593-019-0527-8,31768057,85075472497,2-s2.0-85075472497,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85075472497,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85075472497&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85075472497&origin=inward +"Disentangling polygenic associations between attention-deficit/hyperactivity disorder, educational attainment, literacy and language",Thurm,Jakob Grove;Ole Mors;Claire Churchhouse;Aysu Okbay;Alicia R. Martin;Merete Nordentoft;Mads V. Hollegaard;Mark J. Daly;Kimberly Chambert;Evie Stergiakouli;Simon E. Fisher;Jonatan Pallesen;Ashley Dumont;Timothy Poterba;Raymond K. Walters;Stephen Burgess;Duncan S. Palmer;Patrick Turley;Stephen V. Faraone;Jonas Bybjerg-Grauholm;Stephan Ripke;Christine Stevens;Preben Bo Mortensen;Philip S. Dale;Rich Belliveau;Jesper Buchhave Poulsen;Søren Dalsgaard;Thomas Werge;Ellen Verhoef;Thomas Damm Als;Marianne Giørtz Pedersen;David M. Hougaard;Daniel P. Howrigan;Jennifer Moran;Hailiang Huang;Jacqueline Goldstein;Mads Engel Hauberg;Joanna Martin;Felecia Cerrato;Christine S. Hansen;Julian Maller;Ditte Demontis;Carsten Bøcker Pedersen;Marie Bækved-Hansen;Chin Yang Shapland;Beate St Pourcain;Elise B. Robinson;Manuel Mattheisen;Anders D. Børglum;Esben Agerbo;Benjamin M. Neale;F. Kyle Satterstrom;George Davey Smith,2019-12-01,3,Translational Psychiatry,,10.1038/s41398-018-0324-2,30679418,85060519969,2-s2.0-85060519969,Article,WT,https://api.elsevier.com/content/abstract/scopus_id/85060519969,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85060519969&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85060519969&origin=inward +International meta-analysis of PTSD genome-wide association studies identifies sex- and ancestry-specific genetic risk loci,Thurm,Allison C. Provost;Michelle F. Dennis;Alicia R. Martin;Nikolaos P. Daskalakis;Jonas Bybjerg-Grauholm;Tanja Jovanovic;Nathan A. Kimbrel;Bruce R. Lawford;Sian M.J. Hemmings;Chia Yen Chen;Catrin E. Lewis;Gerome Breen;Xue Jun Qin;Megan Brashear;Adriana Lori;Michael J. Lyons;Lauren A.M. Lebois;Angela C. Bustamante;Renato Polimanti;Esmina Avdibegovic;Joel Gelernter;Marti Jett;Charles Marmar;Michael A. Hauser;Torsten Klengel;William S. Kremen;Guia Guffanti;Mark J. Daly;Sandro Galea;Elizabeth A. Bolger;Laramie E. Duncan;Katharina Domschke;Marco P. Boks;Lindsay A. Farrer;Milissa L. Kaufman;Andrew C. Heath;Christopher R. Erbes;Anthony P. King;Alaptagin Khan;Jürgen Deckert;Douglas L. Delahanty;Marie Bækvad-Hansen;Janine D. Flory;Joseph R. Calabrese;Lynn M. Almli;Eric Otto Johnson;Shareefa Dalvie;Allison E. Ashley-Koch;Adam X. Maihofer;Ian Jones;David Michael Hougaard;Elizabeth G. Atkinson;Aferdita Goci Uka;Murray B. Stein;Daniel F. Levey;Seth G. Disner;Jessica Maples-Keller;Katy Torres;Alexandra Evans;Rasha Hammamieh;Andrew Ratanatharathorn;Dewleen G. Baker;Dragan Babić;Elbert Geuze;Bekh Bradley;Mark W. Logue;Henry R. Kranzler;Supriya Harnal;Jurjen J. Luykx;Karmel W. Choi;Nastassja Koen;Charles Gillespie;Ole A. Andreassen;Jonathan R.I. Coleman;Sarah D. Linnstaedt;Richard A. Bryant;Scott D. Gordon;Anders M. Dale;Paul A. Arbisi;Jean C. Beckham;Laura J. Bierut;S. Bryn Austin;Søren B. Andersen;Ronald C. Kessler;José M. Caldas- de- Almeida;Ananda B. Amstadter;Karen Inge Karstoft;Bizu Gelaye;Jonathan I. Bisson;Norah C. Feeny;Alma Dzubur-Kulenovic;Angela G. Junglen;Miro Jakovljevic;Bozo Lugonja;Carol E. Franz;Allison E. Aiello;Caroline M. Nievergelt;David Forbes;Melanie E. Garrett;Anders D. Børglum,2019-12-01,18,Nature Communications,,10.1038/s41467-019-12576-w,31594949,85073062147,2-s2.0-85073062147,Article,AAL,https://api.elsevier.com/content/abstract/scopus_id/85073062147,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85073062147&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85073062147&origin=inward +Integrated analysis of environmental and genetic influences on cord blood DNA methylation in new-borns,Thurm,Jakob Grove;Meaghan J. Jones;Nikola S. Müller;Pathik D. Wadhwa;Georg Homuth;Siri E. Håberg;Robert M. Maier;Heather J. Zar;Jonas Bybjerg-Grauholm;Stefan Herms;Aartjan T.F. Beekman;Gökçen Eraslan;Michael J. Meaney;Erin C. Dunn;Jari Lahti;Gregory E. Crawford;Michael S. Kobor;Nese Direk;Michael Gill;Yihan Li;Marius Lahti-Pulkkinen;Ivan Kondofersky;Pia M. Villa;Enda M. Byrne;Baptiste Couvy-Duchesne;Zoltán Kutalik;Dan J. Stein;Julie L. MacIsaac;Conor V. Dolan;Farnush Farhadi Hassan Kiadeh;Stephan Ripke;Christian M. Page;Penelope A. Lind;Christine Søholm Hansen;Jesper Krogh;Rebecca M. Reynolds;Gail Davies;Julia Kraft;Thalia C. Eley;Toni Kim Clarke;Andreas J. Forstner;Lynsey S. Hall;Marie Bækvad-Hansen;James A. Knowles;Ian J. Deary;Carsten Horn;Shareefa Dalvie;Warren W. Kretzschmar;Hilary K. Finucane;Julien Bryois;Kieran J. O’Donnell;Fernando S. Goes;Isaac S. Kohane;Dean F. MacKinnon;Elika Garg;Na Cai;Marcus Ising;Valentina Escott-Price;Franziska Degenhardt;Eske M. Derks;David M. Hougaard;Mark J. Adams;Claudia Buss;Tim B. Bigdeli;Enrique Castelao;Nick Craddock;Nastassja Koen;Héléna A. Gaspar;Jonathan R.I. Coleman;Scott D. Gordon;Fabian J. Theis;Henriette N. Buttenschøn;Josef Frank;Karestan C. Koenen;Jane Hvarregaard Christensen;Thomas F. Hansen;David T.S. Lin;Hannele Laivuori;Eero Kajantie;Douglas H.R. Blackwood;Jouke Jan Hottenga;Rick Jansen;Tracy M. Air;Stephanie J. London;Eric Jorgenson;Naomi R. Wray;Darina Czamara;Sonja Entringer;Lucía Colodro-Conde;Wenche Nystad;Per Hoffmann;Donald J. MacIntyre;Abdel Abdellaoui;Ian B. Hickie;Maciej Trzaskowski;Silviu Alin Bacanu;Esa Hämäläinen;Till F.M. Andlauer;Manuel Mattheisen;Esben Agerbo,2019-12-01,11,Nature Communications,,10.1038/s41467-019-10461-0,31186427,85067229888,2-s2.0-85067229888,Article,SAMRC,https://api.elsevier.com/content/abstract/scopus_id/85067229888,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85067229888&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85067229888&origin=inward +"Development of a multiplex real-time PCR assay for the newborn screening of SCID, SMA, and XLA",Thurm,Anne Timonen;David M. Hougaard;Jonas Bybjerg-Grauholm;Cristina Gutierrez-Mateo;Stephanie Dallaire;David Goldfarb;Markku Jaakkola;Dea Adamsen;Katja Vaahtera;Daniel Schoener;Marie Baekvad-Hansen;Galina Filippov;Rongcong Wu,2019-11-02,2,International Journal of Neonatal Screening,,10.3390/ijns5040039,,85075466329,2-s2.0-85075466329,Article,,https://api.elsevier.com/content/abstract/scopus_id/85075466329,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85075466329&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85075466329&origin=inward +Response to “Newborn dried blood spot samples in Denmark: the hidden figures of secondary use and research participation”,Thurm,Bent Nørgaard-Pedersen;Jonas Bybjerg-Grauholm;Michael Christiansen;David Michael Hougaard,2019-11-01,1,European Journal of Human Genetics,1625-1627,10.1038/s41431-019-0437-y,31253879,85068145801,2-s2.0-85068145801,Letter,,https://api.elsevier.com/content/abstract/scopus_id/85068145801,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85068145801&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85068145801&origin=inward +Fragile X syndrome in a male with methylated premutation alleles and no detectable methylated full mutation alleles,Thurm,Audrey Thurm;Xiaohua Ding;Karen Usdin;Sarah L. Nolin;Bruce Hayward;Carolyn B. Smith;Inna Loutaev,2019-10-01,2,"American Journal of Medical Genetics, Part A",2132-2137,10.1002/ajmg.a.61286,31356000,85071996776,2-s2.0-85071996776,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85071996776,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85071996776&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85071996776&origin=inward +Immunity and mental illness: findings from a Danish population-based immunogenetic study of seven psychiatric and neurodevelopmental disorders,Thurm,Ole Mors;Jonas Bybjerg-Grauholm;David M. Hougaard;Simon Rasmussen;Ron Nudel;Merete Nordentoft;Rosa Lundbye Allesøe;Preben Bo Mortensen;Mark J. Daly;Wesley K. Thompson;Michael E. Benros;Camilla Koldbæk Lemvigh;Anders D. Børglum;Thomas Werge;Alfonso Buil;Morten Dybdahl Krebs,2019-09-01,3,European Journal of Human Genetics,1445-1455,10.1038/s41431-019-0402-9,30976114,85064242411,2-s2.0-85064242411,Article,AU,https://api.elsevier.com/content/abstract/scopus_id/85064242411,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85064242411&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85064242411&origin=inward +Genetic Variants Associated with Anxiety and Stress-Related Disorders: A Genome-Wide Association Study and Mouse-Model Study,Thurm,Jakob Grove;Ole Mors;Merete Nordentoft;Jonas Bybjerg-Grauholm;Preben B. Mortensen;Thomas Werge;Thomas Damm Als;Kirstin L. Purves;Marianne Giørtz Pedersen;David M. Hougaard;Gerome Breen;Mikaela Laine;Kalevi Trontti;Thalia C. Eley;Ewa Sokolowska;Marie Bækved-Hansen;Manuel Mattheisen;Anders D. Børglum;Iiris Hovatta;Sandra M. Meier,2019-09-01,8,JAMA Psychiatry,924-932,10.1001/jamapsychiatry.2019.1119,31116379,85066912475,2-s2.0-85066912475,Article,ERC,https://api.elsevier.com/content/abstract/scopus_id/85066912475,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85066912475&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85066912475&origin=inward +"Long-Term Neuropsychological Outcomes from an Open-Label Phase I/IIa Trial of 2-Hydroxypropyl-β-Cyclodextrins (VTS-270) in Niemann-Pick Disease, Type C1",Thurm,Audrey Thurm;Simona Bianconi;Cristan A. Farmer;Forbes D. Porter;Lee Ann Keener;Nicole Farhat,2019-07-01,6,CNS Drugs,677-683,10.1007/s40263-019-00642-2,31187454,85067391581,2-s2.0-85067391581,Article,NICHD,https://api.elsevier.com/content/abstract/scopus_id/85067391581,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85067391581&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85067391581&origin=inward +Genome-wide association study implicates CHRNA2 in cannabis use disorder,Thurm,Veera Manikandan Rajagopal;Jakob Grove;Ole Mors;Mette Nyegaard;Merete Nordentoft;Jane Hvarregaard Christensen;Mark J. Daly;Per Qvist;Jonatan Pallesen;Carsten Hjorthøj;Jonas Bybjerg-Grauholm;Kari Stefansson;Thorgeir E. Thorgeirsson;Preben Bo Mortensen;Thorarinn Tyrfingsson;Thomas Werge;Gunnar W. Reginsson;David M. Hougaard;Laura M. Huckins;Allan Timmermann;Thomas D. Als;Kalle Leppälä;Marie Bækvad-Hansen;Daniel F. Gudbjartsson;Anders D. Børglum;Esben Agerbo;Ditte Demontis;Eli A. Stahl;Hreinn Stefansson;Valgerdur Runarsdottir,2019-07-01,11,Nature Neuroscience,1066-1074,10.1038/s41593-019-0416-1,31209380,85067847434,2-s2.0-85067847434,Article,NHGRI,https://api.elsevier.com/content/abstract/scopus_id/85067847434,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85067847434&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85067847434&origin=inward +The Need for a Developmentally Based Measure of Social Communication Skills,Thurm,Aaron Kaat;Audrey Thurm;Stelios Georgiades;Stephen Kanne;Cristan Farmer;Somer Bishop,2019-06-01,1,Journal of the American Academy of Child and Adolescent Psychiatry,555-560,10.1016/j.jaac.2018.12.010,31130206,85066035363,2-s2.0-85066035363,Editorial,NICHD,https://api.elsevier.com/content/abstract/scopus_id/85066035363,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85066035363&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85066035363&origin=inward +Post-traumatic stress following military deployment: Genetic associations and cross-disorder genetic correlations,Thurm,Jonas Bybjerg-Grauholm;David M. Hougaard;Karen Inge Karstoft;Adam X. Maihofer;Caroline M. Nievergelt;Robert J. Ursano;Wesley K. Thompson;Søren B. Andersen;Thomas Werge;Ole A. Andreassen;Murray B. Stein;Marie Bækvad-Hansen;Yunpeng Wang,2019-06-01,0,Journal of Affective Disorders,350-357,10.1016/j.jad.2019.04.070,30999091,85064147578,2-s2.0-85064147578,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85064147578,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85064147578&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85064147578&origin=inward +"Publisher Correction: Gene expression imputation across multiple brain regions provides insights into schizophrenia risk (Nature Genetics, (2019), 51, 4, (659-674), 10.1038/s41588-019-0364-4)",Thurm,Thanneer M. Perumal;Aiden Corvin;Benjamin A. Logsdon;Hiroyoshi Toyoshiba;Richard Bruggeman;Vaughan J. Carr;Srdjan Djurovic;Vahram Haroutunian;Elizabeth Bevilacqua;Jurgen Del Favero;Ronald Y.L. Chen;Brendan Bulik-Sullivan;Barbara K. Lipska;James J. Crowley;Veera M. Rajagopal;Elodie Drapeau;Guiqing Cai;Laura M. Huckins;Nadine Cohen;Noa Carrera;Enrico Domenici;Paul Cormican;David A. Lewis;Madeline Alexander;Gary Donohoe;Hoang T. Nguyen;Sarah E. Bergen;Ditte Demontis;Hardik R. Shah;C. Robert Cloninger;Michael Davidson;Kristen K. Dang;Panos Roussos;David Curtis;Martin Begemann;Kiran Girdhar;Stephan Ripke;Tune H. Pers;Silviu A. Bacanu;Wiepke Cahn;Shaun Purcell;Kimberly D. Chambert;Milind C. Mahajan;Amanda Dobbyn;Jessica S. Johnson;Rita M. Cantor;Gabriel Hoffman;Laurent Essioux;Antonio F. Pardiñas;Menachem Fromer;Jubao Duan;James T.R. Walters;Phil Lee;Nancy G. Buccola;Naser Durmishi;Chang Gyu Hahn;Judit Bene;Eric F.C. Cheung;Franziska Degenhardt;Lara M. Mangravite;Eric R. Gamazon;Stanley V. Catts;Eric Y.H. Chen;Douglas M. Ruderfer;Ingrid Agartz;Dimitris Dikeos;Raymond C.K. Chan;Richard A. Belliveau;Keisuke Hirai;Tim B. Bigdeli;Dominique Campion;Joseph D. Buxbaum;James Boocock;Siow Ann Chong;Nick Craddock;Timothy Dinan;William Byerley;David Cohen;Peter A. Holmans;Peter Eichhammer;David A. Collier;Johan Eriksson;Weiqing Wang;Donald W. Black;Mette A. Peters;Lambertus L. Klein;Raquel E. Gur;Eric Schadt;Kenneth L. Davis;Frank Dudbridge;Farooq Amin;Randy L. Buckner;Wei Cheng;Hailiang Huang;Kai How Farh;Thomas D. Als;Robin Kramer;Margot Albus;Esben Agerbo;Benjamin M. Neale,2019-06-01,0,Nature Genetics,1068,10.1038/s41588-019-0435-6,31086353,85065757972,2-s2.0-85065757972,Erratum,,https://api.elsevier.com/content/abstract/scopus_id/85065757972,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85065757972&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85065757972&origin=inward +Haploinsufficiency of the brain-derived neurotrophic factor gene is associated with reduced pain sensitivity,Thurm,Kristen M. Danley;Andrew J. Mannes;Jack W. Tsao;Shannon R. Fuhr;Amanda E. Huey;Jack A. Yanovski;Joan C. Han;Mark D. Lee;Michael J. Iadarola;Tanya Lehky;Matthew R. Sapio;Stephen J. Sharp;Danielle M. LaPaglia;Audrey E. Thurm,2019-05-01,3,Pain,1070-1081,10.1097/j.pain.0000000000001485,30855519,85065086783,2-s2.0-85065086783,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85065086783,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85065086783&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85065086783&origin=inward +"Association of Polygenic Liabilities for Major Depression, Bipolar Disorder, and Schizophrenia with Risk for Depression in the Danish Population",Thurm,Katherine L. Musliner;John J. McGrath;David M. Hougaard;Jonas Bybjerg-Grauholm;Ole Mors;Merete Nordentoft;Preben B. Mortensen;Carsten B. Pedersen;Nis P. Suppli;Marianne G. Pedersen;Anders D. Børglum;Thomas Werge;Esben Agerbo;Ole Andreassen;Marie Bækvad-Hansen,2019-05-01,17,JAMA Psychiatry,516-525,10.1001/jamapsychiatry.2018.4166,30698613,85061012249,2-s2.0-85061012249,Article,NIDA,https://api.elsevier.com/content/abstract/scopus_id/85061012249,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85061012249&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85061012249&origin=inward +Genome-wide association study identifies 30 loci associated with bipolar disorder,Thurm,Jakob Grove;Richard Belliveau;Monika Budde;Melissa J. Green;Miquel Casas;Chun Chieh Fan;Tatiana M. Foroud;Erlend Bøen;Jonas Bybjerg-Grauholm;Srdjan Djurovic;Stefan Herms;Alexander W. Charney;Jack D. Barchas;Nelson B. Freimer;Gerome Breen;Judith A. Badner;Liz Forty;Sarah E. Bergen;José Guzman-Parra;Julie Garnham;Simone de Jong;Enda M. Byrne;Amanda L. Dobbyn;Christine Fraser;David Curtis;J. Raymond DePaulo;Margit Burmeister;Stephan Ripke;Tune H. Pers;Marco P. Boks;Claudia Giambartolomei;Maria Hipolito;Toni Kim Clarke;Andreas J. Forstner;Marie Bækvad-Hansen;Jessica S. Johnson;Verneri Antilla;Katherine Gordon-Smith;Huda Akil;Eli A. Stahl;Claire Churchhouse;Dominic Holland;Piotr M. Czerski;Urs Heilbronner;Valentina Escott-Price;Franziska Degenhardt;Ney Alliey-Rodriguez;Adebayo Anjorin;Liam Abbott;Stacy Steinberg;Andrew McQuillin;Danfeng Chen;Vassily Trubetskoy;William Bunney;Felecia Cerrato;Swapnil Awasthi;Katrin Gade;Martin Hautzinger;Pablo Cervantes;Cristiana Cruceanu;Carsten Bøcker Pedersen;James Boocock;Jennifer M.Whitehead Pavlides;Tiffany A. Greenwood;Héléna A. Gaspar;Matthew Flickinger;Laura Huckins;Jonathan R.I. Coleman;William Byerley;Nicholas Bass;Peter A. Holmans;Christiaan A. de Leeuw;Anders M. Dale;Josef Frank;Louise Frisén;Scott D. Gordon;Kimberly Chambert;Marian L. Hamshere;Ashley Dumont;David W. Craig;Stéphane Jamain;Jaqueline Goldstein;Torbjørn Elvsåshagen;William Coryell;Elaine K. Green;Alexander L. Richards;Michael Bauer;Marianne Giørtz Pedersen;Jurgen Del-Favero;Diane Gage;Thomas D. Als;Sascha B. Fischer;Per Hoffmann;Yunpeng Wang;Maciej Trzaskowski;Manuel Mattheisen;Esben Agerbo;Anders Juréus;Weihua Guan;Diego Albani,2019-05-01,143,Nature Genetics,793-803,10.1038/s41588-019-0397-8,31043756,85065180508,2-s2.0-85065180508,Article,VR,https://api.elsevier.com/content/abstract/scopus_id/85065180508,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85065180508&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85065180508&origin=inward +Variable DNA methylation in neonates mediates the association between prenatal smoking and birth weight,Thurm,Jakob Grove;Ole Mors;Mads Vilhelm Hollegaard;Merete Nordentoft;David Michael Hougaard;Mady Hornig;Jonas Bybjerg-Grauholm;M. Daniele Fallin;Eilis Hannon;Preben Bo Mortensen;Christine Søholm Hansen;Thomas Werge;Marianne Giørtz Pedersen;Christine Ladd-Acosta;Abraham Reichenberg;Michaeline Bresnahan;Marie Bækvad-Hansen;Joseph D. Buxbaum;Diana Schendel;Anders D. Børglum;Jonathan Mill,2019-04-15,4,Philosophical Transactions of the Royal Society B: Biological Sciences,,10.1098/rstb.2018.0120,30966880,85064163758,2-s2.0-85064163758,Article,NICHD,https://api.elsevier.com/content/abstract/scopus_id/85064163758,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85064163758&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85064163758&origin=inward +Gene expression imputation across multiple brain regions provides insights into schizophrenia risk,Thurm,Thanneer M. Perumal;Aiden Corvin;Benjamin A. Logsdon;Hiroyoshi Toyoshiba;Richard Bruggeman;Vaughan J. Carr;Srdjan Djurovic;Vahram Haroutunian;Elizabeth Bevilacqua;Jurgen Del Favero;Ronald Y.L. Chen;Brendan Bulik-Sullivan;Barbara K. Lipska;James J. Crowley;Veera M. Rajagopal;Elodie Drapeau;Guiqing Cai;Laura M. Huckins;Nadine Cohen;Noa Carrera;Enrico Domenici;Paul Cormican;David A. Lewis;Madeline Alexander;Gary Donohoe;Hoang T. Nguyen;Sarah E. Bergen;Ditte Demontis;Hardik R. Shah;C. Robert Cloninger;Michael Davidson;Kristen K. Dang;Panos Roussos;David Curtis;Martin Begemann;Kiran Girdhar;Stephan Ripke;Tune H. Pers;Silviu A. Bacanu;Wiepke Cahn;Shaun Purcell;Kimberly D. Chambert;Milind C. Mahajan;Amanda Dobbyn;Jessica S. Johnson;Rita M. Cantor;Gabriel Hoffman;Laurent Essioux;Antonio F. Pardiñas;Menachem Fromer;Jubao Duan;James T.R. Walters;Phil Lee;Nancy G. Buccola;Naser Durmishi;Chang Gyu Hahn;Judit Bene;Eric F.C. Cheung;Franziska Degenhardt;Lara M. Mangravite;Eric R. Gamazon;Stanley V. Catts;Eric Y.H. Chen;Douglas M. Ruderfer;Ingrid Agartz;Dimitris Dikeos;Raymond C.K. Chan;Richard A. Belliveau;Keisuke Hirai;Tim B. Bigdeli;Dominique Campion;Joseph D. Buxbaum;James Boocock;Siow Ann Chong;Nick Craddock;Timothy Dinan;William Byerley;David Cohen;Peter A. Holmans;Peter Eichhammer;David A. Collier;Johan Eriksson;Weiqing Wang;Donald W. Black;Mette A. Peters;Lambertus L. Klein;Raquel E. Gur;Eric Schadt;Kenneth L. Davis;Frank Dudbridge;Farooq Amin;Randy L. Buckner;Wei Cheng;Hailiang Huang;Kai How Farh;Thomas D. Als;Robin Kramer;Margot Albus;Esben Agerbo;Benjamin M. Neale,2019-04-01,29,Nature Genetics,659-674,10.1038/s41588-019-0364-4,30911161,85063585118,2-s2.0-85063585118,Article,IDPH,https://api.elsevier.com/content/abstract/scopus_id/85063585118,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85063585118&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85063585118&origin=inward +Early Indicators of Creatine Transporter Deficiency,Thurm,Judith S. Miller;Audrey Thurm;Simona Bianconi;Whitney Guthrie;Can Ficicioglu;Rebecca P. Thomas;Robert J. Davis;Forbes D. Porter;Amanda Bennett;Aleksandra Bruchey,2019-03-01,0,Journal of Pediatrics,283-285,10.1016/j.jpeds.2018.11.008,30579583,85058667948,2-s2.0-85058667948,Article,NICHD,https://api.elsevier.com/content/abstract/scopus_id/85058667948,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85058667948&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85058667948&origin=inward +A genome-wide association study of shared risk across psychiatric disorders implicates gene regulation during fetal neurodevelopment,Thurm,Ole Mors;Hyejung Won;Ron Nudel;Merete Nordentoft;Vivek Appadurai;Wesley K. Thompson;Mark J. Daly;Alfonso Buil;Jonas Bybjerg-Grauholm;Preben Bo Mortensen;Malene Revsbech Christiansen;Thomas Werge;Mike Gandal;Naomi R. Wray;Marianne Giørtz Pedersen;Daniel H. Geschwind;David M. Hougaard;Andrew J. Schork;Carsten Bøcker Pedersen;Marie Bækved-Hansen;Anders D. Børglum;Esben Agerbo;Benjamin M. Neale;Olivier Delaneau,2019-03-01,31,Nature Neuroscience,353-361,10.1038/s41593-018-0320-0,30692689,85060777615,2-s2.0-85060777615,Article,NHMRC,https://api.elsevier.com/content/abstract/scopus_id/85060777615,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85060777615&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85060777615&origin=inward +Identification of common genetic risk variants for autism spectrum disorder,Thurm,Jakob Grove;Mette Nyegaard;Aarno Palotie;Hyejung Won;Alicia R. Martin;Ashley L. Dumont;Duncan S. Palmer;Patrick Turley;Jonas Bybjerg-Grauholm;Srdjan Djurovic;Swapnil Awashti;Aartjan T.F. Beekman;Rich Belliveau;Jennifer L. Moran;Sven Sandin;Erin C. Dunn;Gregory E. Crawford;Nese Direk;Beate St Pourcain;Ditte Demontis;F. Kyle Satterstrom;Enda M. Byrne;Baptiste Couvy-Duchesne;Lambertus Klei;Per Qvist;Jonatan Pallesen;Raymond K. Walters;Conor V. Dolan;Panos Roussos;Farnush Farhadi Hassan Kiadeh;Xinyi Xu;Kathryn Roeder;Stephan Ripke;Gail Davies;Karola Rehnström;Jane H. Christensen;Patrick F. Sullivan;Evald Saemundsen;Thalia C. Eley;Toni Kim Clarke;Andreas J. Forstner;Marie Bækvad-Hansen;Christine R. Stevens;Ian J. Deary;Hreinn Stefansson;George Davey Smith;Jennifer Reichert;Claire Churchhouse;Hilary K. Finucane;Terje Nærland;Julien Bryois;Karin Dellenvall;Na Cai;Francesco Bettella;Valentina Escott-Price;Timothy dPoterba;Jesper Buchhave Poulsen;Franziska Degenhardt;Eske M. Derks;Stacy Steinberg;Mark J. Adams;Mads Engel Hauberg;Joanna Martin;Felecia Cerrato;Tim B. Bigdeli;Christine S. Hansen;Enrique Castelao;Joseph D. Buxbaum;Julian Maller;Carsten Bøcker Pedersen;Nick Craddock;Elise B. Robinson;Ole A. Andreassen;Jonathan R.I. Coleman;Henriette N. Buttenschøn;Richard Anney;Mads V. Hollegaard;Kimberly Chambert;Christina M. Hultman;Jacqueline I. Goldstein;Douglas H.R. Blackwood;Tracy M. Air;G. Bragi Walters;Naomi R. Wray;Marianne Giørtz Pedersen;Daniel P. Howrigan;Lucía Colodro-Conde;Sigrun Hope;Hailiang Huang;Abraham Reichenberg;Thomas D. Als;Bernie Devlin;Abdel Abdellaoui;Maciej Trzaskowski;Elisabeth B. Binder;Silviu Alin Bacanu;Till F.M. Andlauer;Manuel Mattheisen;Esben Agerbo;Silvia De Rubeis,2019-03-01,172,Nature Genetics,431-444,10.1038/s41588-019-0344-8,30804558,85062110842,2-s2.0-85062110842,Article,,https://api.elsevier.com/content/abstract/scopus_id/85062110842,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85062110842&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85062110842&origin=inward +Genome-wide meta-Analysis identifies BARX1 and EML4-MTA3 as new loci associated with infantile hypertrophic pyloric stenosis,Thurm,João Fadista;Jonas Bybjerg-Grauholm;David M. Hougaard;Mads Melbye;Bjarke Feenstra;Hans Matsson;Paul A. Romitti;Heather A. Boyd;Denise M. Kay;James L. Mills;Sanne Gørtz;Agneta Nordenskjöld;Michele Caggana;Frank Geller;Line Skotte,2019-01-15,4,Human Molecular Genetics,332-340,10.1093/hmg/ddy347,30281099,85059503621,2-s2.0-85059503621,Article,"FSS, DFF",https://api.elsevier.com/content/abstract/scopus_id/85059503621,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85059503621&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85059503621&origin=inward +State of the field: Differentiating intellectual disability from autism spectrum disorder,Thurm,Audrey Thurm;Emma Salzman;Catherine Lord;Cristan Farmer;Somer Bishop,2019-01-01,8,Frontiers in Psychiatry,,10.3389/fpsyt.2019.00526,,85078967913,2-s2.0-85078967913,Review,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85078967913,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85078967913&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85078967913&origin=inward +"Genetic Variants in the 9p21.3 Locus Associated with Glioma Risk in Children, Adolescents, and Young Adults: A case–control study",Thurm,Ulf Hjalmars;David M. Hougaard;Jonas Bybjerg-Grauholm;Beatrice Melin;Anna M. Dahlin;Anna K. Kahler;Carl Wibom;Christina M. Hultman;Isabelle Deltour;Ulrika Andersson;Robert Karlsson,2019-01-01,0,Cancer Epidemiology Biomarkers and Prevention,1252-1258,10.1158/1055-9965.EPI-18-1026,31040135,85068755478,2-s2.0-85068755478,Article,VR,https://api.elsevier.com/content/abstract/scopus_id/85068755478,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85068755478&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85068755478&origin=inward +Volumetric Analysis of the Basal Ganglia and Cerebellar Structures in Patients with Phelan-McDermid Syndrome,Thurm,Mustafa Sahin;Audrey Thurm;Joseph D. Buxbaum;Elizabeth Berry-Kravis;Craig M. Powell;Latha Soorya;Rajna Filip-Dhima;Jonathan A. Bernstein;Siddharth Srivastava;Alexander Kolevzon;Anna K. Prohl;Benoit Scherrer;Simon K. Warfield;Kush Kapur,2019-01-01,4,Pediatric Neurology,37-43,10.1016/j.pediatrneurol.2018.09.008,30396833,85055891350,2-s2.0-85055891350,Article,NICHD,https://api.elsevier.com/content/abstract/scopus_id/85055891350,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85055891350&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85055891350&origin=inward +A major role for common genetic variation in anxiety disorders,Thurm,Ole Mors;Merete Nordentoft;Kristin K. Nicodemus;Jonas Bybjerg-Grauholm;Preben Bo Mortensen;Thomas Werge;Kirstin L. Purves;David Hougaard;Christopher Rayner;Gerome Breen;John M. Hettema;J. Jürgen Deckert;Thalia C. Eley;Carol Kan;Christopher Hübel;Marie Bækvad-Hansen;Rosa Cheesman;Matthew Hotopf;Katrina A.S. Davis;Andrew M. McIntosh;Héléna A. Gaspar;Anders D. Børglum;Shing Wan Cho;Manuel Mattheisen;Sandra M. Meier;Jonathan R.I. Coleman,2019-01-01,12,Molecular Psychiatry,,10.1038/s41380-019-0559-1,,85075328965,2-s2.0-85075328965,Article,FNIH,https://api.elsevier.com/content/abstract/scopus_id/85075328965,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85075328965&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85075328965&origin=inward +"Publisher Correction: Common schizophrenia alleles are enriched in mutation-intolerant genes and in regions under strong background selection (Nature Genetics, (2018), 50, 3, (381-389), 10.1038/s41588-018-0059-2)",Thurm,Jakob Grove;Hyejung Won;Leon Hubbard;Alison Goate;Jonas Bybjerg-Grauholm;Srdjan Djurovic;Sarah Tosato;Elliott Rees;Enrique Santiago;Charlene Thomas;Wolfgang Maier;David J. Porteous;Gerome Breen;Laura M. Huckins;Noa Carrera;Petroula Proitsi;John Powell;André Lacour;Darren Cameron;Enda M. Byrne;Britta Schurmann;Alfredo Ramirez;Andrew J. Pocklington;Simon Lovestone;Udo Dannlowski;Stephan Ripke;Preben Bo Mortensen;Christine Søholm Hansen;Reiner Heun;Engilbert Sigurdsson;David Craig;Thalia C. Eley;Amy Lynham;Michelle Lupton;Marie Bækvad-Hansen;Dmitriy Drichel;Bernhard T. Baune;Peter Passmore;Carlos Cruchaga;Hreinn Stefansson;Eli A. Stahl;Antonio F. Pardiñas;Ole Mors;Michael O’Donovan;Merete Nordentoft;Richard Abraham;Naser Durmishi;Markus Nothen;Valentina Escott-Price;Sophie Bishop;Petra Nowotny;Teimuraz Silagadze;Frank Jessen;Thomas Werge;Stacy Steinberg;David M. Hougaard;Douglas M. Ruderfer;Pamela Sklar;Stephen Todd;Vera Golimbet;Carsten Bøcker Pedersen;Steven A. McCarroll;Sarah Taylor;Ole A. Andreassen;Amy Gerrish;Jaspreet Pahwa;Bernadette McGuinness;Armando Caballero;Tim Becker;Robert Plomin;Milica Pejovic-Milovancevic;Nicola Denning;Kiran Mantripragada;Paul Hollingworth;Peter Holmans;Marian L. Hamshere;Espen Molden;Kari Stefansson;Christine Herold;Denise Harold;Naomi R. Wray;Marianne Giørtz Pedersen;Daniel H. Geschwind;Nicholas G. Martin;Jade Chapman;Thomas D. Als;Jun Han;John C. Morris;Rebecca Sims;James H. MacCabe;Sophie E. Legge;Andrew M. McIntosh;Manuel Mattheisen;Anders D. Børglum;Esben Agerbo;Caroline Hayward;Janet Johnston;Kevin Mayo,2019-01-01,2,Nature Genetics,,10.1038/s41588-019-0450-7,31160808,85066976804,2-s2.0-85066976804,Erratum,,https://api.elsevier.com/content/abstract/scopus_id/85066976804,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85066976804&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85066976804&origin=inward +Discovery of the first genome-wide significant risk loci for attention deficit/hyperactivity disorder,Thurm,Jakob Grove;Alicia R. Martin;Hyejung Won;Jobst Meyer;Freimer Nelson;Amaia Hervas;Katrina L. Grasby;Beate Herpertz-Dahlmann;Duncan S. Palmer;Patrick Turley;Fernando Mulas;Jonas Bybjerg-Grauholm;Josephine Elia;Gerd Lehmkuhl;T. Trang Nguyen;Robert D. Oades;Tobias J. Banaschewski;Rich Belliveau;Alice Charach;Marcella Rietschel;Sandra K. Loo;Lindsey Kent;Stefan Johansson;Ana Miranda;Miguel Casas;Michael Gill;Nina Roth Mota;Herbert Royers;Marcel Romanos;Aribert Rothenberger;Jennifer Crosbie;Ditte Demontis;Özgür Albayrak;F. Kyle Satterstrom;Nanda Lambregts-Rommelse;Julian B. Maller;Marta Ribasés;Sarah Kittel-Schneider;Haukur Palmason;Jonatan Pallesen;Raymond K. Walters;Michael Gandal;Anke Hinney;Stephan Ripke;Eric Mick;Michael J. Owen;Aisling Mulligan;Christine Freitag;Abel Ickowitz;Jennifer Moran;Marie Bækvad-Hansen;Gísli Baldursson;Manuel Föcker;Hreinn Stefansson;Claire Churchhouse;Mara Hutz;Timothy Poterba;Josep Antoni Ramos-Quiroga;Alysa E. Doyle;Michael C. O’Donovan;Ziarih Hawi;Frank Middletion;Jesper Buchhave Poulsen;Olafur O. Gudmundsson;Mads Engel Hauberg;Jan K. Buitelaar;Joanna Martin;Felecia Cerrato;Christine S. Hansen;Carsten Bøcker Pedersen;Jasmin Romanos;Elise B. Robinson;Astrid Dempfle;Olga Rivero;Claiton Bau;Mads V. Hollegaard;Sarah Hohmann;Kimberly Chambert;Eugenio Grevet;Peter Holmans;Ashley Dumont;Margaret J. Wright;Jacqueline I. Goldstein;Johannes Hebebrand;Christine Stevens;G. Bragi Walters;Marianne Giørtz Pedersen;Joseph Biederman;Nicholas Eriksson;Daniel P. Howrigan;Maria Jesús Arranz;Nicholas G. Martin;Hailiang Huang;Thomas D. Als;Richard J.L. Anney;Richard P. Ebstein;Manuel Mattheisen;Esben Agerbo;Tobias J. Renner;James J. McGough,2019-01-01,260,Nature Genetics,63-75,10.1038/s41588-018-0269-7,30478444,85057436335,2-s2.0-85057436335,Article,H2020,https://api.elsevier.com/content/abstract/scopus_id/85057436335,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85057436335&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85057436335&origin=inward +Association of Whole-Genome and NETRIN1 Signaling Pathway–Derived Polygenic Risk Scores for Major Depressive Disorder and White Matter Microstructure in the UK Biobank,Thurm,Jakob Grove;Lili Milani;Georg Homuth;Peter McGuffin;Robert M. Maier;Jonas Bybjerg-Grauholm;Yanni Zeng;Stefan Herms;Yuri Milaneschi;Aartjan T.F. Beekman;Wolfgang Maier;Matthias Nauck;Jude Gibson;Stephen M. Lawrie;Erin C. Dunn;Gregory E. Crawford;Nese Direk;Michael Gill;Yihan Li;Divya Mehta;Enda M. Byrne;Baptiste Couvy-Duchesne;Zoltán Kutalik;Patrick McGrath;Conor V. Dolan;Farnush Farhadi Hassan Kiadeh;Dale R. Nyholt;Stephan Ripke;Simon R. Cox;Mandy Johnstone;Penelope A. Lind;Christine Søholm Hansen;Jesper Krogh;Michael J. Owen;Francis M. Mondimore;Gail Davies;Julia Kraft;Thalia C. Eley;Toni Kim Clarke;Andreas J. Forstner;Lynsey S. Hall;Marie Bækvad-Hansen;James A. Knowles;Ian J. Deary;Hogni Oskarsson;Carsten Horn;Warren W. Kretzschmar;Bernard Ng;Jonathan Marchini;Hilary K. Finucane;Julien Bryois;Fernando S. Goes;Isaac S. Kohane;Dean F. MacKinnon;Na Cai;Hamdi Mbarek;Marcus Ising;Valentina Escott-Price;Evelin Mihailov;Franziska Degenhardt;Paul F. O'Reilly;Eske M. Derks;David M. Hougaard;Mark J. Adams;Christel M. Middeldorp;Tim B. Bigdeli;Enrique Castelao;Michel G. Nivard;Nick Craddock;Héléna A. Gaspar;Sarah E. Medland;Jonathan R.I. Coleman;Scott D. Gordon;Henriette N. Buttenschøn;Josef Frank;Jane Hvarregaard Christensen;Thomas F. Hansen;Grant W. Montgomery;Douglas H.R. Blackwood;Jouke Jan Hottenga;Rick Jansen;Tracy M. Air;Eric Jorgenson;Naomi R. Wray;Niamh Mullins;Xueyi Shen;Sara Mostafavi;Lucía Colodro-Conde;Per Hoffmann;Chris S. Haley;Donald J. MacIntyre;Abdel Abdellaoui;Miruna C. Barbu;Ian B. Hickie;Maciej Trzaskowski;Elisabeth B. Binder;Silviu Alin Bacanu;Till F.M. Andlauer;Manuel Mattheisen;Esben Agerbo,2019-01-01,6,Biological Psychiatry: Cognitive Neuroscience and Neuroimaging,91-100,10.1016/j.bpsc.2018.07.006,,85052912914,2-s2.0-85052912914,Article,RCPE,https://api.elsevier.com/content/abstract/scopus_id/85052912914,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85052912914&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85052912914&origin=inward +Bipolar multiplex families have an increased burden of common risk variants for psychiatric disorders,Thurm,Richard Belliveau;Monika Budde;Stephanie H. Witt;Francisco J. Cabaleiro Fabeiro;Miquel Casas;Chun Chieh Fan;Tatiana M. Foroud;Jose Guzman-Parra;Erlend Bøen;Stefan Herms;Jonas Bybjerg-Grauholm;Srdjan Djurovic;Susana Gil Flores;Alexander W. Charney;Jack D. Barchas;Nelson B. Freimer;Manolis Kogevinas;Gerome Breen;Judith A. Badner;Liz Forty;Yolanda de Diego-Otero;Stefanie Heilmann-Heimbach;Jerome C. Foo;Sarah E. Bergen;Julie Garnham;Guillermo Orozco Diaz;Simone de Jong;Amanda L. Dobbyn;Christine Fraser;J. Raymond DePaulo;Margit Burmeister;Stephan Ripke;Georg Auburger;Tune H. Pers;Claudia Giambartolomei;Jana Strohmaier;Toni Kim Clarke;Andreas J. Forstner;Marie Bækvad-Hansen;Verneri Antilla;Maria José González;Huda Akil;Eli A. Stahl;Claire Churchhouse;Francisco del Río Noriega;Jesus Haro González;Piotr M. Czerski;Valentina Escott-Price;Jens Treutlein;Franziska Degenhardt;Ney Alliey-Rodriguez;Adebayo Anjorin;Fermin Perez Perez;Stacy Steinberg;Liam Abbott;Andrew McQuillin;Danfeng Chen;Vassily Trubetskoy;William Bunney;Felecia Cerrato;Swapnil Awasthi;Katrin Gade;Pablo Cervantes;Cristiana Cruceanu;Carsten Bøcker Pedersen;James Boocock;Jennifer M.Whitehead Pavlides;Héléna A. Gaspar;Matthew Flickinger;Jonathan R.I. Coleman;William Byerley;Nicholas Bass;Peter A. Holmans;Christiaan A. de Leeuw;Anders M. Dale;Josef Frank;Louise Frisén;Sven Cichon;Kimberly Chambert;Ashley Dumont;David W. Craig;Torbjørn Elvsåshagen;Fabian Streit;William Coryell;Berta Moreno-Küstner;Michael Bauer;Jurgen Del-Favero;Marco Boks;Diane Gage;Per Hoffmann;Thomas D. Als;Sascha B. Fischer;Yunpeng Wang;Maciej Trzaskowski;Till F.M. Andlauer;Manuel Mattheisen;Esben Agerbo;Diego Albani,2019-01-01,1,Molecular Psychiatry,,10.1038/s41380-019-0558-2,31712721,85075169356,2-s2.0-85075169356,Article,DFG,https://api.elsevier.com/content/abstract/scopus_id/85075169356,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85075169356&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85075169356&origin=inward +Exploring Cuba’s population structure and demographic history using genome-wide data,Thurm,Ole Mors;Cesar Fortes-Lima;Jonas Bybjerg-Grauholm;Phuong Le;Paul Verdu;Enrique Javier Gomez-Cabezas;Lilia Caridad Marin-Padrón;Christine Søholm Hansen;David Michael Hougaard;Beatriz Marcheco-Teruel;Marie Bækvad-Hansen;Esteban J. Parra,2018-12-01,9,Scientific Reports,,10.1038/s41598-018-29851-3,30061702,85050800771,2-s2.0-85050800771,Article,ANDRS,https://api.elsevier.com/content/abstract/scopus_id/85050800771,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85050800771&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85050800771&origin=inward +Novel variants in SPTAN1 without epilepsy: An expansion of the phenotype,Thurm,Valerie Gartner;William A. Gahl;Audrey Thurm;Irina Anselm;Gerard T. Berry;Cynthia J. Tifft;Ellen Macnamara;Thomas C. Markello;Andrea De Biase;Alan Beggs;Jeremy D. Schmahmann;Paul R. Lee;Lisa Joseph;Emma Boslet,2018-12-01,2,"American Journal of Medical Genetics, Part A",2768-2776,10.1002/ajmg.a.40628,30548380,85058219598,2-s2.0-85058219598,Article,NHGRI,https://api.elsevier.com/content/abstract/scopus_id/85058219598,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85058219598&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85058219598&origin=inward +Schizophrenia-associated mt-DNA SNPs exhibit highly variable haplogroup affiliation and nuclear ancestry: Bi-genomic dependence raises major concerns for link to disease,Thurm,Christine S. Hansen;Ole Mors;Jonas Bybjerg-Grauholm;David M. Hougaard;Merete Nordentoft;Thomas M. Werge;Michael Christiansen;Preben B. Mortensen;Alfonso B. Demur;Paula L. Hedley;Anders Børglum;Christian M. Hagen;Jørgen K. Kanters;James Kennedy;Thomas D. Als;Vanessa F. Gonçalves;Jimmi Nielsen;Marie Bækvad-Hansen,2018-12-01,2,PLoS ONE,,10.1371/journal.pone.0208828,30532134,85058236229,2-s2.0-85058236229,Article,Jascha Foundation,https://api.elsevier.com/content/abstract/scopus_id/85058236229,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85058236229&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85058236229&origin=inward +"Complex spatio-temporal distribution and genomic ancestry of mitochondrial DNA haplogroups in 24,216 danes",Thurm,Ole Mors;Merete Nordentoft;James Kennedy;Jonas Bybjerg-Grauholm;Preben B. Mortensen;Jimmi Nielsen;David M. Hougaard;Michael Theisen;Alfonso B. Demur;Paula L. Hedley;Thomas D. Als;Vanessa F. Gonçalves;Marie Bækvad-Hansen;Christine S. Hansen;Thomas M. Werge;Michael Christiansen;Christian M. Hagen;Jørgen K. Kanters;Anders Børglum,2018-12-01,2,PLoS ONE,,10.1371/journal.pone.0208829,30543675,85058431802,2-s2.0-85058431802,Article,,https://api.elsevier.com/content/abstract/scopus_id/85058431802,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85058431802&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85058431802&origin=inward +"Genetic risk for schizophrenia and autism, social impairment and developmental pathways to psychosis",Thurm,Jakob Grove;Ole Mors;Claire Churchhouse;Eva Velthorst;Merete Nordentoft;Herta Flor;Tomáš Paus;Sarah Hohmann;Mark J. Daly;Frauke Nees;Ashley Dumont;Michael N. Smolka;Vincent Frouin;Uli Bromberg;Erin Burke Quinlan;Jonas Bybjerg-Grauholm;Arun L.W. Bokde;Raymond Walters;Gunter Schumann;Christine Stevens;Stephan Ripke;Preben Bo Mortensen;Marie Laure Paillère Martinot;Luise Poustka;Christine Søholm Hansen;Sean Froudist-Walsh;Thomas Werge;Henrik Walter;Eric Artiges;Marianne Giørtz Pedersen;Bernd Ittermann;Dimitri Papadopoulos Orfanos;David M. Hougaard;Penny Gowland;Robert Whelan;Abraham Reichenberg;Jacqueline Goldstein;Joanna Martin;Felecia Cerrato;Marie Bækvad-Hansen;Tobias Banaschewski;Christian Büchel;Hugh Garavan;Douglas Ruderfer;Juliane H. Fröhner;Carsten Bøcker Pedersen;Elise B. Robinson;Eli Stahl;Sylvane Desrivières;Anders D. Børglum;Manuel Mattheisen;Benjamin M. Neale;Andreas Heinz;Joseph Buxbaum;Ilyan Ivanov,2018-12-01,6,Translational Psychiatry,,10.1038/s41398-018-0229-0,30258131,85054049851,2-s2.0-85054049851,Article,BMBF,https://api.elsevier.com/content/abstract/scopus_id/85054049851,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85054049851&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85054049851&origin=inward +Genome-wide interaction study of a proxy for stress-sensitivity and its prediction of major depressive disorder,Thurm,Jakob Grove;Lili Milani;Georg Homuth;Peter McGuffin;Robert M. Maier;Jonas Bybjerg-Grauholm;Stefan Herms;Yuri Milaneschi;Aartjan T.F. Beekman;Wolfgang Maier;Matthias Nauck;Erin C. Dunn;Gregory E. Crawford;Pippa A. Thomson;Michael Gill;Aleix Arnau-Soler;Nese Direk;Blair H. Smith;Yihan Li;Divya Mehta;Enda M. Byrne;Baptiste Couvy-Duchesne;Zoltán Kutalik;Patrick McGrath;Conor V. Dolan;Farnush Farhadi Hassan Kiadeh;Dale R. Nyholt;Stephan Ripke;Penelope A. Lind;Christine Søholm Hansen;Jesper Krogh;Francis M. Mondimore;Gail Davies;Julia Kraft;Thalia C. Eley;Toni Kim Clarke;Andreas J. Forstner;Lynsey S. Hall;Marie Bækvad-Hansen;James A. Knowles;Ian J. Deary;Carsten Horn;Warren W. Kretzschmar;Bernard Ng;Jonathan Marchini;Hilary K. Finucane;Julien Bryois;Fernando S. Goes;Isaac S. Kohane;Dean F. MacKinnon;Na Cai;Hamdi Mbarek;Marcus Ising;Valentina Escott-Price;Evelin Mihailov;Franziska Degenhardt;Eske M. Derks;David M. Hougaard;Mark J. Adams;Christel M. Middeldorp;Tim B. Bigdeli;Archie Campbell;David Porteous;Sandosh Padmanabhan;Enrique Castelao;Michel G. Nivard;Nick Craddock;Héléna A. Gaspar;Sarah E. Medland;Jonathan R.I. Coleman;Scott D. Gordon;Henriette N. Buttenschøn;Josef Frank;Jane Hvarregaard Christensen;Thomas F. Hansen;Grant W. Montgomery;Douglas H.R. Blackwood;Jouke Jan Hottenga;Rick Jansen;Tracy M. Air;Eric Jorgenson;Naomi R. Wray;Niamh Mullins;Corri Black;Sara Mostafavi;Lucía Colodro-Conde;Per Hoffmann;Donald J. MacIntyre;Abdel Abdellaoui;Ian B. Hickie;Maciej Trzaskowski;Elisabeth B. Binder;Silviu Alin Bacanu;Till F.M. Andlauer;Andrew M. McIntosh;Manuel Mattheisen;Esben Agerbo;Caroline Hayward,2018-12-01,1,PLoS ONE,,10.1371/journal.pone.0209160,30571770,85058923883,2-s2.0-85058923883,Article,,https://api.elsevier.com/content/abstract/scopus_id/85058923883,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85058923883&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85058923883&origin=inward +Improving genetic prediction by leveraging genetic correlations among human diseases and traits,Thurm,Jakob Grove;Jolanta Lissowska;Monika Budde;Stephanie H. Witt;Phil H. Lee;Miquel Casas;Derek W. Morris;Tatiana M. Foroud;Peng Zhang;Jennifer M. Whitehead Pavlides;John S. Strauss;Robert M. Maier;Srdjan Djurovic;Loes M. Olde Loohuis;Judith Allardyce;Alexander W. Charney;Claire Slaney;Manolis Kogevinas;Liz Forty;Christiaan A. De Leeuw;Roy H. Perlis;Simon Xi;Shawn E. Levy;Thomas W. Weickert;Sarah E. Bergen;Julie Garnham;Amanda L. Dobbyn;Christine Fraser;James D. Mckay;Panos Roussos;Susanne Lucae;Peter M. Visscher;Stephan Ripke;Allan H. Young;Tune H. Pers;Claudia Giambartolomei;Maria Hipolito;Radhika Kandaswamy;Jana Strohmaier;Pamela B. Mahon;Jian Yang;Andreas J. Forstner;Claire O'donovan;Eli A. Stahl;J. Raymond Depaulo;Ralph Kupka;Sang Hong Lee;Andrew Mcquillin;Piotr M. Czerski;Urs Heilbronner;Cynthia Shannon Weickert;Valentina Escott-Price;Jens Treutlein;Adebayo Anjorin;Jacob Lawrence;Stacy Steinberg;Matthew R. Robinson;Douglas M. Ruderfer;Vassily Trubetskoy;Swapnil Awasthi;Katrin Gade;Martin Hautzinger;Peter Zandi;Pablo Cervantes;Cristiana Cruceanu;James Boocock;Carsten Bøcker Pedersen;Donald J. Macintyre;Evaristus A. Nwulia;Peter Mcguffin;Michael Steffens;Héléna A. Gaspar;Laura Huckins;Jonathan R.I. Coleman;Zhihong Zhu;Margarita Rivera;Josef Frank;Weiqing Wang;Stéphane Jamain;Torbjørn Elvsåshagen;Fabian Streit;Thorgeir E. Thorgeirsson;Elaine K. Green;Cristina Sánchez-Mora;Naomi R. Wray;Niamh Mullins;Eline J. Regeer;James L. Kennedy;Marianne Giørtz Pedersen;Joanna Hauser;William B. Lawson;Thomas D. Als;Olav B. Smeland;Yunpeng Wang;Maciej Trzaskowski;James B. Potash;Esben Agerbo;Anders Juréus;Robert Karlsson;Diego Albani,2018-12-01,31,Nature Communications,,10.1038/s41467-017-02769-6,29515099,85048198000,2-s2.0-85048198000,Article,ARC,https://api.elsevier.com/content/abstract/scopus_id/85048198000,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85048198000&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85048198000&origin=inward +Applying polygenic risk scoring for psychiatric disorders to a large family with bipolar disorder and major depressive disorder,Thurm,Jakob Grove;Lili Milani;Georg Homuth;Peter McGuffin;Robert M. Maier;Jonas Bybjerg-Grauholm;Stefan Herms;Yuri Milaneschi;Andiara Saloma;Aartjan T.F. Beekman;Wolfgang Maier;Matthias Nauck;Mateus Jose Abdalla Diniz;Jodie N. Painter;Erin C. Dunn;Gregory E. Crawford;Nese Direk;Michael Gill;Yihan Li;Lisa A. Jones;Divya Mehta;Simone de Jong;Enda M. Byrne;Baptiste Couvy-Duchesne;Zoltán Kutalik;Patrick McGrath;Conor V. Dolan;Farnush Farhadi Hassan Kiadeh;Dale R. Nyholt;Stephan Ripke;Penelope A. Lind;Christine Søholm Hansen;Jesper Krogh;Michael J. Owen;Francis M. Mondimore;Gail Davies;Julia Kraft;Thalia C. Eley;Toni Kim Clarke;Andreas J. Forstner;Marie Bækvad-Hansen;James A. Knowles;Ian J. Deary;Hogni Oskarsson;Carsten Horn;Warren W. Kretzschmar;Bernard Ng;Jonathan Marchini;Cristiano Noto;Hilary K. Finucane;Julien Bryois;Ian Jones;Fernando S. Goes;Isaac S. Kohane;Dean F. MacKinnon;Na Cai;Hamdi Mbarek;Marcus Ising;Valentina Escott-Price;Evelin Mihailov;Vanessa K. Ota;Franziska Degenhardt;Eske M. Derks;Marcos L. Santoro;David M. Hougaard;Mark J. Adams;Christel M. Middeldorp;Tim B. Bigdeli;Enrique Castelao;Michel G. Nivard;Nick Craddock;Héléna A. Gaspar;Ary Gadelha;Sarah E. Medland;Jonathan R.I. Coleman;Scott D. Gordon;Henriette N. Buttenschøn;Josef Frank;Jane Hvarregaard Christensen;Thomas F. Hansen;Grant W. Montgomery;Douglas H.R. Blackwood;Jouke Jan Hottenga;Rick Jansen;Tracy M. Air;Eric Jorgenson;Naomi R. Wray;Niamh Mullins;Sara Mostafavi;Lucía Colodro-Conde;Per Hoffmann;Donald J. MacIntyre;Abdel Abdellaoui;Ian B. Hickie;Maciej Trzaskowski;Elisabeth B. Binder;Silviu Alin Bacanu;Till F.M. Andlauer;Manuel Mattheisen;Esben Agerbo,2018-12-01,6,Communications Biology,,10.1038/s42003-018-0155-y,30320231,85061101811,2-s2.0-85061101811,Article,FAPESP,https://api.elsevier.com/content/abstract/scopus_id/85061101811,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85061101811&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85061101811&origin=inward +Framework for assessing individuals with rare genetic disorders associated with profound intellectual and multiple disabilities (PIMD): the example of Phelan McDermid Syndrome,Thurm,Latha Soorya;Audrey Thurm;Jill Leon;M. Pilar Trelles,2018-10-03,8,Clinical Neuropsychologist,1226-1255,10.1080/13854046.2017.1413211,29265961,85038629502,2-s2.0-85038629502,Review,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85038629502,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85038629502&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85038629502&origin=inward +Trajectories of cognitive development in toddlers with language delays,Thurm,Audrey Thurm;Laura Henry;Lauren Swineford;Stacy S. Manwaring;Cristan Farmer,2018-10-01,0,Research in Developmental Disabilities,65-72,10.1016/j.ridd.2018.04.005,29699725,85046155868,2-s2.0-85046155868,Article,,https://api.elsevier.com/content/abstract/scopus_id/85046155868,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85046155868&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85046155868&origin=inward +SOCIOEMOTIONAL AND BEHAVIORAL PROBLEMS IN TODDLERS WITH LANGUAGE DELAY,Thurm,Audrey Thurm;Renee Gallo;Lauren Swineford;Stacy S. Manwaring;Cecilia Cardozo Jimenez;Cristan Farmer;Mika Maeda,2018-09-01,1,Infant Mental Health Journal,569-580,10.1002/imhj.21735,30105861,85052384767,2-s2.0-85052384767,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85052384767,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85052384767&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85052384767&origin=inward +Does Childhood Trauma Moderate Polygenic Risk for Depression? A Meta-analysis of 5765 Subjects From the Psychiatric Genomics Consortium,Thurm,Jakob Grove;Lili Milani;Georg Homuth;Peter McGuffin;Robert M. Maier;Jonas Bybjerg-Grauholm;Stefan Herms;Yuri Milaneschi;Aartjan T.F. Beekman;Wolfgang Maier;Matthias Nauck;Marcella Rietschel;Erin C. Dunn;Gregory E. Crawford;Nese Direk;Michael Gill;Yihan Li;Farhadi Hassan Kiadeh;Divya Mehta;Enda M. Byrne;Baptiste Couvy-Duchesne;Zoltán Kutalik;Patrick McGrath;Conor V. Dolan;Tracy A. Air;Dale R. Nyholt;Stephan Ripke;Penelope A. Lind;Christine Søholm Hansen;Jesper Krogh;Francis M. Mondimore;Gail Davies;Julia Kraft;Jana Strohmaier;Patrick F. Sullivan;Thalia C. Eley;Toni Kim Clarke;Andreas J. Forstner;Lynsey S. Hall;Pamela A.F. Madden;Marie Bækvad-Hansen;James A. Knowles;Ian J. Deary;Carsten Horn;Warren W. Kretzschmar;Bernard Ng;Jonathan Marchini;Hilary K. Finucane;Julien Bryois;Fernando S. Goes;Dean F. MacKinnon;Na Cai;Hamdi Mbarek;Marcus Ising;Valentina Escott-Price;Evelin Mihailov;Franziska Degenhardt;Paul F. O'Reilly;Sandra Van der Auwera;Eske M. Derks;David M. Hougaard;Mark J. Adams;Christel M. Middeldorp;Tim B. Bigdeli;Enrique Castelao;Michel G. Nivard;Nick Craddock;Héléna A. Gaspar;Sarah E. Medland;Jonathan R.I. Coleman;Andrew C. Heat;Scott D. Gordon;Henriette N. Buttenschøn;Josef Frank;Jane Hvarregaard Christensen;Thomas F. Hansen;Grant W. Montgomery;Anjali K. Henders;Douglas H.R. Blackwood;Helen L. Fisher;Jouke Jan Hottenga;Rick Jansen;Tracy M. Air;Eric Jorgenson;Naomi R. Wray;Niamh Mullins;Sara Mostafavi;Lucía Colodro-Conde;Per Hoffmann;Donald J. MacIntyre;Ian B. Hicki;Abdel Abdellaoui;Maciej Trzaskowski;Elisabeth B. Binder;Silviu Alin Bacanu;Wouter J. Peyrot; Farnush;Till F.M. Andlauer;Manuel Mattheisen;Esben Agerbo,2018-07-15,28,Biological Psychiatry,138-147,10.1016/j.biopsych.2017.09.009,29129318,85033387316,2-s2.0-85033387316,Article,NHMRC,https://api.elsevier.com/content/abstract/scopus_id/85033387316,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85033387316&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85033387316&origin=inward +Prevalence of rearrangements in the 22q11.2 region and population-based risk of neuropsychiatric and developmental disorders in a Danish population: a case-cohort study,Thurm,Ole Mors;Merete Nordentoft;Wesley K. Thompson;Mark J. Daly;Shantel M. Weinsheimer;Marie Baekvad-Hansen;Anders Rosengren;Wiktor Mazin;Louise K. Hoeffding;Jonas Bybjerg-Grauholm;Marcelo Bertalan Quintanilha Dos Santos;Carsten Pedersen;Henriette Schmock;Preben Bo Mortensen;Thomas Werge;Line Olsen;Daniel H. Geschwind;David M. Hougaard;Xabier Calle Sanchez;Thomas Sparsø;Marianne G. Pedersen;Esben Agerbo;Benjamin M. Neale;Anders Børglum,2018-07-01,19,The Lancet Psychiatry,573-580,10.1016/S2215-0366(18)30168-8,29886042,85048542431,2-s2.0-85048542431,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85048542431,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85048542431&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85048542431&origin=inward +A Genetic Investigation of Sex Bias in the Prevalence of Attention-Deficit/Hyperactivity Disorder,Thurm,Babak Alipanahi;Jobst Meyer;Amaia Hervas;Olga V. Sazonova;Beate Herpertz-Dahlmann;Bru Cormand;S. Hong Lee;Fernando Mulas;Josephine Elia;Gerd Lehmkuhl;T. Trang Nguyen;Tobias J. Banaschewski;Robert K. Bell;Klaus Peter Lesch;Alice Charach;Hakon Hakonarson;Sandra K. Loo;Lindsey Kent;Stefan Johansson;Ana Miranda;Miguel Casas;Michael Gill;Joel Gelernter;Michelle Agee;Barbara Franke;Pierre Fontanillas;Jennifer Crosbie;Ditte Demontis;Özgür Albayrak;Matthew H. McIntyre;Nanda Lambregts-Rommelse;Sarah L. Elson;Vladimir Vacic;Kate Langley;Mark J. Daly;Sarah Kittel-Schneider;Raymond K. Walters;Anke Hinney;Eric Mick;Preben Bo Mortensen;James J. McGough;Aisling Mulligan;David A. Hinds;Christine Freitag;Abel Ickowitz;Joanna L. Mountain;Adam Auton;Katarzyna Bryc;Manuel Föcker;Henry Kranzler;Stan F. Nelson;Elise Robinson;Mara Hutz;Aaron Kleinman;Steven J. Pitts;Carrie A.M. Northover;Soeren Dalsgaard;Alysa E. Doyle;Stephen V. Faraone;Jan Haavik;Laura Ghirardi;Nadia K. Litterman;J. Fah Sathirapongsasuti;Ziarih Hawi;Frank Middletion;Joyce Y. Tung;Jonna Kuntsi;Suyash Shringarpure;Jan K. Buitelaar;Joanna Martin;Sarah E. Medland;Karen E. Huber;Henrik Larsson;Alejandro Arias Vasquez;Astrid Dempfle;Claiton Bau;Catherine H. Wilson;Paul Lichtenstein;Sarah Hohmann;Eugenio Grevet;Peter Holmans;Johannes Hebebrand;Janie F. Shelton;Bethann S. Hromatka;Nicholas A. Furlotte;Joseph Biederman;Nicholas Eriksson;Maria Jesús Arranz;Isabell Brikell;Philip Asherson;Chao Tian;Richard J.L. Anney;Tobias Banaschewski;Richard P. Ebstein;Manuel Mattheisen;Benjamin M. Neale;Anders Børglum,2018-06-15,45,Biological Psychiatry,1044-1053,10.1016/j.biopsych.2017.11.026,29325848,85040102598,2-s2.0-85040102598,Article,NHGRI,https://api.elsevier.com/content/abstract/scopus_id/85040102598,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85040102598&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85040102598&origin=inward +"Genomic Dissection of Bipolar Disorder and Schizophrenia, Including 28 Subphenotypes",Thurm,Monika Budde;Rolf Adolfsson;Miquel Casas;Juan P. Casas;Richard Bruggeman;Jonas Bybjerg-Grauholm;Vaughan J. Carr;Elizabeth Bevilacqua;Ines Barroso;Ronald Y.L. Chen;Brendan Bulik-Sullivan;Alexander W. Charney;Jack D. Barchas;Joanna M. Biernacka;Guiqing Cai;Judith A. Badner;Gerome Breen;Murray J. Cairns;Nadine Cohen;Noa Carrera;Enrico Domenici;Paul Cormican;Madeline Alexander;Carsten Bocker Pedersen;Sergi Papiol;Celine Bellenguez;Frank Bellivier;Sarah E. Bergen;Jenefer M. Blackwell;C. Robert Cloninger;Kimberley D. Chambert;Marie Baekvad-Hansen;Martin Begemann;Margit Burmeister;Nicholas Craddock;Stephan Ripke;Silviu A. Bacanu;Wiepke Cahn;Wade H. Berrettini;Toni Kim Clarke;Hannah Blackburn;Bernhard T. Baune;Rita M. Cantor;Huda Akil;Eli A. Stahl;Martin Alda;Anders D. Borglum;Michael Boehnke;Gavin Band;Nancy G. Buccola;Judit Bene;Eric F.C. Cheung;Ney Alliey-Rodriguez;Adebayo Anjorin;Stephan Bender;Stanley V. Catts;Matthew A. Brown;Eric Y.H. Chen;Andrew McQuillin;Douglas M. Ruderfer;Ingrid Agartz;Vassily Trubetskoy;Raymond C.K. Chan;Richard A. Belliveau;William Bunney;Tim B. Bigdeli;Swapnil Awasthi;Dominique Campion;Pablo Cervantes;Joseph D. Buxbaum;James Boocock;Siow Ann Chong;Loes M.Olde Loohuis;Jennifer M.Whitehead Pavlides;Suzannah J. Bumpstead;Jonathan R.I. Coleman;William Byerley;Elvira Bramon;Nicholas Bass;Maria J. Arranz;David Cohen;David A. Collier;Donald W. Black;David W. Craig;Douglas H.R. Blackwood;Arianna Di Florio;William Coryell;Michael Bauer;Niamh Mullins;Janos L. Kalman;Farooq Amin;Marco Boks;Randy L. Buckner;Steven Bakker;Wei Cheng;Thomas D. Als;Margot Albus;Esben Agerbo;Anil P.S. Ori;Diego Albani,2018-06-14,136,Cell,1705-1715.e16,10.1016/j.cell.2018.05.046,29906448,85048172948,2-s2.0-85048172948,Article,NHMRC,https://api.elsevier.com/content/abstract/scopus_id/85048172948,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85048172948&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85048172948&origin=inward +Quantifying the Impact of Rare and Ultra-rare Coding Variation across the Phenotypic Spectrum,Thurm,Ole Mors;Claire Churchhouse;Aarno Palotie;Alicia R. Martin;Jessica Alfoldi;Merete Nordentoft;Andrea Byrnes;Wesley K. Thompson;Manuel A. Rivas;Josep M. Mercader;Samuli Ripatti;Eija Hämäläinen;Mark J. Daly;Christina Hultman;Philip R. Nielsen;Jonas Bybjerg-Grauholm;Indraniel Das;Adam E. Locke;Olli Pietiläinen;Aki S. Havulinna;Markku Laakso;Preben Bo Mortensen;Thomas Werge;Konrad J. Karczewski;David M. Hougaard;Andrea Ganna;Francesco Lescai;Outi Kuismin;Patrick F. Sullivan;Jukka S. Moilanen;Mitja I. Kurki;Jason Flannick;Connor A. Emdin;Miriam Udler;Daniel MacArthur;Elmo Saarentaus;Seyedeh M. Zekavat;Sekar Kathiresan;Jarmo Körkkö;Namrata Gupta;Anders D. Børglum;Veikko Salomaa;Benjamin M. Neale;F. Kyle Satterstrom,2018-06-07,27,American Journal of Human Genetics,1204-1211,10.1016/j.ajhg.2018.05.002,29861106,85047311473,2-s2.0-85047311473,Article,NHGRI,https://api.elsevier.com/content/abstract/scopus_id/85047311473,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85047311473&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85047311473&origin=inward +A Comprehensive Analysis of Nuclear-Encoded Mitochondrial Genes in Schizophrenia,Thurm,Ari B. Cuperfain;James L. Kennedy;Jonas Bybjerg-Grauholm;Marquis P. Vawter;Lei Sun;Carolina Cappi;Adolfo Sequeira;Andriy Derkach;Patrick F. Sullivan;Michael Christiansen;Jennie G. Pouget;Clement C. Zai;Paula L. Hedley;Christian M. Hagen;Vanessa F. Gonçalves,2018-05-01,5,Biological Psychiatry,780-789,10.1016/j.biopsych.2018.02.1175,29628042,85044923040,2-s2.0-85044923040,Article,FAPESP,https://api.elsevier.com/content/abstract/scopus_id/85044923040,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85044923040&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85044923040&origin=inward +Genome-wide association analyses identify 44 risk variants and refine the genetic architecture of major depression,Thurm,Jakob Grove;Lili Milani;Georg Homuth;Peter McGuffin;Robert M. Maier;Jonas Bybjerg-Grauholm;Stefan Herms;Yuri Milaneschi;Wolfgang Maier;Leina Lu;Matthias Nauck;Erin C. Dunn;Gregory E. Crawford;Michael Gill;Yihan Li;Paola Giusti-Rodríguez;Enda M. Byrne;Jonathan I.R. Coleman;Baptiste Couvy-Duchesne;Zoltán Kutalik;Ming Hu;Patrick McGrath;Conor V. Dolan;Aartjan F.T. Beekman;Stephan Ripke;Penelope A. Lind;Christine Søholm Hansen;Jesper Krogh;Nese DIrek;Hassan S. Dashti;Douglas R.H. Blackwood;Francis M. Mondimore;Gail Davies;Cheynna A. Crowley;Fulai Jin;Julia Kraft;Thalia C. Eley;Toni Kim Clarke;Andreas J. Forstner;Lynsey S. Hall;Marie Bækvad-Hansen;James A. Knowles;Ian J. Deary;Carsten Horn;Warren W. Kretzschmar;Bernard Ng;Jonathan Marchini;Hilary K. Finucane;Julien Bryois;Fernando S. Goes;Isaac S. Kohane;Dean F. MacKinnon;Na Cai;Hamdi Mbarek;Craig L. Hyde;Marcus Ising;Valentina Escott-Price;Farnush Hassan Farhadi Kiadeh;Evelin Mihailov;Franziska Degenhardt;Eske M. Derks;David M. Hougaard;Mark J. Adams;Christel M. Middeldorp;Jacqueline M. Lane;Tim B. Bigdeli;Enrique Castelao;Nick Craddock;Héléna A. Gaspar;Sarah E. Medland;Jonathan Mill;Scott D. Gordon;Henriette N. Buttenschøn;Josef Frank;Jane Hvarregaard Christensen;Thomas F. Hansen;Xiaoxiao Liu;Grant W. Montgomery;MacIej Trzaskowski;Jouke Jan Hottenga;Eilis Hannon;Rick Jansen;Tracy M. Air;Eric Jorgenson;Naomi R. Wray;Niamh Mullins;Nicholas Eriksson;Sara Mostafavi;Till M.F. Andlauer;Lucía Colodro-Conde;Per Hoffmann;Donald J. MacIntyre;Abdel Abdellaoui;Ian B. Hickie;Elisabeth B. Binder;Silviu Alin Bacanu;DIvya Mehta;Yun Li;Manuel Mattheisen;Esben Agerbo,2018-05-01,487,Nature Genetics,668-681,10.1038/s41588-018-0090-3,29700475,85046022254,2-s2.0-85046022254,Article,UH,https://api.elsevier.com/content/abstract/scopus_id/85046022254,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85046022254&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85046022254&origin=inward +Genome-wide association study of Hirschsprung disease detects a novel low-frequency variant at the RET locus,Thurm,Hans Matsson;David Michael Hougaard;Aravinda Chakravarti;Marie Lund;Mikko Pakarinen;Perttu Salo;Jonas Bybjerg-Grauholm;Mads Melbye;Priyanka Nandakumar;Markus Perola;Sumantra Chatterjee;Tomas Wester;Frank Geller;Line Skotte;João Fadista;Valtter Virtanen;Anna Löf Granström;Bjarke Feenstra;Agneta Nordenskjöld;Lisbeth Carstensen,2018-04-01,6,European Journal of Human Genetics,561-569,10.1038/s41431-017-0053-7,29379196,85041106818,2-s2.0-85041106818,Article,"FSS, DFF",https://api.elsevier.com/content/abstract/scopus_id/85041106818,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85041106818&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85041106818&origin=inward +Elevated polygenic burden for autism is associated with differential DNA methylation at birth,Thurm,Jakob Grove;Ole Mors;Mads Vilhelm Hollegaard;Claire Churchhouse;Alicia Martin;Mette Nyegaard;Kyle Satterstrom;Merete Nordentoft;Elise Robinson;Kimberly Chambert;Per Qvist;Timothy Poterba;David Michael Hougaard;Ashley Dumont;Mady Hornig;Patrick Turley;Marianne Pedersen;Shan V. Andrews;Jonas Bybjerg-Grauholm;M. Daniele Fallin;Raymond Walters;Eilis Hannon;Daniel Howrigan;Carsten Pedersen;Stephan Ripke;Christine Stevens;Preben Bo Mortensen;Jonathan Mill;Mads Hauberg;Rich Belliveau;Christine Søholm Hansen;Thomas Werge;Jonatan Pallsen;Benjamin Neale;Jesper Poulsen;Marianne Giørtz Pedersen;Christine Ladd-Acosta;David Hougaard;Preben Mortensen;Jennifer Moran;Abraham Reichenberg;Jacqueline Goldstein;Hailiang Huang;Thomas D. Als;Michaeline Bresnahan;Duncan Palmer;Joanna Martin;Felecia Cerrato;Marie Bækvad-Hansen;Julian Maller;Marie Bækved-Hansen;Mark Daly;Christine Hansen;Diana Schendel;Anders D. Børglum;Esben Agerbo;Ditte Demontis;Manuel Mattheisen;Jane Christensen;Joseph Buxbaum;Anders Børglum,2018-03-28,24,Genome Medicine,,10.1186/s13073-018-0527-4,29587883,85044353251,2-s2.0-85044353251,Article,NICHD,https://api.elsevier.com/content/abstract/scopus_id/85044353251,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85044353251&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85044353251&origin=inward +Identification of 22q13 genes most likely to contribute to Phelan McDermid syndrome,Thurm,Travis J. Philyaw;Aleksandr Shcheglovitov;Audrey Thurm;Walter E. Kaufmann;Luigi Boccuto;Andrew R. Mitz;Sara M. Sarasua,2018-03-01,8,European Journal of Human Genetics,293-302,10.1038/s41431-017-0042-x,29358616,85040775646,2-s2.0-85040775646,Review,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85040775646,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85040775646&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85040775646&origin=inward +Common schizophrenia alleles are enriched in mutation-intolerant genes and in regions under strong background selection,Thurm,Jakob Grove;Hyejung Won;Leon Hubbard;Alison Goate;Jonas Bybjerg-Grauholm;Srdjan Djurovic;Sarah Tosato;Elliott Rees;Enrique Santiago;Charlene Thomas;Wolfgang Maier;David J. Porteous;Gerome Breen;Laura M. Huckins;Noa Carrera;Petroula Proitsi;John Powell;André Lacour;Darren Cameron;Enda M. Byrne;Britta Schurmann;Alfredo Ramirez;Andrew J. Pocklington;Simon Lovestone;Udo Dannlowski;Stephan Ripke;Preben Bo Mortensen;Christine Søholm Hansen;Reiner Heun;Engilbert Sigurdsson;David Craig;Thalia C. Eley;Amy Lynham;Michelle Lupton;Marie Bækvad-Hansen;Dmitriy Drichel;Bernhard T. Baune;Peter Passmore;Carlos Cruchaga;Hreinn Stefansson;Eli A. Stahl;Antonio F. Pardiñas;Ole Mors;Merete Nordentoft;Richard Abraham;Naser Durmishi;Markus Nothen;Valentina Escott-Price;Sophie Bishop;Petra Nowotny;Teimuraz Silagadze;Frank Jessen;Thomas Werge;Stacy Steinberg;David M. Hougaard;Douglas M. Ruderfer;Pamela Sklar;Stephen Todd;Vera Golimbet;Michael Owen;Carsten Bøcker Pedersen;Steven A. McCarroll;Sarah Taylor;Ole A. Andreassen;Amy Gerrish;Jaspreet Pahwa;Bernadette McGuinness;Armando Caballero;Tim Becker;Robert Plomin;Milica Pejovic-Milovancevic;Nicola Denning;Kiran Mantripragada;Paul Hollingworth;Peter Holmans;Marian L. Hamshere;Espen Molden;Kari Stefansson;Christine Herold;Denise Harold;Naomi R. Wray;Marianne Giørtz Pedersen;Daniel H. Geschwind;Nicholas G. Martin;Jade Chapman;Thomas D. Als;Jun Han;John C. Morris;Julie Williams;Rebecca Sims;James H. MacCabe;Sophie E. Legge;Andrew M. McIntosh;Manuel Mattheisen;Anders D. Børglum;Esben Agerbo;Caroline Hayward;Janet Johnston;Kevin Mayo;Michael O'Donovan,2018-03-01,254,Nature Genetics,381-389,10.1038/s41588-018-0059-2,29483656,85042546549,2-s2.0-85042546549,Article,JDRF,https://api.elsevier.com/content/abstract/scopus_id/85042546549,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85042546549&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85042546549&origin=inward +Loss of skills and onset patterns in neurodevelopmental disorders: Understanding the neurobiological mechanisms,Thurm,Elizabeth M. Powell;Audrey Thurm;Jeffrey L. Neul;Ann Wagner;Lonnie Zwaigenbaum,2018-02-01,16,Autism Research,212-222,10.1002/aur.1903,29226600,85042385338,2-s2.0-85042385338,Note,CIHR,https://api.elsevier.com/content/abstract/scopus_id/85042385338,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85042385338&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85042385338&origin=inward +Biological age of the endometrium using DNA methylation,Thurm,Michael T. Overgaard;Jonas Bybjerg-Grauholm;Mette Nyegaard;Alexandra P. Bielfeld;Axel Forman;Anna Starnawska;Mia S. Olesen;Inge Agerholm,2018-01-01,4,Reproduction,167-172,10.1530/REP-17-0601,29162648,85041203580,2-s2.0-85041203580,Article,,https://api.elsevier.com/content/abstract/scopus_id/85041203580,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85041203580&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85041203580&origin=inward +Genetics of suicide attempts in individuals with and without mental disorders: a population-based genome-wide association study,Thurm,Ole Mors;Andrew Schork;Jonas Bybjerg-Grauholm;David M. Hougaard;Gustavo Turecki;Ron Nudel;Merete Nordentoft;Preben B. Mortensen;Vivek Appadurai;Wesley K. Thompson;Annette Erlangsen;Thomas Werge;Anders D. Børglum;Esben Agerbo;Anna Starnawska;Marie Bækvad-Hansen;Yunpeng Wang,2018-01-01,22,Molecular Psychiatry,,10.1038/s41380-018-0218-y,,85052539922,2-s2.0-85052539922,,,https://api.elsevier.com/content/abstract/scopus_id/85052539922,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85052539922&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85052539922&origin=inward +The iPSYCH2012 case-cohort sample: New directions for unravelling genetic and environmental architectures of severe mental disorders,Thurm,J. Grove;O. Mors;J. J. McGrath;J. B. Poulsen;E. Agerbo;D. M. Hougaard;J. I. Goldstein;M. Bækvad-Hansen;B. M. Neale;C. S. Hansen;A. D. Børglum;J. Bybjerg-Grauholm;T. D. Als;C. B. Pedersen;M. Nordentoft;M. G. Pedersen;M. J. Daly;T. Werge;P. B. Mortensen,2018-01-01,58,Molecular Psychiatry,6-14,10.1038/mp.2017.196,28924187,85040051369,2-s2.0-85040051369,Review,NHMRC,https://api.elsevier.com/content/abstract/scopus_id/85040051369,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85040051369&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85040051369&origin=inward +In-depth investigations of adolescents and adults with holoprosencephaly identify unique characteristics,Thurm,Elaine Stashinko;Yonit A. Addissie;Ping Hu;Edythe Wiggs;Debbie Baldwin;Donald W. Hadley;Eric Levey;Wadih M. Zein;Maximilian Muenke;Bethany Stokes;Erich Roessler;Jin S. Hahn;Nancy J. Clegg;Robert B. Hufnagel;Casey K. Hadsall;Karin Weiss;Audrey Thurm;Maria J. Guillen Sacoto;Beth Solomon;Paul Kruszka;Mauricio R. Delgado,2018-01-01,9,Genetics in Medicine,14-23,10.1038/gim.2017.68,28640243,85040459413,2-s2.0-85040459413,Article,NHGRI,https://api.elsevier.com/content/abstract/scopus_id/85040459413,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85040459413&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85040459413&origin=inward +"Cover Image, Volume 173A, Number 12, December 2017",Thurm,Wadih M. Zein;Ariane Soldatos;Audrey Thurm;William A. Gahl;Karen L. David;Isabel Hardee;Thierry Vilboux;Carlos R. Ferreira;Michele Nehrebecky;Mariska Davids;Joseph Snow;Theo Heller;May Christine V. Malicdan;Camilo Toro;Ellen F. Macnamara;Meral Gunay-Aygun,2017-12-01,0,American journal of medical genetics. Part A,i,10.1002/ajmg.a.38548,29136352,85076540980,2-s2.0-85076540980,Article,,https://api.elsevier.com/content/abstract/scopus_id/85076540980,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85076540980&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85076540980&origin=inward +Defective ciliogenesis in INPP5E-related Joubert syndrome,Thurm,Wadih M. Zein;Ariane Soldatos;Audrey Thurm;William A. Gahl;Karen L. David;Isabel Hardee;Thierry Vilboux;Carlos R. Ferreira;Michele Nehrebecky;Mariska Davids;Joseph Snow;Theo Heller;May Christine V. Malicdan;Camilo Toro;Ellen F. Macnamara;Meral Gunay-Aygun,2017-12-01,7,"American Journal of Medical Genetics, Part A",3231-3237,10.1002/ajmg.a.38376,29052317,85031705779,2-s2.0-85031705779,Article,NHGRI,https://api.elsevier.com/content/abstract/scopus_id/85031705779,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85031705779&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85031705779&origin=inward +Genetic association of major depression with a typical features and obesity-related immunometabolic dysregulations,Thurm,Jakob Grove;Helena A. Gaspar;Georg Homuth;Peter McGuffin;Hans J. Grabe;Robert M. Maier;Jonas Bybjerg-Grauholm;Stefan Herms;Yuri Milaneschi;Aartjan T.F. Beekman;Wolfgang Maier;Matthias Nauck;Marcella Rietschel;Gerome Breen;Erin C. Dunn;Cathryn Lewis;Gregory E. Crawford;Lucia Colodro-Conde;Martin Preisig;Nese Direk;Michael Gill;Yihan Li;Divya Mehta;Enda M. Byrne;Baptiste Couvy-Duchesne;Patrick McGrath;Conor V. Dolan;Farnush Farhadi Hassan Kiadeh;Stephan Ripke;Penelope A. Lind;Jesper Krogh;Gail Davies;Julia Kraft;Jana Strohmaier;Thalia C. Eley;Toni Kim Clarke;Andreas J. Forstner;Lynsey S. Hall;Henriette N. Buttenschon;Bernhard T. Baune;James A. Knowles;Ian J. Deary;Carsten Horn;Warren W. Kretzschmar;Jonathan Marchini;Hilary K. Finucane;Julien Bryois;Fernando S. Goes;Isaac S. Kohane;Dean F. MacKinnon;Na Cai;Giorgio Pistis;Hamdi Mbarek;Marcus Ising;Valentina Escott-Price;Evelin Mihailov;Abbas Dehghan;Franziska Degenhardt;Eske M. Derks;David M. Hougaard;Mark J. Adams;Christel M. Middeldorp;Tim B. Bigdeli;Enrique Castelao;Nick Craddock;Zoltan Kutalik;Sandra Van Der Auwera;Sarah E. Medland;Jonathan R.I. Coleman;Scott D. Gordon;Margarita Rivera;Josef Frank;Jane Hvarregaard Christensen;Thomas F. Hansen;Alexander Teumer;Douglas H.R. Blackwood;Jouke Jan Hottenga;Fabian Streit;Rick Jansen;Tracy M. Air;Femke Lamers;Marie Bakvad-Hansen;Eric Jorgenson;Naomi R. Wray;Niamh Mullins;Christine Soholm Hansen;Per Hoffmann;Carol Kan;Donald J. MacIntyre;Abdel Abdellaoui;Ian B. Hickie;Maciej Trzaskowski;Elisabeth B. Binder;Silviu Alin Bacanu;Wouter J. Peyrot;Till F.M. Andlauer;Manuel Mattheisen;Esben Agerbo;Dorret I. Boomsma;Brenda W.J.H. Penninx,2017-12-01,47,JAMA Psychiatry,1214-1225,10.1001/jamapsychiatry.2017.3016,29049554,85038239250,2-s2.0-85038239250,Article,SNSF,https://api.elsevier.com/content/abstract/scopus_id/85038239250,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85038239250&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85038239250&origin=inward +Hair Cortisol in Twins: Heritability and Genetic Overlap with Psychological Variables and Stress-System Genes,Thurm,Jakob Grove;Albert Hofman;Elisabeth Widen;Aarno Palotie;Stephanie H. Witt;Sarah H. Wild;Liz Rietschel;Harry Campbell;Jonas Bybjerg-Grauholm;Yuri Milaneschi;Susan M. Ring;Henning Tiemeier;Jonathan Ri Coleman;Katri Räikkönen;Fleur P. Velders;Mark Wj Strachan;Luigi Ferrucci;Erin C. Dunn;Cecilia M. Lindgren;Jari Lahti;Eco J.C. De Geus;Andrew Morris;Nese Direk;Michael Gill;Beate St Pourcain;Lars Lind;Craig E. Pennell;Kerrie McAloney;Philip De Jager;Baptiste Couvy-Duchesne;Enda M. Byrne;Klaus Berger;Gu Zhu;Erik Ingelsson;Claes Ohlsson;David A. Bennett;Udo Dannlowski;Stephan Ripke;Marika Kaakinen;Christine Søholm Hansen;Marjo Riitta Järvelin;Jackie F. Price;Rebecca M. Reynolds;Gail Davies;Jennifer L. Bolton;Nicholas J. Timpson;Thalia C. Eley;Robin Pf Dullaart;Toni Kim Clarke;Lynsey S. Hall;James F. Wilson;Igor Rudan;Marie Bækvad-Hansen;Anubha Mahajan;Stephen Jl Bakker;Ian J. Deary;George Davey Smith;David M. Evans;Hilary K. Finucane;Johan G. Eriksson;Na Cai;Valentina Escott-Price;Franziska Degenhardt;Pim Van Der Harst;Nicholas Hastie;Mark J. Adams;Dan Mellstrom;Stephen G. Matthews;Stefania Bandinelli;Tim B. Bigdeli;Enrique Castelao;Toshiko Tanaka;Nick Craddock;Till Fm Andlauer;Scott D. Gordon;Josef Frank;Thomas F. Hansen;Alan Wright;Converge Consortium;Tõnu Esko;Gareth Davies;Eero Kajantie;Jennifer Huffman;Fabian Streit;Tracy M. Air;Erik A. Ehli;Stephen J. Lye;Anna Anderson;Laura N. Anderson;Joel Eriksson;Andre G. Uitterlinden;Aartjan Tf Beekman;Tina M. Binz;Abdel Abdellaoui;Niek Verweij;Silviu Alin Bacanu;Judith Gm Rosmalen;Manuel Mattheisen;Esben Agerbo;Caroline Hayward,2017-12-01,17,Scientific Reports,,10.1038/s41598-017-11852-3,29127340,85033567547,2-s2.0-85033567547,Article,BMBF,https://api.elsevier.com/content/abstract/scopus_id/85033567547,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85033567547&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85033567547&origin=inward +"Intrathecal 2-hydroxypropyl-β-cyclodextrin decreases neurological disease progression in Niemann-Pick disease, type C1: a non-randomised, open-label, phase 1–2 trial",Thurm,John C. McKew;Xuntian Jiang;Cristin D. Davidson;Kimberly A. Walters;Rohini Sidhu;Lee Ann Keener;Xin Xu;Kelly A. King;Ravichandran Rao;Steven U. Walkley;Bernardus N. Machielse;Carmen C. Brewer;Christopher P. Austin;Ariane Soldatos;William J. Pavan;Steven A. Silber;Nicole Yanjanin Farhat;Charles H. Vite;Mark Kao;Daniel S. Ory;Audrey Thurm;Simona Bianconi;Elizabeth Berry-Kravis;Beth Solomon;Forbes D. Porter;Elizabeth A. Ottinger;Lisa Weissfeld,2017-10-14,99,The Lancet,1758-1768,10.1016/S0140-6736(17)31465-4,28803710,85028054200,2-s2.0-85028054200,Article,,https://api.elsevier.com/content/abstract/scopus_id/85028054200,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85028054200&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85028054200&origin=inward +Modelling gesture use and early language development in autism spectrum disorder,Thurm,Audrey Thurm;Danielle L. Mead;Lauren Swineford;Stacy S. Manwaring,2017-09-01,6,International Journal of Language and Communication Disorders,637-651,10.1111/1460-6984.12308,28120370,85028542005,2-s2.0-85028542005,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85028542005,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85028542005&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85028542005&origin=inward +Differential DNA methylation at birth associated with mental disorder in individuals with 22q11.2 deletion syndrome,Thurm,D. M. Hougaard;M. Bertalan;C. B. Pedersen;T. Werge;C. S. Hansen;P. B. Mortensen;W. Mazin;A. Starnawska;J. Bybjerg-Grauholm;T. Sparsø;M. Bækvad-Hansen;S. Weinsheimer;M. Nyegaard;A. Buil;L. Olsen,2017-08-29,9,Translational psychiatry,e1221,10.1038/tp.2017.181,28850114,85046502203,2-s2.0-85046502203,Article,,https://api.elsevier.com/content/abstract/scopus_id/85046502203,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85046502203&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85046502203&origin=inward +Effectiveness of navigator-based prospective motion correction in mprage data acquired at 3T,Talagala,Ajit Shankaranarayanan;Francois Lalonde;Vinai Roopchansingh;Dan Rettmann;S. Lalith Talagala;Joelle E. Sarlls,2018-06-01,2,PLoS ONE,,10.1371/journal.pone.0199372,29953459,85049149728,2-s2.0-85049149728,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85049149728,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85049149728&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85049149728&origin=inward +Individualizing the definition of seizure clusters based on temporal clustering analysis,Theodore,Maxime O. Baud;Vikram R. Rao;Victor Ferastraoaru;William H. Theodore;Sheryl R. Haut;Daniel M. Goldenholz;Sharon Chiang;Robert Moss,2020-07-01,0,Epilepsy Research,,10.1016/j.eplepsyres.2020.106330,32305858,85083239781,2-s2.0-85083239781,Article,TSA,https://api.elsevier.com/content/abstract/scopus_id/85083239781,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85083239781&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85083239781&origin=inward +Prospective validation study of an epilepsy seizure risk system for outpatient evaluation,Theodore,John M. Stern;Marina Vannucci;Vikram R. Rao;William H. Theodore;Daniel M. Goldenholz;Sharon Chiang;Jay Gavvala;Jonathan K. Kleen;Robert Moss;Zulfi Haneef,2020-01-01,3,Epilepsia,29-38,10.1111/epi.16397,31792970,85076111669,2-s2.0-85076111669,Article,BIDMC,https://api.elsevier.com/content/abstract/scopus_id/85076111669,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85076111669&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85076111669&origin=inward +Response to commentary on recommendations for the use of structural MRI in the care of patients with epilepsy: A consensus report from the ILAE Neuroimaging Task Force,Theodore,Andrea Bernasconi;Ingmar Blümcke;Graeme Jackson;Ravnoor S. Gill;Philippe Ryvlin;Paolo Federico;Neda Bernasconi;Angelo Labate;William Theodore;Anna E. Vaudano;Robert Edward Hogan;Matthias Koepp;Fernando Cendes,2019-10-01,0,Epilepsia,2143-2144,10.1111/epi.16324,31468504,85073125733,2-s2.0-85073125733,Letter,,https://api.elsevier.com/content/abstract/scopus_id/85073125733,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85073125733&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85073125733&origin=inward +Convection-Enhanced Delivery of Muscimol in Patients with Drug-Resistant Epilepsy,Theodore,John D. Heiss;William H. Theodore;John A. Butman;Susumu Sato;Davis P. Argersinger;Omar I. Khan,2019-07-01,3,Clinical Neurosurgery,E4-E15,10.1093/neuros/nyy480,30407567,85068196158,2-s2.0-85068196158,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85068196158,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85068196158&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85068196158&origin=inward +Recommendations for the use of structural magnetic resonance imaging in the care of patients with epilepsy: A consensus report from the International League Against Epilepsy Neuroimaging Task Force,Theodore,Andrea Bernasconi;Graeme D. Jackson;Ingmar Blümcke;Ravnoor S. Gill;William H. Theodore;Anna Elisabetta Vaudano;Paolo Federico;Philippe Ryvlin;Neda Bernasconi;Angelo Labate;Robert Edward Hogan;Matthias J. Koepp;Fernando Cendes,2019-06-01,14,Epilepsia,1054-1068,10.1111/epi.15612,31135062,85066798430,2-s2.0-85066798430,Article,,https://api.elsevier.com/content/abstract/scopus_id/85066798430,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85066798430&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85066798430&origin=inward +The feasibility and impact of the EMOVE intervention on self-efficacy and outcome expectations for exercise in epilepsy,Theodore,Elizabeth Galik;William H. Theodore;N. Jennifer Klinedinst;Edythe Wiggs;Irene H. Dustin;Barbara Resnick;Kathleen Michael,2019-04-01,2,Journal of Neuroscience Nursing,95-100,10.1097/JNN.0000000000000425,30649092,85062407663,2-s2.0-85062407663,Article,,https://api.elsevier.com/content/abstract/scopus_id/85062407663,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85062407663&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85062407663&origin=inward +Mortality & recurrent seizure risk after new-onset seizure in HIV-positive Zambian adults,Theodore,Melissa A. Elafros;Igor J. Koralnik;Brent A. Johnson;Gretchen L. Birbeck;Michael J. Potchen;William H. Theodore;Omar K. Siddiqi;Jason F. Okulicz;Lisa Kalungwana;Izukanji Sikazwe;Christopher M. Bositis,2018-12-07,1,BMC Neurology,,10.1186/s12883-018-1205-2,30522451,85058027286,2-s2.0-85058027286,Article,AMAF,https://api.elsevier.com/content/abstract/scopus_id/85058027286,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85058027286&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85058027286&origin=inward +Circadian and circaseptan rhythms in human epilepsy: a retrospective cohort study,Theodore,David B. Grayden;Mark J. Cook;William H. Theodore;Robert E. Moss;Daniel M. Goldenholz;Philippa J. Karoly;Dean R. Freestone,2018-11-01,41,The Lancet Neurology,977-985,10.1016/S1474-4422(18)30274-6,30219655,85055053131,2-s2.0-85055053131,Article,TSA,https://api.elsevier.com/content/abstract/scopus_id/85055053131,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85055053131&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85055053131&origin=inward +Using mobile location data in biomedical research while preserving privacy,Theodore,Kaarkuzhali B. Krishnamurthy;Matthew Tyburski;Barbara Karp;Shira R. Goldenholz;Daniel M. Goldenholz;John Halamka;David Wendler;William Theodore;Kenzie L. Preston;Robert Moss,2018-10-01,3,Journal of the American Medical Informatics Association,1402-1406,10.1093/jamia/ocy071,29889279,85054893196,2-s2.0-85054893196,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85054893196,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85054893196&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85054893196&origin=inward +Characteristics of large patient-reported outcomes: Where can one million seizures get us?,Theodore,Victor Ferastraoaru;William H. Theodore;Daniel M. Goldenholz;Sheryl R. Haut;Sharon Chiang;Robert Moss,2018-09-01,15,Epilepsia Open,364-373,10.1002/epi4.12237,,85061812139,2-s2.0-85061812139,Article,,https://api.elsevier.com/content/abstract/scopus_id/85061812139,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85061812139&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85061812139&origin=inward +The expression of inflammatory markers and their potential influence on efflux transporters in drug-resistant mesial temporal lobe epilepsy tissue,Theodore,Lora D. Weidner;Nicholas Mitsios;Jan Mulder;Pavitra Kannan;William H. Theodore;Robert B. Innis;Sun J. Kang;Matthew D. Hall,2018-08-01,8,Epilepsia,1507-1517,10.1111/epi.14505,30030837,85050742694,2-s2.0-85050742694,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85050742694,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85050742694&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85050742694&origin=inward +Generic antiepileptic drugs—Safe or harmful in patients with epilepsy?,Theodore,Martin Holtkamp;William H. Theodore,2018-07-01,10,Epilepsia,1273-1281,10.1111/epi.14439,29894004,85049519757,2-s2.0-85049519757,Article,,https://api.elsevier.com/content/abstract/scopus_id/85049519757,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85049519757&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85049519757&origin=inward +"Different as night and day: Patterns of isolated seizures, clusters, and status epilepticus",Theodore,Ryan Hodgeman;Marina Gaínza-Lein;Tobias Loddenkemper;William H. Theodore;Daniel M. Goldenholz;Robert Moss;Kshitiz Rakesh;Kush Kapur,2018-05-01,8,Epilepsia,e73-e77,10.1111/epi.14076,29683201,85046379575,2-s2.0-85046379575,Article,,https://api.elsevier.com/content/abstract/scopus_id/85046379575,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85046379575&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85046379575&origin=inward +Is seizure frequency variance a predictable quantity?,Theodore,Sabrina Cristofaro;Kamil Detyniecki;Jacqueline French;Daniel Lowenstein;Sheryl Haut;Mark Cook;William H. Theodore;Shira R. Goldenholz;Daniel M. Goldenholz;John Hixson;Philippa Karoly;Ruben Kuzniecky;Robert Moss;Alex Strashny,2018-02-01,13,Annals of Clinical and Translational Neurology,201-207,10.1002/acn3.519,,85042157583,2-s2.0-85042157583,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85042157583,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85042157583&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85042157583&origin=inward +A multi-dataset time-reversal approach to clinical trial placebo response and the relationship to natural variability in epilepsy,Theodore,Mark Cook;William H. Theodore;Daniel M. Goldenholz;Robert Moss;Alex Strashny,2017-12-01,10,Seizure,31-36,10.1016/j.seizure.2017.10.016,29102709,85032704288,2-s2.0-85032704288,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85032704288,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85032704288&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85032704288&origin=inward +Does accounting for seizure frequency variability increase clinical trial power?,Theodore,Sabrina Cristofaro;Kamil Detyniecki;Jacqueline French;Daniel Lowenstein;Sheryl Haut;Carl Pieper;Mark Cook;William H. Theodore;Shira R. Goldenholz;Daniel M. Goldenholz;John Hixson;Philippa Karoly;Ruben Kuzniecky;Robert Moss;Alex Strashny,2017-11-01,11,Epilepsy Research,145-151,10.1016/j.eplepsyres.2017.07.013,28781216,85028085955,2-s2.0-85028085955,Article,,https://api.elsevier.com/content/abstract/scopus_id/85028085955,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85028085955&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85028085955&origin=inward +"Author response: Practice guideline summary: Use of fMRI in the presurgical evaluation of patients with epilepsy: Report of the Guideline Development, Dissemination, and Implementation Subcommittee of the American Academy of Neurology",Theodore,Jerzy P. Szaflarski;Jeffrey R. Binder;William H. Theodore;Scott K. Holland;David Gloss,2017-08-08,0,Neurology,640-641,10.1212/WNL.0000000000004203,28784637,85026919422,2-s2.0-85026919422,Letter,,https://api.elsevier.com/content/abstract/scopus_id/85026919422,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85026919422&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85026919422&origin=inward +Monte Carlo simulations of randomized clinical trials in epilepsy,Theodore,William H. Theodore;Daniel M. Goldenholz;Evan Myers;Robert Moss;Joseph Tharayil,2017-08-01,8,Annals of Clinical and Translational Neurology,544-552,10.1002/acn3.426,,85027336268,2-s2.0-85027336268,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85027336268,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85027336268&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85027336268&origin=inward +Simulating clinical trials with and without intracranial EEG data,Theodore,Mark J. Cook;William H. Theodore;Daniel M. Goldenholz;Joseph J. Tharayil;Philippa Karoly;Rubin Kuzniecky,2017-06-01,7,Epilepsia Open,156-161,10.1002/epi4.12038,,85044201336,2-s2.0-85044201336,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85044201336,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85044201336&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85044201336&origin=inward +The effect of seizure focus on regional language processing areas,Theodore,Jennifer E. Walker;Eva K. Ritzl;Sususmu Sato;Mekdem Tesfaye;Rebecca E. Fasano;William H. Theodore;Phillip L. Pearl;Madison M. Berl;Joan A. Conry;Elizabeth S. Duke;William D. Gaillard,2012-01-01,13,Epilepsia,1044-1050,10.1111/j.1528-1167.2012.03490.x,,85027957420,2-s2.0-85027957420,Article,,https://api.elsevier.com/content/abstract/scopus_id/85027957420,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85027957420&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85027957420&origin=inward +Imaging: PET Neurotransmitter Receptor Imaging in Epilepsy,Theodore,W. H. Theodore,2009-01-01,0,Encyclopedia of Basic Epilepsy Research,1563-1567,10.1016/B978-012373961-2.00293-9,,85069288853,2-s2.0-85069288853,Chapter,,https://api.elsevier.com/content/abstract/scopus_id/85069288853,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85069288853&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85069288853&origin=inward +Brain stimulation for epilepsy,Theodore,R. Fisher;W. H. Theodore,2007-01-01,50,"Acta Neurochirurgica, Supplementum",261-272,10.1007/978-3-211-33081-4_29,17691312,85052608522,2-s2.0-85052608522,Review,,https://api.elsevier.com/content/abstract/scopus_id/85052608522,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85052608522&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85052608522&origin=inward +Anterior superior temporal sulcus is specialized for non-rigid facial motion in both monkeys and humans,Ungerleider,Leslie G. Ungerleider;Andrea Stacy;Molly Flessert;Shruti Japee;Hui Zhang,2020-09-01,0,NeuroImage,,10.1016/j.neuroimage.2020.116878,,85084490123,2-s2.0-85084490123,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85084490123,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85084490123&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85084490123&origin=inward +From visual awareness to consciousness without sensory input: The role of spontaneous brain activity,Ungerleider,Marine Vernet;Shruti Japee;Romain Quentin;Leslie G. Ungerleider,2020-05-18,1,Cognitive Neuropsychology,216-219,10.1080/02643294.2020.1731442,32093525,85085566392,2-s2.0-85085566392,Note,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85085566392,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85085566392&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85085566392&origin=inward +Accelerating the Evolution of Nonhuman Primate Neuroimaging,Ungerleider,Olivier Coulon;Béchir Jarraya;Zheng Wang;Adrien Meguerditchian;Luciano Simone;Piotr Majka;Julien Sein;Chika Sato;Ming Zhan;Stephanie J. Forkel;Clare Kelly;Renee Hartig;Xiaojin Liu;Karl Heinz Nenning;Wasana Madushanka;Vikas Pareek;Yang Gao;Robert Leech;Amir Shmuel;Damien A. Fair;Fabien Balezeau;David C. Van Essen;Clementine Bodin;Tomoko Sakai;Lei Ai;Andrew Fox;Henry Evrard;Pamela García-Saldivar;Afonso C. Silva;Céline Amiez;Susann Boretius;Christopher I. Petkov;Stephen Sawiak;Bastien Cagna;Wendy Jarrett;Sean Froudist-Walsh;Michele A. Basso;Anna Wang Roe;Colline Poirier;Jonathan Smallwood;Dirk Jan Ardesch;Anna Mitchell;Reza Rajimehr;Jordy Tasserie;Julia Sliwa;Jakob Seidlitz;Mark Prescott;Ioana Sabina Rautu;Kevin Marche;Hank P. Jedema;Antoine Grigis;P. Christiaan Klink;Yannick Becker;Sabine Kastner;Roberto Toro;Julien Vezoli;Sherif Hamdy El-Gohary;Wim Vanduffel;Emmanuel Procyk;Marike Schiffer;Rogier B. Mars;Essa Yacoub;Charles E. Schroeder;Alessandro Gozzi;Ashkan Alvand;Ting Xu;Igor Kagan;Amir Raz;Regis Trapeau;Suliann Ben Hamed;Adam Messinger;Henrietta Howells;Henry Kennedy;Jerome Sallet;Michael Milham;Augix Guohua Xu;Eduardo A. Garza-Villarreal;Román Rossi-Pool;Michael Ortiz-Rios;Hugo Merchant;Bella Williams;Aki Nikolaidis;Lynn Uhrig;Austin Benn;Christopher Madan;Patrick Friedrich;Sara Wells;Ravi S. Menon;Caspar M. Schwiedrzik;Ann Marie Mallon;Takuya Hayashi;Nikoloz Sirmpilatze;Lea Roumazeilles;Katja Heuer;Sze Chai Kwok;Pascal Belin;Daniel S. Margulies;Michel Thiebaut de Schotten;Marco Pagani;Zhi ming Shen,2020-02-19,2,Neuron,600-603,10.1016/j.neuron.2019.12.023,32078795,85079356882,2-s2.0-85079356882,Conference Paper,WT,https://api.elsevier.com/content/abstract/scopus_id/85079356882,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85079356882&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85079356882&origin=inward +"A functional dissociation of face-, body- and scene-selective brain areas based on their response to moving and static stimuli",Ungerleider,David Pitcher;Leslie G. Ungerleider;Geena Ianni,2019-12-01,4,Scientific Reports,,10.1038/s41598-019-44663-9,31160680,85066625037,2-s2.0-85066625037,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85066625037,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85066625037&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85066625037&origin=inward +Intranasal oxytocin selectively modulates the behavior of rhesus monkeys in an expression matching task,Ungerleider,Molly Flessert;Ning Liu;Leslie G. Ungerleider;Jessica Taubert,2019-12-01,0,Scientific Reports,,10.1038/s41598-019-51422-3,31645593,85074099902,2-s2.0-85074099902,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85074099902,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85074099902&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85074099902&origin=inward +Endogenous visuospatial attention increases visual awareness independent of visual discrimination sensitivity,Ungerleider,Marine Vernet;Leslie G. Ungerleider;Sara Ahmed;Valentinos Zachariou;Savannah Lokey;Shruti Japee,2019-05-01,5,Neuropsychologia,297-304,10.1016/j.neuropsychologia.2017.08.015,28807647,85027969530,2-s2.0-85027969530,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85027969530,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85027969530&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85027969530&origin=inward +Time course of cytochrome oxidase blob plasticity in the primary visual cortex of adult monkeys after retinal laser lesions,Ungerleider,Juliana G.M. Soares;Mariana F. Farias;Ricardo Gattass;Leslie G. Ungerleider;Sandra S. Pereira;Ana Karla J. Amorim,2019-02-15,1,Journal of Comparative Neurology,600-613,10.1002/cne.24434,29574781,85045406098,2-s2.0-85045406098,Article,CNPq,https://api.elsevier.com/content/abstract/scopus_id/85045406098,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85045406098&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85045406098&origin=inward +Bottom-up processing of curvilinear visual features is sufficient for animate/inanimate object categorization,Ungerleider,Amanda C. Del Giacco;Valentinos Zachariou;Xiaomin Yue;Leslie G. Ungerleider,2018-11-01,4,Journal of Vision,1-12,10.1167/18.12.3,30458511,85056802021,2-s2.0-85056802021,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85056802021,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85056802021&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85056802021&origin=inward +An Open Resource for Non-human Primate Imaging,Ungerleider,Sabine Kastner;Brian E. Russ;Stefan Everling;Zheng Wang;Christienne G. Damatac;Céline Amiez;Martine Meunier;Doris Tsao;Christopher I. Petkov;Michael P. Milham;Fadila Hadj-Bouziane;Julien Sein;Benjamin Jung;Frank Q. Ye;John H. Morrison;Emmanuel Procyk;Orlin S. Todorov;Rogier B. Mars;Kelvin Mok;Leslie Ungerleider;Alexander Thiele;Ravi S. Menon;Damian A. Fair;Essa Yacoub;Charles E. Schroeder;Aihua Chen;Sean Froudist-Walsh;Timothy D. Griffiths;Jennifer Nacef;David A. Rudko;Michael Christoph Schmid;David A. Leopold;Matthew F.S. Rushworth;Ting Xu;Colline Poirier;Caspar M. Schwiedrzik;Bonhwang Koo;Charles R.E. Wilson;Suliann Ben Hamed;Bechir Jarraya;Adam Messinger;Reza Rajimehr;Jamie Nagy;Winrich Freiwald;Pieter R. Roelfsema;Elinor L. Sullivan;Mark G. Baxter;Yong di Zhou;Bassem Hiba;Paula L. Croxson;Simon M. Reader;Lazar Fleysher;Thomas Brochier;Kevin N. Laland;Jerome Sallet;Sze Chai Kwok;Erwin L.A. Blezer;Wilbert Zarco;Stanislas Dehaene;Mark Pinsk;Noam Harel;Jakob Seidlitz;Patrik Lindenfors;Carole Guedj;Amir Shmuel;Daniel S. Margulies;Fabien Balezeau;P. Christiaan Klink;Michael Ortiz Rios;Lei Ai,2018-10-10,31,Neuron,61-74.e2,10.1016/j.neuron.2018.08.039,30269990,85054168541,2-s2.0-85054168541,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85054168541,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85054168541&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85054168541&origin=inward +The role of inferior frontal junction in controlling the spatially global effect of feature-based attention in human visual areas,Ungerleider,Xilin Zhang;Leslie G. Ungerleider;Sara Ahmed;Nicole Mlynaryk;Shruti Japee,2018-06-01,7,PLoS Biology,,10.1371/journal.pbio.2005399,29939981,85049380773,2-s2.0-85049380773,Article,,https://api.elsevier.com/content/abstract/scopus_id/85049380773,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85049380773&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85049380773&origin=inward +Attentional selection of multiple objects in the human visual system,Ungerleider,Shruti Japee;Nicole Mlynaryk;Xilin Zhang;Leslie G. Ungerleider,2017-12-01,5,NeuroImage,231-243,10.1016/j.neuroimage.2017.09.050,28951352,85030184023,2-s2.0-85030184023,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85030184023,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85030184023&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85030184023&origin=inward +Reply to Vinken and Vogels,Ungerleider,Chris Summerfield;Andrew H. Bell;Leslie G. Ungerleider;Nicholas J. Malecek;Elyse L. Morin,2017-11-20,3,Current Biology,R1212-R1213,10.1016/j.cub.2017.09.021,29161557,85035069510,2-s2.0-85035069510,Letter,,https://api.elsevier.com/content/abstract/scopus_id/85035069510,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85035069510&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85035069510&origin=inward +Face Pareidolia in the Rhesus Monkey,Ungerleider,Susan G. Wardle;Leslie G. Ungerleider;Molly Flessert;Jessica Taubert;David A. Leopold,2017-08-21,19,Current Biology,2505-2509.e2,10.1016/j.cub.2017.06.075,28803877,85028335553,2-s2.0-85028335553,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85028335553,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85028335553&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85028335553&origin=inward +Spatial mechanisms within the dorsal visual pathway contribute to the configural processing of faces,Ungerleider,Christine V. Nikas;Zaid N. Safiullah;Leslie G. Ungerleider;Stephen J. Gotts;Valentinos Zachariou,2017-08-01,15,Cerebral Cortex,4124-4138,10.1093/cercor/bhw224,27522076,85026505564,2-s2.0-85026505564,Article,,https://api.elsevier.com/content/abstract/scopus_id/85026505564,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85026505564&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85026505564&origin=inward +Preference for averageness in faces does not generalize to non-human primates,Ungerleider,Olivia B. Tomeo;Ning Liu;Leslie G. Ungerleider,2017-07-11,3,Frontiers in Behavioral Neuroscience,,10.3389/fnbeh.2017.00129,,85027833099,2-s2.0-85027833099,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85027833099,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85027833099&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85027833099&origin=inward +Facial Expressions Evoke Differential Neural Coupling in Macaques,Ungerleider,Fadila Hadj-Bouziane;Leslie G. Ungerleider;Alumit Ishai;Ning Liu;Rosalyn Moran,2017-02-01,5,"Cerebral cortex (New York, N.Y. : 1991)",1524-1531,10.1093/cercor/bhv345,26759479,85043295407,2-s2.0-85043295407,Article,,https://api.elsevier.com/content/abstract/scopus_id/85043295407,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85043295407&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85043295407&origin=inward +The fusiform and occipital face areas can process a nonface category equivalently to faces,Ungerleider,Zaid N. Safiullah;Valentinos Zachariou;Leslie G. Ungerleider,2017-01-01,2,Journal of Cognitive Neuroscience,1499-1516,10.1162/jocn_a_01288,29877768,85052691396,2-s2.0-85052691396,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85052691396,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85052691396&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85052691396&origin=inward +Mendelian randomization implies no direct causal association between leukocyte telomere length and amyotrophic lateral sclerosis,Wassermann,Dena G. Hernandez;John Collinge;Julie van der Zee;Daniela Galimberti;Jonathan D. Rohrer;Xinghao Yu;Giuliano Binetti;James Uphill;Christine Van Broeckhoven;Jørgen E. Nielsen;Adrian Danek;Panagiotis Alexopoulos;Stefano F. Cappa;Barbara Borroni;Maria Serpente;Sara Ortega-Cubero;Eric M. Wassermann;Peter St George-Hyslop;Ian R.A. Mackenzie;Benedetta Nacmias;Carol Dobson-Stone;James B. Rowe;Christopher M. Morris;Matthias Riemenschneider;Jordan Grafman;Christer Nilsson;Lena E. Hjermind;John B.J. Kwok;Eric Haan;Lorenzo Pinessi;Michael A. Nalls;Alexander Kurz;Alan J. Thomas;Robert Perneczky;Peter R. Schofield;Nigel J. Cairns;Timothy D. Griffiths;Lauren Bartley;Marc Cruts;Alessandro Padovani;Ian G. McKeith;Sabrina Pichler;Roberta Ghidoni;Elisa Rubino;Rafael Blesa;Janine Diehl-Schmid;Silvia Bagnoli;Ekaterina Rogaeva;Carlos Cruchaga;Johannes C.M. Schlachetzki;Gilles Gasparoni;Pau Pastor;William S. Brooks;Glenda M. Halliday;Giacomina Rossi;Yixin Gao;Giorgio Giaccone;Mercè Boada;Ting Wang;Elizabeth Thompson;Adaikalavan Ramasamy;Karin Nilsson;Ging Yuek R. Hsiung;Isabelle Leber;Elio Scarpini;Fabrizio Tagliavini;Simon Mead;Alexis Brice;Sandro Sorbi;Pietro Pietrini;Atik Baborie;Gianluigi Forloni;Luisa Benussi;Martine Vercelletto;Véronique Golfier;John R. Hodges;Murray Grossman;Raffaele Ferrari;Vivianna M. Van Deerlin;Evelyn Jaros;Chiara Fenoglio;Bernd Ibach;David M.A. Mann;Didier Hannequin;Agustín Ruiz;Elena Alonso;Maria Landqvist Waldö;John Q. Trojanowski;Johannes Attems;Cristina Razquin;Olivier Piguet;Edward D. Huey;Michael C. Tierney;Irene Piaceri;Isabel Hernández;Jordi Clarimón;Innocenzo Rainero;Manuel Mayhaus;Alberto Lleó;Diego Albani,2020-12-01,0,Scientific Reports,,10.1038/s41598-020-68848-9,32699404,85088385622,2-s2.0-85088385622,Article,PAPD,https://api.elsevier.com/content/abstract/scopus_id/85088385622,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85088385622&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85088385622&origin=inward +Prism Adaptation Modulates Connectivity of the Intraparietal Sulcus with Multiple Brain Networks,Wassermann,Eric M. Wassermann;Selene Schintu;Michael Freedberg;Stephen J. Gotts;Catherine A. Cunningham;Sarah Shomstein;Zaynah M. Alam,2020-07-30,0,"Cerebral cortex (New York, N.Y. : 1991)",4747-4758,10.1093/cercor/bhaa032,32313949,85088882335,2-s2.0-85088882335,Article,,https://api.elsevier.com/content/abstract/scopus_id/85088882335,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85088882335&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85088882335&origin=inward +"Correction to: A nonsynonymous mutation in PLCG2 reduces the risk of Alzheimer’s disease, dementia with Lewy bodies and frontotemporal dementia, and increases the likelihood of longevity (Acta Neuropathologica, (2019), 138, 2, (237-250), 10.1007/s00401-019-02026-8)",Wassermann,Kristel R. van Eijk;Jeanne E. Savage;Marianne Nygaard;D. Galimberti;Steffi Riedel-Heller;R. Ferrari;Kaj Blennow;O. Piguet;G. M. Halliday;Wei Wei;L. Benussi;Xue Wang;K. Nilsson;J. D. Rohrer;Anna Zettergren;C. Fenoglio;Sven J. van der Lee;Itziar de Rojas;Carmen Lage;Minerva M. Carrasquillo;Manuel A. Friese;Olga Pletnikova;Bernard Jeune;Najada Stringa;Juan Fortea;Christopher M. Morris;A. Ramasamy;Sonia Moreno-Grau;Daniel Alcolea;M. A. Nalls;Erik van den Akker;Michael J. Keogh;Nina Beker;Niccolo Tesi;D. G. Hernandez;Ignacio Illán-Gala;M. Landqvist Waldö;Jason A. Chen;Adelina Orellana;D. Albani;B. Borroni;Bart N.M. van Berckel;E. Scarpini;P. Pietrini;J. C. van Swieten;C. Dobson-Stone;R. Ghidoni;G. Forloni;D. M.A. Mann;Javier Simon-Sanchez;E. D. Huey;Samantha L. Strickland;M. Serpente;Olivia J. Conway;Eloy Rodríguez Rodríguez;J. B.J. Kwok;M. Synofzik;Begoña Indakoetxea;Ingmar Skoog;Martin Scherer;A. Padovani;Pau Pastor;Monica Diez-Fairen;Jonas Mengel-From;Marc Hulsman;I. Leber;C. Cruchaga;P. R. Schofield;Luca Kleineidam;A. J. Thomas;I. G. McKeith;C. Nilsson;E. Thompson;Estrella Morenas-Rodríguez;E. M. Wassermann;N. J. Cairns;Henrik Zetterberg;Cornelis Blauwendraat;James W. Ironside;Heinz Wiendl;Florian Then Bergh;L. Bartley;R. Blesa;C. M. Morris;Michael Wagner;Lyduine E. Collij;Miren Zulaica;J. Attems;S. Mead;G. Binetti;A. Baborie;I. R.A. Mackenzie;J. Grafman;T. D. Griffiths;Iris Jansen;Till F.M. Andlauer;Isabel Hernández;J. R. Hodges;Alberto Lleó;G. Y.R. Hsiung,2020-05-01,0,Acta Neuropathologica,959-962,10.1007/s00401-019-02107-8,31955222,85078622953,2-s2.0-85078622953,Erratum,JPND,https://api.elsevier.com/content/abstract/scopus_id/85078622953,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85078622953&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85078622953&origin=inward +Competitive and cooperative interactions between medial temporal and striatal learning systems,Wassermann,Michael Freedberg;Joel L. Voss;Andrew C. Toader;Eric M. Wassermann,2020-01-01,0,Neuropsychologia,,10.1016/j.neuropsychologia.2019.107257,31733236,85075204131,2-s2.0-85075204131,Review,CNRM,https://api.elsevier.com/content/abstract/scopus_id/85075204131,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85075204131&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85075204131&origin=inward +Identifying site- and stimulation-specific TMS-evoked EEG potentials using a quantitative cosine similarity metric,Wassermann,Sara J. Hussain;Eric M. Wassermann;Kareem A. Zaghloul;Michael Freedberg;Jack A. Reeves,2020-01-01,1,PLoS ONE,,10.1371/journal.pone.0216185,31929531,85077765373,2-s2.0-85077765373,Article,,https://api.elsevier.com/content/abstract/scopus_id/85077765373,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85077765373&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85077765373&origin=inward +A Novel Technique to Trigger High Beta and Low Gamma Activity in Patients with Schizophrenia,Wassermann,Eysteinn Ívarsson;Aníta Ósk Georgsdóttir;Alec Shaw;Ovidiu C. Banea;Paolo Gargiulo;Sigurjón B. Stefansson;Brynja B. Magnúsdóttir;Eric Wassermann;Aron D. Jónasson,2020-01-01,0,IFMBE Proceedings,1064-1070,10.1007/978-3-030-31635-8_129,,85075863981,2-s2.0-85075863981,Conference Paper,,https://api.elsevier.com/content/abstract/scopus_id/85075863981,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85075863981&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85075863981&origin=inward +"Transcranial Magnetic Stimulation for Pain, Headache, and Comorbid Depression: INS-NANS Expert Consensus Panel Review and Recommendation",Wassermann,Brian Kopell;Joshua Kuluva;Michael Vaninetti;Robert Levy;Lawrence Poree;Robert Chen;Prasad Shirvalkar;Albert Leung;Eric Wassermann;Richard Bermudes,2020-01-01,0,Neuromodulation,,10.1111/ner.13094,32212288,85083372475,2-s2.0-85083372475,Review,,https://api.elsevier.com/content/abstract/scopus_id/85083372475,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85083372475&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85083372475&origin=inward +P50 and P300 Event Related Potentials in Patients with Schizophrenia Recorded from High-Density EEG,Wassermann,Rún Friðriksdóttir;Eysteinn Ívarsson;Brynja B. Magnusdóttir;Elena Pegolo;Viktor D. Jónasson;Ovidiu C. Banea;Paolo Gargiulo;Eric Wassermann;Sara Marcu;Magnús Haraldsson;Aron D. Jónasson,2020-01-01,0,IFMBE Proceedings,1071-1077,10.1007/978-3-030-31635-8_130,,85075900508,2-s2.0-85075900508,Conference Paper,,https://api.elsevier.com/content/abstract/scopus_id/85075900508,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85075900508&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85075900508&origin=inward +Genetic variation across RNA metabolism and cell death gene networks is implicated in the semantic variant of primary progressive aphasia,Wassermann,J. Q. Trojanowski;A. Kurz;D. Galimberti;O. Piguet;S. Ortega-Cubero;G. M. Halliday;L. Benussi;E. Alonso;M. Landqvist Waldö;K. Nilsson;J. D. Rohrer;C. Fenoglio;A. Lleó;Maria Luisa Gorno-Tempini;Luke W. Bonham;Sergio E. Baranzini;Patrick Lewis;A. Ramasamy;M. Boada;Jennifer S. Yokoyama;L. Pinessi;Claudia Manzoni;P. Alexopoulos;Iris Broce;M. A. Nalls;I. Rainero;C. Razquin;E. Rogaeva;J. C.M. Schlachetzki;Parastoo Momeni;D. G. Hernandez;R. Perneczky;Zachary A. Miller;P. St George-Hyslop;J. Clarimón;D. Albani;B. Borroni;J. B. Rowe;E. Scarpini;William W. Seeley;P. Pietrini;C. Dobson-Stone;R. Ghidoni;G. Forloni;D. M.A. Mann;E. D. Huey;Celeste M. Karch;Natasha Z.R. Steele;M. Serpente;J. van der Zee;J. B.J. Kwok;John Hardy;M. Cruts;A. Padovani;S. F. Cappa;Rahul S. Desikan;Christopher P. Hess;I. Leber;V. M. Van Deerlin;E. Jaros;C. Cruchaga;E. Rubino;P. R. Schofield;M. C. Tierney;A. J. Thomas;P. Pastor;I. G. McKeith;C. Nilsson;E. Thompson;E. M. Wassermann;N. J. Cairns;J. Collinge;G. Rossi;F. Tagliavini;E. Haan;M. Grossman;A. Danek;L. Bartley;Raffaele Ferrari;R. Blesa;I. Hernández;C. M. Morris;D. Hannequin;Ethan G. Geier;J. Attems;S. Mead;A. Ruiz;G. Binetti;A. Baborie;I. R.A. Mackenzie;J. Grafman;G. Giaccone;T. D. Griffiths;Bruce L. Miller;J. Diehl-Schmid;J. Uphill;Natalie L. Wen;C. Van Broeckhoven;J. R. Hodges;G. Y.R. Hsiung,2019-12-01,0,Scientific Reports,,10.1038/s41598-019-46415-1,31350420,85069717816,2-s2.0-85069717816,Article,RSNA,https://api.elsevier.com/content/abstract/scopus_id/85069717816,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85069717816&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85069717816&origin=inward +Motor cortex inhibition and modulation in children with ADHD,Wassermann,Eric M. Wassermann;Stewart H. Mostofsky;Kathryn Hirabayashi;David A. Huddleston;Donald L. Gilbert;Steve W. Wu;Paul S. Horn;Deanna Crocetti;Ernest V. Pedapati,2019-08-06,2,Neurology,E599-E610,10.1212/WNL.0000000000007899,31315973,85071069777,2-s2.0-85071069777,Article,TAA,https://api.elsevier.com/content/abstract/scopus_id/85071069777,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85071069777&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85071069777&origin=inward +Seizures from transcranial magnetic stimulation 2012–2016: Results of a survey of active laboratories and clinics,Wassermann,Eric M. Wassermann;Diana I. Tamir;Adam J. Lerner,2019-08-01,9,Clinical Neurophysiology,1409-1416,10.1016/j.clinph.2019.03.016,31104898,85065514281,2-s2.0-85065514281,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85065514281,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85065514281&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85065514281&origin=inward +FDG-PET patterns associated with underlying pathology in corticobasal syndrome,Wassermann,Flavio Nobili;Eric M. Wassermann;Jordan Grafman;Bernardino Ghetti;Silvia Morbelli;Edward D. Huey;Salvatore Spina;Matteo Pardini;William C. Kreisl,2019-03-05,7,Neurology,E1121-E1135,10.1212/WNL.0000000000007038,30700592,85062396362,2-s2.0-85062396362,Article,,https://api.elsevier.com/content/abstract/scopus_id/85062396362,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85062396362&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85062396362&origin=inward +Persistent enhancement of hippocampal network connectivity by parietal rTMS is reproducible,Wassermann,Andrew C. Toader;Eric M. Wassermann;Michael Freedberg;Molly S. Hermiller;Joel L. Voss;Jack A. Reeves,2019-01-01,2,eNeuro,,10.1523/ENEURO.0129-19.2019,31591137,85073489418,2-s2.0-85073489418,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85073489418,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85073489418&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85073489418&origin=inward +Optimizing Hippocampal-Cortical Network Modulation via Repetitive Transcranial Magnetic Stimulation: A Dose-Finding Study Using the Continual Reassessment Method,Wassermann,Andrew C. Toader;Eric M. Wassermann;Ying Kuen Cheung;Michael Freedberg;Eunhee Kim;Molly S. Hermiller;Joel L. Voss;Jack A. Reeves;Dietrich Haubenberger,2019-01-01,0,Neuromodulation,,10.1111/ner.13052,31667947,85074771625,2-s2.0-85074771625,Article,NIMH,https://api.elsevier.com/content/abstract/scopus_id/85074771625,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85074771625&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85074771625&origin=inward +Identification of evolutionarily conserved gene networks mediating neurodegenerative dementia,Wassermann,Hiroyoshi Toyoshiba;Dena G. Hernandez;John Collinge;Julie van der Zee;Daniela Galimberti;Jonathan D. Rohrer;Giuliano Binetti;James Uphill;Christine Van Broeckhoven;Adrian Danek;Panagiotis Alexopoulos;Stefano F. Cappa;Barbara Borroni;Vivek Swarup;Maria Serpente;Stephen J. Haggarty;Sara Ortega-Cubero;Eric M. Wassermann;Peter St George-Hyslop;Flora I. Hinz;Ian R.A. Mackenzie;Carol Dobson-Stone;James B. Rowe;Christopher M. Morris;Jordan Grafman;Christer Nilsson;John B.J. Kwok;Eric Haan;Lorenzo Pinessi;Michael A. Nalls;Alexander Kurz;Parastoo Momeni;Alan J. Thomas;Robert Perneczky;Peter R. Schofield;Nigel J. Cairns;Timothy D. Griffiths;Lauren Bartley;Marc Cruts;Alessandro Padovani;Ian G. McKeith;Roberta Ghidoni;Elisa Rubino;Rafael Blesa;Janine Diehl-Schmid;Arjun Sarkar;Ekaterina Rogaeva;Carlos Cruchaga;Johannes C.M. Schlachetzki;John Hardy;Nicholas T. Seyfried;Chialin Cheng;Pau Pastor;William S. Brooks;Glenda M. Halliday;Giacomina Rossi;Giorgio Giaccone;Andrew B. Singleton;Mercè Boada;Jessica E. Rexach;Elizabeth Thompson;Adaikalavan Ramasamy;Karin Nilsson;Ging Yuek R. Hsiung;Isabelle Leber;Elio Scarpini;Fabrizio Tagliavini;Simon Mead;Alexis Brice;Keisuke Hirai;Pietro Pietrini;Atik Baborie;Akira Oda;Gianluigi Forloni;Luisa Benussi;Véronique Golfier;John R. Hodges;Murray Grossman;Raffaele Ferrari;Vivianna M. Van Deerlin;Evelyn Jaros;Chiara Fenoglio;David M.A. Mann;Didier Hannequin;Ken ichi Noguchi;Agustín Ruiz;Elena Alonso;Maria Landqvist Waldö;John Q. Trojanowski;Johannes Attems;Cristina Razquin;Stuart Pickering-Brown;Olivier Piguet;Edward D. Huey;Michael C. Tierney;Isabel Hernández;Jordi Clarimón;Innocenzo Rainero;Alberto Lleó;Diego Albani,2019-01-01,10,Nature Medicine,152-164,10.1038/s41591-018-0223-3,30510257,85058010718,2-s2.0-85058010718,Article,NIA,https://api.elsevier.com/content/abstract/scopus_id/85058010718,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85058010718&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85058010718&origin=inward +Left-shifting prism adaptation boosts reward-based learning,Wassermann,Eric M. Wassermann;Selene Schintu;Michael Freedberg;Sarah Shomstein;Zaynah M. Alam,2018-12-01,2,Cortex,279-286,10.1016/j.cortex.2018.09.021,30399479,85055890342,2-s2.0-85055890342,Article,NSF,https://api.elsevier.com/content/abstract/scopus_id/85055890342,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85055890342&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85055890342&origin=inward +CXCR4 involvement in neurodegenerative diseases,Wassermann,J. Q. Trojanowski;A. Kurz;D. Galimberti;O. Piguet;S. Ortega-Cubero;G. M. Halliday;I. R.A. MacKenzie;William P. Dillon;L. Benussi;Leo P. Sugrue;Matthew J. Barkovich;E. Alonso;K. Nilsson;J. D. Rohrer;C. Fenoglio;A. Lleó;Günter Höglinger;Luke W. Bonham;A. Ramasamy;M. Boada;Jennifer S. Yokoyama;L. Pinessi;Natalie Wen;P. Alexopoulos;M. A. Nalls;I. Rainero;C. Razquin;E. Rogaeva;J. C.M. Schlachetzki;Parastoo Momeni;D. G. Hernandez;R. Perneczky;M. Landqvist Waldö;P. St George-Hyslop;J. Clarimón;D. Albani;B. Borroni;J. B. Rowe;E. Scarpini;P. Pietrini;Iris J. Broce;C. Dobson-Stone;R. Ghidoni;G. Forloni;D. M.A. Mann;E. D. Huey;Celeste M. Karch;M. Serpente;J. B.J. Kwok;John Hardy;Yi Li;A. Padovani;Rahul S. Desikan;Christopher P. Hess;E. Jaros;C. Cruchaga;E. Rubino;P. R. Schofield;M. C. Tierney;A. J. Thomas;P. Pastor;I. G. McKeith;C. Nilsson;E. Thompson;Chun C. Fan;E. M. Wassermann;Gerard D. Schellenberg;N. J. Cairns;J. Collinge;G. Rossi;Ole A. Andreassen;F. Tagliavini;Anders M. Dale;E. Haan;M. Grossman;V. M. Van Deerlin;A. Danek;L. Bartley;Raffaele Ferrari;R. Blesa;I. Hernández;C. M. Morris;Ulrich Müller;Ethan G. Geier;J. Attems;S. Mead;A. Ruiz;G. Binetti;A. Baborie;Chin Tan;J. Grafman;A. James Barkovich;G. Giaccone;T. D. Griffiths;Bruce L. Miller;Yunpeng Wang;J. Diehl-Schmid;J. Uphill;J. R. Hodges;G. Y.R. Hsiung,2018-12-01,13,Translational Psychiatry,,10.1038/s41398-017-0049-7,29636460,85045350217,2-s2.0-85045350217,Article,JPND,https://api.elsevier.com/content/abstract/scopus_id/85045350217,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85045350217&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85045350217&origin=inward +Imaging of Cerebrovascular Function in Chronic Traumatic Brain Injury,Wassermann,Kimbra Kenney;Eric M. Wassermann;Carol Moore;Hanzhang Y. Lu;Margalit Haber;Leah Harburg;L. Christine Turtzo;Christian Shenouda;Bao Xi Qu;Yunhua Gong;Ramon Diaz-Arrastia;Franck Amyot;Erika Silverman,2018-05-15,10,Journal of Neurotrauma,1116-1123,10.1089/neu.2017.5114,29065769,85045459404,2-s2.0-85045459404,Article,,https://api.elsevier.com/content/abstract/scopus_id/85045459404,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85045459404&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85045459404&origin=inward +Phosphodiesterase-5 inhibition potentiates cerebrovascular reactivity in chronic traumatic brain injury,Wassermann,Kimbra Kenney;Eric M. Wassermann;Carol Moore;Hanzhang Lu;Margalit Haber;Leah Harburg;L. Christine Turtzo;Christian Shenouda;Bao Xi Qu;Yunhua Gong;Ramon Diaz-Arrastia;Franck Amyot;Erika Silverman,2018-04-01,3,Annals of Clinical and Translational Neurology,418-428,10.1002/acn3.541,,85043235282,2-s2.0-85043235282,Article,,https://api.elsevier.com/content/abstract/scopus_id/85043235282,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85043235282&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85043235282&origin=inward +Assessment of patient self-awareness and related neural correlates in frontotemporal dementia and corticobasal syndrome,Wassermann,Edward Huey;Jordan Grafman;Sarah Levy;David Gansler;Eric Wassermann,2018-01-01,3,Archives of Clinical Neuropsychology,519-529,10.1093/arclin/acx105,29088311,85055617522,2-s2.0-85055617522,Article,NINDS,https://api.elsevier.com/content/abstract/scopus_id/85055617522,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85055617522&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85055617522&origin=inward +Immune-related genetic enrichment in frontotemporal dementia: An analysis of genome-wide association studies,Wassermann,Dena G. Hernandez;Daniela Galimberti;Jonathan D. Rohrer;Giuliano Binetti;James Uphill;William P. Dillon;Leo P. Sugrue;Panagiotis Alexopoulos;Gil D. Rabinovici;Barbara Borroni;Maria Serpente;Sara Ortega-Cubero;Eric M. Wassermann;Peter St George-Hyslop;Luke W. Bonham;Ian R.A. Mackenzie;Carol Dobson-Stone;James B. Rowe;Christopher M. Morris;Jennifer S. Yokoyama;Natalie Wen;Jordan Grafman;Iris Broce;Christer Nilsson;John B.J. Kwok;Eric Haan;Lorenzo Pinessi;Michael A. Nalls;Alexander Kurz;Howard J. Rosen;Parastoo Momeni;Alan J. Thomas;Robert Perneczky;Peter R. Schofield;Nigel J. Cairns;Timothy D. Griffiths;Lauren Bartley;Zachary A. Miller;Alessandro Padovani;Andre Franke;Roberta Ghidoni;Naomi Kouri;Elisa Rubino;Rafael Blesa;Janine Diehl-Schmid;Günter U. Höglinger;Celeste M. Karch;Ekaterina Rogaeva;Carlos Cruchaga;Johannes C.M. Schlachetzki;John Hardy;Pau Pastor;Ian G McKeith;William S. Brooks;Glenda M. Halliday;Giacomina Rossi;Rahul S. Desikan;Christopher P. Hess;Giorgio Giaccone;Mercè Boada;Chin Hong Tan;Adaikalavan Ramasamy;Elizabeth Thompson;Karin Nilsson;Ging Yuek R. Hsiung;Elio Scarpini;Fabrizio Tagliavini;Ulrich Muller;Chun C. Fan;Tom H. Karlsen;Pietro Pietrini;Gerard D. Schellenberg;Atik Baborie;Ole A. Andreassen;Owen A. Ross;Anders M. Dale;Gianluigi Forloni;Luisa Benussi;John R. Hodges;Raffaele Ferrari;Evelyn Jaros;Chiara Fenoglio;David M.A. Mann;Jan H. Veldink;Agustín Ruiz;Elena Alonso;Maria Landqvist Waldö;Bruce L. Miller;Yunpeng Wang;Johannes Attems;Cristina Razquin;Olivier Piguet;Edward D. Huey;Michael C. Tierney;Isabel Hernández;Jordi Clarimón;Innocenzo Rainero;Alberto Lleó;Diego Albani,2018-01-01,38,PLoS Medicine,,10.1371/journal.pmed.1002487,29315334,85041689945,2-s2.0-85041689945,Article,RSNA,https://api.elsevier.com/content/abstract/scopus_id/85041689945,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85041689945&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85041689945&origin=inward +Motor cortex inhibition by TMS reduces cognitive non-motor procedural learning when immediate incentives are present,Wassermann,Eric M. Wassermann;Philip J. Koshy;Selene Schintu;Leonora Wilkinson;Devin Bageac;Adam Steel,2017-12-01,1,Cortex,70-80,10.1016/j.cortex.2017.10.001,29096197,85032330001,2-s2.0-85032330001,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85032330001,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85032330001&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85032330001&origin=inward +Neuromodulation directed at the prefrontal cortex of subjects with obesity reduces snack food intake and hunger in a randomized trial,Wassermann,Paolo Piaggi;Emma J. Stinson;Martin Reinhardt;Eric M. Wassermann;Sascha Heinitz;Jonathan Krakoff;Susanne B. Votruba;Marci E. Gluck;Colleen Venti;Miguel Alonso-Alonso;Enrique Diaz;Christopher M. Weise,2017-12-01,19,American Journal of Clinical Nutrition,1347-1357,10.3945/ajcn.117.158089,29046305,85038129513,2-s2.0-85038129513,Article,NIH,https://api.elsevier.com/content/abstract/scopus_id/85038129513,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85038129513&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85038129513&origin=inward +Susceptible genes and disease mechanisms identified in frontotemporal dementia and frontotemporal dementia with Amyotrophic Lateral Sclerosis by DNA-methylation and GWAS,Wassermann,J. Q. Trojanowski;S. Bagnoli;A. Kurz;D. Galimberti;J. H. Veldink;R. Ferrari;O. Piguet;S. Ortega-Cubero;G. M. Halliday;L. Benussi;E. Alonso;K. Nilsson;J. D. Rohrer;J. E. Nielsen;C. Fenoglio;S. van der Sluis;A. Lleó;D. Posthuma;L. E. Hjermind;B. Nacmias;A. B. Smit;A. Ramasamy;L. Pinessi;M. Boada;P. Alexopoulos;M. A. Nalls;I. Rainero;C. Razquin;E. Rogaeva;J. C.M. Schlachetzki;D. G. Hernandez;A. Mishra;R. Perneczky;M. Landqvist Waldö;M. A. van Es;P. St George-Hyslop;J. Clarimón;D. Albani;B. Borroni;J. B. Rowe;E. Scarpini;P. Pietrini;I. Piaceri;C. Dobson-Stone;R. Ghidoni;G. Forloni;D. M.A. Mann;E. D. Huey;M. Serpente;J. van der Zee;S. Sorbi;J. B.J. Kwok;A. Padovani;S. F. Cappa;C. Van Broeckhoven;Y. Pijnenburg;I. Leber;E. Taskesen;E. Jaros;C. Cruchaga;E. Rubino;P. R. Schofield;M. C. Tierney;A. J. Thomas;P. Pastor;I. G. McKeith;C. Nilsson;E. Thompson;E. M. Wassermann;N. J. Cairns;J. Collinge;G. Rossi;M. Riemenschneider;F. Tagliavini;E. Haan;M. Grossman;V. M. Van Deerlin;M. Vercelletto;A. Danek;L. Bartley;V. Golfier;R. Blesa;A. Brice;I. Hernández;C. M. Morris;D. Hannequin;J. Attems;S. Mead;A. Ruiz;G. Binetti;A. Baborie;M. Mayhaus;I. R.A. Mackenzie;J. Grafman;G. Giaccone;T. D. Griffiths;J. Diehl-Schmid;J. Uphill;J. R. Hodges;G. Y.R. Hsiung,2017-12-01,12,Scientific Reports,,10.1038/s41598-017-09320-z,28827549,85029377334,2-s2.0-85029377334,Article,NWO,https://api.elsevier.com/content/abstract/scopus_id/85029377334,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85029377334&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85029377334&origin=inward +Transcranial magnetic stimulation may improve symptoms of hemiparesis,Wassermann,Eric Wassermann,2014-01-01,0,Journal of Pediatrics,207-210,10.1016/j.jpeds.2014.04.024,24973163,85058251634,2-s2.0-85058251634,Article,,https://api.elsevier.com/content/abstract/scopus_id/85058251634,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85058251634&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85058251634&origin=inward +What is the optimal serum level for lithium in the maintenance treatment of bipolar disorder? A systematic review and recommendations from the ISBD/IGSLI Task Force on treatment with lithium,Zarate,Ross J. Baldessarini;Gin S. Malhi;Carlos Zarate;Allan H. Young;Eduard Vieta;René E. Nielsen;Emanuel Severus;Rasmus W. Licht;Mauricio Tohen;Willem A. Nolen;Ralph W. Kupka,2019-01-01,18,Bipolar Disorders,394-409,10.1111/bdi.12805,31112628,85067871028,2-s2.0-85067871028,Review,NIHR,https://api.elsevier.com/content/abstract/scopus_id/85067871028,https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=85067871028&origin=inward,https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=85067871028&origin=inward diff --git a/data/raw/investigator_ics.csv b/data/raw/investigator_ics.csv new file mode 100644 index 0000000..22adacf --- /dev/null +++ b/data/raw/investigator_ics.csv @@ -0,0 +1,86 @@ +Author Name,scopus_id,ORCID ID,IC +Lauren Atlas,57200609045,,NCCIH +Chris Baker,55175093900,,NIMH +Peter Bandettini,7004212644,,NIMH +Peter Bandettini,54681661600,,NIMH +Peter Basser,7005651229,,NINDS +Karen Berman,35350708000,,NIMH +Karen Berman,56855135500,,NIMH +Karen Berman,6507969098,,NIMH +Bibiana Bielekova,55917319300,,NINDS +Robert James Blair,25647145100,,NIMH +Robert James Blair,15065008000,,NIMH +Robert James Blair,7201371910,,NIMH +Robert James Blair,56704360300,,NIMH +Catherine Bushnell,7005808290,,NCCIH +Joyce Chung,7404002698,,NIMH +Leonardo Cohen,7403928815,,NINDS +Leonardo Cohen,56898418100,,NINDS +Irene Cortese,6701800722,,NINDS +Jeff Duyn,35515600800,,NINDS +Mary Kay Floeter,7003866703,,NINDS +Christian Grillon,35350653100,,NIMH +Christian Grillon,35351754400,,NIMH +Mark Hallett,7202164831,,NINDS +Mark Hallett,34569700100,,NINDS +Mark Hallett,7202164867,,NINDS +Mark Hallett,55552602400,,NINDS +Mark Hallett,56745536000,,NINDS +Mark Hallett,57014383800,,NINDS +Mark Hallett,56591714300,,NINDS +Mark Hallett,56713614200,,NINDS +Daniel Hommer,7005988771,,NIAAA +Barry Horwitz,35426728600,,NIDCD +Sara Inati,18233454300,,NINDS +Steven Jacobson,56498497600,,NINDS +Alan Koretsky,7005144462,,NINDS +Alan Koretsky,56725238200,,NINDS +Alan Koretsky,35262168300,,NINDS +Lawrence Latour,7003471668,,NINDS +Ellen Leibenluft,16943112200,,NIMH +Ellen Leibenluft,56544188200,,NIMH +Ellen Leibenluft,56816576600,,NIMH +Lorenzo Leggio,57203195661,,NIAAA +Sarah Lisanby,7004471427,,NIMH +Alex Martin,35446495000,,NIMH +Alex Martin,56491896300,,NIMH +Alex Martin,55524493600,,NIMH +Henry McFarland,35419266700,,NINDS +Elisha Merriam,6602493832,,NIMH +Mortimer Mishkin,7007041182,,NIMH +Mortimer Mishkin,56915435000,,NIMH +Abdolreza Reza Momenan,6701504429,,NIAAA +Elisabeth Murray,7202670029,,NIMH +Elisabeth Murray,56697335100,,NIMH +Avinda Nath,7102102492,,NINDS +Allison Nugent,7005708239,,NIMH +Francisco Pereira,35194757000,,NIMH +Carlo Pierpaoli,6701588878,,NIBIB +Daniel Pine,7102750324,,NIMH +Daniel Pine,55394612200,,NIMH +Daniel Pine,56835205600,,NIMH +Daniel Pine,35238406600,,NIMH +Judith Rapoport,7102502816,,NIMH +Judith Rapoport,56650044800,,NIMH +Judith Rapoport,56927814900,,NIMH +Armin Raznahan,18537910900,,NIMH +Daniel Reich,7102312699,,NINDS +Peter Schmidt,55355362400,,NIMH +Philip Shaw,56253635800,,NHGRI +Jie Shen,7404929791,,NIMH +Argyrios Stringaris,14822602500,,NIMH +Susan Swedo,7005115939,,NIMH +Susan Swedo,35357292600,,NIMH +Susan Swedo,7005115937,,NIMH +Susan Swedo,56800301300,,NIMH +Adam Thomas,27068090300,,NIMH +Audrey Thurm,6602651169,,NIMH +Lalith Talagala,6602267436,,NINDS +William Theodore,7005205047,,NINDS +William Theodore,56491605600,,NINDS +Leslie Ungerleider,7005043169,,NIMH +Leslie Ungerleider,56909737400,,NIMH +Leslie Ungerleider,56808987800,,NIMH +Eric Wassermann,7005929887,,NINDS +Carlos Zarate,7006553979,,NIMH +Carlos Zarate,55958067000,,NIMH \ No newline at end of file From 753fc61f23425375c36d96a278630bfd91a753ec Mon Sep 17 00:00:00 2001 From: Travis Riddle Date: Tue, 29 Sep 2020 11:00:32 -0400 Subject: [PATCH 07/10] change paths --- 01.0-TAR-irp_pubcount.ipynb | 39 +++++++++++++++++++++++-------------- 1 file changed, 24 insertions(+), 15 deletions(-) diff --git a/01.0-TAR-irp_pubcount.ipynb b/01.0-TAR-irp_pubcount.ipynb index 1ff72d5..cfec79f 100644 --- a/01.0-TAR-irp_pubcount.ipynb +++ b/01.0-TAR-irp_pubcount.ipynb @@ -114,17 +114,17 @@ }, { "cell_type": "code", - "execution_count": 3, + "execution_count": 14, "metadata": {}, "outputs": [], "source": [ - "df_2019 = pd.read_csv('2019_complete.csv')\n", + "df_2019 = pd.read_csv('data/complete/2019_complete.csv')\n", "n_papes = df_2019.DOI.shape[0] \n", "all_cites = df_2019['Cited-By Count'].sum() \n", "citations = df_2019['Cited-By Count'].tolist() \n", "h_index = compute_h_index(citations)\n", "#Here i bring in the IC information\n", - "df_inv_ic = pd.read_csv('investigator_ics.csv')\n", + "df_inv_ic = pd.read_csv('data/raw/investigator_ics.csv')\n", "df_inv_ic['PI'] = df_inv_ic['Author Name'].str.extract(r'(\\s\\S+$)')\n", "df_inv_ic['PI'] = df_inv_ic['PI'].str.strip()\n", "\n", @@ -143,7 +143,7 @@ }, { "cell_type": "code", - "execution_count": 4, + "execution_count": 15, "metadata": {}, "outputs": [], "source": [ @@ -159,7 +159,7 @@ }, { "cell_type": "code", - "execution_count": 5, + "execution_count": 16, "metadata": {}, "outputs": [ { @@ -180,18 +180,18 @@ }, { "cell_type": "code", - "execution_count": 8, + "execution_count": 17, "metadata": {}, "outputs": [], "source": [ - "df_2020 = pd.read_csv('output_file.csv') \n", + "df_2020 = pd.read_csv('data/interim/output_file.csv') \n", "df_2020 = df_2020[~df_2020['EID'].isin(df_2019.EID.tolist())]\n", "df_2020.rename(columns={'PI':'Searched PI',\n", " 'Authors' : 'Authors (scrambled)'}, inplace=True)\n", "df_2020['year'] = df_2020.Date.apply(lambda x: x[0:4])\n", "df_2020 = df_2020[df_2020.year.isin(['2019', '2020'])]\n", "df_2020 = df_2020.drop('year', axis=1)\n", - "df_2020.to_csv('2020_new_papers.csv', index=False) # new papers to mark" + "df_2020.to_csv('data/interim/2020_new_papers.csv', index=False) # new papers to mark" ] }, { @@ -203,7 +203,7 @@ }, { "cell_type": "code", - "execution_count": 9, + "execution_count": 18, "metadata": {}, "outputs": [], "source": [ @@ -221,18 +221,18 @@ }, { "cell_type": "code", - "execution_count": 10, + "execution_count": 19, "metadata": {}, "outputs": [], "source": [ - "df_newpapers = pd.read_csv('New Publications from FMRIF Investigators Aug 2020 - 2020_new_papers.csv') #googledoc results\n", + "df_newpapers = pd.read_csv('data/interim/New Publications from FMRIF Investigators Aug 2020 - 2020_new_papers.csv') #googledoc results\n", "df_newpapers = df_newpapers[df_newpapers['FMRIF?']=='Y']\n", "df_newpapers.drop('FMRIF?', inplace=True, axis=1)" ] }, { "cell_type": "code", - "execution_count": 11, + "execution_count": 20, "metadata": {}, "outputs": [], "source": [ @@ -241,7 +241,7 @@ }, { "cell_type": "code", - "execution_count": 12, + "execution_count": 21, "metadata": {}, "outputs": [], "source": [ @@ -250,7 +250,7 @@ "citations = df_2020_report_papers['Cited-By Count'].tolist()\n", "h_index = compute_h_index(citations)\n", "#Here i bring in the IC information\n", - "df_inv_ic = pd.read_csv('investigator_ics.csv')\n", + "df_inv_ic = pd.read_csv('data/raw/investigator_ics.csv')\n", "df_inv_ic['PI'] = df_inv_ic['Author Name'].str.extract(r'(\\s\\S+$)')\n", "df_inv_ic['PI'] = df_inv_ic['PI'].str.strip()\n", "\n", @@ -269,7 +269,7 @@ }, { "cell_type": "code", - "execution_count": 13, + "execution_count": 22, "metadata": {}, "outputs": [ { @@ -288,6 +288,15 @@ "papers using the FMRIF have been cited at least {h_index} times.\")" ] }, + { + "cell_type": "code", + "execution_count": 23, + "metadata": {}, + "outputs": [], + "source": [ + "df_2020_report_papers.to_csv('data/complete/2020_complete.csv', index=False)" + ] + }, { "cell_type": "code", "execution_count": null, From 513deb49e8761abd854645d1b048109113b49af9 Mon Sep 17 00:00:00 2001 From: Travis Riddle Date: Tue, 29 Sep 2020 11:09:42 -0400 Subject: [PATCH 08/10] moved the au-ids file --- au-ids.txt => data/raw/au-ids.txt | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename au-ids.txt => data/raw/au-ids.txt (100%) diff --git a/au-ids.txt b/data/raw/au-ids.txt similarity index 100% rename from au-ids.txt rename to data/raw/au-ids.txt From fc6682a360a92d7a7f32a5f9355605c8ab370a35 Mon Sep 17 00:00:00 2001 From: Travis Riddle Date: Tue, 29 Sep 2020 11:10:28 -0400 Subject: [PATCH 09/10] added some details to the readme --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 232c9a5..6ae2483 100644 --- a/README.md +++ b/README.md @@ -4,19 +4,19 @@ An application to catalog and measure NIH IRP publications. Assuming that the user is interested in updating these measures in subsequent years, follow these steps: -1. Check the authors in `au_ids.txt` to ensure all PIs are represented. [Note1: we have discovered that some of the EIDs in this file returned data from investigators not in the IRP] +1. Check the authors in `data/raw/au_ids.txt` to ensure all PIs are represented. [Note1: we have discovered that some of the EIDs in this file returned data from investigators not in the IRP] -2. Obtain a listing of the previously used publications in this analysis (henceforth: *old publications*). +2. Obtain a listing of the previously used publications in this analysis (henceforth: *old publications*. See complete files at `/data/complete`). -3. Use the `scopus_search.py` script to obtain all the papers listed in scopus since a given date (henceforth: *new publications*). This script takes as input a list of investigators, and a cutoff date. [Note2: we have found that this function still returns some papers that precede the cutoff date] +3. Use the `scopus_search.py` script to obtain all the papers listed in scopus since a given date (henceforth: *new publications*). This script takes as input a list of investigators, and a cutoff date. An example output from this script is located at `/data/interim/output_file.csv`. [Note2: we have found that this function still returns some papers that precede the cutoff date] -4. Clean up the new publications, and distribute to the investigators so they can mark which papers of theirs used the scanners. [here](https://docs.google.com/spreadsheets/d/1w_00-0GV0OHPJxf1FsTi4oVQzbqitz6xmB5-1qMx-vQ/edit#gid=339438628) is a version of this spreadhseet from 2019. +4. Clean up the new publications with the `01.0-TAR-irp_pubcount.ipynb` notebook (described further below), and distribute to the investigators so they can mark which papers of theirs used the scanners. [here](https://docs.google.com/spreadsheets/d/1w_00-0GV0OHPJxf1FsTi4oVQzbqitz6xmB5-1qMx-vQ/edit#gid=339438628) is a version of this spreadsheet from 2019. -5. Use the `update_citation_counts.py` script to update the number of citations for the *old publications*. This script takes as input the file produced in the previous year, and pulls all the unique EID (paper identifiers), updating the citation counts for those articles. We have experienced EIDs that change a bit year-to-year (on the order of one or two percent). Consequently, this script will print (and write to disk) EIDs that are missed. It is up to the user to go through an manually correct these by, for instance, creating a new csv file with a column labeled `EID` and using this as input for a second run of `update_citation_counts.py`. +5. Use the `update_citation_counts.py` script to update the number of citations for the *old publications*. This script takes as input the file produced in the previous year, and pulls all the unique EID (paper identifiers), updating the citation counts for those articles. We have experienced EIDs that change a bit year-to-year (on the order of one or two percent). Consequently, this script will print (and write to disk) EIDs that are missed. It is up to the user to go through an manually correct these by, for instance, creating a new csv file with a column labeled `EID` and using this as input for a second run of `update_citation_counts.py`. The 2020 update from the 2019 papers is found at `data/interim/2019_complete_update_2020.csv`. -6. Download the completed tabulation of which *new publications* used the scanners. +6. Download the completed tabulation of which *new publications* used the scanners from the google doc. The csv from 2020 is found at `/data/interim/New Publications from FMRIF Investigators Aug 2020 - 2020_new_papers`. -7. The notebook `nih_irp_pubcount_workbook.ipynb` aggregates the data from the previous steps and generates a paragraph that describes the "productivity" of the reseaerch group as a whole. It also writes out a complete listing of papers for use next year. This notebook will rely on a PI <-> IC linking file (`investigator_ics.csv`) +7. The notebook `01.0-TAR-irp_pubcount.ipynb` aggregates the data from the previous steps and generates a paragraph that describes the "productivity" of the reseaerch group as a whole. It also writes out a complete listing of papers for use next year. This notebook will rely on a PI <-> IC linking file (`/data/raw/investigator_ics.csv`) There have been uneven historical attempts to remove editorials, reviews, errata, and the like. The above does not attempt to describe how that might happen. From 59b5a6636f8b25939ed2eed8b0d8375144f042cd Mon Sep 17 00:00:00 2001 From: Travis Riddle Date: Tue, 29 Sep 2020 11:14:14 -0400 Subject: [PATCH 10/10] changed some comments to be more sensible --- 01.0-TAR-irp_pubcount.ipynb | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/01.0-TAR-irp_pubcount.ipynb b/01.0-TAR-irp_pubcount.ipynb index cfec79f..ca032ed 100644 --- a/01.0-TAR-irp_pubcount.ipynb +++ b/01.0-TAR-irp_pubcount.ipynb @@ -154,7 +154,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "### Paragraph below checks out. Now time to add in the new papers. First, we figure out which papers are the new ones from the results returned from the scopus_search and update_citation_counts scripts" + "### Paragraph below checks out. " ] }, { @@ -178,6 +178,13 @@ "papers using the FMRIF have been cited at least {h_index} times.\")" ] }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Now time to generate and distribute new papers for marking by PIs. " + ] + }, { "cell_type": "code", "execution_count": 17, @@ -216,7 +223,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "### get new papers" + "### get new papers that have been marked" ] }, {