Skip to content

Commit

Permalink
updated for stat and db
Browse files Browse the repository at this point in the history
  • Loading branch information
markshervey committed Jul 25, 2018
1 parent 96a4efe commit cfd1370
Show file tree
Hide file tree
Showing 7 changed files with 86 additions and 2 deletions.
Binary file modified .DS_Store
Binary file not shown.
1 change: 1 addition & 0 deletions .gitignore
@@ -0,0 +1 @@
.DS_Store
10 changes: 9 additions & 1 deletion README.md
@@ -1,11 +1,18 @@
_UPDATE: On July 25th, 2018, in a combined effort with Elektra Labs, we released a piece in STAT News about analysis conducted on these projects [STAT News July 2018 Op-Ed](https://www.statnews.com/2018/07/25/blockchains-biomedicine-health-care-buyer-be-informed/)._

_In parallel, we also released an interactive version of this database: [Healthcare & Biomedical Blockchains](https://db.biomedicalblockchain.org/). This site will be updated going forward and has many extra features, including live infographics, and an easier project submission process. We hope you continue to find it useful!_




# Biomedical Blockchain Initiatives



[![map](biomedical-blockchain-map.png)](https://api.mapbox.com/styles/v1/zimmeee/cjfwus7rf1dbb2rmi78pn1ujw.html?fresh=true&title=true&access_token=pk.eyJ1IjoiemltbWVlZSIsImEiOiJjaXA2Nnl1M2owMDNveWJrbzB0bmFmcW9zIn0.3UHAx5MArJaWYsTCYhkVSw#1.7/31.444924/6.387816/0)

There is tremendous interest and opportunity to apply blockchain technologies to problems in biology, medicine and health. We have created this repository to map all of the biomedical blockchain initiatives worldwide in order to track the evolution of this emerging technology.

<!--
Check out [this blog post](http://hd2i.org/blog/2018/04/05/mapping-the-biomedical-blockchain.html) for a complete description of our approach and methodology. [Contributions are welcome](https://github.com/HD2i/biomedical-blockchain/blob/master/CONTRIBUTING.md) and encouraged.
## Legend
Expand Down Expand Up @@ -2094,3 +2101,4 @@ A marketplace for genomic data and services
| Network | Ethereum |
| White Paper | [<img src="https://raw.githubusercontent.com/encharm/Font-Awesome-SVG-PNG/master/black/png/24/file-o.png"/>](https://zenome.io/download/whitepaper.pdf) |
____
-->
6 changes: 6 additions & 0 deletions audit/.ipynb_checkpoints/audit2-checkpoint.ipynb
@@ -0,0 +1,6 @@
{
"cells": [],
"metadata": {},
"nbformat": 4,
"nbformat_minor": 2
}
9 changes: 8 additions & 1 deletion audit/audit.ipynb
Expand Up @@ -26,6 +26,13 @@
"links = links + [x.replace('<img src=\"', '').replace('\" width=\"80\"', '').replace('\"/>', '').replace('>', '').replace(' width=\"200\"', '') for x in re.findall(r'\\[(.*?)\\]', r.text)]"
]
},
{
"cell_type": "code",
"execution_count": 1,
"metadata": {},
"outputs": [],
"source": []
},
{
"cell_type": "code",
"execution_count": 4,
Expand Down Expand Up @@ -136,7 +143,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.6.2"
"version": "3.6.5"
}
},
"nbformat": 4,
Expand Down
62 changes: 62 additions & 0 deletions audit/audit2.ipynb
@@ -0,0 +1,62 @@
{
"cells": [
{
"cell_type": "code",
"execution_count": 3,
"metadata": {},
"outputs": [],
"source": [
"from html.parser import HTMLParser\n",
"import urllib.request as urllib2"
]
},
{
"cell_type": "code",
"execution_count": 10,
"metadata": {},
"outputs": [
{
"ename": "TypeError",
"evalue": "urlopen() got an unexpected keyword argument 'username'",
"output_type": "error",
"traceback": [
"\u001b[0;31m---------------------------------------------------------------------------\u001b[0m",
"\u001b[0;31mTypeError\u001b[0m Traceback (most recent call last)",
"\u001b[0;32m<ipython-input-10-a3613e15fb58>\u001b[0m in \u001b[0;36m<module>\u001b[0;34m()\u001b[0m\n\u001b[1;32m 2\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 3\u001b[0m \u001b[0;31m#Opening NYTimes site using urllib2\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m----> 4\u001b[0;31m \u001b[0mhtml_page\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0murllib2\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0murlopen\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m\"https://db.biomedicalblockchain.org\"\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0musername\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0;34m\"hd2i\"\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 5\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 6\u001b[0m \u001b[0;31m#Feeding the content\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n",
"\u001b[0;31mTypeError\u001b[0m: urlopen() got an unexpected keyword argument 'username'"
]
}
],
"source": [
"parser = HTMLParser()\n",
"\n",
"#Opening NYTimes site using urllib2\n",
"html_page = urllib2.urlopen(\"https://db.biomedicalblockchain.org\")\n",
"\n",
"#Feeding the content\n",
"parser.feed(str(html_page.read()))"
]
}
],
"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.6.5"
}
},
"nbformat": 4,
"nbformat_minor": 2
}
Binary file removed src/.DS_Store
Binary file not shown.

0 comments on commit cfd1370

Please sign in to comment.