<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Hacker News: eweitz</title><link>https://news.ycombinator.com/user?id=eweitz</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Thu, 30 Apr 2026 17:51:56 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=eweitz" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by eweitz in "Craig Venter has died"]]></title><description><![CDATA[
<p>"RP11" is that man from Buffalo who comprises 74% of the human reference genome [1].<p>[1] <a href="https://undark.org/2024/07/09/informed-consent-human-genome-project/" rel="nofollow">https://undark.org/2024/07/09/informed-consent-human-genome-...</a></p>
]]></description><pubDate>Thu, 30 Apr 2026 08:23:29 +0000</pubDate><link>https://news.ycombinator.com/item?id=47959724</link><dc:creator>eweitz</dc:creator><comments>https://news.ycombinator.com/item?id=47959724</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47959724</guid></item><item><title><![CDATA[New comment by eweitz in "Craig Venter has died"]]></title><description><![CDATA[
<p>Yes.  For folks looking for more:<p>* Celera genome, first published 2004: <a href="https://www.ncbi.nlm.nih.gov/datasets/genome/GCF_000002115.1/" rel="nofollow">https://www.ncbi.nlm.nih.gov/datasets/genome/GCF_000002115.1...</a><p>* Human reference genome, first published 2001 and most recently updated in 2022: <a href="https://www.ncbi.nlm.nih.gov/datasets/genome/GCF_000001405.40/" rel="nofollow">https://www.ncbi.nlm.nih.gov/datasets/genome/GCF_000001405.4...</a></p>
]]></description><pubDate>Thu, 30 Apr 2026 08:07:48 +0000</pubDate><link>https://news.ycombinator.com/item?id=47959630</link><dc:creator>eweitz</dc:creator><comments>https://news.ycombinator.com/item?id=47959630</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47959630</guid></item><item><title><![CDATA[New comment by eweitz in "New CRISPR-based map ties every human gene to its function"]]></title><description><![CDATA[
<p>User interfaces for biology have drastically improved over the last 10 years.<p>Domain-specific tools like genome browsers, protein viewers, or phylogenetic explorers [1-3] almost all look and feel a lot better than they did in 2012.<p>The biggest exception here is UCSC Genome Browser, which has an old-school design and web technology stack.  That said, it's steadily added features over the years, has substantially sleekened UX in its periphery, and remains widely used.<p>There are also bespoke visual design resources for biology applications that are good and getting better, like BioRender and PhyloPic [4-5].  There are multi-tiered packages like Dash Bio that wrap biology components together [6].  There's a Blender biology community, too!<p>---<p>1. Genome browsers and components: <a href="https://jbrowse.org/jb2/" rel="nofollow">https://jbrowse.org/jb2/</a>, <a href="https://www.ncbi.nlm.nih.gov/genome/gdv" rel="nofollow">https://www.ncbi.nlm.nih.gov/genome/gdv</a>, <a href="https://igv.org/app" rel="nofollow">https://igv.org/app</a>, <a href="https://eweitz.github.io/ideogram" rel="nofollow">https://eweitz.github.io/ideogram</a><p>2. Protein viewers: <a href="https://pymol.org/" rel="nofollow">https://pymol.org/</a>, <a href="https://nglviewer.org/ngl/" rel="nofollow">https://nglviewer.org/ngl/</a><p>3. Phylogenetic explorers: <a href="https://clades.nextstrain.org/" rel="nofollow">https://clades.nextstrain.org/</a><p>4. <a href="https://biorender.com/" rel="nofollow">https://biorender.com/</a><p>5. <a href="http://phylopic.org/" rel="nofollow">http://phylopic.org/</a><p>6. <a href="https://github.com/plotly/dash-bio" rel="nofollow">https://github.com/plotly/dash-bio</a>, <a href="https://dash.gallery/Portal/?search=[Pharma]" rel="nofollow">https://dash.gallery/Portal/?search=[Pharma]</a></p>
]]></description><pubDate>Sat, 11 Jun 2022 00:53:10 +0000</pubDate><link>https://news.ycombinator.com/item?id=31700951</link><dc:creator>eweitz</dc:creator><comments>https://news.ycombinator.com/item?id=31700951</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=31700951</guid></item><item><title><![CDATA[New comment by eweitz in "Ask HN: Share your personal site"]]></title><description><![CDATA[
<p><a href="https://eweitz.github.io/ideogram/related-genes" rel="nofollow">https://eweitz.github.io/ideogram/related-genes</a> - gene search recommendation engine paired with a web component for genome visualization</p>
]]></description><pubDate>Wed, 06 Apr 2022 23:15:26 +0000</pubDate><link>https://news.ycombinator.com/item?id=30938638</link><dc:creator>eweitz</dc:creator><comments>https://news.ycombinator.com/item?id=30938638</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=30938638</guid></item><item><title><![CDATA[New comment by eweitz in "Why IndexedDB is slow and what to use instead"]]></title><description><![CDATA[
<p>I'm more interested in read speed than write speed.  I have about 2 MB of data that I fetch, parse and transform into a nested object for easy look-up by various types of keys.  It consists of 6 other objects, and I'd guess it's < 50 MB in total size.<p>In my brief experiment, it was 12% faster to read from the web Cache API [1], re-parse and re-transform that nested object than to read the fully transformed object using IndexedDB via idb-keyval [2].  That surprised me!  I went on to learn that IndexedDB does a structured clone as part of such reads, which I suspect is the main cause of slowness in my use case.<p>Related commits to reproduce that finding are in [3], specifically [4].<p>[1] <a href="https://developer.mozilla.org/en-US/docs/Web/API/Cache" rel="nofollow">https://developer.mozilla.org/en-US/docs/Web/API/Cache</a><p>[2] <a href="https://github.com/jakearchibald/idb-keyval" rel="nofollow">https://github.com/jakearchibald/idb-keyval</a><p>[3] <a href="https://github.com/eweitz/ideogram/pull/285" rel="nofollow">https://github.com/eweitz/ideogram/pull/285</a><p>[4] <a href="https://github.com/eweitz/ideogram/pull/285/commits/90e374a0ffb2a7165ed8ca6570adef8e63cd2163" rel="nofollow">https://github.com/eweitz/ideogram/pull/285/commits/90e374a0...</a></p>
]]></description><pubDate>Tue, 23 Nov 2021 11:40:26 +0000</pubDate><link>https://news.ycombinator.com/item?id=29316684</link><dc:creator>eweitz</dc:creator><comments>https://news.ycombinator.com/item?id=29316684</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=29316684</guid></item><item><title><![CDATA[New comment by eweitz in "Biochemical Pathway Maps"]]></title><description><![CDATA[
<p>Some notes towards those ends:<p>WikiPathways supports advanced queries via their SPARQL API and UI.  See [1] and [2].  I find WikiPathways nice because it lets logged-in users create and edit pathways, with a low barrier to entry.<p>I've been building a way to find related genes using biochemical pathways [3].  The source code linked there includes practical examples for fetching information on genes in those pathways, which you rightly note is needed for something compelling.  That and other code there might help spark ideas for you on how to glue together various biochemistry and molecular biology APIs to achieve your vision.<p>I'm currently working on a way to drastically expand the set of organisms and pathways covered by WikiPathways.  Yeast has 66 pathways there, compared to 1319 for human.  By doing fast ortholog detection at runtime (using another SPARQL API, provided by  OrthoDB [4]) I'm hoping to be able to convert relevant annotated pathways across organisms, e.g. human to yeast, mouse to rat, Arabidopsis to rice -- and vice versa.<p>[1] <a href="http://sparql.wikipathways.org" rel="nofollow">http://sparql.wikipathways.org</a><p>[2] <a href="https://www.wikipathways.org/index.php/Help:WikiPathways_Sparql_queries" rel="nofollow">https://www.wikipathways.org/index.php/Help:WikiPathways_Spa...</a><p>[3] <a href="https://eweitz.github.io/ideogram/related-genes?q=RAD51&org=homo-sapiens" rel="nofollow">https://eweitz.github.io/ideogram/related-genes?q=RAD51&org=...</a><p>[4] <a href="https://sparql.orthodb.org" rel="nofollow">https://sparql.orthodb.org</a></p>
]]></description><pubDate>Fri, 18 Jun 2021 12:09:28 +0000</pubDate><link>https://news.ycombinator.com/item?id=27549507</link><dc:creator>eweitz</dc:creator><comments>https://news.ycombinator.com/item?id=27549507</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=27549507</guid></item><item><title><![CDATA[New comment by eweitz in "Ask HN: What are some tools / libraries you built yourself?"]]></title><description><![CDATA[
<p>I created Ideogram.js, a JavaScript library for chromosome visualization [1].<p>Ideogram supports genomic views to research and report findings on cancer, clinical variants, gene expression, evolution, agriculture, and more [2].  What previously existed for genome visualization was either focused on short genomic regions (e.g. genes) or complex to set up and maintain.<p>[1]: <a href="https://github.com/eweitz/ideogram" rel="nofollow">https://github.com/eweitz/ideogram</a><p>[2]: <a href="https://eweitz.github.io/ideogram" rel="nofollow">https://eweitz.github.io/ideogram</a></p>
]]></description><pubDate>Sun, 16 May 2021 16:58:57 +0000</pubDate><link>https://news.ycombinator.com/item?id=27175043</link><dc:creator>eweitz</dc:creator><comments>https://news.ycombinator.com/item?id=27175043</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=27175043</guid></item><item><title><![CDATA[New comment by eweitz in "How Anne Wojcicki’s 23andMe Will Mine Its Giant DNA Database"]]></title><description><![CDATA[
<p>> refutation of the single source's work<p>Janssens seems less skeptical of 23andMe's paper on polygenic score for type 2 diabetes [1][2], which -- interestingly -- positively cites the Khera 2018 paper on polygenic score for heart disease that she critiqued.  Some researchers are skeptical, but the medical community generally seems to consider polygenic scores promising for tests [3][4].<p>> you haven't posited how Bob's mapped genome sitting in 23andme will be used for medical treatment.<p>Early intervention.  Polygenic scores could be used for medical treatment by motivating earlier intervention.  That could include stronger recommendations for better diet and exercise, closer monitoring programs, or more precise prescriptions.  That, in turn, could reduce disease burden.<p>[1] <a href="https://twitter.com/cecilejanssens/status/1137079703234387971" rel="nofollow">https://twitter.com/cecilejanssens/status/113707970323438797...</a><p>[2] <a href="https://permalinks.23andme.com/pdf/23_19-Type2Diabetes_March2019.pdf" rel="nofollow">https://permalinks.23andme.com/pdf/23_19-Type2Diabetes_March...</a><p>[3] <a href="https://twitter.com/EricTopol/status/1129780543434964993" rel="nofollow">https://twitter.com/EricTopol/status/1129780543434964993</a><p>[4] <a href="https://journals.plos.org/plosmedicine/article?id=10.1371/journal.pmed.1002546" rel="nofollow">https://journals.plos.org/plosmedicine/article?id=10.1371/jo...</a></p>
]]></description><pubDate>Sun, 09 Jun 2019 02:51:29 +0000</pubDate><link>https://news.ycombinator.com/item?id=20136761</link><dc:creator>eweitz</dc:creator><comments>https://news.ycombinator.com/item?id=20136761</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=20136761</guid></item><item><title><![CDATA[New comment by eweitz in "How Anne Wojcicki’s 23andMe Will Mine Its Giant DNA Database"]]></title><description><![CDATA[
<p>Large genetic datasets yield medical progress by increasing statistical power of tests.  These better tests enable earlier and more targeted treatment.<p>Take heart disease.  It has a significant but complex genetic component.  Many genetic variants each contribute a small amount to risk for heart disease.  If a given person has many small risk variants, the sum total risk -- often called "polygenic score" -- can be relatively high.<p>People in the top 8% of polygenic scores had a 3x higher risk for heart disease than the general population [1][2].  Through techniques like polygenic scoring, large genetic datasets enable uniquely early detection of high risk for the world's leading cause of death.<p>[1] <a href="https://www.nature.com/articles/s41588-018-0183-z" rel="nofollow">https://www.nature.com/articles/s41588-018-0183-z</a><p>[2] <a href="https://www.vox.com/science-and-health/2018/8/24/17759772/genetics-polygenic-risk-heart-disease-nature" rel="nofollow">https://www.vox.com/science-and-health/2018/8/24/17759772/ge...</a></p>
]]></description><pubDate>Sat, 08 Jun 2019 21:15:45 +0000</pubDate><link>https://news.ycombinator.com/item?id=20135234</link><dc:creator>eweitz</dc:creator><comments>https://news.ycombinator.com/item?id=20135234</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=20135234</guid></item><item><title><![CDATA[New comment by eweitz in "How Anne Wojcicki’s 23andMe Will Mine Its Giant DNA Database"]]></title><description><![CDATA[
<p>UK Biobank has a smaller cohort but deeper and more reliable data.<p>All UK Biobank participants were tested for blood pressure, bone mineral density, grip strength, BMI, etc.  The last 200,000 participants underwent detailed tests of cognitive function [1].<p>23andMe asks customers for health information, but self-reports are not usually as reliable as the clinician-administered tests done in UK Biobank.<p>[1] <a href="https://www.ncbi.nlm.nih.gov/pmc/articles/PMC6451771/" rel="nofollow">https://www.ncbi.nlm.nih.gov/pmc/articles/PMC6451771/</a></p>
]]></description><pubDate>Sat, 08 Jun 2019 20:26:49 +0000</pubDate><link>https://news.ycombinator.com/item?id=20134933</link><dc:creator>eweitz</dc:creator><comments>https://news.ycombinator.com/item?id=20134933</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=20134933</guid></item><item><title><![CDATA[New comment by eweitz in "How Anne Wojcicki’s 23andMe Will Mine Its Giant DNA Database"]]></title><description><![CDATA[
<p>23andMe is CLIA certified and FDA authorized, and makes many medical claims.  From [1]:<p>"CLIA certification and CAP accreditation
23andMe laboratory testing is done in U.S. laboratories certified to meet CLIA (Clinical Laboratory Improvement Amendments of 1988) standards, including qualifications for individuals performing testing and other standards to ensure the accuracy and reliability of results. The laboratory is also accredited by the College of American Pathologists (CAP), which has served as a model for various federal, state, and private laboratory accreditation programs throughout the world."<p>FDA authorizations for 23andMe's personal genome service are available online, e.g. [2] for Alzheimer's disease risk reporting based on the E4 variant of the APOE gene.<p>The company also offers ancestry reports, which are not clinical and thus covered by CLIA.  But medical claims in 23andMe's health reports do comply with CLIA and other regulations.<p>1. <a href="https://medical.23andme.com/dna-kits/#clia" rel="nofollow">https://medical.23andme.com/dna-kits/#clia</a><p>2.  <a href="https://www.accessdata.fda.gov/cdrh_docs/pdf16/DEN160026.pdf" rel="nofollow">https://www.accessdata.fda.gov/cdrh_docs/pdf16/DEN160026.pdf</a></p>
]]></description><pubDate>Sat, 08 Jun 2019 19:32:57 +0000</pubDate><link>https://news.ycombinator.com/item?id=20134571</link><dc:creator>eweitz</dc:creator><comments>https://news.ycombinator.com/item?id=20134571</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=20134571</guid></item><item><title><![CDATA[New comment by eweitz in "San Francisco Office Rents Pass Manhattan as Most Expensive in Country"]]></title><description><![CDATA[
<p>>  Manhattan has twice the people with half the land area, on an island.<p>Manhattan has twice the residents based on U.S. Census population data, but actual daytime population is more than just residents.  A more important statistic is <i>commuter-adjusted population</i> [1], i.e. number of people in an area during normal business hours, including workers.  That's where Manhattan and San Francisco really diverge.<p>The commuter-adjusted population of Manhattan is 3.1 M [2], compared to 1.6 M residents [3].  San Francisco has a commuter-adjusted population of 1.0 M [4, 5], compared to 0.8 M residents [5].  In other words, Manhattan's population booms almost 200% during normal business hours, while San Francisco's increases a modest 25%.  Manhattan may have 2x more residents, but it has 3x more daytime population than San Francisco.<p>Given it has about half the land area, Manhattan's daytime population density is thus 6x that of San Francisco.<p>Attitudes on development -- namely transportation infrastructure and building construction -- certainly contribute to that difference.<p>1. <a href="http://www.census.gov/hhes/commuting/data/daytimepop.html" rel="nofollow">http://www.census.gov/hhes/commuting/data/daytimepop.html</a><p>2. <a href="http://www.citylab.com/commute/2013/05/most-important-population-statistic-hardly-ever-gets-talked-about/5747/" rel="nofollow">http://www.citylab.com/commute/2013/05/most-important-popula...</a><p>3. <a href="http://quickfacts.census.gov/qfd/states/36/36061.html" rel="nofollow">http://quickfacts.census.gov/qfd/states/36/36061.html</a><p>4. <a href="http://ww2.kqed.org/lowdown/2014/01/10/how-city-populations-change/" rel="nofollow">http://ww2.kqed.org/lowdown/2014/01/10/how-city-populations-...</a><p>5. <a href="http://factfinder.census.gov/faces/tableservices/jsf/pages/productview.xhtml?src=bkmk" rel="nofollow">http://factfinder.census.gov/faces/tableservices/jsf/pages/p...</a></p>
]]></description><pubDate>Sun, 10 Jan 2016 16:49:39 +0000</pubDate><link>https://news.ycombinator.com/item?id=10875936</link><dc:creator>eweitz</dc:creator><comments>https://news.ycombinator.com/item?id=10875936</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=10875936</guid></item><item><title><![CDATA[Meet one of the world’s most groundbreaking scientists. He’s 34.]]></title><description><![CDATA[
<p>Article URL: <a href="http://www.statnews.com/2015/11/06/hollywood-inspired-scientist-rewrite-code-life/">http://www.statnews.com/2015/11/06/hollywood-inspired-scientist-rewrite-code-life/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=10525866">https://news.ycombinator.com/item?id=10525866</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Sat, 07 Nov 2015 19:21:57 +0000</pubDate><link>http://www.statnews.com/2015/11/06/hollywood-inspired-scientist-rewrite-code-life/</link><dc:creator>eweitz</dc:creator><comments>https://news.ycombinator.com/item?id=10525866</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=10525866</guid></item><item><title><![CDATA[New comment by eweitz in "ACM Classic Computer Science Books Series"]]></title><description><![CDATA[
<p>Several major classics are oddly omitted from that list:<p>- "The Art of Computer Programming" (TAOCP)<p>- "The C Programming Language" (K&R)<p>- "Structure and Interpretation of Computer Programs" (SICP)<p>- "Artificial Intelligence: A Modern Approach" (AIMA)</p>
]]></description><pubDate>Sun, 16 Aug 2015 00:44:46 +0000</pubDate><link>https://news.ycombinator.com/item?id=10067519</link><dc:creator>eweitz</dc:creator><comments>https://news.ycombinator.com/item?id=10067519</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=10067519</guid></item></channel></rss>