Coder Social home page Coder Social logo

sumlabels? about dendropy HOT 4 CLOSED

jeetsukumaran avatar jeetsukumaran commented on August 16, 2024
sumlabels?

from dendropy.

Comments (4)

jeetsukumaran avatar jeetsukumaran commented on August 16, 2024

from dendropy.

courtneystairs avatar courtneystairs commented on August 16, 2024

Great!! Thank you. I'll /try/ and tweak this script this morning and post what I get working. Thank you!!

from dendropy.

courtneystairs avatar courtneystairs commented on August 16, 2024

Thanks again for the script. It differs a little from sumlabels in that it threw an error if it didn't find the bipartition (whereas sumlabels would just not write anything, not even a delimiter). To combat that I have added 2 try/except clauses and command line argument functionality with arguments. One day I'll make it prettier, but for now this works:

python sumlabel_DP4.py [tree to map to] [tree] [tree]

it will write 'nf' on the branch if it didn't find the bipartition.

#! /usr/bin/env python
import sys
import dendropy


# usage: python sumlabel_DP4.py [tree to map to] [tree] [tree] 
# our common namespace
tns = dendropy.TaxonNamespace()


# load the trees
t1 = dendropy.Tree.get(
     path=sys.argv[3],
     schema="newick",
     taxon_namespace=tns,
     rooting="force-unrooted")
t2 = dendropy.Tree.get(
     path=sys.argv[2],
     schema="newick",
     taxon_namespace=tns,
     rooting="force-unrooted")
t3 = dendropy.Tree.get(
     path=sys.argv[1],
     schema="newick",
     taxon_namespace=tns,rooting="force-unrooted")

# calculate the split hashes so that we can correlate splits
# across trees
t1.encode_bipartitions()
t2.encode_bipartitions()
t3.encode_bipartitions()

# for each internal node in tree 3
for nd in t3.preorder_internal_node_iter():

     # check/skip root node
     if nd is t3.seed_node:
         continue

     # set up label parts
     label_parts = []

     # look up edge corresponding to this node
     # on tree1 if not found, write 'nf'
     try:
     	edge = t1.bipartition_edge_map[nd.edge.bipartition]
	label_parts.append(edge.head_node.label)

     except KeyError:
        label_parts.append('nf')
     # (if support on tree1 is represented by branch length)
     # label_parts.append(str(edge.length))
     # look up edge corresponding to this node
     # on tree2 if  not found, write 'nf'
     try:
	edge = t2.bipartition_edge_map[nd.edge.bipartition]
	label_parts.append(edge.head_node.label)
     # support on tree2 is represented by internal node label
     except KeyError:
	label_parts.append('nf')
     # if support on tree3 is given by metadata
     # label_parts.append(nd.annotations["prob"].value)
     label_parts.append(nd.label)
     # print(label_parts)

     # assign label
     nd.label = "/".join(label_parts)
# output the tree
print(t3.as_string("newick"))

from dendropy.

jeetsukumaran avatar jeetsukumaran commented on August 16, 2024

The original application has been ported in DendroPy 4 here: 86e77ec .

May tweak the UI before formal release, but it is workable as it stands now.

from dendropy.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.