Skip to content

Commit

Permalink
DOC: publications
Browse files Browse the repository at this point in the history
  • Loading branch information
christianbrodbeck committed May 2, 2022
1 parent 5868f20 commit f4a2a07
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 2 deletions.
15 changes: 14 additions & 1 deletion doc/publications.bib
Original file line number Diff line number Diff line change
Expand Up @@ -501,7 +501,7 @@ @article{gaston2021auditory

@article{parrish2022conceptual,
author = {Parrish, Alicia and Pylkk{\"a}nen, Liina},
title = "Conceptual combination in the LATL with and without syntactic composition",
title = "Conceptual combination in the {LATL} with and without syntactic composition",
journal = "Neurobiology of Language",
volume = "3",
number = "1",
Expand Down Expand Up @@ -622,6 +622,7 @@ @article{gaston2021memory
@article{herrera2021cortical,
author = "Herrera, Christian and Whittle, Nicole and Leek, Marjorie R and Brodbeck, Christian and Lee, Grace and Barcenas, Caleb and Barnes, Samuel and Holshouser, Barbara and Alex, C Yi and Venezia, Jonathan",
title = "Cortical Networks for Recognition of Speech with Simultaneous Talkers",
journal = "{PsyArXiv}",
year = "2021",
publisher = "PsyArXiv",
url = "https://psyarxiv.com/vea5y/",
Expand All @@ -648,3 +649,15 @@ @phdthesis{puvvada2017cortical
url = "https://search.proquest.com/openview/2f4e278fe66fd86b3f2f83c9af9cc8d5/1?pq-origsite=gscholar\&cbl=18750",
google_result_id = "3q6IcMq05TgJ"
}

@article{brodbeck2022parallel,
title={Parallel processing in speech perception with local and global representations of linguistic context},
author={Brodbeck, Christian and Bhattasali, Shohini and Heredia, Aura AL Cruz and Resnik, Philip and Simon, Jonathan Z and Lau, Ellen},
journal={Elife},
volume={11},
pages={e72056},
year={2022},
publisher={eLife Sciences Publications Limited},
doi = "10.7554/eLife.72056",
google_result_id = "7_12qdwe3r4J"
}
10 changes: 9 additions & 1 deletion doc/scripts/find_publications.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,13 +159,21 @@ def parse():
url = raw_entries[result_id]['link']
journal = entry.fields.get('journal', '').lower()
doi = None
if journal == 'biorxiv':
if entry.type == 'phdthesis':
pass
elif journal == 'biorxiv':
if match := re.match(r"https://www\.biorxiv\.org/content/([\d./]+)\.abstract", url):
doi = match.group(1)
elif match := re.match(r"https://www\.biorxiv\.org/content/biorxiv/early/([\d./]+)\.full.pdf", url):
pass # DOI unknown
else:
raise RuntimeError(f"Can't identify DOI from {url=}")
elif not journal:
if entry.fields.get('publisher') == 'PsyArXiv':
entry.fields['journal'] = '{PsyArXiv}'
else:
entry.fields['journal'] = '???'
print('Warning: missing journal')
if doi:
if doi in BIORXIV_OBSOLETE:
continue
Expand Down

0 comments on commit f4a2a07

Please sign in to comment.