aletorecxml
v0.0.14
Published
Lib js for convert ALE format to recXML format
Downloads
19
Readme
What it is:
Lib to convert ALE format, file from https://github.com/ssolo/ALE/ into a xml format inherited from phyloXML (www.phyloxml.org): recXML.
Exemple
var recxml = require("aletorecxml");
var ale_data = "(ANAVT_1_PE117:1,(ANAVT_4_PE2444:2,ANAVT_2_PE237:0)D@0|ANAVT:1)D@0|ANAVT:0;"
//Asynchronous function
recxml.ALEtorecXML(ale_data,function (data) {
//use the variable data here it's rec xml
});