-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #19 from materials-data-facility/forge-dev
0.5.0 release
- Loading branch information
Showing
24 changed files
with
1,624 additions
and
1,158 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[run] | ||
branch=True | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,7 +13,6 @@ Untitled*.ipynb | |
*/dist/* | ||
*.egg* | ||
|
||
|
||
prototypes/forge_sandbox.ipynb | ||
|
||
travis.tar | ||
.coverage | ||
|
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -131,6 +131,64 @@ | |
{ | ||
"cell_type": "markdown", | ||
"metadata": {}, | ||
"source": [ | ||
"If you want to search on a value with special characters, such as a colon or space, you must wrap the value in double quotes. Otherwise, you may get unexpected results." | ||
] | ||
}, | ||
{ | ||
"cell_type": "code", | ||
"execution_count": 5, | ||
"metadata": { | ||
"scrolled": true | ||
}, | ||
"outputs": [ | ||
{ | ||
"data": { | ||
"text/plain": [ | ||
"{'mdf': {'citation': [\"A.P. Bento, A. Gaulton, A. Hersey, L.J. Bellis, J. Chambers, M. Davies, F.A. Krüger, Y. Light, L. Mak, S. McGlinchey, M. Nowotka, G. Papadatos, R. Santos and J.P. Overington (2014) 'The ChEMBL bioactivity database: an update.' Nucleic Acids Res., 42 1083-1090. DOI: 10.1093/nar/gkt1031 PMID: 24214965\",\n", | ||
" \"M. Davies, M. Nowotka, G. Papadatos, F. Atkinson, G.J.P. van Westen, N Dedman, R. Ochoa and J.P. Overington (2014) 'myChEMBL: A Virtual Platform for Distributing Cheminformatics Tools and Open Data' Challenges 5 (334-337) DOI: 10.3390/challe5020334\",\n", | ||
" 'S. Jupp, J. Malone, J. Bolleman, M. Brandizi, M. Davies, L. Garcia, A. Gaulton, S. Gehant, C. Laibe, N. Redaschi, S.M Wimalaratne, M. Martin, N. Le Novère, H. Parkinson, E. Birney and A.M Jenkinson (2014) The EBI RDF Platform: Linked Open Data for the Life Sciences Bioinformatics 30 1338-1339 DOI: 10.1093/bioinformatics/btt765 PMID: 24413672'],\n", | ||
" 'collection': 'ChEMBL db',\n", | ||
" 'data_contact': {'email': '[email protected]',\n", | ||
" 'family_name': 'Overington',\n", | ||
" 'full_name': 'John P. Overington',\n", | ||
" 'given_name': 'John P.',\n", | ||
" 'institution': 'European Molecular Biology Laboratory European Bioinformatics Institute'},\n", | ||
" 'data_contributor': [{'email': '[email protected]',\n", | ||
" 'family_name': 'Pike',\n", | ||
" 'full_name': 'Evan Pike',\n", | ||
" 'github': 'dep78',\n", | ||
" 'given_name': 'Evan',\n", | ||
" 'institution': 'The University of Chicago'}],\n", | ||
" 'description': 'ChEMBL is a database of bioactive drug-like small molecules, it contains 2-D structures, calculated properties (e.g. logP, Molecular Weight, Lipinski Parameters, etc.) and abstracted bioactivities (e.g. binding constants, pharmacology and ADMET data).vThe data is abstracted and curated from the primary scientific literature, and cover a significant fraction of the SAR and discovery of modern drugs We attempt to normalise the bioactivities into a uniform set of end-points and units where possible, and also to tag the links between a molecular target and a published assay with a set of varying confidence levels. Additional data on clinical progress of compounds is being integrated into ChEMBL at the current time.',\n", | ||
" 'ingest_date': '2017-08-09T17:26:54.157428Z',\n", | ||
" 'license': 'https://creativecommons.org/licenses/by-sa/3.0/',\n", | ||
" 'links': {'data_doi': 'ftp://ftp.ebi.ac.uk/pub/databases/chembl/ChEMBLdb/',\n", | ||
" 'landing_page': 'https://www.ebi.ac.uk/chembl/downloads'},\n", | ||
" 'mdf_id': '598b45debf9d988c07667735',\n", | ||
" 'metadata_version': '0.3.2',\n", | ||
" 'resource_type': 'dataset',\n", | ||
" 'source_name': 'chembl_db',\n", | ||
" 'tags': ['SAR'],\n", | ||
" 'title': 'ChEMBL Database',\n", | ||
" 'year': 2017}}" | ||
] | ||
}, | ||
"execution_count": 5, | ||
"metadata": {}, | ||
"output_type": "execute_result" | ||
} | ||
], | ||
"source": [ | ||
"res = mdf.search('mdf.title:\"ChEMBL Database\"', advanced=True)\n", | ||
"res[0]" | ||
] | ||
}, | ||
{ | ||
"cell_type": "code", | ||
"execution_count": null, | ||
"metadata": {}, | ||
"outputs": [], | ||
"source": [] | ||
} | ||
], | ||
|
Oops, something went wrong.