chore(repo): Move references to reference data dir

Begin restructuring data dir by separating out references into their own
data sub-dir containing only references and bibtex files.
This commit is contained in:
Marty Oehme 2024-07-16 15:59:41 +02:00
parent 2a1fc9611f
commit 4f9acd0816
Signed by: Marty
GPG key ID: EDBF2ED917B2EF6A
177 changed files with 77679 additions and 40 deletions

View file

@ -11,9 +11,9 @@ import src.globals as g
from src.process import add_metadata as meta
# raw database-search results
bib_sample_raw_db = meta.bib_library_from_dir(g.RAW_DATA)
bib_sample_raw_db = meta.bib_library_from_dir(g.REFERENCE_DATA)
# the complete library of sampled (and working) literature
bib_sample = meta.bib_library_from_dir(g.WORKING_DATA)
bib_sample = meta.bib_library_from_file(g.REFERENCE_DATA.joinpath("zotero-library.bib"))
# load relevant studies
from src.extract import load_data as load