├── .gitignore
├── .DS_Store
├── biomedical-blockchain-map.png
├── audit
├── .ipynb_checkpoints
│ ├── audit2-checkpoint.ipynb
│ └── audit-checkpoint.ipynb
├── audit2.ipynb
└── audit.ipynb
├── src
├── summary-plots.R
├── intro.txt
├── table_to_markdown.py
└── Companies-Company Grid view.csv
├── LICENSE
├── CONTRIBUTING.md
├── contribution-guidelines.MD
└── Deadpool.md
/.gitignore:
--------------------------------------------------------------------------------
1 | .DS_Store
2 |
--------------------------------------------------------------------------------
/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/HD2i/biomedical-blockchain/HEAD/.DS_Store
--------------------------------------------------------------------------------
/biomedical-blockchain-map.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/HD2i/biomedical-blockchain/HEAD/biomedical-blockchain-map.png
--------------------------------------------------------------------------------
/audit/.ipynb_checkpoints/audit2-checkpoint.ipynb:
--------------------------------------------------------------------------------
1 | {
2 | "cells": [],
3 | "metadata": {},
4 | "nbformat": 4,
5 | "nbformat_minor": 2
6 | }
7 |
--------------------------------------------------------------------------------
/src/summary-plots.R:
--------------------------------------------------------------------------------
1 | library(ggplot2)
2 | library(ggthemes)
3 | library(dplyr)
4 | library(forcats)
5 | library(htmltab)
6 |
7 | markdown.url = 'https://github.com/HD2i/biomedical-blockchain/blob/master/README.md'
8 | # This function won't load images, so they appear as missing
9 | # since actually missing values are encoded as a '-'
10 | # we interpret missing here to mean there is an image icon
11 | x = htmltab(markdown.url, fillNA = 'ICON')
12 |
13 | ggplot(x, aes(x=fct_infreq(factor(Category)))) + geom_bar(fill = '#1e656d', width = 0.5) +
14 | scale_fill_ptol() +
15 | theme_minimal(base_size = 14) +
16 | theme(axis.text.x=element_text(angle=45,hjust=1), axis.title.x=element_blank())
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2018 DLightman05
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/src/intro.txt:
--------------------------------------------------------------------------------
1 | # Biomedical Blockchain Initiatives
2 |
3 | There is tremendous interest and opportunity to apply blockchain technologies to problems in biology, medicine and health. At the [Health Data and Design Innovation Center](http://hd2i.org) at the [Icahn School of Medicine at Mount Sinai](http://icahn.mssm.edu) are following this trend closely, but it has been hard to keep up with the pace of new project announcements! That is why we are publicly releasing our internal database of biomedical initiatives built on blockchain technology; as a resource for the biomedical blockchain community to map the landscape of tools and use cases.
4 |
5 | [Contributions are welcome](https://github.com/HD2i/biomedical-blockchain/blob/master/CONTRIBUTING.md) and encouraged. 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.
6 |
7 | ## Legend
8 |
9 | The following summary consists of:
10 | * **Code**: Publicly available and non-trivial code (i.e. trivial including: white papers, tokens/token sales, not road maps, only a fork with no additional work)?
11 | *
: A link to their github that contains this
12 | * **Demo**: Publicly available demo or working product? (This does not include private betas)
13 | * 💻 : A link to their demo if a website
14 | * 📱 : A link to their demo if an app
15 | * **Technical Specifications (TS)**: Publicly available technical whitepaper or technical specifications for their implementation of blockchain technology? (A non-technical implementation does not count)
16 | * 📃 : A link to their technical whitepaper
17 | * **VC Raise(M)**: Amount raised from professional investors in USD in millions
18 |
--------------------------------------------------------------------------------
/CONTRIBUTING.md:
--------------------------------------------------------------------------------
1 | # Contributing to Biomedical Blockchain Initiatives
2 |
3 |
4 | The Biomedical Blockchain Initiatives were initially developed by the [Health Data and Design Innovation](http://hd2i.org) (HD2i) within the [Institute of Next Generation Health](http://www.nextgenhealthcare.org) (INGH) at the Icahn School of Medicine at Mount Sinai.
5 | We strongly encourage you to contribute to this list by adding new initiatives, updating outdated information, correcting errors, or proposing new metrics you believe are useful to include.
6 |
7 | To maintain the integrity of this list, we request that any changes or additon of new companies remain as objective as possible.
8 |
9 |
10 | ## To Contribute
11 | To contribute to our compiled list of Blockchain Initiatives, you can use one of two methods.
12 |
13 | ### Pull Requests
14 | If you feel comfortable, you can use a pull request to propose changes or new initiatives. To do so:
15 |
16 | 1. Fork the repo and create your branch from `master`.
17 | 2. Add a new initiative or modify an existing one in the the README.md. Please try to be as objective as possible.
18 | 3. Issue that pull request!
19 | 4. We'll approve/deny and update the README.md accordingly.
20 |
21 | ### Create an Issue
22 | If you don't feel as comfortable using a pull request, you can [create an issue](https://github.com/HD2i/biomedical-blockchain/issues). When creating the issue, make sure to tag it with the appropriate label. The available labels are:
23 | * New Initiative: If you request to add a new initiative that is not already listed
24 | * Amend Initiative: If you request to amend an initiative that is already listed
25 | * Remove Initiative: If you request to remove an initiative that is no longer active
26 |
27 | In the issue, please list as many relevant details as you can. We will then review and update the README.md accordingly, in a timely manner.
28 |
29 | ## License
30 | By contributing, you agree that your contributions will be licensed under its MIT License.
31 |
--------------------------------------------------------------------------------
/audit/audit2.ipynb:
--------------------------------------------------------------------------------
1 | {
2 | "cells": [
3 | {
4 | "cell_type": "code",
5 | "execution_count": 3,
6 | "metadata": {},
7 | "outputs": [],
8 | "source": [
9 | "from html.parser import HTMLParser\n",
10 | "import urllib.request as urllib2"
11 | ]
12 | },
13 | {
14 | "cell_type": "code",
15 | "execution_count": 10,
16 | "metadata": {},
17 | "outputs": [
18 | {
19 | "ename": "TypeError",
20 | "evalue": "urlopen() got an unexpected keyword argument 'username'",
21 | "output_type": "error",
22 | "traceback": [
23 | "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m",
24 | "\u001b[0;31mTypeError\u001b[0m Traceback (most recent call last)",
25 | "\u001b[0;32m\u001b[0m in \u001b[0;36m\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",
26 | "\u001b[0;31mTypeError\u001b[0m: urlopen() got an unexpected keyword argument 'username'"
27 | ]
28 | }
29 | ],
30 | "source": [
31 | "parser = HTMLParser()\n",
32 | "\n",
33 | "#Opening NYTimes site using urllib2\n",
34 | "html_page = urllib2.urlopen(\"https://db.biomedicalblockchain.org\")\n",
35 | "\n",
36 | "#Feeding the content\n",
37 | "parser.feed(str(html_page.read()))"
38 | ]
39 | }
40 | ],
41 | "metadata": {
42 | "kernelspec": {
43 | "display_name": "Python 3",
44 | "language": "python",
45 | "name": "python3"
46 | },
47 | "language_info": {
48 | "codemirror_mode": {
49 | "name": "ipython",
50 | "version": 3
51 | },
52 | "file_extension": ".py",
53 | "mimetype": "text/x-python",
54 | "name": "python",
55 | "nbconvert_exporter": "python",
56 | "pygments_lexer": "ipython3",
57 | "version": "3.6.5"
58 | }
59 | },
60 | "nbformat": 4,
61 | "nbformat_minor": 2
62 | }
63 |
--------------------------------------------------------------------------------
/contribution-guidelines.MD:
--------------------------------------------------------------------------------
1 | ## Welcome
2 |
3 | We encourage you to contribute to this resource by adding new initiatives, updating outdated information, correcting errors, or proposing new metrics you believe are useful to include.
4 |
5 | We ask that you try your best to remain objective when making modifications and additions to the database.
6 |
7 | ## Guidelines for contributing
8 |
9 | Most of the information in the database is obtained directly from company materials. However there are a handful of data elements which require the judgement of the curator. Below we describe those fields and provide rough guidelines to help maintain consistency.
10 |
11 |
12 | * **Description** - Subjective one-sentence summary of the company (25 words or fewer). Avoid buzz-words and marketing phrases like “state-of-the-art”, “revolutionary”, etc.
13 | * Good: _Quality control and assurance of pharmaceutical products_
14 | * Bad: _Using proprietary technology, the best science, and advanced AI techniques, the Eterly app acts like a personal coach--custom designing and adjusting, in real time--a health and fitness routine mapped to precisely fit each user’s specific needs. The project has been inspired, developed, and funded by longevity experts._
15 | * **Functional Focus** - choose the most appropriate category from the [functional category table](#functional-category-descriptions). _Should be consistent with description_.
16 | * **Industry Focus** - choose the most appropriate vertical from the [industry focus list](#industry-focus). _Should be consistent with description_.
17 | * **Code repository** - only included if the repository contains **non-trivial** code. Examples of trivial code: a token sale contract, forked repos without any commits, etc.
18 | * **Prototype/Product** - the URL of a functional prototype or launched product
19 | * **Technical whitepaper** - only included if it provides details about token economics, the protocol, or implementation details (architecture, software stack, etc.).
20 | * **Funding** - should be specified in USD
21 | * Private/Institutional Investment - source total funding from [Crunchbase](https://www.crunchbase.com)
22 | * ICO/Token Sale - source ICO/token sale information from [ICO Reports](https://icoreports.com/)
23 |
24 |
25 | ### Functional Category Descriptions
26 |
27 | | Category | Definition |
28 | | --------------|-------------|
29 | | **Advisory, Dev Shop, Consortium** | Includes organizations that serve as advisors, consultancies, and dev-shops |
30 | | **Data & Asset Management** | This could include patient data, health systems operations data, and more. |
31 | | **Marketplace** | Platforms that facilitate trade between entities, such as incentivized data sharing. NOTE: If deciding between Data & Asset Management and Marketplace, choose Marketplace if the product has an exchange feature. || **Data Science & Analytics** | Projects that extract knowledge or insights from data in various forms, either structured or unstructured |
32 | | **Identity** | Including but not limited to digital identities, passports, IDs, life-event certificates |
33 | | **Payments and Claims** | Platforms that facilitate the payment and claims of assets |
34 | | **Supply Chain Management** | Organizations using the protocol to manage supply chain flows |
35 |
36 | ### Industry Focus
37 | * Digital Medicine / Care Delivery
38 | * Blockchain Infrastructure (e.g., this tag is well-suited for a project that might serve industries including healthcare and beyond, like Blockstack, Computable Labs or OpenMined)
39 | * Fitness / Wellness
40 | * Healthcare - general / unspecified
41 | * Genomics
42 | * Medical Device
43 | * Personal Health Records (e.g., all projects that focus on personal health data management)
44 | * Pharmaceuticals
45 | * Research and Clinical Trials
46 | * Healthcare Operations (e.g., hospital system management, revenue and billing management)
47 |
--------------------------------------------------------------------------------
/audit/.ipynb_checkpoints/audit-checkpoint.ipynb:
--------------------------------------------------------------------------------
1 | {
2 | "cells": [
3 | {
4 | "cell_type": "code",
5 | "execution_count": 43,
6 | "metadata": {},
7 | "outputs": [],
8 | "source": [
9 | "import re\n",
10 | "from urllib.parse import urlparse\n",
11 | "import requests\n",
12 | "from requests.exceptions import SSLError\n",
13 | "import urllib3\n",
14 | "\n",
15 | "urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning)"
16 | ]
17 | },
18 | {
19 | "cell_type": "code",
20 | "execution_count": 44,
21 | "metadata": {},
22 | "outputs": [],
23 | "source": [
24 | "r = requests.get('https://raw.githubusercontent.com/HD2i/biomedical-blockchain/master/README.md')\n",
25 | "links = re.findall(r'\\((.*?)\\)', r.text)\n",
26 | "links = links + [x.replace('
', '').replace('>', '').replace(' width=\"200\"', '') for x in re.findall(r'\\[(.*?)\\]', r.text)]"
27 | ]
28 | },
29 | {
30 | "cell_type": "code",
31 | "execution_count": 45,
32 | "metadata": {
33 | "scrolled": false
34 | },
35 | "outputs": [],
36 | "source": [
37 | "noise = [')', '\"', '/', '*']\n",
38 | "distinct_links = []\n",
39 | "for link in links:\n",
40 | " if (link[-1:]) in noise:\n",
41 | " link = link[0:-1]\n",
42 | " if (link[-1:]) in noise:\n",
43 | " link = link[0:-1]\n",
44 | " distinct_links.append(link)\n",
45 | "\n",
46 | "distinct_links = list(set(distinct_links))"
47 | ]
48 | },
49 | {
50 | "cell_type": "code",
51 | "execution_count": null,
52 | "metadata": {},
53 | "outputs": [],
54 | "source": [
55 | "def create_request(session, link, verify=True):\n",
56 | " request = requests.Request('GET', link, headers=headers)\n",
57 | " prepared_request = session.prepare_request(request)\n",
58 | " r = session.send(prepared_request, verify=verify)\n",
59 | " return r"
60 | ]
61 | },
62 | {
63 | "cell_type": "code",
64 | "execution_count": null,
65 | "metadata": {
66 | "scrolled": false
67 | },
68 | "outputs": [],
69 | "source": [
70 | "headers = {'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.102 Safari/537.36'}\n",
71 | "\n",
72 | "for link in distinct_links:\n",
73 | " if link[0:4] != 'http': \n",
74 | " continue\n",
75 | "# if link != 'https://enome.io': continue\n",
76 | "\n",
77 | " session = requests.Session()\n",
78 | " try: \n",
79 | " r = create_request(session, link, verify=True)\n",
80 | " if r.status_code != 200:\n",
81 | " print('******************')\n",
82 | " print(link)\n",
83 | " print(r.status_code)\n",
84 | " print('******************')\n",
85 | " except SSLError as e:\n",
86 | " # catches wonky SSL certificates. site works, just has trouble with security and requests.\n",
87 | " try:\n",
88 | " r = create_request(session, link, verify=False)\n",
89 | " if r.status_code != 200:\n",
90 | " print('******************')\n",
91 | " print(link)\n",
92 | " print(r.status_code)\n",
93 | " print('******************')\n",
94 | " except Exception as e:\n",
95 | " print(e)\n",
96 | " except Exception as e:\n",
97 | " print('******************')\n",
98 | " print(link)\n",
99 | " print(r)\n",
100 | " print(e)\n",
101 | " print('******************')"
102 | ]
103 | }
104 | ],
105 | "metadata": {
106 | "kernelspec": {
107 | "display_name": "Python 3",
108 | "language": "python",
109 | "name": "python3"
110 | },
111 | "language_info": {
112 | "codemirror_mode": {
113 | "name": "ipython",
114 | "version": 3
115 | },
116 | "file_extension": ".py",
117 | "mimetype": "text/x-python",
118 | "name": "python",
119 | "nbconvert_exporter": "python",
120 | "pygments_lexer": "ipython3",
121 | "version": "3.6.4"
122 | }
123 | },
124 | "nbformat": 4,
125 | "nbformat_minor": 2
126 | }
127 |
--------------------------------------------------------------------------------
/Deadpool.md:
--------------------------------------------------------------------------------
1 | # Biomedical Blockchain Deadpool
2 |
3 | Below are a list of blockchain initiatives that were once active in the Biomedical Blockchain Initiatives. but are no longer active or no longer have mention of blockchain.
4 |
5 | * **Death Day**: The date the initiative was moved into the deadpool. This does not correspond with the date the initiative became inactive.
6 |
7 |
8 | ____
9 |
10 | ## Dead Initiatives: __*7*__
11 |
12 | | Death Day | Logo/Link | Name | Category | Location | Inv. ($MM) | Description
13 | |:-----------------------------------:|:----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------:|:-------------------------------------------------------:|:----------------------------------:|:----------------------------------:|:--------------:|:-------------------------------------------------------------------------------------------------------------------------------------------------------------------:|
14 | | May 05, 2018 | [
](https://www.doc-coin.com/) | Doc_Coin | Digital Medicine | Russia | - | A blockchain protocol for Telehealth, where users can get specialist advice anytime, anywhere in the world in any language. |
15 | | May 05, 2018 | [
](https://www.healthcoin.com) | HealthCoin | Digital Medicine | New York, USA | 0.2 | A global, blockchain-enabled rewards platform designed to change people’s behaviors and prevent diabetes. |
16 | | May 05, 2018 | [
](http://hearthy.co/) | Hearthy | Digital Medicine | Vigo, Spain | - | A decentralized, open and sustainable ecosystem to improve healthcare access regardless of income, maing healthcare more efficient and user-centered. |
17 | | May 05, 2018 | [
](http://panacea.md) | Panacea.md | Research and Clinical Trials | Washington D.C. | - | Managed mHealth custom studies |
18 | | May 05, 2018 | [
](http://www.mitio.org/) | mitio | Payments, Claims, & Other Services | McDonough, Georgia, USA | - | A platform for decentralized medical interpreter training |
19 | | May 05, 2018 | [
](https://www.scriptdrop.io/) | ScriptDrop | Payments, Claims, & Other Services | Nashville, Tennessee, USA | - | Addresses the problem of patient abandonment of prescriptions by using blockchain technology to incentivize patient adherence and engagement. |
20 |
21 |
--------------------------------------------------------------------------------
/audit/audit.ipynb:
--------------------------------------------------------------------------------
1 | {
2 | "cells": [
3 | {
4 | "cell_type": "code",
5 | "execution_count": 2,
6 | "metadata": {},
7 | "outputs": [],
8 | "source": [
9 | "import re\n",
10 | "from urllib.parse import urlparse\n",
11 | "import requests\n",
12 | "from requests.exceptions import SSLError\n",
13 | "import urllib3\n",
14 | "\n",
15 | "urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning)"
16 | ]
17 | },
18 | {
19 | "cell_type": "code",
20 | "execution_count": 3,
21 | "metadata": {},
22 | "outputs": [],
23 | "source": [
24 | "r = requests.get('https://raw.githubusercontent.com/HD2i/biomedical-blockchain/master/README.md')\n",
25 | "links = re.findall(r'\\((.*?)\\)', r.text)\n",
26 | "links = links + [x.replace('
', '').replace('>', '').replace(' width=\"200\"', '') for x in re.findall(r'\\[(.*?)\\]', r.text)]"
27 | ]
28 | },
29 | {
30 | "cell_type": "code",
31 | "execution_count": 1,
32 | "metadata": {},
33 | "outputs": [],
34 | "source": []
35 | },
36 | {
37 | "cell_type": "code",
38 | "execution_count": 4,
39 | "metadata": {
40 | "scrolled": false
41 | },
42 | "outputs": [],
43 | "source": [
44 | "noise = [')', '\"', '/', '*']\n",
45 | "distinct_links = []\n",
46 | "for link in links:\n",
47 | " if (link[-1:]) in noise:\n",
48 | " link = link[0:-1]\n",
49 | " if (link[-1:]) in noise:\n",
50 | " link = link[0:-1]\n",
51 | " distinct_links.append(link)\n",
52 | "\n",
53 | "distinct_links = list(set(distinct_links))"
54 | ]
55 | },
56 | {
57 | "cell_type": "code",
58 | "execution_count": 5,
59 | "metadata": {},
60 | "outputs": [],
61 | "source": [
62 | "def create_request(session, link, verify=True):\n",
63 | " request = requests.Request('GET', link, headers=headers)\n",
64 | " prepared_request = session.prepare_request(request)\n",
65 | " r = session.send(prepared_request, verify=verify)\n",
66 | " return r"
67 | ]
68 | },
69 | {
70 | "cell_type": "code",
71 | "execution_count": 6,
72 | "metadata": {
73 | "scrolled": false
74 | },
75 | "outputs": [
76 | {
77 | "name": "stdout",
78 | "output_type": "stream",
79 | "text": [
80 | "******************\n",
81 | "https://www.coinstaker.com/wp-content/uploads/2018/01/Well_logo_H_Teal_CMYK.jpg\n",
82 | "503\n",
83 | "******************\n"
84 | ]
85 | }
86 | ],
87 | "source": [
88 | "headers = {'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.102 Safari/537.36'}\n",
89 | "\n",
90 | "for link in distinct_links:\n",
91 | " if link[0:4] != 'http': \n",
92 | " continue\n",
93 | "# if link != 'https://enome.io': continue\n",
94 | "\n",
95 | " session = requests.Session()\n",
96 | " try: \n",
97 | " r = create_request(session, link, verify=True)\n",
98 | " if r.status_code != 200:\n",
99 | " print('******************')\n",
100 | " print(link)\n",
101 | " print(r.status_code)\n",
102 | " print('******************')\n",
103 | " except SSLError as e:\n",
104 | " # catches wonky SSL certificates. site works, just has trouble with security and requests.\n",
105 | " try:\n",
106 | " r = create_request(session, link, verify=False)\n",
107 | " if r.status_code != 200:\n",
108 | " print('******************')\n",
109 | " print(link)\n",
110 | " print(r.status_code)\n",
111 | " print('******************')\n",
112 | " except Exception as e:\n",
113 | " print(e)\n",
114 | " except Exception as e:\n",
115 | " print('******************')\n",
116 | " print(link)\n",
117 | " print(r)\n",
118 | " print(e)\n",
119 | " print('******************')"
120 | ]
121 | },
122 | {
123 | "cell_type": "code",
124 | "execution_count": null,
125 | "metadata": {},
126 | "outputs": [],
127 | "source": []
128 | }
129 | ],
130 | "metadata": {
131 | "kernelspec": {
132 | "display_name": "Python 3",
133 | "language": "python",
134 | "name": "python3"
135 | },
136 | "language_info": {
137 | "codemirror_mode": {
138 | "name": "ipython",
139 | "version": 3
140 | },
141 | "file_extension": ".py",
142 | "mimetype": "text/x-python",
143 | "name": "python",
144 | "nbconvert_exporter": "python",
145 | "pygments_lexer": "ipython3",
146 | "version": "3.6.5"
147 | }
148 | },
149 | "nbformat": 4,
150 | "nbformat_minor": 2
151 | }
152 |
--------------------------------------------------------------------------------
/src/table_to_markdown.py:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env python
2 |
3 | __author__ = "Jerome Scelza"
4 | __credits__ = ["Matt Johnson", "Noah Zimmerman"]
5 | __license__ = "MIT"
6 | __version__ = "2.0.1"
7 | __maintainer__ = "Jerome Scelza"
8 | __email__ = "jerome.scelza@mssm.edu"
9 | __status__ = "Prototype"
10 |
11 | # This code is used to create the formatted markdown text the drives the README.md on this repo
12 | # The content for the text comes from an unformatted csv called Master_List.csv, this is all of the respective
13 | # blockchain company information that has been sourced by good old-fashioned manual labor (scouring website and transcribing)
14 | # Finally, you will find a series of functions that are used to format the strings in MD, which is subsequently,
15 | # stored into a dataframe. This dataframe then gets converted into pretty print via "tabulate" and saved to an .md file
16 |
17 | from tabulate import tabulate
18 | import pandas as pd
19 | import glob
20 |
21 | #pulling in the contents from the CSV as a pandas dataframe
22 | file_name = './Master_List.csv'
23 | df_unformatted_load = pd.read_csv(file_name)
24 |
25 |
26 | #Defining a bunch of functions that transform the content into formatted markdown
27 |
28 | def logo_md(im_source, site_link):
29 | im_md = '[
]'
30 | site_md = '(' + site_link + ')'
31 | return(im_md+site_md)
32 |
33 | def logo_md_header(im_source, site_link):
34 | im_md = '[
]'
35 | site_md = '(' + site_link + ')'
36 | return(im_md+site_md)
37 |
38 | def name_md(name):
39 | name_front = '[' + name + ']'
40 | name_lower = name.lower()
41 | section = '(#' + name_lower + ')'
42 | return(name_front + section)
43 |
44 | def git_md(git_url):
45 | git_icon = '[
]'
46 | excl_emoji = ':exclamation:'
47 |
48 | if git_url == '-':
49 | return(excl_emoji)
50 | else:
51 | git_link = '(' + git_url + ')'
52 | return(git_icon + git_link)
53 |
54 | def demo_md(demo_url, demo_type):
55 | # demo_styles = {'-':':exclamation:' , '0': '[:iphone:]' , '1':'[:computer:]', '2':'[:movie_camera:]', '3':'[:clipboard:]'}
56 | demo_styles = {'-':':exclamation:' , '0': '[:iphone:]' , '1':'[:computer:]', '2':':exclamation:', '3':':exclamation:'}
57 |
58 | emoji_style = demo_styles[str(demo_type)]
59 |
60 | if str(demo_type) != '0' and str(demo_type) !='1':
61 | return(emoji_style)
62 | else:
63 | demo_link = '(' + demo_url + ')'
64 | return(emoji_style + demo_link)
65 |
66 | def tech_spec_md(spec_url):
67 | paper_emoji = '[:page_facing_up:]'
68 | excl_emoji = ':exclamation:'
69 |
70 | if spec_url == '-':
71 | return(excl_emoji)
72 | else:
73 | spec_link = '(' + spec_url + ')'
74 | return(paper_emoji + spec_link)
75 |
76 |
77 | # creating individual stacks of formatted data that represent each of the columns
78 | # in the final data table. This is done by looping through the length of unformatted dataframe
79 | # of columns of interest and using the functions to format
80 | name_stack = []
81 | git_stack = []
82 | site_stack = []
83 | demo_stack = []
84 | tech_stack = []
85 | vc_raise_stack = []
86 |
87 | for i in range(len(df_unformatted_load)):
88 | im_source, site_link = df_unformatted_load['logo_source'][i] , df_unformatted_load['Site'][i]
89 | name = df_unformatted_load['Name'][i]
90 | git_url = df_unformatted_load['Code'][i]
91 | demo_url = df_unformatted_load['Demo'][i]
92 | demo_type = df_unformatted_load['demo_type'][i]
93 | spec_url = df_unformatted_load['spec_url'][i]
94 |
95 | site_stack.append(logo_md(im_source, site_link))
96 | name_stack.append(name_md(name))
97 | git_stack.append(git_md(git_url))
98 | demo_stack.append(demo_md(demo_url,demo_type))
99 | tech_stack.append(tech_spec_md(spec_url))
100 | vc_raise_stack.append(df_unformatted_load['vc_raise'][i])
101 |
102 | # Now we are ready to compile the final, fully-formatted dataframe
103 | df_md = pd.DataFrame(columns = ['Name', 'Category' , 'Location' , 'Code', 'Demo', 'TS' ,'VC Raise(M)'], index=site_stack)
104 | df_md.index.name = 'Site'
105 | df_md['Name'] = name_stack
106 | df_md['Category'] = list(df_unformatted_load['Category'])
107 | df_md['Location'] = list(df_unformatted_load['Location'])
108 | df_md['Code'] = git_stack
109 | df_md['Demo'] = demo_stack
110 | df_md['TS'] = tech_stack
111 | df_md['VC Raise(M)'] = vc_raise_stack
112 |
113 | # Writing the text to the md file using the file.write() feature of python
114 |
115 | # First we open the README and write the intro text.
116 | read_files = glob.glob("./intro.txt")
117 | with open("../README.md", "wb") as outfile:
118 | for f in read_files:
119 | with open(f, "rb") as infile:
120 | outfile.write(infile.read())
121 |
122 | # Second we re-open the README as appending to, and write the table.
123 | f = open('../README.md', 'a')
124 | f.write(" \n")
125 | f.write("____\n")
126 | f.write(" \n")
127 | f.write("## Source List Current Total: __*%s*__ \n" % str(len(df_unformatted_load)))
128 | f.write(" \n")
129 | headers = ['Site']
130 | headers.extend(list(df_md.columns))
131 | f.write(tabulate(df_md,headers, tablefmt="pipe", stralign= "center"))
132 | f.write(" \n")
133 | f.write("____\n")
134 |
135 | # Next we are looking to do a similiar process, but with the small company specific tables
136 | detail_params = ['Category' , 'Location','Money Raised (M)', 'Method of Funding',
137 | 'Github Profile','ICO Symbol','Coin','White Paper']
138 |
139 | for i in range(len(df_unformatted_load)):
140 | df_company_specific = pd.DataFrame(columns = ['Details'], index = detail_params)
141 |
142 | category_md = df_unformatted_load['Category'][i]
143 | location_md = df_unformatted_load['Location'][i]
144 | raise_md = df_unformatted_load['raise'][i]
145 | method_md = df_unformatted_load['funding_method'][i]
146 | spec_url = df_unformatted_load['spec_url'][i]
147 |
148 | git_url = df_unformatted_load['Code'][i]
149 | git = git_md(git_url)
150 |
151 | ico_symbol = df_unformatted_load['symbol'][i]
152 | coin_type = df_unformatted_load['platform'][i]
153 | spec_url = df_unformatted_load['spec_url'][i]
154 | tech_stack = tech_spec_md(spec_url)
155 |
156 | param_stack = [category_md, location_md,raise_md,method_md,git, ico_symbol, coin_type,
157 | tech_stack]
158 |
159 | df_company_specific['Details'] = param_stack
160 |
161 | company_heading = "## " + df_unformatted_load['Name'][i] + "\n"
162 |
163 | f.write(company_heading)
164 | f.write(" \n")
165 | f.write(" \n")
166 |
167 | im_source, site_link = df_unformatted_load['logo_source'][i] , df_unformatted_load['Site'][i]
168 | active_logo = logo_md_header(im_source, site_link) + "\n"
169 | f.write(active_logo)
170 |
171 | f.write(" \n")
172 | f.write(" \n")
173 |
174 | f.write(df_unformatted_load['description'][i] + '\n')
175 | f.write(" \n")
176 | if df_unformatted_load['Notable'][i] == '-':
177 | pass
178 | else:
179 | f.write('*Notable: ' + str(df_unformatted_load['Notable'][i]) + '*' + '\n')
180 |
181 |
182 | f.write(" \n")
183 | f.write(" \n")
184 |
185 | f.write(tabulate(df_company_specific, [' ','Details'],tablefmt="pipe"))
186 | f.write(" \n")
187 | f.write("____\n")
188 |
189 | # Finally, we close the markdown file
190 | f.close()
--------------------------------------------------------------------------------
/src/Companies-Company Grid view.csv:
--------------------------------------------------------------------------------
1 | NAME,SITE,LOGO URL,CATEGORY,LOCATION,CODE,DEMO,TECHNICAL WHITEPAPER,PROFESSIONAL INVESTMENT?,INVESTMENT ($MM),ICO,ICO ($MM),FUNDING METHOD,PLATFORM,COIN SYMBOL,TWITTER HANDLE,DESCRIPTION,NOTEABLES,DEADPOOL,LAST UPDATED DATE
2 | aimedis,https://aim.aimedis.com,https://aim.aimedis.com/img/logo_new.png,Marketplace,"Steyl, Netherlands",,,,,,checked,,ICO,Ethereum,AIM,@AimedisGlobal,Platform to store and share medical records,,,
3 | Ambrosus,https://ambrosus.com/index.html,https://d33wubrfki0l68.cloudfront.net/9e1fb050865401a69f27b46683de38626a9372d0/9efc0/assets/logo-color-2.png,Supply Chain,"Zug, Switzerland",https://github.com/ambrosus,,https://ambrosus.com/assets/Ambrosus-White-Paper-V8-1.pdf,,,checked,$63.000,ICO,Ethereum,AMB,@AmbrosusAMB,Quality control and assurance of pharmaceutical products,,,
4 | AMCHART,http://amchart.io/,https://amchart.io/wp-content/themes/amchart/images/logos/logo.png,Patient Data Management,"Austin, TX, USA",,,http://amchart.io/white-paper/,,,checked,$45.000,ICO,Ethereum,AMC,@AMCHART4ALL,Incentive based EHR management.,,,
5 | ARNA Panacea,https://token.arnagenomics.com/,https://token.arnagenomics.com/wp-content/uploads/2018/01/logo-min.png,Research and Clinical Trials,"Moscow, Russia",,,https://token.arnagenomics.com/ARNA_whitepaper_en.pdf,,,,,,Ethereum,ARNA,@ArnaGenomics,Research oriented data exchange service focused on cancer.,,,
6 | Beat,https://beat.org,https://beat.org/img/logo-light.svg,Marketplace,"Hamburg, Germany",,,https://beat.org/beat_whitepaper.pdf,,,checked,$22.000,ICO,Ethereum,BEAT,@beattoken,Consumer health pipeline for sharing wearable and fitness data with EHR's,,,
7 | Bitmark,https://bitmark.com,https://bitmark.com/assets/img/logo-header.svg,"Payments, Claims and Other Services","Taipei, Taiwan",https://github.com/project-bitmark/bitmark,https://bitmark.com/tools-api,,checked,$1.700,,,SEED,BTC,BTM,@BitmarkInc,A universal system for digital property rights,,,
8 | BlockMedx,https://blockmedx.com/en/,https://blockmedx.com/static/images/svg/header-logo.svg,Supply Chain,"Lexington, KY, USA",https://github.com/blockmedx,,,,,checked,,ICO,Ethereum,MDX,@blockmedx,"Electronic prescription drug supply chain management, focused on opioids and other notoriously mismanaged drugs.",,,
9 | BlockRx,https://www.blockrx.com/,https://www.blockrx.com/wp-content/uploads/2017/07/mark-2-darker.png,Supply Chain,"Philadelphia, Pennsylvania, USA",,,https://www.blockrx.com/wp-content/uploads/2017/10/Whitepaper-Design-Extended.pdf,,,checked,,ICO,,BKRx,@BlockRxProject,"Pharmaceutical supply chain, coupled with clinical trial outcomes and regulation approval.",,,
10 | BowheadHealth,https://bowheadhealth.com/,https://bowheadhealth.com/images/uploads/bowhead.png,Digital Medicine,Singapore,,,https://drive.google.com/drive/u/1/folders/0B2CimLH8gflNMzY0WEFhRlBxSlU,,,checked,$1.000,ICO,Ethereum,AHT,@bowheadhealth,Hardware device that monitors a customer's biometric data to dispense medicine and supplements.,,,
11 | Bron.tech,https://bron.tech,https://bron.tech/images/logo/brontech-logo-color.png,Patient Data Management,"Sydney, New South Wales, Australia",,,,checked,$1.300,,,SEED,,BRON,@BrontechDapps,Platform for data sharing and identity management,,,
12 | BurstIQ,https://www.burstiq.com/,https://www.burstiq.com/wp-content/uploads/2016/01/burstIQ-logo-retina.png,Interoperability,"Denver, Colorado, USA",https://github.com/BurstIQ,,https://www.burstiq.com/wp-content/uploads/2017/08/BurstIQ-whitepaper_19Jul2017reduced.pdf,checked,$5.000,,,SEED,,BiQ,@BurstIQ,"Personalized data integration across EHR , wearables and social profile",,,
13 | CareChain,https://www.carechain.io,https://pbs.twimg.com/profile_images/879697269846675459/JbJvox69_400x400.jpg,Advisory/Consortium,"Stockholm, Sweden",https://github.com/carechain,https://github.com/carechain/Exposome,,,,,,,,,@CareChainIO,Consortium within Swedish ecosystem to tackle regulatory challenges related to blockchain infrastructure and personal data management for health.,,,
14 | Care4Me,https://carefourme.com/,https://carefourme.com/wp-content/uploads/thegem-logos/logo_e68cad3508180ab819fb9e28801b83b8_2x.png,Digital Medicine,"Miama, Florida, USA",https://github.com/care4me,,,,,,,,Ethereum,,@Care4me_,Connects nurses to patients in need of care,,,
15 | CareX Blockchain Platform,https://carex.tech/,https://carex.tech/assets/images/logo.png,"Payments, Claims and Other Services","Bellaire, Texas, USA",https://github.com/CareXTech,,,,,checked,$10.000,ICO,Ethereum,CARE,@carexblockchain,A method for the payment of health care services.,,,
16 | Citizen Health,https://citizenhealth.io/,https://citizenhealth.io/wp-content/uploads/2017/09/citizen-health-dark-logo-214x60.png,Marketplace,"Hattiesburg, MS, USA",,,,,,checked,,ICO,Ethereum,MDX,@CitizenHealthio,A peer-to-peer health market owned and controlled by the people & physicians.,,,
17 | Clinicoin,https://clinicoin.io/en,https://bitcoincryptocurrency.com/wp-content/uploads/2018/02/Clinicoin-696x449.jpg,Digital Medicine,"Seattle, WA, USA",https://github.com/clinicoin/,,https://www.mosio.com/noidx/Clinicoin_Whitepaper_2018.pdf,,,checked,,ICO,Ethereum,CLIN,@clinicoin,Clinicoin is a blockchain platform that pays you to be healthy,,,
18 | CoinHealth,https://coinhealth.io/,https://bitcoincryptocurrency.com/wp-content/uploads/2018/01/coinhealth-696x449.jpg,Patient Data Management,"Dallas, Texas, USA",https://github.com/CoinHealth/CoinHealth,,,,,checked,$0.100,ICO,WAVES,COINHEALTH,@coinhealth1,"Mobile platform for medical records, verification, and payment solutions",,,
19 | CoralHealth,https://mycoralhealth.com,https://cdn-images-1.medium.com/max/1600/1*qpL3FUGULJ8rmxVD0BEtew.png,Interoperability,"Vancouver, Canada",https://github.com/mycoralhealth,https://tips.mycoralhealth.com/,https://docsend.com/view/4xdqkp6,,,,,,,,@myCoralHealth,Aligning the interests of different players in the healthcare ecosystem,,,
20 | Cryogen,https://en.cryogen.me/,http://kriorus.ru/sites/kriorus/files/beb8f88c-98d3-4526-ade2-143453cf2688.png,Digital Medicine,"Moscow, Russia",,,,,,checked,$2.500,ICO,Ethereum,CRYO,@ICOcryogen,Reversible freezing of donor organs and organisms for the purpose of life extension and long space flights.,,,
21 | CureCoin,https://curecoin.net/,https://curecoin.net/wp-content/uploads/2016/05/Carp.png,Research and Clinical Trials,USA,https://github.com/cygnusxi/CurecoinSource,https://curecoin.net/knowledge-base/folding-for-curecoin/how-do-i-start-folding-for-curecoin-quick/,,,,checked,$6.800,ICO,Ethereum,CURE,@Curecoin_Team,A protein folding simulation Distributed Computing Network,,,
22 | Curisium,https://www.curisium.com,"https://static.wixstatic.com/media/6e4527_aa31af77b5d8470482c5e1672d33acb6~mv2.png/v1/fill/w_296,h_80,al_c,usm_0.66_1.00_0.01/6e4527_aa31af77b5d8470482c5e1672d33acb6~mv2.png","Payments, Claims and Other Services","Manhattan Beach, California, USA",,,,checked,$3.500,,,SEED,,AIM,@curisium,"Platform to allow payers, providers, and life science companies to engage with patient-value-based contracts.",,,
23 | CoverUs,https://www.coverus.io/,https://steemitimages.com/0x0/https://steemitimages.com/DQmRtiRwSxh6GpzmP87858JZfJ3VmHQxwXwJxu6ToEScD9z/CoverUS%20Logo.jpg,Marketplace,"Brooklyn, NY, USA",,,,,,,,,,,@CoverUSHealth,Broker your health data to interested parties,,,
24 | Datum,https://datum.org,https://tokenmarket.net/blockchain-static/ethereum/assets/datum-network/logo_big.png,Marketplace,Switzerland,https://github.com/datumnetwork,https://app.datum.org/,,,,checked,$7.200,ICO,Ethereum,DAT,@datumnetwork,Marketplace for social and IoT data,,,
25 | Dentacoin,https://www.dentacoin.com/,https://themerkle.com/wp-content/uploads/2017/07/dentacoin-logo-2.png,Marketplace,"Maastricht, Netherlands",https://github.com/Dentacoin,,,,,checked,$2.100,ICO,Ethereum,DCN,@dentacoin,Dental care marketplace,,,
26 | DentalFix,http://www.che-ss.com/dentalfix-ico/,https://cdn-images-1.medium.com/max/1361/1*vxjegwHIV4UoLR6i7Ro3tQ.jpeg,Supply Chain,"Saint Petersburg, Russia",,,,,,checked,$0.200,ICO,WAVES,DFBT,@DentalfixK,Dental clinics and the supply chain.,,,
27 | Digipharm,www.digipharm.ch,https://www.digipharm.ch/images/digipharm-logo-blue.png,"Payments, Claims and Other Services","Zug, Switzerland",,,,,,,,,,,@digipharmteam,Value based healthcare access,,,
28 | doc.ai,https://doc.ai/,https://tokensale.doc.ai/images/logo.png,Research and Clinical Trials,"Palo Alto, California, USA",https://github.com/doc-AI,,https://s3-us-west-1.amazonaws.com/ai.doc.static/pdf/whitepaper.pdf?_t=1508776745697,,,checked,$12.300,ICO,Ethereum,NRN,@_doc_ai,A mobile app for aquiring and exploring -OMICS data,,,
29 | EarthMedz,https://earthmedz.io,https://earthmedz.io/wp-content/uploads/2018/03/EARTH-MEDZ3-logo-copy.png,"Payments, Claims and Other Services",Australia,,,,,,checked,,ICO,Ethereum,ETD,@earthmedz,Matching specialists and patients with rare conditions,,,
30 | ELCoin,https://elcoin.io/,https://icobench.com/images/icos/icons/elcoin.jpg,Supply Chain,"Riga, Latvia",https://github.com/ElcoinCurrency/ElcoinContract,https://play.google.com/store/apps/details?id=com.elcoin.wallet&hl=en,https://elcoin.io/White_Paper%200.9_v3.pdf,,,checked,,ICO,Ethereum,ELC,@ELCOIN_IO,Expanding the availability of innovative medical equipment,,,
31 | Elige.re,https://www.elige.re/,https://icomarks.com/files/companies/11/960968b604be102ec2abfcb8750d4b98.jpg,Research and Clinical Trials,Russia,https://github.com/eligere,,http://www.elige.re/whitepaper.pdf,,,checked,,ICO,Ethereum,ELG,@elige_re,Peer shared computational power for protein folding,,,
32 | Embleema,https://embleema.com/,https://s3.amazonaws.com/main-newsbtc-images/2017/12/31111019/embleem.png,Patient Data Management,"New York, NY, USA",https://github.com/Embleema/Embleema,,,,,,,,,,@Embleema,PatientTruth for cloud based medical records,,,
33 | Encrypgen,https://www.encrypgen.com/,https://assets.coingecko.com/coins/images/1215/large/encrypgen.png?1511403548,Research and Clinical Trials,"Coral Springs, Florida, USA",https://github.com/encrypgen,https://my.encrypgen.com/login,,,,checked,$12.000,ICO,Ethereum,DNA,@Encrypgen ,Cloud storage and sharing of genomic data,,,
34 | Enome,https://enome.io/,https://i.vimeocdn.com/video/663723062_780x439.jpg,Research and Clinical Trials,"Sydney, Australia",,,,,,,,,,,@EnomeIo,Allows consumers to anonymously share their data for medical research.,,,
35 | Eterly,http://www.eterly.com/,"https://crunchbase-production-res.cloudinary.com/image/upload/c_lpad,h_120,w_120,f_auto,b_white,q_auto:eco/i2nh8fjedr4wtsdnyccp",Digital Medicine,"Vancouver, Canada",,https://itunes.apple.com/us/app/eterly/id1299757498?mt=8,,,,checked,,ICO,Ethereum,LTY,@EterlyLife,"Health and fitness advisor focusing on longevity, using token-based incentives",,,
36 | Etheal,http://etheal.com/,https://pbs.twimg.com/profile_images/905443871198507008/_xZ7OteP_400x400.jpg,"Payments, Claims and Other Services","Budapest, Hungary",,,,,,checked,,ICO,Ethereum,HEAL ,@etheal_com,Trusted review system for medical tourism,,,
37 | Faima,https://faima.ai,https://faima.ai/img/logo.png,Digital Medicine,"Moscow, Russia",,,,,,checked,,ICO,Ethereum,MEDS,,AI driven diagnosis and clinical decision support,,,
38 | FarmaTrust,https://www.farmatrust.com/,https://icobench.com/images/icos/icons/farmatrust.jpg,Supply Chain,"London, England",,,,,,checked,,ICO,Ethereum,FTT,@FarmaTrust,A platform for tracking drug authenticity,,,
39 | Gem.co,https://gem.co,https://icodrops.com/wp-content/uploads/2017/12/Jo8iJfoK_400x400.jpg,Marketplace,"Venice, CA, USA",https://github.com/GemHQ,,https://gem.co/wp-content/uploads/2016/10/GemOSPlatformWhitepaper.pdf,checked,$7.100,,,SERIES,"Ethereum, Hyperledger",GEM,@gemhq,Allows individuals to benefit from the value of their own data,,,
40 | Hashed Health,https://hashedhealth.com,https://pbs.twimg.com/profile_images/781263571934023680/szoxJXVS_400x400.jpg,Advisory/Consortium,"Nashville, Tennessee, USA",,,,checked,$1.800,,,SEED,,,@HashedHealth,A healthcare innovation consultancy focused on accelerating meaningful innovation using blockchain,,,
41 | Hayver,http://www.hayver.com,http://www.hayver.com/wp-content/uploads/2018/02/Official-logo-02-copy3.png,Digital Medicine,"Georgia, USA",,,,,,,,,Ethereum,,@HayverSupport,Advanced monitoring platform to address drug and alcohol addiction,,,
42 | HealPoint,http://healpoint.io/,https://healpoint.io/img/man.png,Digital Medicine,"Los Angeles, California, USA",,,,,,checked,,ICO,Ethereum,HLP,@HealPoint_io,Second opinion platform for medical diagnostics,,,
43 | Health Monitor,http://healthmonitor.io/,https://assets.coingecko.com/coins/images/1988/large/hlc.png?1514446359,Digital Medicine,"_estajovice, Czech Republic",,,,,,checked,$0.500,ICO,Ethereum,HLC,@healthmonitorio,"Non-invasive diagnostics of blood glucose level, lung cancer, stomach ulcer and diabetes.",,,
44 | Health Wizz,https://www.healthwizz.com/,https://d15shllkswkct0.cloudfront.net/wp-content/blogs.dir/1/files/2017/11/Health_Wizz_Logo_icon_Feb_2017-1.jpg,Patient Data Management,"Falls Church, Virginia, USA",,,https://daks2k3a4ib2z.cloudfront.net/586ebe41ba9f9499729002dc/59e6211d76c4d200017c6dc5_HealthWizz_White%20Paper.pdf,,,checked,,ICO,,,@health_wizz,"Mobile platform to aggregate, organize, and share medical records.",CEO appeared on CNBC https://www.cnbc.com/video/2017/12/26/how-we-are-using-blockchain-technology-to-secure-your-health-records-heath-wizz-ceo.html,,
45 | Healthbase,https://healthbase.digital/,https://i.imgur.com/qcBtxIh.png,Patient Data Management,"Bonn, Germany",,,,,,,,,Ethereum,,@healthbase1,"Utilizes blockchain to provide researchers, care providers, and patients access to health data.",,,
46 | Healthcombix,http://www.healthcombix.com/,https://pbs.twimg.com/profile_images/632665242644844544/aB733vqT_400x400.jpg,"Payments, Claims and Other Services","Nashville, Tennessee, USA",,,,,,,,,,,@HealthCombix,"Healthcare blockchain, distributed ledger, and decentralized network strategy and product development company.",,,
47 | HealthLinkages,http://healthlinkages.com,http://healthlinkages.com/assets/img/_hl/logo_hero.svg,"Payments, Claims and Other Services","Mountain View, California, USA",,,,checked,$0.300,,,SEED,,,@HealthLinkages,Uses blockchain-inspired technology to allow healthcare institutions to trust and share data,,,
48 | Healthureum,https://www.healthureum.io/,https://tokenmarket.net/blockchain-static/ethereum/assets/healthureum/logo_big.png,Marketplace,"Tallinn, Estonia",,,,,,checked,,ICO,Ethereum,HHEM,@healthureum,"Data consolidation and exchange, doctor consult and referrals and medial infrastructure",,,
49 | hieofone,http://hieofone.org,http://hieofone.org/images/blockchain-chart.png,Patient Data Management,Not Supplied,https://github.com/shihjay2/,,,,,,,,,,,Project to combine emerging standards for access authorization and blockchain-based self-sovereign identity into a patient-centered health record infrastructure.,Volunteer open-source project,,
50 | hit Foundation,https://hit.foundation,https://hit.foundation/wp-content/uploads/2017/09/HIT-logo.png,Marketplace,"Zug, Switzerland",,,https://hit.foundation/wp-content/uploads/Whitepaper-HIT-Foundation.pdf,,,checked,,ICO,NEM,HIT,@FoundationHit,Marketplace for personal health data,,,
51 | Ingeniciel,http://www.ingeniciel.com,https://pbs.twimg.com/profile_images/912409192761356288/g7ULXyFG_400x400.jpg,Patient Data Management,"Lyon, France",https://github.com/pibouv/ingeniciel,,,,,checked,,ICO,NXT,INGCL,@ingeniciel,Store and manage medical records,,,
52 | Iryo,https://iryo.io,https://icobench.com/images/icos/icons/iryo.jpg,Patient Data Management,"Kranj, Slovenia",https://github.com/iryonetwork,https://github.com/iryonetwork/wwm,https://iryo.io/iryo_whitepaper.pdf,,,checked,,ICO,EOS,IRYO,@iryonetwork,"Health record storage platform, with an anonymous query interface. Controls for patient record access and tokens to incentivize consent enabling artificial intelligence (AI) research.",,,
53 | Linda Healthcare ,https://linda.healthcare/,https://icolink.com/components/com_djclassifieds/images/item/698_ico-link-list-linda-healthcare_thb.jpg,Digital Medicine,"Palo Alto, California, USA",,,https://linda.healthcare/media/LindaHealthcare_WhitePaper_Final_Revised.pdf,,,checked,,ICO,Ethereum,LNDA,@LindaHealthcare,Primary care telemedicine A.I. chatbot,,,
54 | Litra,https://litra.site/,https://www.investitin.com/wp-content/uploads/2017/08/Litra-1.png,Patient Data Management,Switzerland,,,,,,checked,,ICO,Litecoin,LTA,@LitraCoin,Free electronic health records running on the Litra blockchain,,,
55 | Longenesis,http://www.longenesis.com/,https://pbs.twimg.com/profile_images/932291099955167232/nB3Kar8O_400x400.jpg,Marketplace,Hong Kong,,,,,,checked,,ICO,LifePound,,@Longenesis,"Platform which uses AI to store, manage, and trade life data: medical records, social network, and health data.",,,
56 | LunaDNA,https://www.lunadna.com,http://www.finsmes.com/wp-content/uploads/2017/12/lunadna-300x300.jpg,Marketplace,"San Diego, CA, USA",,,,checked,$2.000,checked,$2.000,"SEED,ICO",,,@luna_dna,Luna is a community owned database that rewards individuals Luna Coins for contributing their DNA and other medical information.,Ex-Illumina execs on CNBC https://www.cnbc.com/2017/12/18/luna-coin-project-sell-your-genetic-data-for-crypto-tokens.html,,
57 | Luven Diagnostic,https://luvenmed.io/,https://www.trackico.io/media/oOzVAea1_400x400.jpg,Digital Medicine,Ukraine,,,,,,checked,,ICO,Ethereum,LVN,@LuvenmedI,Early stage cancer diagnostic,,,
58 | Lympo,https://lympo.io,https://www.trackico.io/media/68CcMp3Q_400x400.jpg,Marketplace,Lithuania,https://github.com/LympoICO/ico-smartcontracts,,https://lympo.io/wp-content/uploads/2017/12/whitepaper.pdf?v5,,,checked,$12.800,ICO,Ethereum,LYM,@Lympo_io,Monetizing sports and health data,,,
59 | MedCredits,https://medcredits.io/,https://pbs.twimg.com/profile_images/899631295520747520/Ig5AUCO0.jpg,Digital Medicine,"Berkley, Michigan, USA",,,https://medcredits.io/docs/MedCreditsWhitePaper.pdf,,,checked,,ICO,Ethereum,MEDX,@MedCredits,"Telemedicine on the blockchain, powered by a public decentralized registry of physicians",Partnered with Civic https://www.coinspeaker.com/2018/03/21/medcredits-civic-partner-first-blockchain-powered-physician-registry/,,
60 | MediBloc,https://medibloc.org/en/,https://i1.wp.com/bitcoinexchangeguide.com/wp-content/uploads/2017/11/medibloc.jpg?resize=696%2C449&ssl=1,Interoperability,"Seoul, South Korea",https://github.com/Medibloc,,,,,checked,,ICO,MED,QTUM,@_MediBloc,"A decentralized healthcare information ecosystem for patients, healthcare providers and data researchers, built on blockchain technology.",,,
61 | MediBond,http://medibond.io/,https://qolczpnfu7-flywheel.netdna-ssl.com/wp-content/uploads/2017/08/MediBond_ico_329x207.png,"Payments, Claims and Other Services",Not Supplied,,,,,,checked,,ICO,Ethereum,MEDI,@medibondproj,"Verification system for prescriptions, claims and orders; medical records management; and personal health record",,,
62 | Medicalchain,https://medicalchain.com/en/,https://medicalchain.com/wp-content/uploads/2017/09/medicalchain_logo_dark_cropped_og.png,Patient Data Management,"London, England",https://github.com/medicalchain,https://join.medicalchain.com/patient/,https://medicalchain.com/Medicalchain-Whitepaper-EN.pdf,,,checked,$24.000,ICO,Ethereum,MTN,@medical_chain,Platform for storage and transfer of electronic health records,Traded on @bitfinex,,
63 | MediChain,https://medichain.online/,https://cdn-images-1.medium.com/max/960/1*iX2zZ3KDi79Ll3qMZxvPEw.jpeg,Patient Data Management,"London, UK",https://github.com/medichain,,https://docs.google.com/document/d/1CcC0TunMv_utiQwXlD9gysj1yc2QAj5jQ8jRAuCla9k/edit,,,,,,Ethereum,MCU,@MediChainOnline,Platform to allow patients to store and share their health data,,,
64 | medicohealth,https://medicohealth.io,https://medicohealth.io/images/logo2x.png,Digital Medicine,"Ljubljana, Slovenia",,,,checked,,checked,,"SEED,ICO",Ethereum,MHP,@Medico_Health,Telemedicine platform that allows patients to share health data with doctors,,,
65 | MediLedger,https://www.mediledger.com,https://i1.wp.com/bitcoinexchangeguide.com/wp-content/uploads/2018/02/MediLedger.jpg?resize=696%2C449&ssl=1,Supply Chain,"San Francisco, CA, USA",https://github.com/chronicled/mediledger,,https://uploads-ssl.webflow.com/59f37d05831e85000160b9b4/5aa358c647bb6800017a018b_MediLedger%20Project%202017%20Progress%20Report.pdf,,$12.000,,,,Ethereum,,@mediledger,Permissioned blockchain for tracking and tracing regulations to improve the operation of the supply chain in the pharmaceutical industry.,,,
66 | MedNetwork,http://www.mednetwork.io,http://c.fastcdn.co/t/6efc847b/3c7a834d/1520966946-28382932-436x71x436x83x0x6-mednetwork-logo.png,Digital Medicine,Singapore,,http://app.medai.network,,,,checked,,ICO,Ethereum,MEDAI,@MedAINetwork,Telemedicine platform for the sharing and analysis of medical images.,,,
67 | MedRec,https://medrec.media.mit.edu,https://medrec.media.mit.edu/images/logo.png,Patient Data Management,"Cambridge, Massachusetts, USA",,,http://dci.mit.edu/assets/papers/eckblaw.pdf,,,,,,,,,"Platform for patients to store, manage, and share electronic health records as well as allow researchers to receive anonymized medical data in return for sustaining the network.",A product of MIT Media Labs,,
68 | MedXchange,https://www.medxchange.io,"https://static.wixstatic.com/media/a6d7cc_573a7cdb21af47ccb79c6c0af5663160~mv2.png/v1/fill/w_212,h_212,al_c,usm_0.33_1.00_0.00/a6d7cc_573a7cdb21af47ccb79c6c0af5663160~mv2.png",Supply Chain,"Hong Kong, China",,,https://docs.wixstatic.com/ugd/a6d7cc_ccd72646ac6e4217be3b19d0c04d9025.pdf,,,checked,,ICO,Ethereum,MEDCASH,@medXchange1,"A supply chain system for handling transactions, data transfer and storage, and payments of medical devices.",,,
69 | minthealth,https://www.minthealth.io/,https://www.minthealth.io/wp-content/uploads/2018/03/minthealth-logo-color.png,Patient Data Management,"San Diego, California, USA",,,,,,checked,,ICO,Ethereum,VIDA,@Mint_Health,"A global decentralized health platform that empowers patients with a self-sovereign health identity and aligns patients, providers, and payers to battle the global pandemic of chronic disease",,,
70 | modum,https://modum.io/,http://bitcoinprbuzz.com/wp-content/uploads/2017/09/Modium-PR-image-1080x600.png,Supply Chain,"Zurich, Switzerland",https://github.com/modum-io,https://github.com/modum-io,https://modum.io/wp-content/uploads/2017/08/modum-whitepaper-v.-1.0.pdf,,,checked,$13.400,ICO,Ethereum,MOD,@modum_io,Utilizes IoT sensors with blockchain and smart contracts to improve supply chain processes,,,
71 | MyMedis,https://mymedis.in,https://pbs.twimg.com/profile_images/915926253777166336/N0rNy7GI_400x400.jpg,Patient Data Management,"Westerville, Ohio, USA",,,https://mymedis.in/documents/MEDIS-White-Paper.pdf,,,checked,,ICO,Ethereum,MEDIS,@mymedisin,Distributed system to provide ownership of medical records and health data.,,,
72 | nanoVision,https://nanovision.com,https://nanovision.com/wp-content/themes/nanovision/images/nanovision-logo.svg,Research and Clinical Trials,"Austin, Texas, USA",,,,,,,,,,,@NanoVisionIO,Platform to aggregate and authenticate research data,,,
73 | Nebula Genomics,https://www.nebulagenomics.io,https://pbs.twimg.com/profile_images/952370533911355392/ALcQsYaV_400x400.jpg,Marketplace,"Boston, Massachusetts, USA",,,https://www.nebulagenomics.io/assets/documents/NEBULA_whitepaper_v4.52.pdf,checked,$1.600,checked,$1.600,"SEED,ICO",Ethereum,,@NebulaGenomics,Peer-to-peer network for buying and selling genomic data,Co-founded by [George Church](https://en.wikipedia.org/wiki/George_M._Church),,
74 | NWP Solutions,https://www.nwpsolution.com/images/NWP-logo-black.svg,https://www.nwpsolution.com/images/NWP-logo-black.svg,Patient Data Management,Estonia,,,https://www.nwpsolution.com/nwp_whitepaper.pdf,,,checked,,ICO,Ethereum,,@nwpplatform,Decentrailized health case system,,,
75 | Open Longevity,http://en.openlongevity.io/,https://steemitimages.com/DQmY9AihRiQSryQFXAJYysdXsX4hzt7oS9cR8XvfeEATi6C/image.png,Research and Clinical Trials,"Moscow, Russia",,,,,,checked,,ICO,Ethereum,YEAR,@Open_Longevity,"A project that initiates, organizes and guarantees the openness of clinical trials of aging therapies",,,
76 | Patientory,https://patientory.com/,https://cdn-images-1.medium.com/max/944/0*Y0XaxChgf3EMzMkb.png,Patient Data Management,"Atlanta, Georgia, USA",,,https://patientory.com/patientory_whitepaper.pdf,,,checked,$7.200,ICO,Ethereum,PTOY,@patientory,A healthcare peer-to-peer EMR storage network,,,
77 | PokitDok,https://pokitdok.com,https://www.blockchaintechnology-news.com/wp-content/uploads/2017/05/ximg-pd-peg.png.pagespeed.ic.9Q6wxcVWUP.png,"Payments, Claims and Other Services","Sillicon Valley, CA, USA",https://github.com/pokitdok,https://platform.pokitdok.com/documentation/v4/#overview,https://pokitdok.com/wp-content/themes/pokitdok2017/dokchain/static/data/DokChainWhitepaper20170926Draft.pdf,checked,$55.300,,,SEED,,CURE,@PokitDok,Provides platform-as-a-service to enable healthcare organizations to develop new healthcare applications and services.,,,
78 | Proof.Work,https://proof.work/,https://i2.wp.com/bitcoinexchangeguide.com/wp-content/uploads/2018/03/proof-work.jpg?resize=696%2C449&ssl=1,Patient Data Management,"London, England",,https://proof.work/coupon/,,,,,,,,,@proofhealth,Provides platform for self-governance of health data and allows others access through smart contracts by using their portable management tool kit.,,,
79 | Robomed Network,https://robomed.io/,https://cdn-images-1.medium.com/max/1200/1*SISRzAG8TMwPkYx1uyvAaQ.png,"Payments, Claims and Other Services",Russia,,,,,,checked,$14.100,ICO,Ethereum,RBM,@Robomed_Network,An EHR that allows for the management of a medical organization based on smart contracts that allow for the monitoring of all proccess of interaction with the patient.,,,
80 | ScalaMed,https://www.scalamed.com,https://scontent.fsnc1-1.fna.fbcdn.net/v/t1.0-1/20429931_1421973511226779_5207861906003401508_n.png?_nc_cat=0&oh=3838add2c2864478fbe144a29fc10f97&oe=5B2E5B0B,"Payments, Claims and Other Services","Sydney, Australia",,,,checked,,,,SEED,,,@ScalaMed_Health,"A mobile prescription exchange system for patients, doctors, and pharmacists to manage, prescribe, as well as dispense prescription medications.",,,
81 | Shivom,http://shivom.io/,https://www.icoexaminer.com/wp-content/uploads/2018/03/shivom-logo.jpg,Marketplace,"Munich, Germany",,,https://shivom.io/files/Whitepaper.pdf,,,checked,,ICO,Ethereum,OMX,@ProjectShivom,"A B2B and B2C platform to provide services primarily for the storage, process, and analysis of genomic data.",,,
82 | Simply Vital Health,https://www.simplyvitalhealth.com/,https://icoholder.com/files/img/c969ab61b34f832a806882646f841e81.jpeg,Interoperability,"Bloomfield, Connecticut, USA",https://github.com/Health-Nexus,,https://docsend.com/view/cuufmc5,checked,$0.500,checked,,"SEED,ICO",Ethereum,HLTH,@SimplyVitalHQ,"Health Nexus is an open-source blockchain protocol for handling data transfer, payments and storage specifically designed for healthcare",,,
83 | SmartHealthcare,https://smarthealthcare.today/,https://assets.coingecko.com/coins/images/2319/large/shc.png?1515500205,Interoperability,Estonia,https://github.com/smarthealthcaretoday/,,https://smarthealthcare.today/resources/whitepaper.pdf,,,checked,,ICO,Ethereum,SHC,@SmrtHealthToday,System to integrate and process health related data collected from different data sources.,,,
84 | Solve.Care,https://solve.care/,https://i2.wp.com/bitcoinexchangeguide.com/wp-content/uploads/2017/12/solve-care.jpg?resize=696%2C449&ssl=1,"Payments, Claims and Other Services",Estonia,https://github.com/SolveCare,,https://solve.care/solvecare-documents?l=en,,,checked,$23.600,ICO,Ethereum,CAN,@Solve_Care,Blockchain platform for decentralized administration and payments of healthcare.,,,
85 | Spiritus,https://www.spirituspartners.com,https://static1.squarespace.com/static/5a708340c027d82f766de3bd/t/5a708f1bc83025e26582668c/1523267191078/?format=1500w,Supply Chain,"Edinburgh, United Kingdom",,,,,,,,,,,@SpiritusPtrs,Solution to allow all involved parties to record evidence of service for critical assets and infrastructure.,,,
86 | SSOT Health Blockchain,https://www.ssothealth.org,"https://static.wixstatic.com/media/4b78ba_27700438c9724311abc1544cd684151b~mv2.png/v1/fill/w_72,h_84,al_c,usm_0.66_1.00_0.01/4b78ba_27700438c9724311abc1544cd684151b~mv2.png",Patient Data Management,"Cambridge, Massachusetts, USA",,,,,,checked,,ICO,Ethereum,SEHR,@ssothealth,Medical records system to enable patients to own and control their medical history data,,,
87 | Synthium Health,https://tge.synthiumhealth.com/,https://foxico.io/static/uploads/logofile-1511391119916.png,Supply Chain,"Marietta, Georgia, USA",,,,checked,$0.500,checked,$0.500,"SEED,ICO",Ethereum,SHP,@SynthiumHealth,Supply-chain management platform that allows healthcare suppliers and buyers to conduct business.,,,
88 | Tides,https://pbs.twimg.com/profile_images/971805158337232896/WSHC9N8X_400x400.jpg,https://pbs.twimg.com/profile_images/971805158337232896/WSHC9N8X_400x400.jpg,"Payments, Claims and Other Services","San Francisco, CA, USA",,,https://docsend.com/view/nw2ks4n,,,,,,Stellar,TIDE,@TidesNetwork,Decentralized health insurance network.,,,
89 | Timicoin,https://timicoin.io,https://timicoin.io/images/logo.svg,Patient Data Management,Not Supplied,,,,,,,,,,,@timicoin,Health information exchange that will secure health information and deliver patient records only with patient authorization.,,,
90 | trustedhealth,https://trustedhealth.io/,https://ibcgroup.io/wp-content/uploads/2017/12/trustedhealth-big.png,Digital Medicine,United Kingdom,,,,,,checked,,ICO,Ethereum,TDH,@_trustedhealth,Platform to connect patients and doctors of rare or life-threatening diseases.,,,
91 | Universal Health Coin,https://www.universalhealthcoin.com/,https://i0.wp.com/blockchainhealthcarereview.com/wp-content/uploads/2017/12/Universal-Health-Coin.png?resize=228%2C251&ssl=1,"Payments, Claims and Other Services","Augusta, Georgia, USA",,,http://www.universalhealthcoin.com/wp-content/uploads/UHCWhitePaper-V2.3.pdf,,,checked,,ICO,NEO,UHC,@UHCToken,"A privacy focused,, token-based healthcare finance system that utilizes blockchain to arbitrage, decentralize and provision payment of health services.",,,
92 | Veris Foundation,https://www.verisfoundation.com/,https://i.vimeocdn.com/video/655062420_640.jpg,"Payments, Claims and Other Services","Jersey City, New Jersey, USA",https://github.com/VerisFoundation,,https://veris.docsend.com/view/fbqysxf,,,checked,,ICO,NEO,VRS,@verisfoundation,The Veris platform is a blockchain that specifically addresses the expenses in the American healthcare system. The platform is open source and takes advantage of smart contracts to replace portions of the eligibility through remittance process in the provisioning of healthcare services.,,,
93 | WELL,https://joinwell.io/,https://www.coinstaker.com/wp-content/uploads/2018/01/Well_logo_H_Teal_CMYK.jpg,Digital Medicine,"Santa Monica, California, USA",,,,,,checked,$3.000,ICO,Ethereum,WELL,@jointeamwell,"Mobile healthcare marketplace for telehealth, clinics, personalized service, and health data storage.",,,
94 | Youbase,https://www.youbase.io,https://ccn2017.wpengine.com/wp-content/uploads/2015/06/1-youbase.png,Patient Data Management,"Englewood, CO, USA",https://github.com/YouBase,https://developer.youbase.io,https://paper.youbase.io/content/,checked,$1.000,,,SEED,,,@youbaseio,Enables patients to create and maintain a personal data store on a distributed public network,,,
95 | Zenome,https://zenome.io/,https://i.imgur.com/NjyUZs3.png,Marketplace,"Moscow, Russia",https://github.com/zenome,,https://zenome.io/download/whitepaper.pdf,,,checked,$0.600,ICO,Ethereum,ZNA,@ZenomePlatform,A marketplace for genomic data and services,,,
--------------------------------------------------------------------------------