ALTER stands for (ALignment Transformation EnviRonment) and it is a set of software components to transform between Multiple Sequence Alignment file formats.
ALTER difers from other similar tools in the way that is "program-oriented" instead of simply "format-oriented", that is, when you convert between one format into another, you have to specify which program did generate your input file and which program will consume your generated file. This is because many programs does not follow the exact format standard, making custom asumptions about it, so tranforming directly between standard formats does not always ensure that your produced file will be processed by the next program correctly.
ALTER contains a set of components:
- A core library.
- A command line interface.
- A desktop graphical user interface (GUI).
- A web interface (a running instance is here: https://sing.ei.uvigo.es/alter).
Before starting, you have to download and install:
- Git tool for cloning the last version
- A Java Compiler and tool
- The Maven tool
And now, you can download and build it by performing:
git clone https://github.com/sing-group/ALTER.git
cd ALTER
mvn package
java -jar alter-lib/target/ALTER-1.3.4-jar-with-dependencies.jar
java -jar alter-lib/target/ALTER-1.3.4-jar-with-dependencies.jar help
- Download a jetty-runner.jar, which is a server of Java Web applications. For example, download the 9.4.0RC1 version from here here
- Place the jetty-runner-9.4.0.RC1.jar inside your ALTER folder, and the run:
java -jar jetty-runner-9.4.0.RC1.jar alter-web/target/alter-web-1.3.4.war
Once the server has started, surf to https://localhost:8080
Import our repository into your pom.xml file
<project>
[...]
<repositories>
[...]
<repository>
<id>sing-repository</id>
<name>SING repository</name>
<url>https://sing.ei.uvigo.es/maven2</url>
</repository>
[...]
</repositories>
[...]
<dependencies>
[...]
<dependency>
<groupId>es.uvigo.ei.sing</groupId>
<artifactId>alter-lib</artifactId>
<version>1.3.4</version>
</dependency>
[...]
</dependencies>
</project>
You have to include the alter-lib/target/ALTER-1.3.4-jar-with-dependencies.jar file in your classpath
Here it is an example to convert a NEXUS file to ALN.
package testalter;
import es.uvigo.ei.sing.alter.converter.Converter;
import es.uvigo.ei.sing.alter.converter.DefaultFactory;
import es.uvigo.ei.sing.alter.parser.ParseException;
import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Paths;
public class TestAlter {
public static void main(String[] args) throws IOException {
Converter converter = new DefaultFactory().getConverter(
"Linux", // Input operating system (Linux, MacOS or Windows)
"clustal", // Input program (Clustal, MAFFT, MUSCLE, PROBCONS or TCoffee)
"NEXUS", // Input format (ALN, FASTA, GDE, MEGA, MSF, NEXUS, PHYLIP or PIR)
false, // Autodetect format (other input options are omitted)
false, // Collapse sequences to haplotypes
true, // Treat gaps as missing data when collapsing
false, // Count missing data as differences when collapsing
0, // Connection limit (sequences differing at <= l sites will be collapsed) (default is l=0)
"windows", // Output operating system (Linux, MacOS or Windows)
"general", // Output program (jModelTest, MrBayes, PAML, PAUP, PhyML,
// ProtTest, RAxML, TCS, CodABC,
// BioEdit, MEGA, dnaSP, Se-Al, Mesquite, SplitsTree, Clustal, MAFFT,
// MUSCLE, PROBCONS, TCoffee, Gblocks, SeaView, trimAl or GENERAL)
"aln", // Output format (ALN, FASTA, GDE, MEGA, MSF, NEXUS, PHYLIP or PIR)
false, // Low case output
false, // Output residue numbers (only ALN format)
false, // Sequential output (only NEXUS and PHYLIP formats)
false, // Output match characters
"MyConverterApp" // identifier for log messages
);
try {
String inputSequence = new String(Files.readAllBytes(Paths.get("input.nexus")));
String converted = converter.convert(inputSequence);
System.out.println("converted file:");
System.out.println(converted);
} catch (ParseException e) {
System.err.println("the input file seems to contain errors");
e.printStackTrace();
}
}
}
The ALTER development team is:
- Daniel Glez-Peña.
- Daniel Gómez-Blanco.
- Miguel Reboiro-Jato.
- Florentino Fdez-Riverola.
- David Posada.
If you are using ALTER in your research work, please cite us:
D. Glez-Peña; D. Gómez-Blanco; M. Reboiro-Jato; F. Fdez-Riverola; D. Posada (2010) ALTER: program-oriented format conversion of DNA and protein alignments. Nucleic Acids Research. Web Server issue. ISSN: 0305-1048 https://dx.doi.org/10.1093/nar/gkq321