There's a guy on YouTube doing diy gene therapy to treat his lactose intolerance so it's not exactly science fiction.
https://www.latimes.com/california/story/2020-12-08/man-in-t...
I'm really hoping someone will work on an open source "23andme@home" solution that ties all this together in an accessible way.
https://store.nanoporetech.com/us/minion.html
https://www.extremetech.com/extreme/190409-minion-usb-stick-...
On some of their larger devices (eg, the PromethION), they've moved outright to a "we lend you the device for free, you buy the consumables" model.
https://en.wikipedia.org/wiki/Nanopore#Inorganic https://nanoporetech.com/how-it-works/types-of-nanopores
then you’d need a program like bwa http://bio-bwa.sourceforge.net/ to map your data.
then use https://samtools.github.io/bcftools/howtos/variant-calling.h... or something else to produce variants from the mapping results.
then compare your resultant vcf file to something like dbSNP: https://www.ncbi.nlm.nih.gov/snp/
at this point you can start generating a raw version of a 23andMe report.
https://www.ebay.com/itm/265148387179
Nanopore is still not quite ready yet for precise and high accuracy sequencing. Give it another five years.
If this can sequence flora, fungi and human DNA for about 10k - I'd buy it, just to experiment and deep dive. That is such a low barrier of entry it itself is interesting.
and i feel like nanopore is the VR of dna sequencing. it’s always just another few years off.
To actually sequence DNA with this USB thingy you need to prepare a so called sequencing library - and for that you need a fairly well equipped lab - expensive reagents and years of practice and skill ... a mid level biology Ph.D can prepare these ...
in addition the flowcell sold by Oxford Nanopore often malfunctions and the whole run is a bust ... (behaves like this since 2014 ... so no, the technology does not seem to improve a whole lot)
On one hand, I would love to learn something new about my body.
On the other hand, what if the results tell me that I am predisposed to some horrible untreatable disease? Will I spend the rest of my days observing every little pain or discomfort and thinking "is this IT?"
1. A completely genetically determined disease; a rare 100%-going-to-happen deal. (Which you would probably know about already, because your mother, or grandfather died from it...)
2. Some significant, but abstract risk modification.
With 1., you would know, you will get sick/die some time soon in the future, allowing you to live your life accordingly, die without regrets, prepared and so on. You can take that into consideration when planning for a family, taking job offers, procrastinating on the good life with work and retirement plans. Burn bright.
With 2., there is a very, very high chance lifestyle choice influence the stated risk, as obviously not everybody who got the polymorphism gets sick. So you can get your ass up, exercise, quit smoking and drinking, reduce stress, get regular check ups, ..., and avoid getting sick or reduce the impact/progression, in case you do.
I think, logically, knowing is always better than not knowing. But I understand how anxiety does tell a different story.
"Inaction breeds doubt and fear. Action breeds confidence and courage. If you want to conquer fear, do not sit home and think about it. Go out and get busy." --Dale Carnegie
"You gain strength, courage and confidence by every experience in which you really stop to look fear in the face. You are able to say to yourself, 'I have lived through this horror. I can take the next thing that comes along.' You must do the thing you think you cannot do." --Eleanor Roosevelt
"Fear is the path to the Dark Side. Fear leads to anger, anger leads to hate, hate leads to suffering." --Yoda
"The brave man is not he who does not feel afraid, but he who conquers that fear." --Nelson Mandela
"Nothing in life is to be feared. It is only to be understood.' --Marie Curie
"The key to change... is to let go of fear." --Roseanne Cash
"He who is not everyday conquering some fear has not learned the secret of life." --Ralph Waldo Emerson
"We should all start to live before we get too old. Fear is stupid. So are regrets." --Marilyn Monroe
"Fear keeps us focused on the past or worried about the future. If we can acknowledge our fear, we can realize that right now we are okay. Right now, today, we are still alive, and our bodies are working marvelously. Our eyes can still see the beautiful sky. Our ears can still hear the voices of our loved ones." --Thich Nhat Hanh
Perhaps a trusted middleman would be a solution: "just don't tell me about anything that is totally beyond my control".
Now I'm a Data Engineer doing backend work in public sector. :)
Here are some press releases related to articles I published during my PhD:
https://physics.illinois.edu/news/article/34064
https://www.sciencedaily.com/releases/2014/10/141014095320.h...
when i looked i was interested, but was turned off when i saw that the cost far outstripped commercial sequencing services.
London, UK https://biohackspace.org/
Brooklyn, NY, https://www.genspace.org/
Baltimore, MD, https://bugssonline.org/
Australia, https://foundry.bio/
https://abarry.org/dna-sequencing-in-our-extra-bedroom/
http://blog.booleanbiotech.com/sequencing-at-home-with-flong...
What if you could take the (binary) data file of your DNA and use it as input in the (recently remastered) Monster Rancher games to generate a monster? Apparently those games use external user-provided data (like music CDs, game discs etc.) to generate the monsters the player would then train and use (something I only recently learned about through gaming livestreams).
I'd actually like to see the level of jank that would come out of something like that.
Also your dna is bootstraped from your mothers cells. And the prenatal environment has quite a large effect on development so your simulation might end up quite different from you if we only started with your dna.
For example today we can already predict the color of the eyes and other phenotype from the DNA.
If you are able to observe enough samples of cell growth and their associated DNA, you probably can model and predict the statistics of a cell from their DNA. Because the cell is itself the result of a lot of chemical processes, the law of large number will help smooth those statistics.
Given that we have a lot of cells, the collective behavior is probably entirely governed by these statistics.
What was unthinkable 50 years ago, playing chess better than a human, it's now trivial for a $100 device.
And it's not necessarily required that to simulate the growth of a human you'll need to simulate the entirety of chemical reactions in all 50 trillion cells and all that.
I see open-source implementations of BWT-based indexes (FM-Index/FMtree) out there. Out of curiosity, does anyone know of anything using BWTs for compact indexes in more everyday uses (like full-text search), or alternately reasons it doesn't really work outside the genome-alignment use case? Likely it only 'pays for itself' if you really need the space savings (like, it's what makes an index fit in RAM) or else we'd see it in use more places. It'd still be kinda neat to actually see those tradeoffs.
The BWT sees strings as integer sequences. Either "ABC" and "abc" are two unrelated strings, or you normalize before building the index and lose the ability to distinguish between the two.
Search proceeds character-by-character backwards, jumping arbitrarily around the BWT using the same LF-mapping function as when inverting the BWT. You get cache misses for every character.
BWT construction is expensive, because you want a single BWT for the entire string collection. There is a ridiculous number of papers on BWT construction, as well as on updating and merging existing BWTs, but the problem has still not been solved adequately. If your data is measured in gigabytes, you can just pay the price and build the index, but a few terabytes seems to be the practical upper limit for the current approaches.
You can of course partition the data and build multiple indexes, but then you have to search for each pattern in each index. There is no way to partition the data in a way that different indexes would be responsible for different queries.
Last time it was analyzed the conclusion was that there was nothing actionable.
I guess in your case where nothing actionable is found it's benign. It will be the cases where there are risk factors for late onset things - cancer, diabetes, heart disease etc. where it would get sticky.
As for the case where nothing actionable is found- it's not benign. It's absence of information, not information of absence.
In some people's thoughts, making a better society is the first and most obvious thing to do with technology like this, not an accidental consequence of inconvenience. Fortunately, enough of those people are active in the world to make Main Street different to Wall Street, at least sometimes.
They sell swab kits directly, or via NFT purchase, for ~$500 for a 30x near complete sequencing (that's 30 passes for over 99.9% vs 0.2% for 23andme et al). The results are stored in an encrypted AMD SEV-E vault to be accessed by big pharma or individuals, only for specific markers, in exchange for the $GENE token paid directly to the genome owner. Figures touted are $50-80 per request. This token is burned as kits are sold, can be staked, offers rewards like DAO membership, can be gifted to charities researching specific diseases in various populations. It can act as a form of UBI in unbanked populations and puts your DNA back in your control.
To me it's the best use of web3 tech I've come across, so disclaimer, I am invested and a DAO member, but it's early in the project still. They are not quite ready for mass marketing. They are moving over to Polygon for very low transaction fees in January, will be launching the first joint NFT/kit sale (the next season might include personal genetically generated art) to fill the vaults with 10k sequenced genomes. They are over half way already through work with charities, but that is the magic number before big pharma can start making queries. Right now though they are quietly building and preparing before marketing plans kick in later in Q1.
Take a look at https://genomes.io where everything is explained in more detail, the team are presented and the tokenomics set out.
TL;dr - for $500 right now you can get your entire genome sequenced, stored in a vault to earn you passive income, if you agree to each query. But wait for the NFT vs buying directly, it will have more perks.