X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=forester%2Fjava%2Fsrc%2Forg%2Fforester%2Fmsa_compactor%2FMsaCompactor.java;h=8a13b5cc6bdb2ff28954e78fdb04751ad8c850d9;hb=cb49ee5684c6907b3161db82ff9aea72961b8548;hp=b239c5fd7680939c1a33c67ffcfe20f6b848d34a;hpb=620a28abb9fb5e0e8c9ddcbda63af3b346cee82a;p=jalview.git diff --git a/forester/java/src/org/forester/msa_compactor/MsaCompactor.java b/forester/java/src/org/forester/msa_compactor/MsaCompactor.java index b239c5f..8a13b5c 100644 --- a/forester/java/src/org/forester/msa_compactor/MsaCompactor.java +++ b/forester/java/src/org/forester/msa_compactor/MsaCompactor.java @@ -82,7 +82,7 @@ public class MsaCompactor { // private String _maffts_opts = "--auto"; private DeleteableMsa _msa = null; - private boolean _norm = true; + private boolean _normalize_for_effective_seq_length = true; private File _out_file_base = null; private MSA_FORMAT _output_format = MSA_FORMAT.FASTA; private String _path_to_mafft = null; @@ -130,9 +130,9 @@ public class MsaCompactor { return phy; } - public final List chart( final int step, final boolean realign, final boolean norm ) + public final List chart( final int step, final boolean realign, final boolean normalize_for_effective_seq_length ) throws IOException, InterruptedException { - final GapContribution stats[] = calcGapContribtionsStats( norm ); + final GapContribution stats[] = calcGapContribtionsStats( normalize_for_effective_seq_length ); final List to_remove_ids = new ArrayList(); final List msa_props = new ArrayList(); for( final GapContribution gap_gontribution : stats ) { @@ -143,6 +143,7 @@ public class MsaCompactor { System.out.println( "calculating phylogentic tree..." ); System.out.println(); phy = calcTree(); + addSeqs2Tree( _msa, phy ); } if ( !_realign ) { _step = -1; @@ -178,6 +179,7 @@ public class MsaCompactor { } ++i; } + if ( _phylogentic_inference ) { decorateTree( phy, msa_props, true ); displayTree( phy ); @@ -185,7 +187,26 @@ public class MsaCompactor { return msa_props; } - public final void decorateTree( final Phylogeny phy, final Msa msa, final List msa_props, final boolean chart_only ) { + private final static void addSeqs2Tree( final Msa msa, final Phylogeny phy ) { + for( int i = 0; i < msa.getNumberOfSequences(); ++i ) { + final MolecularSequence seq = msa.getSequence( i ); + final String seq_name = seq.getIdentifier(); + final PhylogenyNode n = phy.getNode( seq_name ); + if ( !n.getNodeData().isHasSequence() ) { + n.getNodeData().addSequence( new org.forester.phylogeny.data.Sequence() ); + } + else { + throw new IllegalArgumentException( "this should not have happened" ); + } + n.getNodeData().getSequence().setMolecularSequence( seq.getMolecularSequenceAsString() ); + n.getNodeData().getSequence().setMolecularSequenceAligned( true ); + n.getNodeData().getSequence().setName( seq_name ); + } + } + + private final static void decorateTree( final Phylogeny phy, + final List msa_props, + final boolean chart_only ) { final BasicDescriptiveStatistics length_stats = new BasicDescriptiveStatistics(); for( int i = 0; i < msa_props.size(); ++i ) { final MsaProperties msa_prop = msa_props.get( i ); @@ -252,6 +273,7 @@ public class MsaCompactor { config.setDisplaySequenceNames( false ); config.setDisplaySequenceSymbols( false ); config.setDisplayGeneNames( false ); + config.setDisplayMultipleSequenceAlignment( true ); config.setShowScale( true ); config.setAddTaxonomyImagesCB( false ); config.setBaseFontSize( 9 ); @@ -283,7 +305,7 @@ public class MsaCompactor { public final List removeViaGapAverage( final double mean_gapiness ) throws IOException, InterruptedException { - final GapContribution stats[] = calcGapContribtionsStats( _norm ); + final GapContribution stats[] = calcGapContribtionsStats( _normalize_for_effective_seq_length ); final List to_remove_ids = new ArrayList(); final List msa_props = new ArrayList(); for( final GapContribution gap_gontribution : stats ) { @@ -294,6 +316,7 @@ public class MsaCompactor { System.out.println( "calculating phylogentic tree..." ); System.out.println(); phy = calcTree(); + addSeqs2Tree( _msa, phy ); } printTableHeader(); MsaProperties msa_prop = new MsaProperties( _msa, "", _calculate_shannon_entropy ); @@ -328,12 +351,19 @@ public class MsaCompactor { if ( _phylogentic_inference ) { decorateTree( phy, msa_props, false ); displayTree( phy ); - } + System.out.println( "calculating phylogentic tree..." ); + System.out.println(); + final Phylogeny phy2 = calcTree(); + addSeqs2Tree( _msa, phy2 ); + displayTree( phy2 ); + } + + return msa_props; } public List removeViaLength( final int length ) throws IOException, InterruptedException { - final GapContribution stats[] = calcGapContribtionsStats( _norm ); + final GapContribution stats[] = calcGapContribtionsStats( _normalize_for_effective_seq_length ); final List to_remove_ids = new ArrayList(); final List msa_props = new ArrayList(); for( final GapContribution gap_gontribution : stats ) { @@ -344,6 +374,7 @@ public class MsaCompactor { System.out.println( "calculating phylogentic tree..." ); System.out.println(); phy = calcTree(); + addSeqs2Tree( _msa, phy ); } printTableHeader(); MsaProperties msa_prop = new MsaProperties( _msa, "", _calculate_shannon_entropy ); @@ -378,13 +409,19 @@ public class MsaCompactor { if ( _phylogentic_inference ) { decorateTree( phy, msa_props, false ); displayTree( phy ); - } + System.out.println( "calculating phylogentic tree..." ); + System.out.println(); + final Phylogeny phy2 = calcTree(); + addSeqs2Tree( _msa, phy2 ); + displayTree( phy2 ); + } + return msa_props; } public final List removeWorstOffenders( final int to_remove ) throws IOException, InterruptedException { - final GapContribution stats[] = calcGapContribtionsStats( _norm ); + final GapContribution stats[] = calcGapContribtionsStats( _normalize_for_effective_seq_length ); final List to_remove_ids = new ArrayList(); final List msa_props = new ArrayList(); for( int j = 0; j < to_remove; ++j ) { @@ -395,6 +432,7 @@ public class MsaCompactor { System.out.println( "calculating phylogentic tree..." ); System.out.println(); phy = calcTree(); + addSeqs2Tree( _msa, phy ); } printTableHeader(); MsaProperties msa_prop = new MsaProperties( _msa, "", _calculate_shannon_entropy ); @@ -427,7 +465,13 @@ public class MsaCompactor { if ( _phylogentic_inference ) { decorateTree( phy, msa_props, false ); displayTree( phy ); - } + System.out.println( "calculating phylogentic tree..." ); + System.out.println(); + final Phylogeny phy2 = calcTree(); + addSeqs2Tree( _msa, phy2 ); + displayTree( phy2 ); + } + return msa_props; } @@ -443,8 +487,8 @@ public class MsaCompactor { _maffts_opts = maffts_opts; } - public final void setNorm( final boolean norm ) { - _norm = norm; + public final void setNorm( final boolean normalize_for_effective_seq_length ) { + _normalize_for_effective_seq_length = normalize_for_effective_seq_length; } final public void setOutFileBase( final File out_file_base ) { @@ -540,8 +584,8 @@ public class MsaCompactor { return stats; } - final private GapContribution[] calcGapContribtionsStats( final boolean norm ) { - final GapContribution stats[] = calcGapContribtions( norm ); + final private GapContribution[] calcGapContribtionsStats( final boolean normalize_for_effective_seq_length ) { + final GapContribution stats[] = calcGapContribtions( normalize_for_effective_seq_length ); Arrays.sort( stats ); return stats; } @@ -608,6 +652,8 @@ public class MsaCompactor { sb.append( msa_properties.getLength() ); sb.append( "\t" ); sb.append( NF_4.format( msa_properties.getGapRatio() ) ); + sb.append( "\t" ); + sb.append( NF_1.format( msa_properties.getAvgNumberOfGaps() ) ); if ( _calculate_shannon_entropy ) { sb.append( "\t" ); sb.append( NF_4.format( msa_properties.getEntropy7() ) ); @@ -675,6 +721,8 @@ public class MsaCompactor { System.out.print( "\t" ); System.out.print( "Length" ); System.out.print( "\t" ); + System.out.print( "Gap R" ); + System.out.print( "\t" ); System.out.print( "Gaps" ); System.out.print( "\t" ); if ( _calculate_shannon_entropy ) {