2 * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
3 * Copyright (C) $$Year-Rel$$ The Jalview Authors
5 * This file is part of Jalview.
7 * Jalview is free software: you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation, either version 3
10 * of the License, or (at your option) any later version.
12 * Jalview is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty
14 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15 * PURPOSE. See the GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with Jalview. If not, see <http://www.gnu.org/licenses/>.
19 * The Jalview Authors are detailed in the 'AUTHORS' file.
21 package jalview.analysis;
23 import jalview.datamodel.Alignment;
24 import jalview.datamodel.AlignmentI;
25 import jalview.datamodel.Sequence;
26 import jalview.datamodel.SequenceI;
27 import jalview.gui.JvOptionPane;
28 import jalview.io.FastaFile;
31 import java.io.FileNotFoundException;
32 import java.io.PrintStream;
33 import java.util.Arrays;
34 import java.util.Random;
36 import org.testng.annotations.BeforeClass;
39 * Generates, and outputs in Fasta format, a random peptide or nucleotide alignment for given
40 * sequence length and count. Will regenerate the same alignment each time if
41 * the same random seed is used (so may be used for reproducible unit tests).
42 * Not guaranteed to reproduce the same results between versions, as the rules
43 * may get tweaked to produce more 'realistic' results.
47 public class AlignmentGenerator
49 private static final char GAP = '-';
51 private static final char ZERO = '0';
53 private static final char[] NUCS = "GTCA".toCharArray();
55 private static final char[] PEPS = "MILVFYWHKRDEQNTCGASNP".toCharArray();
57 private static char[] BASES;
59 private Random random;
61 private PrintStream ps;
64 * Outputs a pseudo-randomly generated nucleotide or peptide alignment
67 * <li>n (for nucleotide) or p (for peptide)</li>
68 * <li>length (number of bases in each sequence)</li>
69 * <li>height (number of sequences)</li>
70 * <li>a whole number random seed</li>
71 * <li>percentage of gaps to include (0-100)</li>
72 * <li>percentage chance of variation of each position (0-100)</li>
73 * <li>(optional) path to a file to write the alignment to</li>
78 * @throws FileNotFoundException
80 public static void main(String[] args) throws FileNotFoundException
82 if (args.length != 6 && args.length != 7)
88 PrintStream ps = System.out;
91 ps = new PrintStream(new File(args[6]));
94 boolean nucleotide = args[0].toLowerCase().startsWith("n");
95 int width = Integer.parseInt(args[1]);
96 int height = Integer.parseInt(args[2]);
97 long randomSeed = Long.valueOf(args[3]);
98 int gapPercentage = Integer.valueOf(args[4]);
99 int changePercentage = Integer.valueOf(args[5]);
101 ps.println("; " + height + " sequences of " + width
102 + " bases with " + gapPercentage + "% gaps and "
103 + changePercentage + "% mutations (random seed = " + randomSeed
106 new AlignmentGenerator(nucleotide, ps).generate(width, height,
107 randomSeed, gapPercentage, changePercentage);
109 if (ps != System.out)
116 * Prints parameter help
118 private static void usage()
120 System.out.println("Usage:");
121 System.out.println("arg0: n (for nucleotide) or p (for peptide)");
122 System.out.println("arg1: number of (non-gap) bases per sequence");
123 System.out.println("arg2: number of sequences");
125 .println("arg3: an integer as random seed (same seed = same results)");
126 System.out.println("arg4: percentage of gaps to (randomly) generate");
128 .println("arg5: percentage of 'mutations' to (randomly) generate");
130 .println("arg6: (optional) path to output file (default is sysout)");
131 System.out.println("Example: AlignmentGenerator n 12 15 387 10 5");
133 .println("- 15 nucleotide sequences of 12 bases each, approx 10% gaps and 5% mutations, random seed = 387");
138 * Constructor that sets nucleotide or peptide symbol set, and also writes the
139 * generated alignment to sysout
141 public AlignmentGenerator(boolean nuc)
143 this(nuc, System.out);
147 * Constructor that sets nucleotide or peptide symbol set, and also writes the
148 * generated alignment to the specified output stream (if not null). This can
149 * be used to write the alignment to a file or sysout.
151 public AlignmentGenerator(boolean nucleotide, PrintStream printStream)
153 BASES = nucleotide ? NUCS : PEPS;
158 * Outputs an 'alignment' of given width and height, where each position is a
159 * random choice from the symbol alphabet, or - for gap
164 * @param changePercentage
165 * @param gapPercentage
167 public AlignmentI generate(int width, int height, long randomSeed,
168 int gapPercentage, int changePercentage)
170 SequenceI[] seqs = new SequenceI[height];
171 random = new Random(randomSeed);
172 seqs[0] = generateSequence(1, width, gapPercentage);
173 for (int seqno = 1; seqno < height; seqno++)
175 seqs[seqno] = generateAnotherSequence(seqs[0].getSequence(),
176 seqno + 1, width, changePercentage);
178 AlignmentI al = new Alignment(seqs);
182 ps.println(new FastaFile().print(al.getSequencesArray(), true));
189 * Outputs a DNA 'sequence' of given length, with some random gaps included.
193 * @param gapPercentage
195 private SequenceI generateSequence(int seqno, int length,
198 StringBuilder seq = new StringBuilder(length);
201 * Loop till we've added 'length' bases (excluding gaps)
203 for (int count = 0; count < length;)
205 boolean addGap = random.nextInt(100) < gapPercentage;
206 char c = addGap ? GAP : BASES[random.nextInt(Integer.MAX_VALUE)
214 final String seqName = "SEQ" + seqno;
215 final String seqString = seq.toString();
216 SequenceI sq = new Sequence(seqName, seqString);
217 sq.createDatasetSequence();
222 * Generate a sequence approximately aligned to the first one.
228 * @param changePercentage
231 private SequenceI generateAnotherSequence(char[] ds, int seqno,
232 int width, int changePercentage)
234 int length = ds.length;
235 char[] seq = new char[length];
236 Arrays.fill(seq, ZERO);
237 int gapsWanted = length - width;
241 * First 'randomly' mimic gaps in model sequence.
243 for (int pos = 0; pos < length; pos++)
248 * Add a gap at the same position with changePercentage likelihood
250 seq[pos] = randomCharacter(GAP, changePercentage);
259 * Next scatter any remaining gaps (if any) at random. This gives an even
262 while (gapsAdded < gapsWanted)
264 boolean added = false;
267 int pos = random.nextInt(length);
278 * Finally fill in the rest with randomly mutated bases.
280 for (int pos = 0; pos < length; pos++)
282 if (seq[pos] == ZERO)
284 char c = randomCharacter(ds[pos], changePercentage);
288 final String seqName = "SEQ" + seqno;
289 final String seqString = new String(seq);
290 SequenceI sq = new Sequence(seqName, seqString);
291 sq.createDatasetSequence();
296 * Returns a random character that is changePercentage% likely to match the
297 * given type (as base or gap).
299 * @param changePercentage
304 private char randomCharacter(char c, int changePercentage)
306 final boolean mutation = random.nextInt(100) < changePercentage;
316 newchar = BASES[random.nextInt(Integer.MAX_VALUE) % BASES.length];