Hacker News new | past | comments | ask | show | jobs | submit login
Scientists have created a living organism whose DNA is human-made (nytimes.com)
132 points by Osiris30 on May 16, 2019 | hide | past | favorite | 54 comments



No.

They really didn't.

In this case the claim that it's a fully synthetic genome is fairly suspect, basically it boils down to this:

A codon is 3 base pairs. Giving 64 possible codons.

Each codon codes for an amino acid except for 3 (I think?) stop codons.

This results in more unique codons than there are amino acids.

As a result some amino acids are represented by different codons.

In this paper all they did (not saying it's nothing, but it's definitely not what the headline says) was remove that redundancy. Effectively they ran sed over the genome of E. Coli (I think, I read it this morning which was hours ago), and replaced every occurrence of an alternative codon with a single "standard" one. Then they plonked it into an existing cell and it reproduced.

The biggest challenge was probably ensuring the correct construction over the 3 million odd base pairs in their root strain. Note that of 3 million base pairs, they only made 18000 changes, far from a synthetic genome.

It should not be surprising that given a correct assembly the bacteria reproduced - by design the experiment only replaced codons with a different equivalent codon.


There are actually differences between using different codons for the same amino acid. Not all tRNA is present in the same amounts in the cell, using a rare codon will slow down translation because the tRNA for it is present in lower concentrations than the one for the more often used codon. So it will affect translation rates if you change the codons.

There are also cases where using a "slower" codon help the protein fold well by giving it a bit of time before continuing translation. Changing the kinetics of translation can affect the outcome.


The article did mention the cells grow more slowly, maybe this explains why. They framed the impetus for this experiment as being "why do we have so many redundancies in codons", maybe the answer is that evolution favored generating new tRNAs for the more used amino acids, speeding up translation? This kind of thing could also be accomplished by changing the rate of generating tRNAs, and for all I know that plays a role too. I'd never really put much thought into why the code was set up that way, its interesting to think about.


Thanks for providing this insight. I was wondering why the resulting organisms were different. Your comment offers some solid suggestions as to why.


> It should not be surprising that given a correct assembly the bacteria reproduced - by design the experiment only replaced codons with a different equivalent codon.

I am surprised. I was under the impression that while two codons may code for an equivalent protein, bacteria do play shenanigans with DNA, like re-reading the same genome multiple times with shifted read frame. I don't think codon equivalence is preserved when you shift the read frame by 1 or 2. Moreover, a DNA molecule with changed codons is slightly different chemically at that place - which means a protein that might have previously attached there for some reason now might not.


You are right. If you read the paper, they de-duplicated all out-of-phase (shift 1 or 2) overlapped genes. Simple search and replace wouldn't have been viable due to these overlapped genes.


Thanks. Should've read the paper before commenting.


Actually, your question and followup answer is valuable addition to the discussion.


> Moreover, a DNA molecule with changed codons is slightly different chemically at that place - which means a protein that might have previously attached there for some reason now might not.

That shouldn't be a big concern. For one I think they only altered the base pairs inside the codons of the open reading frames. Most of the important protein binding during transcription and translation happens on regions outside the open reading frames which they left unaltered. Additionally the codons that code for the same amino acid share 2 out of the 3 bases, so they only had to alter a single base, which is usually not enough to change functionality a lot espacially when their main functional property is being translated.

Disclaimer: I only have access to abstract right now


Certainly that may be the case but at least with this strain that didn't affect the viability of the organism.


Has anyone tried a similar technique to reduce code on a size limited computer demo?


They did though. They completely rewrote this organism's genome. That's a major technical achievement!

Imagine you're writing a text editor and you get it working well enough to replace spaces with tabs throughout its own source code. Sure, you're not changing the semantic meaning of the code --- but still you're demonstrating that your tool actually works and that it's capable of controlled global edits that don't completely wreck what you're trying to modify. That'd be a pretty major milestone in your text editor project.

This global DNA search-and-replace is the same kind of milestone.


Sounds like they refactor the DNA.


Nah. More like a clang-format pass. Refactoring would be more like rearranging genes on the chromosome.


Basically correct, I think.


I think the meaning of "synthetic genome" here is "synthesized in vitro", not "100% artificially engineered sequence".


I'm having difficulty understanding how a 100% artificially engineered sequence would come about? What is the raw material that would be used to start something like this?


Very much depends what one would consider a "100% artificially engineered sequence". You could possibly swap out GATC for a different set of bases. You could also replace DNA with XNA. There are a whole lot exotic avenues for "artificially engineered", with each of them coming with its own mountain of challenges.


