├── .idea ├── .gitignore ├── MOF_Literature_Extraction.iml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── LICENSE ├── Literature Extraction ├── Code │ ├── DemoDatabase │ │ ├── Pulication │ │ │ └── P3535 │ │ │ │ ├── c5qi00025d1.pdf │ │ │ │ ├── c5qi00025d2.cif │ │ │ │ ├── chemtg0.xml │ │ │ │ ├── chemtg1.xml │ │ │ │ ├── full_page.html │ │ │ │ ├── mod_pot_sny_para0.txt │ │ │ │ ├── mod_pot_sny_para1.txt │ │ │ │ ├── pot_sny_para0.txt │ │ │ │ └── pot_sny_para1.txt │ │ └── data_base │ │ │ ├── NUCPEI_clean │ │ │ └── item_sum.html │ │ │ └── NUCPIM_clean │ │ │ └── item_sum.html │ ├── LiteratureExtractionDemo.ipynb │ ├── _CommonRedist │ │ ├── 2019-11-01-ASR-public_12020 .csv │ │ ├── chemicalTagger-1.6-SNAPSHOT-jar-with-dependencies-file.jar │ │ ├── local_addtives_cids.csv │ │ ├── local_solvents_cids.csv │ │ └── standards.html │ ├── cd_lib │ │ ├── __init__.py │ │ ├── chetg │ │ │ ├── __init__.py │ │ │ ├── c_id.py │ │ │ ├── log.txt │ │ │ ├── tt_id.py │ │ │ └── yield_id.py │ │ ├── chose_para │ │ │ └── __init__.py │ │ ├── csd_api │ │ │ ├── __init__.py │ │ │ └── log.txt │ │ ├── csv_cond │ │ │ └── __init__.py │ │ ├── pcplib │ │ │ ├── ElementTable.py │ │ │ ├── __init__.py │ │ │ ├── local_addtives_cids.cvs │ │ │ ├── local_solvents_cids.csv │ │ │ └── log.txt │ │ └── post_processing │ │ │ ├── DDfC_11.py │ │ │ └── __init__.py │ └── cd_tools │ │ ├── ToHTML │ │ ├── __init__.py │ │ └── log.txt │ │ ├── __init__.py │ │ ├── csvalkyrie │ │ └── __init__.py │ │ └── osvalkyrie │ │ └── __init__.py ├── Databases │ ├── SynMOF_A.csv │ ├── SynMOF_A.xlsx │ ├── Synmof_M_210618.csv │ ├── Synmof_M_210618.xlsx │ ├── Synmof_Me_210618.csv │ └── Synmof_Me_210618.xlsx ├── Extraction Process.png └── README.md ├── MOF_Literature_Extraction.png ├── Publication Downloading ├── PublicationDownloading.js └── README.md └── README.md /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsotsalas-Group/MOF_Literature_Extraction/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/MOF_Literature_Extraction.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsotsalas-Group/MOF_Literature_Extraction/HEAD/.idea/MOF_Literature_Extraction.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsotsalas-Group/MOF_Literature_Extraction/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsotsalas-Group/MOF_Literature_Extraction/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsotsalas-Group/MOF_Literature_Extraction/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsotsalas-Group/MOF_Literature_Extraction/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsotsalas-Group/MOF_Literature_Extraction/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsotsalas-Group/MOF_Literature_Extraction/HEAD/LICENSE -------------------------------------------------------------------------------- /Literature Extraction/Code/DemoDatabase/Pulication/P3535/c5qi00025d1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsotsalas-Group/MOF_Literature_Extraction/HEAD/Literature Extraction/Code/DemoDatabase/Pulication/P3535/c5qi00025d1.pdf -------------------------------------------------------------------------------- /Literature Extraction/Code/DemoDatabase/Pulication/P3535/c5qi00025d2.cif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsotsalas-Group/MOF_Literature_Extraction/HEAD/Literature Extraction/Code/DemoDatabase/Pulication/P3535/c5qi00025d2.cif -------------------------------------------------------------------------------- /Literature Extraction/Code/DemoDatabase/Pulication/P3535/chemtg0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsotsalas-Group/MOF_Literature_Extraction/HEAD/Literature Extraction/Code/DemoDatabase/Pulication/P3535/chemtg0.xml -------------------------------------------------------------------------------- /Literature Extraction/Code/DemoDatabase/Pulication/P3535/chemtg1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsotsalas-Group/MOF_Literature_Extraction/HEAD/Literature Extraction/Code/DemoDatabase/Pulication/P3535/chemtg1.xml -------------------------------------------------------------------------------- /Literature Extraction/Code/DemoDatabase/Pulication/P3535/full_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsotsalas-Group/MOF_Literature_Extraction/HEAD/Literature Extraction/Code/DemoDatabase/Pulication/P3535/full_page.html -------------------------------------------------------------------------------- /Literature Extraction/Code/DemoDatabase/Pulication/P3535/mod_pot_sny_para0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsotsalas-Group/MOF_Literature_Extraction/HEAD/Literature Extraction/Code/DemoDatabase/Pulication/P3535/mod_pot_sny_para0.txt -------------------------------------------------------------------------------- /Literature Extraction/Code/DemoDatabase/Pulication/P3535/mod_pot_sny_para1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsotsalas-Group/MOF_Literature_Extraction/HEAD/Literature Extraction/Code/DemoDatabase/Pulication/P3535/mod_pot_sny_para1.txt -------------------------------------------------------------------------------- /Literature Extraction/Code/DemoDatabase/Pulication/P3535/pot_sny_para0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsotsalas-Group/MOF_Literature_Extraction/HEAD/Literature Extraction/Code/DemoDatabase/Pulication/P3535/pot_sny_para0.txt -------------------------------------------------------------------------------- /Literature Extraction/Code/DemoDatabase/Pulication/P3535/pot_sny_para1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsotsalas-Group/MOF_Literature_Extraction/HEAD/Literature Extraction/Code/DemoDatabase/Pulication/P3535/pot_sny_para1.txt -------------------------------------------------------------------------------- /Literature Extraction/Code/DemoDatabase/data_base/NUCPEI_clean/item_sum.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsotsalas-Group/MOF_Literature_Extraction/HEAD/Literature Extraction/Code/DemoDatabase/data_base/NUCPEI_clean/item_sum.html -------------------------------------------------------------------------------- /Literature Extraction/Code/DemoDatabase/data_base/NUCPIM_clean/item_sum.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsotsalas-Group/MOF_Literature_Extraction/HEAD/Literature Extraction/Code/DemoDatabase/data_base/NUCPIM_clean/item_sum.html -------------------------------------------------------------------------------- /Literature Extraction/Code/LiteratureExtractionDemo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsotsalas-Group/MOF_Literature_Extraction/HEAD/Literature Extraction/Code/LiteratureExtractionDemo.ipynb -------------------------------------------------------------------------------- /Literature Extraction/Code/_CommonRedist/2019-11-01-ASR-public_12020 .csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsotsalas-Group/MOF_Literature_Extraction/HEAD/Literature Extraction/Code/_CommonRedist/2019-11-01-ASR-public_12020 .csv -------------------------------------------------------------------------------- /Literature Extraction/Code/_CommonRedist/chemicalTagger-1.6-SNAPSHOT-jar-with-dependencies-file.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsotsalas-Group/MOF_Literature_Extraction/HEAD/Literature Extraction/Code/_CommonRedist/chemicalTagger-1.6-SNAPSHOT-jar-with-dependencies-file.jar -------------------------------------------------------------------------------- /Literature Extraction/Code/_CommonRedist/local_addtives_cids.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsotsalas-Group/MOF_Literature_Extraction/HEAD/Literature Extraction/Code/_CommonRedist/local_addtives_cids.csv -------------------------------------------------------------------------------- /Literature Extraction/Code/_CommonRedist/local_solvents_cids.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsotsalas-Group/MOF_Literature_Extraction/HEAD/Literature Extraction/Code/_CommonRedist/local_solvents_cids.csv -------------------------------------------------------------------------------- /Literature Extraction/Code/_CommonRedist/standards.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsotsalas-Group/MOF_Literature_Extraction/HEAD/Literature Extraction/Code/_CommonRedist/standards.html -------------------------------------------------------------------------------- /Literature Extraction/Code/cd_lib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsotsalas-Group/MOF_Literature_Extraction/HEAD/Literature Extraction/Code/cd_lib/__init__.py -------------------------------------------------------------------------------- /Literature Extraction/Code/cd_lib/chetg/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsotsalas-Group/MOF_Literature_Extraction/HEAD/Literature Extraction/Code/cd_lib/chetg/__init__.py -------------------------------------------------------------------------------- /Literature Extraction/Code/cd_lib/chetg/c_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsotsalas-Group/MOF_Literature_Extraction/HEAD/Literature Extraction/Code/cd_lib/chetg/c_id.py -------------------------------------------------------------------------------- /Literature Extraction/Code/cd_lib/chetg/log.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Literature Extraction/Code/cd_lib/chetg/tt_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsotsalas-Group/MOF_Literature_Extraction/HEAD/Literature Extraction/Code/cd_lib/chetg/tt_id.py -------------------------------------------------------------------------------- /Literature Extraction/Code/cd_lib/chetg/yield_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsotsalas-Group/MOF_Literature_Extraction/HEAD/Literature Extraction/Code/cd_lib/chetg/yield_id.py -------------------------------------------------------------------------------- /Literature Extraction/Code/cd_lib/chose_para/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsotsalas-Group/MOF_Literature_Extraction/HEAD/Literature Extraction/Code/cd_lib/chose_para/__init__.py -------------------------------------------------------------------------------- /Literature Extraction/Code/cd_lib/csd_api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsotsalas-Group/MOF_Literature_Extraction/HEAD/Literature Extraction/Code/cd_lib/csd_api/__init__.py -------------------------------------------------------------------------------- /Literature Extraction/Code/cd_lib/csd_api/log.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Literature Extraction/Code/cd_lib/csv_cond/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsotsalas-Group/MOF_Literature_Extraction/HEAD/Literature Extraction/Code/cd_lib/csv_cond/__init__.py -------------------------------------------------------------------------------- /Literature Extraction/Code/cd_lib/pcplib/ElementTable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsotsalas-Group/MOF_Literature_Extraction/HEAD/Literature Extraction/Code/cd_lib/pcplib/ElementTable.py -------------------------------------------------------------------------------- /Literature Extraction/Code/cd_lib/pcplib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsotsalas-Group/MOF_Literature_Extraction/HEAD/Literature Extraction/Code/cd_lib/pcplib/__init__.py -------------------------------------------------------------------------------- /Literature Extraction/Code/cd_lib/pcplib/local_addtives_cids.cvs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsotsalas-Group/MOF_Literature_Extraction/HEAD/Literature Extraction/Code/cd_lib/pcplib/local_addtives_cids.cvs -------------------------------------------------------------------------------- /Literature Extraction/Code/cd_lib/pcplib/local_solvents_cids.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsotsalas-Group/MOF_Literature_Extraction/HEAD/Literature Extraction/Code/cd_lib/pcplib/local_solvents_cids.csv -------------------------------------------------------------------------------- /Literature Extraction/Code/cd_lib/pcplib/log.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Literature Extraction/Code/cd_lib/post_processing/DDfC_11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsotsalas-Group/MOF_Literature_Extraction/HEAD/Literature Extraction/Code/cd_lib/post_processing/DDfC_11.py -------------------------------------------------------------------------------- /Literature Extraction/Code/cd_lib/post_processing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsotsalas-Group/MOF_Literature_Extraction/HEAD/Literature Extraction/Code/cd_lib/post_processing/__init__.py -------------------------------------------------------------------------------- /Literature Extraction/Code/cd_tools/ToHTML/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsotsalas-Group/MOF_Literature_Extraction/HEAD/Literature Extraction/Code/cd_tools/ToHTML/__init__.py -------------------------------------------------------------------------------- /Literature Extraction/Code/cd_tools/ToHTML/log.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Literature Extraction/Code/cd_tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsotsalas-Group/MOF_Literature_Extraction/HEAD/Literature Extraction/Code/cd_tools/__init__.py -------------------------------------------------------------------------------- /Literature Extraction/Code/cd_tools/csvalkyrie/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsotsalas-Group/MOF_Literature_Extraction/HEAD/Literature Extraction/Code/cd_tools/csvalkyrie/__init__.py -------------------------------------------------------------------------------- /Literature Extraction/Code/cd_tools/osvalkyrie/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsotsalas-Group/MOF_Literature_Extraction/HEAD/Literature Extraction/Code/cd_tools/osvalkyrie/__init__.py -------------------------------------------------------------------------------- /Literature Extraction/Databases/SynMOF_A.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsotsalas-Group/MOF_Literature_Extraction/HEAD/Literature Extraction/Databases/SynMOF_A.csv -------------------------------------------------------------------------------- /Literature Extraction/Databases/SynMOF_A.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsotsalas-Group/MOF_Literature_Extraction/HEAD/Literature Extraction/Databases/SynMOF_A.xlsx -------------------------------------------------------------------------------- /Literature Extraction/Databases/Synmof_M_210618.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsotsalas-Group/MOF_Literature_Extraction/HEAD/Literature Extraction/Databases/Synmof_M_210618.csv -------------------------------------------------------------------------------- /Literature Extraction/Databases/Synmof_M_210618.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsotsalas-Group/MOF_Literature_Extraction/HEAD/Literature Extraction/Databases/Synmof_M_210618.xlsx -------------------------------------------------------------------------------- /Literature Extraction/Databases/Synmof_Me_210618.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsotsalas-Group/MOF_Literature_Extraction/HEAD/Literature Extraction/Databases/Synmof_Me_210618.csv -------------------------------------------------------------------------------- /Literature Extraction/Databases/Synmof_Me_210618.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsotsalas-Group/MOF_Literature_Extraction/HEAD/Literature Extraction/Databases/Synmof_Me_210618.xlsx -------------------------------------------------------------------------------- /Literature Extraction/Extraction Process.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsotsalas-Group/MOF_Literature_Extraction/HEAD/Literature Extraction/Extraction Process.png -------------------------------------------------------------------------------- /Literature Extraction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsotsalas-Group/MOF_Literature_Extraction/HEAD/Literature Extraction/README.md -------------------------------------------------------------------------------- /MOF_Literature_Extraction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsotsalas-Group/MOF_Literature_Extraction/HEAD/MOF_Literature_Extraction.png -------------------------------------------------------------------------------- /Publication Downloading/PublicationDownloading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsotsalas-Group/MOF_Literature_Extraction/HEAD/Publication Downloading/PublicationDownloading.js -------------------------------------------------------------------------------- /Publication Downloading/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsotsalas-Group/MOF_Literature_Extraction/HEAD/Publication Downloading/README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tsotsalas-Group/MOF_Literature_Extraction/HEAD/README.md --------------------------------------------------------------------------------