Star Trek depicted one of the scarier applications of such a technology: There, The Jem'Hadaar are a genetically engineered race of warriors controlled by the Dominion, who exert power over them by being the sole provider of a substance (Ketracel-White) that they need in order to survive: https://en.wikipedia.org/wiki/Dominion_(Star_Trek) http://memory-alpha.wikia.com/wiki/Ketracel-white If my reading of the paper is…
New organisms have been formed using the first ever 6-letter genetic code
41–50 of 152 posts
Re: New organisms have been formed using the first ever 6-letter genetic code
#42Can the organism replicate the XY pairs during DNA replication (and pass it on to divided cells)? I haven't seen that mentioned, only that it "holds onto it for its entire lifespan" which is not clear to me. There's also nothing about the interaction of these pairs with existing mechanisms, like transcription (DNA-->RNA) and translation (RNA-->protein). Could the new new pair increase the space of aminoacids from whi…
The XY pairs are not replicated. To replicate them would require the presence of a slew of specialized proteins that can deal with XY pairs. The achievement is that the E. Coli lifetime is not affected. The XY's are probably inserted in a part of the DNA that is not transcribed.
Re: New organisms have been formed using the first ever 6-letter genetic code
#43Re: New organisms have been formed using the first ever 6-letter genetic code
#44> "The other reason we don't need to be freaking out, says Romesberg, is that these molecules have not been designed to work at all in complex organisms, and seeing as they're like nothing found in nature, there's little chance that this could get wildly out of hand." This is how the plot of every horror/disaster movie starts.
Re: New organisms have been formed using the first ever 6-letter genetic code
#45Star Trek depicted one of the scarier applications of such a technology: There, The Jem'Hadaar are a genetically engineered race of warriors controlled by the Dominion, who exert power over them by being the sole provider of a substance (Ketracel-White) that they need in order to survive: https://en.wikipedia.org/wiki/Dominion_(Star_Trek) http://memory-alpha.wikia.com/wiki/Ketracel-white If my reading of the paper is…
It's good as long self-termination is a nice-to-have feature. If you REALLY want them to self-terminate but you found out that they mutated and can now synthesize X & Y, you're in trouble. Genetically modified organisms are a bit scary, but genetically modified organisms that replicate autonomously are more than a bit scary. As programmers - a profession that managed to spread Shellshock, the dumbest imaginable backd…
That's an overstatement. Sure code can be very complex but we actually can see exactly what's going on whenever we really want to. It's just that we cannot see what's going on with all the code all the time.
Re: New organisms have been formed using the first ever 6-letter genetic code
#46Definitely interesting work, and some very clever solutions to difficult problems, but to be clear, they only had a single unnatural base pair, and it was only in a plasmid. Addressing the other comments about this leading to some crazy scifi scenario, imagine telling someone you used machine learning to identify spam emails and they started freaking out about how you're going to start Skynet. If you understand how t…
Then again, nobody knows how skynet will get started. If it does happen, you can be sure it'll be done by someone who is sure that things just don't work that way, right up to the moment they are crushed by a giant metal boot.
Re: New organisms have been formed using the first ever 6-letter genetic code
#47"create organisms with wholly unnatural attributes and traits not found elsewhere in nature" I'd argue that this shouldn't add anything categorically new, just like switching from 32 to 64 bit programs doesn't change the world.
This is less like 32bit to 64bit and more like moving from binary to trinary logic.
Re: New organisms have been formed using the first ever 6-letter genetic code
#48"create organisms with wholly unnatural attributes and traits not found elsewhere in nature" I'd argue that this shouldn't add anything categorically new, just like switching from 32 to 64 bit programs doesn't change the world.
This is less like 32bit to 64bit and more like moving from binary to trinary logic.
Re: New organisms have been formed using the first ever 6-letter genetic code
#49Confusing to me that "X and Y" are the name of these new letters when X and Y are commonly referred to as sex chromosomes
Re: New organisms have been formed using the first ever 6-letter genetic code
#50Earlier quoted context omitted.
It's good as long self-termination is a nice-to-have feature. If you REALLY want them to self-terminate but you found out that they mutated and can now synthesize X & Y, you're in trouble. Genetically modified organisms are a bit scary, but genetically modified organisms that replicate autonomously are more than a bit scary. As programmers - a profession that managed to spread Shellshock, the dumbest imaginable backd…
> We have no idea what happens in our own code That's an overstatement. Sure code can be very complex but we actually can see exactly what's going on whenever we really want to. It's just that we cannot see what's going on with all the code all the time.
Simple example: can you tell me if this snippet of (python) code will ever terminate or not?
x=0.5
while x0.7:
x=3.59*x*(1-x)
print x
... and what if the 3.59 was replaced by a different number - maybe 3.60 ? or 3.84 ?