I am not an expert (my biology degree is 30 years old) but generally the idea is that, if you create an artificial genome, you pop it it into a similar cell, which has previously had its native DNA removed) giving it the necessary machinery to express itself etc. Obviously, you're creating a hybrid, but over time the effect of the original host cell's makeup will diminish.


I think plonking is generous. They really chunked or slotted it in (I think, I haven't read the paper).

Running with it: They didn't do a sed in place, they split the file and did the sed in place in chunks.


"It should not be surprising that given a correct assembly the bacteria reproduced - by design the experiment only replaced codons with a different equivalent codon"

Codons are never really equivalent because of differences in tRNA abundances. So replacing a codon with another that codes for same amino acid can disrupt the rate of translation, and downstream processes like protein folding.


Genetics feels like an art of working with an extreme version of a legacy code. No documentation, and side effects literally everywhere :)


I agree with your statement. The core machinery for transcription and translation is still the same -- I will be impressed when a synthetically designed ribosome or DNA/RNA polymerase is created.

The redundancy is probably there to so that the DNA->RNA copying is more robust against chance mutations in DNA that occurred during cell division.


Well, one thing they've proved by doing that is that the redundant codings didn't do anything unexpectedly important.


I don't think that's entirely correct.

> The bacteria are alive, though unusually shaped and reproducing slowly.

If I understand correctly, they completely removed two serine encodings and one stop codon encoding. Given how important tertiary DNA and RNA structure is, I think it's remarkable that they're alive at all.


E. Coli is super robust even in adverse conditions, and a lot of the coding regions are essentially to support those adverse conditions.

Lab conditions are super friendly to E. coli - they're plated on agar that is tailored to them, kept at a temperature that is tailored to them, and the plates are sterilized so that they have no competitors.

So even if the initial cells were super unhealthy, as long as it wasn't directly fatal the bacteria would grow, and bacteria evolves quickly - fast enough that I'd be interested in seeing how much change was accumulated after 24 hours.

That said, they edits were deliberately just replacing like with like, so it would be expected that they survive.

Interesting follow on research: If you repeatedly ensured that they dropped the alternate serine codings, could you convince it to treat the alternate codings as being something other than serine: the careful engineering would have removed the selective pressure on those codings being serine.


> That said, they edits were deliberately just replacing like with like, so it would be expected that they survive.

To the extent that we only consider encoded proteins, sure. But DNA and RNA has secondary and tertiary structure that does things - it isn't just bits on a hard drive. Riboswitches and Catalytic RNA are good examples.

