ETE2 (a Python Environment for phylogenetic Tree Exploration) has a method .phonehome()
which can be called on tree/node class objects. This returns:
== Calling home... Got answer!
He11o alien,
How is everything in the Earth?
We miss you in Brodo Asogi.
I see you are in shape.
No updates are available.
== Do you want to leave any message?
(Press enter to finish)
If you want to test this for yourself, try:
from ete2 import Tree
t = Tree() # generate random Tree
t.phonehome() # communicate with Aliens!
Is this an easter egg?
The project logo is:
So you could call it an easter egg. But it also has a real purpose, as it is the projects version check method, named with a pinch of humor:
and
and:
See the source code of the
ete2._ph
module;phonehome()
callsete2._ph.call()
.