Skip to content

Commit

Permalink
updated
Browse files Browse the repository at this point in the history
  • Loading branch information
cctsou committed Nov 13, 2015
1 parent 2fb5f4c commit 8b20625
Show file tree
Hide file tree
Showing 317 changed files with 8,068 additions and 4,273 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -258,4 +258,6 @@ pip-log.txt
/Umpire-SpectrumParser/nbproject/private/
/Umpire-UmpireSearch/nbproject/private/
/Umpire-Utility/nbproject/private/
/DIA-Umpire/nbproject/private/
/DIA-Umpire/nbproject/private/
/DIA_Umpire_To_Skyline/nbproject/private/
/MS1Quant/nbproject/private/
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/

package ExtPackages.JAligner;
package ExternalPackages.JAligner;

import ExtPackages.JAligner.matrix.Matrix;
import ExtPackages.JAligner.util.Commons;
import ExternalPackages.JAligner.matrix.Matrix;
import ExternalPackages.JAligner.util.Commons;

import java.text.DecimalFormat;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/

package ExtPackages.JAligner;
package ExternalPackages.JAligner;

/**
* A cell in a similarity matrix, to hold row, column and score.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/

package ExtPackages.JAligner;
package ExternalPackages.JAligner;

/**
* Traceback directions.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/

package ExtPackages.JAligner;
package ExternalPackages.JAligner;

/**
* Markups line characters.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/

package ExtPackages.JAligner;
package ExternalPackages.JAligner;

import ExtPackages.JAligner.matrix.Matrix;
import ExternalPackages.JAligner.matrix.Matrix;

/**
* An implementation of the Needleman-Wunsch algorithm for biological global
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
package ExtPackages.JAligner;
package ExternalPackages.JAligner;

import ExtPackages.JAligner.matrix.Matrix;
import ExternalPackages.JAligner.matrix.Matrix;

import java.util.logging.Logger;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/

package ExtPackages.JAligner;
package ExternalPackages.JAligner;

import ExtPackages.JAligner.util.Commons;
import ExternalPackages.JAligner.util.Commons;

import java.io.Serializable;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/

package ExtPackages.JAligner;
package ExternalPackages.JAligner;

import ExtPackages.JAligner.matrix.Matrix;
import ExternalPackages.JAligner.matrix.Matrix;

import java.util.logging.Logger;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/

package ExtPackages.JAligner;
package ExternalPackages.JAligner;

/**
* Traceback node
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,22 +14,22 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/

package ExtPackages.JAligner.example;
package ExternalPackages.JAligner.example;

import ExtPackages.JAligner.Alignment;
import ExtPackages.JAligner.NeedlemanWunsch;
import ExtPackages.JAligner.Sequence;
import ExtPackages.JAligner.formats.Pair;
import ExtPackages.JAligner.matrix.Matrix;
import ExtPackages.JAligner.matrix.MatrixGenerator;
import ExtPackages.JAligner.util.SequenceParser;
import ExternalPackages.JAligner.Alignment;
import ExternalPackages.JAligner.NeedlemanWunsch;
import ExternalPackages.JAligner.Sequence;
import ExternalPackages.JAligner.formats.Pair;
import ExternalPackages.JAligner.matrix.Matrix;
import ExternalPackages.JAligner.matrix.MatrixGenerator;
import ExternalPackages.JAligner.util.SequenceParser;

import java.util.logging.Level;
import java.util.logging.Logger;

/**
* Example of using JAligner API to perform global pairwise sequence alignment
* with Needleman-Wunsch algorithm {@link ExtPackages.JAligner.NeedlemanWunsch}.
* with Needleman-Wunsch algorithm {@link ExternalPackages.JAligner.NeedlemanWunsch}.
*
* @author Ahmed Moustafa
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/

package ExtPackages.JAligner.example;
package ExternalPackages.JAligner.example;
/*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
Expand All @@ -33,20 +33,20 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/

import ExtPackages.JAligner.Alignment;
import ExtPackages.JAligner.NeedlemanWunschGotoh;
import ExtPackages.JAligner.Sequence;
import ExtPackages.JAligner.formats.Pair;
import ExtPackages.JAligner.matrix.Matrix;
import ExtPackages.JAligner.matrix.MatrixGenerator;
import ExtPackages.JAligner.util.SequenceParser;
import ExternalPackages.JAligner.Alignment;
import ExternalPackages.JAligner.NeedlemanWunschGotoh;
import ExternalPackages.JAligner.Sequence;
import ExternalPackages.JAligner.formats.Pair;
import ExternalPackages.JAligner.matrix.Matrix;
import ExternalPackages.JAligner.matrix.MatrixGenerator;
import ExternalPackages.JAligner.util.SequenceParser;

import java.util.logging.Level;
import java.util.logging.Logger;

/**
* Example of using JAligner API to perform global pairwise sequence alignment
* with {@link ExtPackages.JAligner.NeedlemanWunschGotoh}.
* with {@link ExternalPackages.JAligner.NeedlemanWunschGotoh}.
*
* @author Ahmed Moustafa
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/

package ExtPackages.JAligner.example;
package ExternalPackages.JAligner.example;

import ExtPackages.JAligner.Alignment;
import ExtPackages.JAligner.Sequence;
import ExtPackages.JAligner.SmithWatermanGotoh;
import ExtPackages.JAligner.formats.Pair;
import ExtPackages.JAligner.matrix.MatrixLoader;
import ExtPackages.JAligner.util.SequenceParser;
import ExternalPackages.JAligner.Alignment;
import ExternalPackages.JAligner.Sequence;
import ExternalPackages.JAligner.SmithWatermanGotoh;
import ExternalPackages.JAligner.formats.Pair;
import ExternalPackages.JAligner.matrix.MatrixLoader;
import ExternalPackages.JAligner.util.SequenceParser;

import java.io.IOException;
import java.io.InputStream;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/

package ExtPackages.JAligner.formats;
package ExternalPackages.JAligner.formats;

import ExtPackages.JAligner.Alignment;
import ExternalPackages.JAligner.Alignment;

/**
* CLUSTAL format.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/

package ExtPackages.JAligner.formats;
package ExternalPackages.JAligner.formats;

import ExtPackages.JAligner.Alignment;
import ExtPackages.JAligner.Sequence;
import ExternalPackages.JAligner.Alignment;
import ExternalPackages.JAligner.Sequence;

/**
* <a href="http://www.ncbi.nlm.nih.gov/BLAST/fasta.html">FASTA</a> format.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/

package ExtPackages.JAligner.formats;
package ExternalPackages.JAligner.formats;

import ExtPackages.JAligner.Alignment;
import ExternalPackages.JAligner.Alignment;

/**
* Abstract format
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/

package ExtPackages.JAligner.formats;
package ExternalPackages.JAligner.formats;

import java.util.Collection;
import java.util.HashMap;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/

package ExtPackages.JAligner.formats;
package ExternalPackages.JAligner.formats;

import ExtPackages.JAligner.Alignment;
import ExtPackages.JAligner.util.Commons;
import ExternalPackages.JAligner.Alignment;
import ExternalPackages.JAligner.util.Commons;

/**
* <a href="http://emboss.sourceforge.net/docs/themes/AlignFormats.html">Alignment Formats</a>.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/

package ExtPackages.JAligner.matrix;
package ExternalPackages.JAligner.matrix;

import java.util.Comparator;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
package ExtPackages.JAligner.matrix;
package ExternalPackages.JAligner.matrix;

import java.io.Serializable;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/

package ExtPackages.JAligner.matrix;
package ExternalPackages.JAligner.matrix;

/**
* A utility class to generate a scoring matrix from a fixed match and mismatch
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
package ExtPackages.JAligner.matrix;
package ExternalPackages.JAligner.matrix;

import ExtPackages.JAligner.ui.filechooser.NamedInputStream;
import ExtPackages.JAligner.util.Commons;
import ExternalPackages.JAligner.ui.filechooser.NamedInputStream;
import ExternalPackages.JAligner.util.Commons;

import java.io.BufferedReader;
import java.io.File;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/

package ExtPackages.JAligner.matrix;
package ExternalPackages.JAligner.matrix;

/**
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,23 +14,23 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/

package ExtPackages.JAligner.test;
package ExternalPackages.JAligner.test;

import ExtPackages.JAligner.Alignment;
import ExtPackages.JAligner.NeedlemanWunschGotoh;
import ExtPackages.JAligner.Sequence;
import ExtPackages.JAligner.formats.Format;
import ExtPackages.JAligner.formats.Pair;
import ExtPackages.JAligner.matrix.Matrix;
import ExtPackages.JAligner.matrix.MatrixLoader;
import ExternalPackages.JAligner.Alignment;
import ExternalPackages.JAligner.NeedlemanWunschGotoh;
import ExternalPackages.JAligner.Sequence;
import ExternalPackages.JAligner.formats.Format;
import ExternalPackages.JAligner.formats.Pair;
import ExternalPackages.JAligner.matrix.Matrix;
import ExternalPackages.JAligner.matrix.MatrixLoader;

import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
import java.util.Random;

/**
* Testing the scores of the alignments of {@link ExtPackages.JAligner.NeedlemanWunschGotoh}.
* Testing the scores of the alignments of {@link ExternalPackages.JAligner.NeedlemanWunschGotoh}.
*
* @author Bram Minnaert
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,23 +14,23 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/

package ExtPackages.JAligner.test;
package ExternalPackages.JAligner.test;

import ExtPackages.JAligner.Alignment;
import ExtPackages.JAligner.NeedlemanWunsch;
import ExtPackages.JAligner.Sequence;
import ExtPackages.JAligner.formats.Format;
import ExtPackages.JAligner.formats.Pair;
import ExtPackages.JAligner.matrix.Matrix;
import ExtPackages.JAligner.matrix.MatrixLoader;
import ExternalPackages.JAligner.Alignment;
import ExternalPackages.JAligner.NeedlemanWunsch;
import ExternalPackages.JAligner.Sequence;
import ExternalPackages.JAligner.formats.Format;
import ExternalPackages.JAligner.formats.Pair;
import ExternalPackages.JAligner.matrix.Matrix;
import ExternalPackages.JAligner.matrix.MatrixLoader;

import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
import java.util.Random;

/**
* Testing the scores of the alignments of {@link ExtPackages.JAligner.NeedlemanWunsch}.
* Testing the scores of the alignments of {@link ExternalPackages.JAligner.NeedlemanWunsch}.
*
* @author Ahmed Moustafa
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/

package ExtPackages.JAligner.test;
package ExternalPackages.JAligner.test;

import java.util.Random;

Expand Down
Loading

0 comments on commit 8b20625

Please sign in to comment.