5d83681ee4df95d5db6b52203f5d658a443cfb6d
[jalview.git] / forester / java / src / org / forester / application / msa_compactor.java
1
2 package org.forester.application;
3
4 import java.io.File;
5 import java.io.FileInputStream;
6 import java.util.ArrayList;
7 import java.util.List;
8
9 import org.forester.io.parsers.FastaParser;
10 import org.forester.io.parsers.GeneralMsaParser;
11 import org.forester.msa.Msa;
12 import org.forester.msa.MsaCompactor;
13 import org.forester.msa.MsaMethods;
14 import org.forester.util.CommandLineArguments;
15 import org.forester.util.ForesterUtil;
16
17 public class msa_compactor {
18
19     final static private String HELP_OPTION_1                 = "help";
20     final static private String HELP_OPTION_2                 = "h";
21     final static private String REMOVE_WORST_OFFENDERS_OPTION = "w";
22     final static private String AV_GAPINESS_OPTION            = "a";
23     final static private String STEP_OPTION                   = "s";
24     final static private String LENGTH_OPTION                 = "l";
25     final static private String REALIGN_OPTION                = "r";
26     final static private String PRG_NAME                      = "msa_compactor";
27     final static private String PRG_DESC                      = "multiple sequnce aligment compactor";
28     final static private String PRG_VERSION                   = "0.01";
29     final static private String PRG_DATE                      = "140221";
30     final static private String E_MAIL                        = "phylosoft@gmail.com";
31     final static private String WWW                           = "https://sites.google.com/site/cmzmasek/home/software/forester";
32
33     public static void main( final String args[] ) {
34         try {
35             final CommandLineArguments cla = new CommandLineArguments( args );
36             if ( cla.isOptionSet( HELP_OPTION_1 ) || cla.isOptionSet( HELP_OPTION_2 ) || ( cla.getNumberOfNames() != 2 ) ) {
37                 printHelp();
38                 System.exit( 0 );
39             }
40             final File in = cla.getFile( 0 );
41             final File out = cla.getFile( 1 );
42             int worst_remove = -1;
43             double av = -1;
44             int length = -1;
45             int step = 1;
46             boolean realign = false;
47             final List<String> allowed_options = new ArrayList<String>();
48             allowed_options.add( REMOVE_WORST_OFFENDERS_OPTION );
49             allowed_options.add( AV_GAPINESS_OPTION );
50             allowed_options.add( LENGTH_OPTION );
51             allowed_options.add( REALIGN_OPTION );
52             allowed_options.add( STEP_OPTION );
53             final String dissallowed_options = cla.validateAllowedOptionsAsString( allowed_options );
54             if ( dissallowed_options.length() > 0 ) {
55                 ForesterUtil.fatalError( PRG_NAME, "unknown option(s): " + dissallowed_options );
56             }
57             if ( cla.isOptionSet( REMOVE_WORST_OFFENDERS_OPTION ) ) {
58                 worst_remove = cla.getOptionValueAsInt( REMOVE_WORST_OFFENDERS_OPTION );
59             }
60             if ( cla.isOptionSet( AV_GAPINESS_OPTION ) ) {
61                 av = cla.getOptionValueAsDouble( AV_GAPINESS_OPTION );
62             }
63             if ( cla.isOptionSet( LENGTH_OPTION ) ) {
64                 length = cla.getOptionValueAsInt( LENGTH_OPTION );
65             }
66             if ( cla.isOptionSet( STEP_OPTION ) ) {
67                 step = cla.getOptionValueAsInt( STEP_OPTION );
68             }
69             if ( cla.isOptionSet( REALIGN_OPTION ) ) {
70                 realign = true;
71             }
72             //            else if ( cla.isOptionSet( STEP_OPTION ) && cla.isOptionSet( WINDOW_OPTION ) ) {
73             //                step = cla.getOptionValueAsInt( STEP_OPTION );
74             //                window = cla.getOptionValueAsInt( WINDOW_OPTION );
75             //            }
76             //            else {
77             //                printHelp();
78             //                System.exit( 0 );
79             //            }
80             Msa msa = null;
81             final FileInputStream is = new FileInputStream( in );
82             if ( FastaParser.isLikelyFasta( in ) ) {
83                 msa = FastaParser.parseMsa( is );
84             }
85             else {
86                 msa = GeneralMsaParser.parse( is );
87             }
88             MsaCompactor mc = null;
89             if ( worst_remove > 0 ) {
90                 mc = MsaCompactor.removeWorstOffenders( msa, worst_remove, realign );
91             }
92             else if ( av > 0 ) {
93                 mc = MsaCompactor.reduceGapAverage( msa, av, step, realign, out, 50 );
94             }
95             else if ( length > 0 ) {
96                 mc = MsaCompactor.reduceLength( msa, length, step, realign );
97             }
98             System.out.println( MsaMethods.calcGapRatio( mc.getMsa() ) );
99             for( final String id : mc.getRemovedSeqIds() ) {
100                 System.out.println( id );
101             }
102         }
103         catch ( final Exception e ) {
104             e.printStackTrace();
105             ForesterUtil.fatalError( PRG_NAME, e.getMessage() );
106         }
107     }
108
109     private static void printHelp() {
110         ForesterUtil.printProgramInformation( PRG_NAME,
111                                               PRG_DESC,
112                                               PRG_VERSION,
113                                               PRG_DATE,
114                                               E_MAIL,
115                                               WWW,
116                                               ForesterUtil.getForesterLibraryInformation() );
117         System.out.println( "Usage:" );
118         System.out.println();
119         System.out.println( PRG_NAME + " <options> <msa input file>" );
120         System.out.println();
121         System.out.println( " options: " );
122         System.out.println();
123         System.out.println( "   -" + REMOVE_WORST_OFFENDERS_OPTION + "=<integer>: step size (msa columns)" );
124         System.out.println();
125         System.out.println();
126         System.out.println();
127     }
128 }