*/
public static final String[] READABLE_FORMATS = new String[]
{ "BLC", "CLUSTAL", "FASTA", "MSF", "PileUp", "PIR", "PFAM", "STH",
- "PDB", "JnetFile" };
+ "PDB", "JnetFile", "SimpleBLAST" };
/**
* List of valid format strings for use by callers of the formatSequences
* corresponding to READABLE_FNAMES
*/
public static final String[] READABLE_EXTENSIONS = new String[]
- { "fa, fasta, fastq", "aln", "pfam", "msf", "pir", "blc", "amsa", "jar" };
+ { "fa, fasta, fastq", "aln", "pfam", "msf", "pir", "blc", "amsa", "jar", ".blast" };
/**
* List of readable formats by application in order corresponding to
* READABLE_EXTENSIONS
*/
public static final String[] READABLE_FNAMES = new String[]
- { "Fasta", "Clustal", "PFAM", "MSF", "PIR", "BLC", "AMSA", "Jalview" };
+ { "Fasta", "Clustal", "PFAM", "MSF", "PIR", "BLC", "AMSA", "Jalview", "SimpleBLAST" };
public static String INVALID_CHARACTERS = "Contains invalid characters";
{
afile = new StockholmFile(inFile, type);
}
+ else if (format.equals("SimpleBLAST"))
+ {
+ afile = new SimpleBlastFile(inFile,type);
+ }
Alignment al = new Alignment(afile.getSeqsAsArray());
{
afile = new StockholmFile(source);
}
+ else if (format.equals("SimpleBLAST"))
+ {
+ afile = new SimpleBlastFile(source);
+ }
Alignment al = new Alignment(afile.getSeqsAsArray());
{
System.out.println("Alignment contains " + al.getHeight()
+ " sequences and " + al.getWidth() + " columns.");
+ try {
+ System.out.println(new AppletFormatAdapter().formatSequences("FASTA", al, true));
+ } catch (Exception e)
+ {
+ System.err.println("Couln't format the alignment for output as a FASTA file.");
+ e.printStackTrace(System.err);
+ }
}
else
{