root

Leaf1



Leaf2




Template documentation[view] [edit] [history] [purge]

This template is used for drawing branching trees with the node and base labels being clickable links. Such diagrams are especially suited to represent evolutionary trees (cladograms).

Basic features ફેરફાર કરો

Usage ફેરફાર કરો


{{clade
|label1=Base
|1=Node
}}

produces

Base

Node



{{clade
|1={{clade
   |label1=[[Subtree1]]
   |1=Leaf1
   |label2=Subtree2
   |2=[[Leaf2]]
   }}
}}

produces


Subtree1 

Leaf1


Subtree2 

Leaf2




{{clade
|1={{clade
   |label1=Subtree1
   |1=Leaf1
   |label2=Subtree2
   |2=Leaf2
   }}
}}

produces


Subtree1

Leaf1


Subtree2

Leaf2



Note that the order of the parameters does not matter. Exactly the same output is produced by


{{clade
|1={{clade
   |2=Leaf2
   |1=Leaf1
   |label1=Subtree1
   |label2=Subtree2
   }}
}}



Subtree1

Leaf1


Subtree2

Leaf2



Technical background ફેરફાર કરો

The clade template has many features for customising the appearance. Using them optimally requires some understanding of how the template works. The cladogram is constructed using nested HTML tables and the lines of the cladogram are borders of the cells (<td> tags). Each clade template creates an HTML table with the elements show as follows:

Description Table cell structure Cladogram Code using clade template

A simple clade structure with a single child node (or leaf).

This is an HTML table with two rows and two columns. The cells of the righthand column are merged using the rowspan attribute.

labelA

Leaf A

sublabelA
labelA

LeafA

sublabelA
{{clade |thickness=3
|label1=labelA
|sublabel1=sublabelA
|1=LeafA
}}

Replace LeafA with another clade structure.

A second HTML table is placed inside a the right-hand cell of the outer table.

labelA
label1 leaf1
sublabel1
label2 leaf2
sublabel2
sublabelA
labelA
label1

leaf1

sublabel1
label2

leaf2

sublabel2
sublabelA
{{clade |thickness=3
|label1=labelA
|sublabel1=sublabelA
|1={{clade |thickness=3
   |label1=label1
   |sublabel1=sublabel1
   |1=leaf1
   |label2=label2
   |sublabel2=sublabel2
   |2=leaf2
   }}
}}

Styling brackets and branches ફેરફાર કરો

The appearance of the cladogram can be customised by changing the border attributes of the HTML cell elements, using the parameters |state=, |color= and |thickness= as shown below:

Description Template code Resulting output
Styling brackets

The thickness, colour and state (solid, dashed, etc.) of bracket lines can be changed using the thickness=, |color= and |state= parameters.


{{clade
   |label1=Bracket styling
   |sublabel1=(no suffix)
   |style1x=background-color:#ffffee;
   |1={{Clade
      |label2=color
      |2={{Clade |color=red 
         |1=A
         |2=B                
         |3=C             
        }}
      |label1=thickness
      |1={{Clade |thickness=3
          |1=I  
          |2=J          
          |3=K             
          }}
      |label3=state
      |3={{Clade |state=dashed
         |1=X 
         |2=Y         
         |3=Z        
 
         }}
      }}
}}


Bracket styling
thickness

I



J



K



color

A



B



C



state

X



Y



Z



(no suffix)
Styling individual branches

The thickness, colour and state of individual branch lines can be changed using the thicknessN=, |colorN= and |stateN= parameters, where N is the number of the branch to be styled.


{{clade
   |label1=Branch styling
   |sublabel1=(append branch number)
   |style1x=background-color:#eeeeee;
   |1={{Clade
      |label2=colorN
      |2={{Clade
         |1=black (default) |color1=black          
         |2=red             |color2=red    
         |3=blue            |color3=blue   
         |4= #00ff00       |color4=#00ff00   
         }}
      |label1=thicknessN
      |1={{Clade
          |1=1 (default) |thickness1=1 
          |2=2           |thickness2=2 
          |3=3           |thickness3=3  
          }}
      |label3=stateN
      |3={{Clade
         |1=solid (default) |state1=solid   
         |2=dotted          |state2=dotted  
         |3=dashed          |state3=dashed 
         |4=none            |state4=none   
         |5=double          |state5=double 
         }}
      }}
}}



Branch styling
thicknessN

1 (default)



2



3



colorN

black (default)



red



blue



 #00ff00



stateN

solid (default)



dotted



dashed



none



double



(append branch number)

Reverse clade ફેરફાર કરો

The cladograms can also be generated right to left using {{cladeR}}, as shown below.

ઢાંચો:Clade example

While this has limited value in English Wikipedia, it can be useful for presenting alternative phylogenies, e.g. as in the following example:

Panthera


snow leopard



tiger





jaguar




lion



leopard





ઢાંચો:CladeR


Data in Newick format ફેરફાર કરો

A common method of presenting phylogenetic data is to use the Newick format. Many published papers provide data in Newick format in their supplementary materials and several taxonomic and phyogenetic websites provide downloads (e.g. Open Tree of Life). These Newick strings can be used to generate cladograms in several ways.

Newick strings as a resource ફેરફાર કરો

Firstly, the Newick format data can be used to generate the clade structure markup using a text editor or one of several tools. ઢાંચો:Clade gallery The phylogenetic tree shown to the right is represented by the following Newick and {{Clade}} code

  • Newick format: ((a,b),(c,d))
  • Clade code: {{clade |1={{clade |1=a |2=b}} |2={{clade |1=c |2=d }} }} }}

The manual procedure for conversion in a text editor is

  1. Replace "(" with "{{clade|"
  2. Replace ")" with "}}"
  3. Edit to replace commas with pipes and numbers
  4. Edit clade labels if needed

Fortunately, there are a number of methods for automating this task.

  1. One method is to use the NewickConverter template (see instructions therein).
  2. Alternatively, one can easily generate required clade code by downloading the free Windows utility, 'Claded', via link at http://code.google.com/p/claded, 'Claded' allowing editing of Cladograms using a tree control.
  3. Example of a Perl script to automate the conversion:
use constant N=>"\n";
use constant T=>"\t";

my $tree='((a,b),(c,d));'; # get sequence
$tree=~s/[\n\r]//g; # loose those spaces
$tree=~ s/\:[\.\d]+//g; # loose those lengths
while ($tree=~ m/\(/) {
	foreach my $clade ($tree=~ m/\(([^\(\)]+)\)/g) {
		my @branches=split /\,/,$clade;
		s/(\t+)/$1\t/g for @branches;
		die 'ERROR: degenerate/empty node!'.N if $#branches<1;
		$tree=~ s/\(\Q$clade\E\)/${\join('','{{clade',N,map(T.'|'.($_+1).'='.$branches[$_].N,0..$#branches),T.'}}')}/; # substitute
	}
	pos($tree)=0;
}
$tree=~s/(\t*)\t\}\}/$1\}\}/g; # lazy fix

print $tree;

Using Newick strings directly ફેરફાર કરો

The Newick format data can also be added using the |newickN=, where N refers to the child node (as with other parameters).

For instance, the following Newick string

((lion,jaguar,leopard),((siberian,bengal)tiger,snow leopard))panthera

can be put in the clade code as in the following example:

ઢાંચો:Clade example

The Newick format data provided Open Tree of Life and other sources typically has extraneous encoding data. This can be removed using the |newickN-pattern= and |newickN-replace= parameters which supply a Lua pattern (similar to Regex) and replacement. The following code uses Newick format data for the genus Prionailurus downloaded from using Open Tree of Life (source data):

{{clade
   |newick1=(Prionailurus_planiceps_ott86166,(((Prionailurus_bengalensis_chinensis_ott198595,Prionailurus_bengalensis_euptilurus_ott547362,Prionailurus_bengalensis_bengalensis_ott5557509,Prionailurus_bengalensis_rabori_ott7067613)Prionailurus_bengalensis_ott280108,Prionailurus_iriomotensis_ott418475),Prionailurus_viverrinus_ott862641),Prionailurus_rubiginosus_ott507541)Prionailurus_ott570215
   |newick1-pattern1=([%a_]*)_?(ott[%d]*)
   |newick1-replace1=''%1''
   |newick1-pattern2=Prionailurus_
   |newick1-replace2=P._
   |newick1-pattern3=bengalensis_
   |newick1-replace3=b._   
   }}
}}

produces



Prionailurus_ott570215

Prionailurus_planiceps_ott86166




Prionailurus_bengalensis_ott280108

Prionailurus_bengalensis_chinensis_ott198595



Prionailurus_bengalensis_euptilurus_ott547362



Prionailurus_bengalensis_bengalensis_ott5557509



Prionailurus_bengalensis_rabori_ott7067613




Prionailurus_iriomotensis_ott418475




Prionailurus_viverrinus_ott862641




Prionailurus_rubiginosus_ott507541




Using a box ફેરફાર કરો

You can nest the templates and use links around the text. You may use non-breaking spaces (&nbsp;) to obtain spaces or to have labels that have spaces.

The entire cladogram can be placed in a box so that text flows nicely around it. You can use {{Cladogram}} to produce the box.

Example
Neornithes  
Paleognathae

 


 Neognathae 
 

Other birds


Galloanserae 

Anseriformes


    

Galliformes



Craciformes






Sample of {{Cladogram}}
{{cladogram|title=Example
|caption=Sample of {{tl|Cladogram}}
|clades={{clade| style=font-size:75%;line-height:75%;
    |label1=[[Neornithes]]  
    |1={{clade
        |label1=[[Paleognathae]]
        |1= 
        |label2= [[Neognathae]] 
        |2={{clade
            |1=Other birds
            |label1= 
            |label2=[[Galloanserae]] 
            |2={{clade
                |1=[[Anseriformes]]
                |label2=    
                |2={{clade
                    |1=[[Galliformes]]
                    |2=[[Craciformes]]
                    }}
                }}
            }}
        }}
    }}
}}

Controlling the layout of sisters ફેરફાર કરો

When one sister is represented as a leaf node and the other as a labelled subclade, they do not appear to be at the same level. Consider this cladogram:



Banksia subser. Sphaerocarpae (5 taxa)


Banksia subser. Leptophyllae

Banksia telmatiaea



(4 other taxa)




Although Banksia subser. Sphaerocarpae and Banksia subser. Leptophyllae are sisters, their names are not aligned in the cladogram. If this is considered undesirable, one solution is to use a label in both cases, as shown hereafter, which now shows the sisters at the same level.


Banksia subser. Sphaerocarpae

(5 taxa)


Banksia subser. Leptophyllae

Banksia telmatiaea



(4 other taxa)




Another 'trick' is to introduce a dummy clade. The red line in the following example shows where an extra clade has been inserted:



Banksia subser. Sphaerocarpae (5 taxa)



Banksia subser. Leptophyllae

Banksia telmatiaea



(4 other taxa)





To achieve this, instead of

{{clade
 |1=Sister1
 |label2=Sister2
 |2={{clade
   |1=taxon1
   |2=taxon2}}
}}

which displays as:


Sister1


Sister2

taxon1



taxon2



use

{{clade
 |1=Sister1
 |2={{clade <!--extra dummy clade-->
    |label1=Sister2
    |1={{clade
       |1=taxon1
       |2=taxon2
       }}
   }}
}}

which displays as:


Sister1



Sister2

taxon1



taxon2




Bracketting and labelling nodes ફેરફાર કરો

Adding vertical bars and brackets ફેરફાર કરો

To insert a coloured 'bracket' around a set of leaf nodes which follow one another in the generated cladogram:

  • Add barbeginN=colour for the first leaf node, where N is the order of that leaf node within its clade, and colour is the required colour.
  • Add barN=colour for the remaining nodes other than the last (note that N must be the order of that node within its clade).
  • Add barendN=colour for the last node.

ઢાંચો:Clade example

Note the using of the non-breaking space ( ) to move the vertical bar from the leaf text.

The horizontal lines can be omitted by using |barN=colour throughout. Thus the following produces simple vertical bars:

ઢાંચો:Clade example

Specifying bracket colours ફેરફાર કરો

You can use any of the ways in which colours can be specified in HTML; e.g. the standard colour names, the three or six hex digit notations, such as #FC3 or #F3C630, or the rgb() notation.

Adding text labels to brackets ફેરફાર કરો

Accessibility guidelines require pages not to rely on colour alone, so it's particularly important to add labels if you have more than one bracket/bar and need to refer to them separately. A couple of methods are available.

  1. Text labels for each bracket/bar can be added using {{Barlabel}} (see instructions at template page).
  2. Use the |grouplabelN= parameter. This adds a label to the right of the righthand bracket or bar, as shown in the following example. The right hand column illustrates how |grouplabel= adds an HTML cell to the right of the terminal leaf.

ઢાંચો:Clade example

In the example above grouplabel was used to label a bar marking the entire clade. It provided an alternative to labelA. However, if the bar is only applied to some terminals, |grouplabelN= can be used to mark paraphyletic groups. The following example also demonstrates the use of |grouplabelstyleN= to apply CSS styling to the grouplabel, in this case the color.

ઢાંચો:Clade example

The |grouplabel= parameter can be used to add multiple labels with the aid of the {{clade labels}} template. This template uses absolute CSS positioning to determine the placement of the label. When applied to a |grouplabel1= parameter on the outer clade it behaves very similarly to {{barlabel}}. A simple example to label two groups is shown below:

ઢાંચો:Clade example

The |grouplabel= parameter can contain any Wikitext or allowed HTML content and this offers a lot of flexibility in customising cladograms. The following example uses |grouplabel= to add an alternative topology using {{cladeR}}:

ઢાંચો:Clade example

Debugging ફેરફાર કરો

If your cladogram doesn't display brackets/bars as you expected, check that:

  • You understand the numbering system for the parameters barN, etc. The N must be the same as the number of the child within its clade. Thus typically you should write |N=label for leaf|barN=colour for bar, e.g. |2=[[Passeridae]]|bar2=midnightblue.
  • You have only attempted to apply brackets/bars to leaf nodes.

Limitations ફેરફાર કરો

Label length ફેરફાર કરો

Labels produced by |labelN=, where N is 1, 2, ..., can lead to poor layout of the resulting cladogram. (This does not apply to the text of leaves, i.e. text produced by |N=.) To avoid problems:

  • Labels should be kept as short as possible, ideally a single word
  • Any necessary spaces in labels should be represented as &nbsp; not as actual spaces.
  • Line breaks (i.e. <br/>) should not be used.

Browser differences ફેરફાર કરો

Browser variation: left – most browsers; right – Safari

Cladograms are drawn by generating hidden tables. The horizontal and vertical lines making up the tree are actually the edges of table cells. The tables are then drawn by the browser or user agent using its internal algorithms. As these differ from browser to browser, the trees produced will not look the same on all browsers.

In particular, as of January 2017, there are two algorithms for laying out tables with empty cells, used by two groups of browsers. Most browsers now use the algorithm that produces cladograms like the two on the left in the diagram. Safari (under both MacOS and iOS) uses another algorithm, producing cladograms like the two on the right in the diagram.

No automated "fix" for these differences exists at present.

If there is a choice over the ordering of the terminal nodes (leaves) of the tree, cladograms look best in a Safari-like browser if as much branching as possible is at the bottom of the cladogram. Typically this is produced by arranging the terminal nodes downwards on the page in order of their evolutionary divergence. Compare the bottom row of the diagram to the top row.

Inclusion in books ફેરફાર કરો

There are many known bugs in rendering tables in the software which produces Wikipedia books; see the book tool feedback page. As of July 2011 these result in the lines in cladograms not displaying in books.

Large cladograms ફેરફાર કરો

There are limitations on the size and complexity of the cladograms which can be drawn:

  • A maximum of 20 children is allowed per node.

ઢાંચો:Clade gallery

  • The Wikimedia software has certain limits on the processing allowed by templates and modules. Large cladograms can potentially exceed some of these limits.
    • Post-expand include size. Essentially this is the output of all templates, modules and parser calls. Pages with very large or several large cladograms will occasionally exceed this limit, especially on larger pages with many references and other demands on the system.
    • Template expansion depth limit. When a template is used it adds to the expansion depth, once for the template expansion and once for parameter expansion. As a result, template calls can only be nested 20 deep. Because cladograms are built by nesting templates within each other this is a common problem on larger phylogenetic trees. Fortunately there are now ways around this problem (see following section ).

Techniques for building large cladograms. ફેરફાર કરો

Because cladograms are build by nesting {{clade}} templates within each other, larger cladograms can exceed the expansion depth allowed by the Wikimedia software. The cladogram on the right fails on the twentieth nested clade template.

There are two methods to get around this limitation:

Using sequential listing of taxa ફેરફાર કરો

This approach uses the template {{clade sequential}} to list taxa in a taxonomic sequence. In the following example six taxa are listed sequentially in the template and the cladogram has the first one as the first branch, the second next and so on until the final two are sisters. Because all taxa are added in one template call, this only counts once towards the 20 limit. The downside is that it is not possible to format each level independently.

ઢાંચો:Clade example

The second example shows that some substructure can be added to each level with normal use of the {{clade}} template.


Using subtrees ફેરફાર કરો

This method uses the parameters |target= and |subclade= to "modularise" the phylogenetic tree. Each subtree is processed in parallel so they don't contribute to the expansion depth in an additive manner. The limit applies to each tree, but many subtrees can be used.

The basic arrangement is illustrated below. The main tree has two subclades, A and B, and subclade B calls a third.

ઢાંચો:Clade example

The encoding relies on a number of conventions.

  • The names of the subclades are in uppercase and enclosed in a single brace. This is not absolutely necessary, as long as the names are unique, but some advanced features (e.g. partial tranclusion) rely on this convention.
  • The parameters |subcladeA=, |subcladeB=, ... |subcladeZ= contain the subtrees in clade structure that will be substituted into the main tree.
  • The parameters |targetA=, |targetB=, ... |subcladeZ= contain the targets where the subtrees will be substituted. For instance, |targetA={SUBCLADE_A} indicates that the target {SUBCLADE_A} will be replaced by the content of |subcladeA=content.
  • The target parameters may be omitted and the default targets are {SUBCLADE_A} and {SUBCLADE_B} for |subcladeA= and |subcladeB=, respectively.
  • The suffixes A-Z were chosen because these parameters don't correspond the other numbered parameters used by the template (e.g. |1=, |label2= etc.
  • The subclades can all be listed in the outer clade template or nested within the appropriate tree. For instance, in the example subclade C is listed at the end of the outer clade template but this could have been nested in the clade template attached to subtree B.

An example of a large phylogenetic tree divided into multiple subtrees can be found at {{Phylogeny/APG IV}}.

Add interactivity with collapsible clades ફેરફાર કરો

Sometimes with large phylogenetic trees it is hard to see the wood for the trees. The cladogram may exceed the screen height making it difficult to see the overall structure and important small clades are to to see. A way around this is to collape the large clades and expand them interactively.

The following example shows a simple example to illustrate the principle:

ઢાંચો:Clade example

A note of caution. The Wikimedia collapsible elements require javascript and are currently disabled in the mobile view. In such cases the whole cladogram will be shown. As with any large phylogentic trees, editors should decide if having a smaller less inclusive tree makes the point more clearly.

Graphical summary ફેરફાર કરો

ઢાંચો:Clade/doc/graphic summary