Мы используем файлы cookie.
Продолжая использовать сайт, вы даете свое согласие на работу с этими файлами.
Nexus file
Другие языки:

Nexus file

Подписчиков: 0, рейтинг: 0
Nexus format
Filename extensions usually .nex or .nxs
Internet media type application/octet-stream
Magic number '#NEXUS\n'
Developed by Maddison DR, Swofford DL, Maddison WP
Initial release December 1997 (1997-12)
Type of format bioinformatics
Open format? Yes

The extensible NEXUS file format is widely used in bioinformatics. It stores information about taxa, morphological and molecular characters, distances, genetic codes, assumptions, sets, trees, etc. Several popular phylogenetic programs such as PAUP*,MrBayes, Mesquite, MacClade and SplitsTree use this format.

Syntax

A NEXUS file is made out of a fixed header #NEXUS followed by multiple blocks. Each block starts with BEGIN block_name; and ends with END;. The keywords are case-insensitive. Comments are enclosed inside square brackets [...].

There are a few pre-defined block names for common types of data. Examples include:

TAXA block
The TAXA block contains information about taxa.
DATA block
The DATA block contains the data matrix (e.g. sequence alignment).
TREES block
The TREES block contains phylogenetic trees described using the Newick format, e.g. ((A,B),C);:

The following example uses the three block types above:

#NEXUS
Begin TAXA;
  Dimensions ntax=4;
  TaxLabels SpaceDog SpaceCat SpaceOrc SpaceElf;
End;

Begin data;
  Dimensions nchar=15;
  Format datatype=dna missing=? gap=- matchchar=.;
  Matrix
    [ When a position is a "matchchar", it means that it is the same as the first entry at the same position. ]
    SpaceDog   atgctagctagctcg
    SpaceCat   ......??...-.a.
    SpaceOrc   ...t.......-.g. [ same as atgttagctag-tgg ]
    SpaceElf   ...t.......-.a.           
  ;
End;

BEGIN TREES;
  Tree tree1 = (((SpaceDog,SpaceCat),SpaceOrc,SpaceElf));
END;

See also

External links


Новое сообщение