-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathdata.yml
7427 lines (7427 loc) · 385 KB
/
data.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
landscape:
- category:
name: Companies
subcategories:
- subcategory:
name: Brain Computer Interfaces
items:
- item:
name: Neuralink
description: Neuralink is developing ultra-high bandwidth brain-machine interfaces to connect humans and computers.
homepage_url: https://neuralink.com
crunchbase: https://www.crunchbase.com/organization/neuralink
github_org_url: https://github.com/neuralinkcorp
logo: neuralink.svg
locations:
- location:
city: Fremont
country: USA
- location:
city: Austin
country: USA
extra:
summary_tags: bci, robotics, utah-array, hardware, elon-musk, funding-500M
- item:
name: Science
description: |
Science develops advanced technologies with the goal to, over time, blur the line between medical devices and consumer electronics.
Today we are focused on debilitating conditions for which there is a serious unmet medical need.
As these technologies mature, they hold the potential to profoundly reshape the human condition.
homepage_url: https://science.xyz
crunchbase: https://www.crunchbase.com/organization/science-5003
github_org_url: https://github.com/sciencecorp
logo: science-co.svg
locations:
- location:
city: Alameda
country: USA
extra:
summary_tags: bci, hardware, max-hodak, neuralink
- item:
name: Braingate
description: |
Our research team includes leading neurologists, neuroscientists,
engineers, computer scientists, neurosurgeons, mathematicians, and other researchers
- all focused on developing brain-computer interface (BCI) technologies to restore the communication, mobility,
and independence of people with neurologic disease, injury, or limb loss.
Our research is focused not only on improving the ability to operate a computer, but also on providing people with ALS, spinal cord injury,
and stroke with reliable, constant control over their environment.
homepage_url: https://www.braingate.org
crunchbase: https://www.crunchbase.com/organization/braingate
logo: braingate.svg
locations:
- location:
city: Providence
country: USA
extra:
summary_tags: bci, robotics, utah-array, hardware,
- item:
name: Neuraura
description: We leverage proprietary thin film electrodes to provide world-class high fidelity EEG and physiological data for unlocking the brain and metabolic insights.
homepage_url: https://www.neuraura.com
crunchbase: https://www.crunchbase.com/organization/neuraura
logo: neuraura.svg
locations:
- location:
city: Calgary
country: Canada
extra:
summary_tags: bci, hardware, eeg
- item:
name: Synchron
description: Synchron is a bioelectronics medicine company that develops neuromodulation solutions for previously-untreatable nervous system conditions.
homepage_url: https://synchron.com
crunchbase: https://www.crunchbase.com/organization/synchron-inc
logo: synchron.svg
locations:
- location:
city: New York
country: USA
extra:
summary_tags: bci, hardware, eeg, funding-100M
- item:
name: Precision Neuroscience
description: |
Precision's goal is to provide breakthrough treatments for the one billion patients worldwide suffering from neurological illnesses.
We are building the only brain-computer interface that is designed to be minimally invasive, safely removable, and capable of processing large amounts of data.
homepage_url: https://precisionneuro.io
crunchbase: https://www.crunchbase.com/organization/precision-neuroscience
logo: precision_neuroscience_corporation_logo.svg
locations:
- location:
city: New York
country: USA
extra:
summary_tags: bci
- item:
name: Motif
description: |
First pea-sized brain stimulator designed for humans. Precise brain stimulation with an implant that never touches the brain.
Designed to be implanted in a 20-minute procedure.
homepage_url: https://www.motifneuro.tech
crunchbase: https://www.crunchbase.com/organization/motif-neurotech
logo: motif.svg
academics:
- academic:
name: Sameer Sheth
profile_url: https://scholar.google.com/citations?user=lgG2xMgAAAAJ
citations: 10037
hindex: 56
i10index: 166
- academic:
name: Sunil Sheth
profile_url: https://scholar.google.com/citations?user=LhKdnzsAAAAJ
citations: 7508
hindex: 36
i10index: 83
locations:
- location:
city: New York
country: USA
extra:
summary_tags: bci, baylor-college-of-medicine, harvard
- item:
name: Ruten Neuro
description: Ruten is a Brain-Machine Interface company aiming to establish reconstructive treatments for conditions where standard options are either infeasible or ineffective.
homepage_url: https://www.ruten-neuro.com
logo: ruten.svg
locations:
- location:
city: Tokyo
country: Japan
- location:
city: Sacramento
country: USA
extra:
summary_tags: bci
- item:
name: Neurosoft Bioelectronics
description: |
Subdural Electrodes For Sub-Chronic Use
The SOFT ECoG is the most compliant and flexible subdural electrode technology in the world. It can be used to record from and stimulate the surface of the brain with no added risk to the patient thanks to its conformability and softness.
The devices can be used for a wide range of sub-chronic applications such as the precise identification of epileptogenic brain tissue in drug-resistant epilepsy patients.
The SOFT ECoG is a family of products that can be tailored to fit your requirements and we are excited to announce that a wide range of devices will be available for your clinical needs.
homepage_url: http://neurosoft-bio.com
crunchbase: https://www.crunchbase.com/organization/neurosoft-bioelectronics
logo: neurosoft.svg
academics:
- academic:
name: Stéphanie P. Lacour
profile_url: https://scholar.google.ch/citations?user=1K-jygEAAAAJ
citations: 15192
hindex: 60
i10index: 155
- academic:
name: Ivan Minev
profile_url: https://scholar.google.com/citations?user=BK1fVjgAAAAJ
citations: 2366
hindex: 19
i10index: 21
- academic:
name: Dirk De Ridder
profile_url: https://scholar.google.be/citations?user=6xmyxH4AAAAJ
citations: 27569
hindex: 82
i10index: 300
- academic:
name: Christian Hauptmann
profile_url: https://scholar.google.de/citations?user=b2x8znYAAAAJ
citations: 4126
hindex: 34
i10index: 52
locations:
- location:
city: Geneva
country: Switzerland
extra:
summary_tags: bci, epfl, sheffield
- item:
name: Blackrock Neurotech
description: |
Nearly all BCIs implanted in humans have used Blackrock's technology—specifically the NeuroPort Electrode, the world's most advanced and longest lasting intracortical electrode.
1.7K+ published studies.
116 peer reviewed journal articles.
1000+ research customers.
40+ system configurations.
19+ years of human studies.
30K+ collective days implanted.
homepage_url: https://blackrockneurotech.com
crunchbase: https://www.crunchbase.com/organization/blackrock-neurotech
logo: blackrock-neurotech.svg
academics:
- academic:
name: Florian Solzbacher
profile_url: https://scholar.google.com/citations?user=drmp_CAAAAAJ
citations: 7572
hindex: 44
i10index: 104
locations:
- location:
city: Sacramento
country: USA
extra:
summary_tags: bci, utah, utah-array, neuroprosthetics, computer-control, communication, sensory-restoration
- item:
name: OpenBCI
description: |
OpenBCI creates open-source tools for biosensing and neuroscience.
OpenBCI’s mission is to lower the barrier to entry for brain-computer interfacing,
while ensuring that these technologies are adopted into the consumer landscape in an ethical way that protects user agency and mental health.
homepage_url: https://openbci.com
github_org_url: https://github.com/OpenBCI
twitter: https://twitter.com/OpenBCI
logo: open-bci.svg
academics:
- academic:
name: Nita Farahany
profile_url: https://scholar.google.com/citations?user=OGf0mD4AAAAJ
citations: 1950
hindex: 22
i10index: 29
- academic:
name: Paul Sajda
profile_url: https://scholar.google.com/citations?user=kEXTeI4AAAAJ
citations: 11685
hindex: 53
i10index: 153
locations:
- location:
city: New York
country: USA
extra:
summary_tags: hardware, software, spatial-computing, tooling, eeg, emg, non-invasive, columbia-university, bci
- item:
name: OnwardMedical
description: |
We are a team of scientists, engineers, and physicians, collectively driven to create therapies that change lives.
We are driven to innovate, with 10 FDA Breakthrough Device Designation awards and nearly 400 issued or pending patents.
We developed flagship product ARCBCI System that creates a digital bridge between the brain and the body to restore thought-driven movement after paralysis.
The ARCBCI System uses artificial intelligence (AI) to decode a person’s brain signals and translate their intention to move into precise stimulation instructions for the ARCIM System.
The US FDA awarded Breakthrough Device Designation to the ARCBCI System in early 2024.
In partnership with EPFL and CEA-Clinatec, in 2021 we successfully implanted an investigational BCI in a human to augment our ARCIM Therapy with thought-driven movement of the legs after paralysis. The approach was published in Nature in May 2023.
With a European Innovation Council grant to study restoration of thought-driven arm and hand movement after SCI, an additional human was implanted with ARCIM Therapy + BCI in 2023. Three more people are scheduled to participate in the study in 2024.
homepage_url: https://www.onwd.com/
crunchbase: https://www.crunchbase.com/organization/gtx-medical
logo: onward-medical.svg
twitter: https://www.twitter.com/onwdempowered/
academics:
- academic:
name: Gregoire COURTINE
profile_url: https://scholar.google.fr/citations?user=Jvd6Y1UAAAAJ
citations: 19648
hindex: 69
i10index: 129
- academic:
name: Jocelyne Bloch
profile_url: https://scholar.google.com/citations?user=EAGtm20AAAAJ
citations: 10979
hindex: 45
i10index: 91
locations:
- location:
city: Eindhoven
country: Netherlands
- location:
city: Lusanne
country: Switzerland
- location:
city: Boston
country: USA
extra:
summary_tags: funding-100M
- item:
name: Paradromics
description: |
We are building a direct data interface with the brain to provide technology solutions to unmet medical challenges.
A revolutionary leap beyond today’s research-grade brain computer interfaces (BCI), our Connexus® Direct Data Interface (DDI) collects neural signals at an industry-leading high data-rate and is designed for long-term daily use.
Our first clinical application will enable severely motor-impaired people to communicate and independently use a computer, translating their neural signals into synthesized speech, text, and cursor control.
We will continue to expand the capabilities of our massively scalable platform to support a pipeline of future applications that could benefit millions.
homepage_url: https://www.paradromics.com
crunchbase: https://www.crunchbase.com/organization/paradromics
logo: paradromics.svg
twitter: https://twitter.com/paradromics
academics:
- academic:
name: Matt Angle
profile_url: https://scholar.google.com/citations?user=jO1zRcQAAAAJ
citations: 685
hindex: 9
i10index: 9
- academic:
name: Vikash Gilja
profile_url: https://scholar.google.com/citations?user=EO3cAGQAAAAJ
citations: 5300
hindex: 34
i10index: 56
- academic:
name: Kurtis Nishimura
profile_url: https://scholar.google.com/citations?user=91-2b10AAAAJ
citations: 17781
hindex: 64
i10index: 172
- academic:
name: Shaoyu Qiao
profile_url: https://scholar.google.com/citations?user=JQ7ksGsAAAAJ&hl=en
citations: 262
hindex: 9
i10index: 8
- academic:
name: Shaoyu Qiao
profile_url: https://scholar.google.com/citations?user=JQ7ksGsAAAAJ&hl=en
citations: 262
hindex: 9
i10index: 8
- academic:
name: Saul Jaime
profile_url: https://scholar.google.com/citations?user=dmZfFSMAAAAJ&hl=en
citations: 171
hindex: 5
i10index: 5
- academic:
name: Aamir Ahmed Khan
profile_url: https://scholar.google.com/citations?user=7pVWwbsAAAAJ&hl=en
citations: 289
hindex: 8
i10index: 7
- academic:
name: Sean Perkins
profile_url: https://scholar.google.com/citations?user=Wpuq5pgwrLMC&hl=en
citations: 510
hindex: 7
i10index: 6
- academic:
name: Michael Trumpis
profile_url: https://scholar.google.com/citations?user=bLuaC5oAAAAJ&hl=en
citations: 1426
hindex: 15
i10index: 18
locations:
- location:
city: Austin
country: USA
extra:
linkedin_url: https://www.linkedin.com/company/paradromics-inc/
summary_tags: hardware, software, bci, darpa, funding-100M
- subcategory:
name: BCI (EEG & non-invasive)
items:
- item:
name: Nexstem
description: Nexstem is making state-of-the-art BCI headsets intuitive and affordable for everyone.
homepage_url: https://www.nexstem.ai
logo: nexstem.svg
twitter: https://twitter.com/nexstemai
locations:
- location:
city: Bengaluru
country: India
extra:
youtube_url: https://www.youtube.com/channel/UCZIMG32ABv_HkikxU8wcF_A
linkedin_url: https://linkedin.com/company/nexstemai
summary_tags: bci, eeg, non-invasive, hardware
- item:
name: Neurolutions
description: Neurolutions provides non-invasive FDA approved devices for stroke rehabilitation.
homepage_url: https://www.neurolutions.com
crunchbase: https://www.crunchbase.com/organization/neurolutions
logo: neurolutions.svg
locations:
- location:
city: St. Louis
country: USA
- location:
city: Santa Cruz
country: USA
extra:
summary_tags: bci, robotics, fda, stroke, non-invasive, hardware
- item:
name: Kernel
description: Kernel is a neuroscience company that specializes in developing brain-recording technologies.
homepage_url: https://www.kernel.com/
crunchbase: https://www.crunchbase.com/organization/kernel-co
logo: kernel-co.svg
locations:
- location:
city: Los Angeles
country: USA
extra:
summary_tags: bci, hardware, eeg, non-invasive, bryan-johnson
- item:
name: Prophetic
description: Prophetic AI is a non-invasive neurotech company that offers neural devices to help people stabilize and induce lucid dreaming.
homepage_url: https://www.prophetic.com
crunchbase: https://www.crunchbase.com/organization/prophetic-ai
logo: propheticai.svg
twitter: https://twitter.com/PropheticAI
locations:
- location:
city: New York
country: USA
extra:
youtube_url: https://www.youtube.com/channel/UCGgnWz-IX0wkbohlGp6FUEg
linkedin_url: https://linkedin.com/company/propheticai/
summary_tags: bci, eeg, sleep
- subcategory:
name: Visualization
items:
- item:
name: LVIS
description: Through our advanced brain network analysis tools (NeuroMatch®), provides Live Visualization to innovate how neurological diseases are examined.
homepage_url: http://lviscorp.com
crunchbase: https://www.crunchbase.com/organization/lvis
logo: lvis.svg
locations:
- location:
city: Palo Alto
country: USA
- location:
city: Seoul
country: South Korea
- location:
city: Daegu
country: South Korea
extra:
summary_tags: connectomics, visualization, stanford, lee-lab
- item:
name: Imaging Biometrics
description: |
A complete suite of physiological imaging analysis tools for diagnosis, pre-surgical planning, treatment response monitoring and follow-up.
Includes our flagship application, IB NEURO™ Perfusion MRI and CT analysis using dynamic susceptibility contrast images,
and IB DELTA SUITE™ MR image registration and subtraction for improved comparison of post-contrast to pre-contrast images.
IB DCE™ and IB DIFFUSION™ complete the analysis for advanced MRI.
homepage_url: https://www.imagingbiometrics.com
crunchbase: https://www.crunchbase.com/organization/imaging-biometrics
logo: imaging_biometrics.svg
locations:
- location:
city: Milwaukee
country: USA
extra:
summary_tags: fmri, surgery
- item:
name: AMRIT
description: |
Advanced MRI Technologies, LLC (AMRIT) is a research and development company in the fields of medical and scientific imaging.
David Feinberg.
homepage_url: https://www.advancedmri.com
logo: amrit.svg
locations:
- location:
city: Berkeley
country: USA
extra:
summary_tags: fmri, imaging
- subcategory:
name: Research Platforms
items:
- item:
name: OpenScope
description: |
A platform for high-throughput and reproducible neurophysiology, openly available to run experiments for external scientists.
OpenScope is the first astronomical observatory in Neuroscience.
Scientists across the world can propose new experiments that will be executed freely on the Allen Brain Observatory pipeline.
Record from thousands of neurons across the mouse brain using either multi-probes Neuropixels recordings or multi-area two photon calcium imaging.
An end-to-end standardized experimental platform including brain surgery, animal behavioral training, neuronal recordings and brain reconstruction.
All datasets are shared as standardized Neurodata Without Borders (NWB) files in a public archive (DANDI) in the cloud.
homepage_url: https://alleninstitute.org/division/neural-dynamics/openscope/
crunchbase: https://www.crunchbase.com/organization/allen-institute-for-brain-science
logo: open-scope.svg
locations:
- location:
country: USA
extra:
summary_tags: allen-institute, neuropixels, nwb, neurophysiology
- item:
name: MetaCell
description: |
Our suite of products and services helps you visualise, share, and analyse your life science data in best-in-class applications — with support from the MetaCell team every step of the way.
Past projects done with UC San Diego, UCL, University of Edinburgh, State University of New York, Pfizer, Yale, Brain Observatory, BrainCommons, and more.
homepage_url: https://www.metacell.us
crunchbase: https://www.crunchbase.com/organization/metacell
github_org_url: https://github.com/MetaCell
logo: metacell.svg
locations:
- location:
city: Gloucestershire
country: UK
- location:
city: Cambridge
country: USA
- location:
city: Cagliari
country: Italy
- location:
country: Worldwide
extra:
summary_tags: cloud, visualization, hosting, software, tools
- subcategory:
name: Surgery
items:
- item:
name: INSIGHTEC
description: Clinical neurosurgery solutions. Using ultrasound. Caregiving services.
homepage_url: https://www.insightec.com
crunchbase: https://www.crunchbase.com/organization/insightec
logo: insightec.svg
locations:
- location:
country: USA
- location:
country: Israel
- location:
country: Japan
extra:
summary_tags: surgery, healthcare, tremor, parkinsons
- item:
name: Brainlab
description: |
Brainlab has been innovating for over a quarter century in the areas of surgery and radiation therapy,
developing hardware and software technology to help healthcare providers, physicians and
their patients fight cancer and other conditions of the brain and body.
Some of the customers include Neuralink.
homepage_url: https://www.brainlab.com
crunchbase: https://www.crunchbase.com/organization/brainlab
logo: brainlab.svg
locations:
- location:
city: Munich
country: Germany
- location:
country: USA
- location:
country: Worldwide
extra:
summary_tags: neuralink, surgery, radiation-therapy
- subcategory:
name: Brain-Inspired Compute
items:
- item:
name: KanjuTech
description: |
KanjuTech creates next-generation neural networks using the latest advances in neuroscience.
We dream of broader application of AI in everyday life and industry by making neural networks more adaptive and straightforward for setup and use.
At KanjuTech, we combine neuroscience and machine learning to achieve the next generation of AI.
The algorithms we use are as different from deep learning as deep learning is from mathematical statistics.
KanjuTech's vision is to empower people with a broader introduction of AI into life, freeing people from routine tasks and letting them be creative.
Now we are working on a product for audio source separation and recognition to enhance speech communication and music production.
homepage_url: https://kanju.tech
logo: kanjutech.svg
academics:
- academic:
name: Oleg Nikitin
profile_url: https://scholar.google.ru/citations?user=XgiByAIAAAAJ
citations: 135
hindex: 4
i10index: 2
- academic:
name: Olga Lukyanova
profile_url: https://scholar.google.ru/citations?user=9lg8OpcAAAAJ
citations: 139
hindex: 4
i10index: 2
locations:
- location:
country: Hong Kong
- location:
city: Okinawa
country: Japan
extra:
summary_tags: cloud, audio, neuroscience, oist, speaker-detection, spiking-neurons, unsupervised-learning, noise-cancellation, multi-modal
- item:
name: Numenta
description: Neurologically inspired machine learning algorithms and solutions for cloud.
homepage_url: https://numenta.com
github_org_url: https://github.com/numenta
logo: numenta.svg
locations:
- location:
city: Redwood City
country: USA
extra:
summary_tags: cloud
- subcategory:
name: Lab Equipment & Robotics
items:
- item:
name: Opentrons
description: |
We make robots for scientists
At Opentrons we believe that scientists should be able to focus on their science to accelerate discovery and innovation, and that access to automation is a key tool to facilitate that.
Our mission is to democratize access to laboratory robotics.
There are currently ten times the number of scientists to lab robots in the world. When we're done, that ratio will be flipped, and there will be ten times the number of lab robots to scientists.
homepage_url: https://opentrons.com
logo: opentrons.svg
crunchbase: https://www.crunchbase.com/organization/opentrons
locations:
- location:
country: USA
extra:
summary_tags: automation, robotics
- item:
name: OpenUC2
description: We provide composable lab equipment openUC2 optical toolboxes.
homepage_url: https://openuc2.com/team/#overview
logo: openuc2.svg
academics:
- academic:
name: Benedict Diederich
profile_url: https://scholar.google.de/citations?user=TvSHTGkAAAAJ
citations: 411
hindex: 10
i10index: 11
- academic:
name: René Lachmann
profile_url: https://scholar.google.de/citations?user=kNlEu-sAAAAJ
citations: 170
hindex: 5
i10index: 4
locations:
- location:
country: Germany
- item:
name: LABmaker
description: |
LabMaker is a maker and assembly service for OPEN SCIENCE instruments. OPEN SCIENCE initiatives provide part lists or "Bill Of Materials" (BOM) for openly available scientific instruments.
LabMaker bridges the gap between the BOM and the ready-to-use instrument for those not wanting to build by themselves.
homepage_url: https://www.labmaker.org
logo: labmaker.svg
locations:
- location:
city: Berlin
country: Germany
extra:
summary_tags: open-science
- subcategory:
name: Connectomics
items:
- item:
name: Zetta.ai
description: |
We reconstruct neuronal wiring diagrams by processing electron microscopic images that are sharp enough to reveal every brain cell in fantastic detail, including synapses and other organelles.
Our computational pipeline applies multiple 3D convolutional nets to datasets as large as a petavoxel.
We are applying our pipeline to accelerate research in neuroscience labs around the world.
We are also a key player in BRAIN CONNECTS, one of the three transformative projects of the US BRAIN Initiative.
BRAIN CONNECTS is an ambitious ten-year project to map a whole mouse brain at synaptic resolution, turning the dream of exascale connectomics into reality.
homepage_url: http://zetta.ai
github_org_url: https://github.com/ZettaAI
logo: zettaai.svg
academics:
- academic:
name: Thomas Macrina
profile_url: https://scholar.google.com/citations?user=94I0duAAAAAJ
citations: 979
hindex: 15
i10index: 19
- academic:
name: Kisuk Lee
profile_url: https://scholar.google.com/citations?user=NUdCPGkAAAAJ
citations: 2125
hindex: 22
i10index: 29
- academic:
name: Sergiy Popovych
profile_url: https://scholar.google.com/citations?user=SW-oensAAAAJ
citations: 903
hindex: 15
i10index: 16
- academic:
name: Tri Minh Nguyen
profile_url: https://scholar.google.com/citations?user=AnU408sAAAAJ
citations: 1003
hindex: 14
i10index: 15
locations:
- location:
country: USA
- location:
country: Germany
- location:
country: South Korea
extra:
summary_tags: cloud, princeton, mit, connectomics, seung-lab
- subcategory:
name: fMRI
items:
- item:
name: Siemens
description: Siemens produces leading fMRI machines and software for operating them.
homepage_url: https://www.siemens-healthineers.com/en-sg/magnetic-resonance-imaging
crunchbase: https://www.crunchbase.com/organization/siemens-healthcare
logo: siemens_healthineers.svg
github_org_url: https://github.com/Siemens-Healthineers
locations:
- location:
country: USA
- location:
country: Germany
- location:
country: Worldwide
extra:
summary_tags: mfi, fmri, clinical
- subcategory:
name: Electrophysiology
items:
- item:
name: Intan Technologies
description: |
Intan Technologies miniaturizes the functions of traditional large, expensive electrophysiology equipment and enables small, low-cost scientific instruments and medical devices.
We develop specialized integrated circuits to interface with electrical signals in living tissue.
We create innovative microchips to sense and stimulate neurons and muscles.
Intan products are used by biomedical companies and research labs in over 50 countries around the world.
homepage_url: http://www.intantech.com
logo: intan-technologies.svg
github_org_url: https://github.com/Intan-Technologies
academics:
- academic:
name: Reid Harrison
profile_url: https://scholar.google.com/citations?user=rCKlicEAAAAJ
citations: 8463
hindex: 37
i10index: 70
locations:
- location:
country: USA
extra:
summary_tags: hardware, electrophysiology, caltech, utah, integrated-circuits, emg
- subcategory:
name: Pharmaceuticals
items:
- item:
name: Reunion Neuroscience
description: |
Reunion is a venture backed clinical-stage biopharmaceutical company committed to pushing the boundaries of neuroscience to develop innovative,
patented, FDA-approved serotonergic psychedelic therapeutic solutions that serve as safe, fast-acting, short duration therapies for
underserved mental health disorders, beginning with postpartum depression (PPD).
We envision a day when depression isn't just a disorder that can be managed, but instead is curable.
We relentlessly pursue the development of safer therapeutics that provide durable antidepressive effects for the millions of people
whose needs are not met by the current standard of care.
homepage_url: https://reunionneuro.com
crunchbase: https://www.crunchbase.com/organization/reunion-neuroscience
logo: reunionneuro.svg
locations:
- location:
country: USA
- location:
city: Toronto
country: Canada
extra:
summary_tags: psychodelics, epilepsy-foundation
- item:
name: Gubra
description: |
Gubra is a highly specialized preclinical CRO and biotech company focused on peptide-based drug discovery within metabolic and fibrotic diseases.
The combination of our advanced, high-end models and technologies ensures rapid turnaround time and high quality data.
homepage_url: https://www.gubra.dk
crunchbase: https://www.crunchbase.com/organization/gubra
logo: gubra.svg
academics:
- academic:
name: Niels Vrang
profile_url: https://scholar.google.com/citations?user=eLiX6owAAAAJ
citations: 11342
hindex: 55
i10index: 115
locations:
- location:
country: Denmark
extra:
summary_tags: drug-discovery, target-discovery, research, histology, RNA-seq
- subcategory:
name: Microscopy
items:
- item:
name: OPTARC
description: |
We focus on microscopy.
We specialise in 3D printed, affordable, optical instruments and we are the official UK vendor of the open source PUMA microscope.
homepage_url: https://www.optarc.co.uk
logo: optarc.svg
repo_url: https://github.com/TadPath/PUMA
academics:
- academic:
name: Paul J. Tadrous
profile_url: https://scholar.google.com/citations?user=Fb7jTjoAAAAJ
citations: 2525
hindex: 21
i10index: 24
locations:
- location:
country: UK
- item:
name: Oxford Instruments
description: |
Oxford Instruments is an international corporation that produces technology for a variety of fields, including healthcare and agriculture.
Among other things, it creates electron-microscopy, camera, x-ray, other kinds of microscopy, and imaging technology.
homepage_url: https://www.oxinst.com
logo: oxinst.svg
crunchbase: https://www.crunchbase.com/organization/oxford-instruments
locations:
- location:
country: UK
extra:
summary_tags: imaris
- item:
name: MBF bioscience
description: MBF Bioscience is a biotechnology firm that provides imaging software for stereology, neuron reconstruction, and image analysis.
homepage_url: https://www.mbfbioscience.com
logo: mbf-bioscience.svg
crunchbase: https://www.crunchbase.com/organization/mbf-bioscience
locations:
- location:
country: USA
extra:
summary_tags: mbf-bioscience
- category:
name: Organizations
subcategories:
- subcategory:
name: Groups
items:
- item:
name: Wyss Center for Bio and Neuroengineering
description: |
The Wyss Center is an independent, non-profit, research organization based in Geneva, Switzerland. The Center innovates
and accelerates technologies and therapies to transform the lives of people with neurological and mental health disorders.
homepage_url: https://www.wysscenter.ch
logo: wyss-center.svg
twitter: https://twitter.com/wysscenter
academics:
- academic:
name: Erwin Böttinger
profile_url: https://scholar.google.de/citations?user=3dWDnnYAAAAJ
citations: 67655
hindex: 127
i10index: 301
- academic:
name: Stephane Pages
profile_url: https://scholar.google.fr/citations?user=laDKI1EAAAAJ
citations: 1922
hindex: 17
i10index: 20
- academic:
name: Mark A Anderson
profile_url: https://scholar.google.ch/citations?user=9i4zjegAAAAJ
citations: 5532
hindex: 15
i10index: 15
- academic:
name: Kyuhwa Lee
profile_url: https://scholar.google.co.uk/citations?user=e_XetgsAAAAJ
citations: 547
hindex: 12
i10index: 15
- academic:
name: Jonas B Zimmermann
profile_url: https://scholar.google.com/citations?hl=en&user=5HP1QhsAAAAJ
citations: 956
hindex: 9
i10index: 9
- academic:
name: Pablo Maceira Elvira
profile_url: https://scholar.google.com/citations?user=KpJ0dbcAAAAJ
citations: 326
hindex: 6
i10index: 6
locations:
- location:
country: Switzerland
extra:
linkedin_url: https://www.linkedin.com/company/wyss-center-for-bio-and-neuroengineering/
summary_tags: imaging, alice, electrical-engineering, fabrication, hindex-100
- item:
name: The Chan Zuckerberg Biohub Network
description: |
The Chan Zuckerberg Biohub Network is a group of nonprofit research institutes that bring together physicians, scientists,
and engineers with the goal of pursuing grand scientific challenges on 10- to 15-year time horizons.
These institutes partner with Chan Zuckerberg Science in its goal to understand the mysteries of the cell and how cells interact within systems.
This collaboration will bring us closer to our mission to cure, prevent, or manage all diseases by the end of the century.
homepage_url: https://www.czbiohub.org/
github_org_url: https://github.com/czbiohub-sf
logo: chan-zuckerberg-biohub.svg
locations:
- location:
country: USA
- item:
name: INCF
description: |
The mission of INCF is to promote the uptake of FAIR data management practices in neuroscience through the development of standards and best practices that support open, FAIR, and citable neuroscience.
INCF also provides training on how standards and best practices facilitate reproducibility and enable the sharing of data and code.
homepage_url: http://www.incf.org
github_org_url: https://github.com/INCF
logo: incf.svg
locations:
- location:
country: USA
- location:
country: Worldwide
- item:
name: NITRC
description: |
NeuroImaging Tools & Resources Collaboratory is a United States Department of Health and Human Services award-winning,
and free web-based resource that offers comprehensive information on an ever expanding scope of neuroinformatics software and data.
NITRC has met the stringent FAIR sharing and open access requirements to be listed as a NIH-Supported Scientific Data Repository, a NLM Domain-Specific Repository and a neuroscience repository on Scientific Data.
Since 2007, NITRC has been helping the global neuroscience community make further discoveries using software and data produced from research that used to end up lost or disregarded.
NITRC also provides free access to data and enables pay-per-use cloud-based access to unlimited computing power, enabling worldwide scientific collaboration with minimal startup and cost.
homepage_url: https://www.nitrc.org
logo: nitrc.svg
locations:
- location:
country: USA
- location:
country: Worldwide
extra:
summary_tags: software, tools, data
- item:
name: The Brain Initiative Alliance
description: |
Comprising federal and non-federal members and affiliates, the BRAIN Initiative Alliance (BIA)'s mission is to coordinate
and facilitate U.S. BRAIN Initiative-related communications from its BIA members to diverse audiences, including the public, Congress and policymakers,
and the scientific community.
homepage_url: https://www.braininitiative.org
logo: brain-initiative-dark.svg
locations:
- location:
country: USA
extra:
summary_tags: brain-initiative, fda, government
- item:
name: IEEE Brain
description: |
As an IEEE-wide effort, the IEEE Brain Technical Community unites engineering and computing expertise across IEEE Societies and Councils relevant to neuroscience,
and provides an avenue for IEEE to work with multiple constituencies in academia, industry, and government to incubate and sponsor new activities, projects,
and standards that facilitate bringing neurotechnology to market in an ethical and responsible manner.
Our goal is to facilitate cross-disciplinary collaboration and coordination to advance research, standardization, and development of engineering
and technology to improve understanding of the brain in order to treat diseases and improve the human condition.
homepage_url: https://brain.ieee.org
logo: ieee-brain.svg
locations:
- location:
country: USA
- location:
country: Worldwide
extra:
summary_tags: brain-initiative
- item:
name: Allen Institute of Brain Science
description: |
The Allen Institute for Brain Science is a division of the Allen Institute, based in Seattle, Washington, that focuses on bioscience research.
Founded in 2003, it is dedicated to accelerating the understanding of how the human brain works.
homepage_url: https://alleninstitute.org/what-we-do/brain-science/
github_org_url: https://github.com/AllenInstitute
crunchbase: https://www.crunchbase.com/organization/allen-institute-for-brain-science
logo: allen-institute-brain-science.svg
locations:
- location:
country: USA
extra:
summary_tags: brain-initiative, funding-100M
- item:
name: BICCN
description: |
NIH's Brain Research through Advancing Innovative Neurotechnologies (BRAIN) Initiative - Cell Census Network (BICCN) aims to provide researchers
and the public with a comprehensive reference of the diverse cell types in human, mouse, and non-human primate brain.
A network of integrated centers and laboratories including U01, RF1, and U19 data generating centers, R24 data archives,
and a U24 Brain Cell Data Center (BCDC) are working collaboratively to generate, map, and share these data with the community.
homepage_url: https://biccn.org
github_org_url: https://github.com/BICCN
logo: biccn.svg
locations:
- location:
country: USA
extra:
summary_tags: nih, allen-institute
- item:
name: Neurodata Without Borders
description: |
Neurodata Without Borders (NWB) is a data standard for neurophysiology, providing neuroscientists with a common standard to share, archive, use, and build analysis tools for neurophysiology data.
NWB is designed to store a variety of neurophysiology data, including data from intracellular and extracellular electrophysiology experiments, data from optical physiology experiments, and tracking and stimulus data.
The NWB team consists of neuroscientists and software developers who recognize that adoption of a unified data format is an important step toward breaking down the barriers to data sharing in neuroscience.
homepage_url: https://www.nwb.org/
github_org_url: https://github.com/NeurodataWithoutBorders
logo: neurodata_without_borders.svg
locations:
- location:
country: USA
- location:
country: Worldwide
- item:
name: IARPA
description: |
The Intelligence Advanced Research Projects Activity invests in high-risk, high-payoff research programs to tackle some of the most difficult challenges of the agencies and disciplines in the Intelligence Community (IC).
homepage_url: https://www.iarpa.gov
logo: iarpa.svg
locations:
- location:
country: USA
extra:
summary_tags: government
- item:
name: OCNS
description: |