For example: (https://www.nature.com/scitable/topicpage/rna-functions-352)

> the elevated temperature inside the host's body melts the secondary structure of a segment in the 5' untranslated region of the mRNA produced by the bacterial prfA gene. As a result of this alteration in secondary structure, a ribosome-binding site is exposed, and translation of protein can take place

Riboswitch overview: (https://www.nature.com/scitable/topicpage/riboswitches-a-com...)

> as long as it wasn't directly fatal the bacteria would grow

The abstract states that 18,214 occurrences were edited. The fact that such drastic structural changes to DNA and RNA weren't immediately fatal is what surprises me. It's believable enough, but I would not have predicted it.

I wonder if they just got lucky with (or perhaps strategically chose) the specific codon substitutions to perform? Would a different set of synonym substitutions have been nonviable?

> I'd be interested in seeing how much change was accumulated after 24 hours.

Very much this. Also, a sibling comment mentions the E. coli long-term evolution experiment; I'd be very interested to find out what changed to compensate for this over hundreds or even thousands of generations.


> I wonder if they just got lucky with (or perhaps strategically chose) the specific codon substitutions to perform? Would a different set of synonym substitutions have been nonviable?

Recoding scheme was strategically chosen. They cite 2016 paper (PMC5035903) which showed substituting AGA with CGA (synonymous codon for arginine) on E. coli was nonviable.


That is a really neat paper.

> Successful replacement codons tended to conserve local ribosomal binding site-like motifs and local mRNA secondary structure, sometimes at the expense of amino acid identity. Based on these observations, we empirically defined metrics for a multidimensional “safe replacement zone” (SRZ) within which alternative codons are more likely to be viable.


Why is it surprising that it isn't fatal? They picked relatively rare codons, and they slotted the changes in sequentially. The process of inserting dna is selective (plating lawns of bacteria and picking colonies), probably the fastest growing colonies had the opportunity to build in compensatory mutations if there were subtle secondary or tertiary XNA features that were mildly deleterious.


> Given how important tertiary DNA and RNA structure is, I think it's remarkable that they're alive at all.

It'd be interesting to add these things to the famous E. coli long-term evolution experiment [1] and see how many of the removed codons reappear due to beneficial spontaneous mutations that revert Dr. Chin's changes.

[1] https://en.wikipedia.org/wiki/E._coli_long-term_evolution_ex...


It's e coli. Theyre like weeds, plus we coddle them in the lab.


To establish that the organism would have to be observed for some time to rule out exceptional responses/relationships to other microbial communities, and materials. Life is problematically complicated and confounding over time, it doesn't lend itself to neat proofs.


No, it is not artificial life, they synthesized life from that which already gave rise to life. This is an important distinction because what they did involves growing and manipulating existing systems. It's no more artificial than a an animal which has been bred, this is just on the level of molecular genetics. If we ever transcend, creating human/"machine" interfaces will require such technology. No you won't jack in like Neo, no we won't download our souls and thoughts to a computer, synthetics will replace organics slowly. The computers and people will meet in the middle.


I will keep moving goalposts until a genome and cell are synthesized atom by atom.


You just revealed where your goalposts will end up when they stop moving, so that's effectively where the goalposts are.


Maybe he means atom in the original sense of "indivisible particle", in which case it appears we can count on the physicists to keep moving the goalposts further ;)


Still not synthetic if you didn't make your own atoms. :P


The research is interesting without the hyperbole the media puts on it for clicks.


No. Scientists didn't create the full biochemical environment in which a genome's meaning is evoked.


This is so often overlooked. DNA is nothing without the machine to 'run' it. Which is incredibly complex in itself, more so than the DNA?



This sounds like the Genesis of the movie Splice.


No it's not. It could be DRM for the biotech industry though.


Does it reproduce in a non-deterministic way? If so ...


Data scientists have a hard time predicting the states and decision paths of a Neural Network! I doubt we'd even make a serious attempt at predicting reproduction for life in this millenium (or maybe ever!)


"Life" means splitting hairs finer and finer. Are bacteria alive? Viruses? Prions? The distinction is ultimately meaningless.


Bacteria are alive by all standard definitions of life.

Generally viruses and prions are not considered alive as they are not (theoretically) capable of self replication.

Viruses don't have any of the mechanisms required for self replication - they only reproduce if a different organism is coerced into duplicating the virus's genetic material. Specifically the virus genetic material gains precedence over the cell's own material once the cell dissolves the protein shell.

Prions are literally misfolded proteins - saying they're alive is not different from saying any arbitrary polymer is alive - plenty of polymerization processes essentially have the same construction behaviour: rely on the bond affinities to morph neighboring identical molecules into identical construction.


Prions definitely self-replicate. the criterion for life is metabolism addition to self reproduction


No, they don't. When they come in contact with another, already synthesized, protein of identical composition, they alter it to match their own shape. That is a far cry from replication or reproduction. The other protein has an equal role, in its readiness to conform.

Other molecules alter the shape of proteins not like themselves, in otherwise similar ways. We don't call them alive, either. Prions are interesting in that their action produces more identical action, in an exponentially growing fashion, unlike other, otherwise similar, processes.

If you like, you could say the prion's shape, itself, reproduces, given a substrate of conformable prionic proteins. That makes it more like a meme.


I got my phd in biophysics from UCSF, where the prion work was originally done, and all my professors used the term "replication". That was a colloquial term for "catalyze a structural transfer in an exponential way". I think that really does qualify for replication in a limited way.

However, arguing over this terminology is irrelevant.


Agreed. The exponential character makes it eerily similar to life processes.

I wonder whether anyone has measured temperature reduction in a runaway prion replication process.


I agree. "Life" isn't some category out there in the world that has absolute boundaries. It's a human concept. In reality there's a gradient of more and more sophisticated kinds of processes, and there's no absolute cut off point between non-living and living. It's the human need to have absolute categories that makes it seem like it is a binary category.

Richard Dawkins has written an excellent essay on this matter (the human desire for absolute categories):

The tyranny of the discontinuous mind

https://www.newstatesman.com/blogs/the-staggers/2011/12/issu...

He's also written about this topic here:

https://www.edge.org/response-detail/25366


They use the same genetic code as us, what's your definition of life? Having access to Netflix ?




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: