Binary Matrix (01 matrix) - Data Export
|
Previous Top Next |
|
GelQuest offers several formats for exporting binary matrix data.
|
|
Please note:
1. Only those hyperbins containing active bins, i.e. they were included
by the hyperbin detection parameters and they must not be disabled by
the user, are exported into an 01 matrix.
2. Only visible color channels will be exported.
|
Format
|
Example
|
NEXUS
For use with the PAUP
software.
|
#NEXUS
begin data;
dimensions ntax=3 nchar=10;
format datatype=standard [interleave] missing=?;
matrix
'Sample#1' 1111101111
'Sample#2' 0011110111
'Sample#3' 0111101111
;
END;
BEGIN PAUP;
[Calculate a simple UPGMA-Tree]
UPGMA BRLENS=yes BREAKTIES=random TIESEED=123
TREEFILE=upgma_tree REPLACE=yes;
[Do UPGMA-Bootstrapping]
set criterion=distance;
bootstrap NREPS=100 SEARCH=UPGMA
TREEFILE=upgma_boostrap.tre BRLENS=yes REPLACE=yes;
END;
|
NEWICK
For use with PHYLIP and other
software.
|
3 10
Sample#1 1111101111
Sample#2 0011110111
Sample#3 0111101111
|
SIMPLE
For downstream processing
with other software.
|
3
'Sample#1' 1111101111
'Sample#2' 0011110111
'Sample#3' 0111101111
|
FASTA
For other software.
|
>Sample#1
1111101111
>Sample#2
0011110111
>Sample#3
0111101111
|