1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441
|
//******************************************************************************
//
// File: FindProteinHyb2.java
// Package: edu.rit.compbio.seq
// Unit: Class edu.rit.compbio.seq.FindProteinHyb2
//
// This Java source file is copyright (C) 2008 by Alan Kaminsky. All rights
// reserved. For further information, contact the author, Alan Kaminsky, at
// ark@cs.rit.edu.
//
// This Java source file is part of the Parallel Java Library ("PJ"). PJ is free
// software; you can redistribute it and/or modify it under the terms of the GNU
// General Public License as published by the Free Software Foundation; either
// version 3 of the License, or (at your option) any later version.
//
// PJ is distributed in the hope that it will be useful, but WITHOUT ANY
// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
// A PARTICULAR PURPOSE. See the GNU General Public License for more details.
//
// Linking this library statically or dynamically with other modules is making a
// combined work based on this library. Thus, the terms and conditions of the
// GNU General Public License cover the whole combination.
//
// As a special exception, the copyright holders of this library give you
// permission to link this library with independent modules to produce an
// executable, regardless of the license terms of these independent modules, and
// to copy and distribute the resulting executable under terms of your choice,
// provided that you also meet, for each linked independent module, the terms
// and conditions of the license of that module. An independent module is a
// module which is not derived from or based on this library. If you modify this
// library, you may extend this exception to your version of the library, but
// you are not obligated to do so. If you do not wish to do so, delete this
// exception statement from your version.
//
// A copy of the GNU General Public License is provided in the file gpl.txt. You
// may also obtain a copy of the GNU General Public License on the World Wide
// Web at http://www.gnu.org/licenses/gpl.html.
//
//******************************************************************************
package edu.rit.compbio.seq;
import edu.rit.mp.ObjectBuf;
import edu.rit.mp.buf.ObjectItemBuf;
import edu.rit.pj.Comm;
import edu.rit.pj.CommStatus;
import edu.rit.pj.LongForLoop;
import edu.rit.pj.LongSchedule;
import edu.rit.pj.ParallelRegion;
import edu.rit.pj.ParallelSection;
import edu.rit.pj.ParallelTeam;
import edu.rit.util.LongRange;
import java.io.File;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
/**
* Class FindProteinHyb2 is a hybrid parallel program that finds matches for a
* protein in a protein sequence database. The query sequence is stored in a
* file in FASTA format; for further information, see class {@linkplain
* ProteinSequence}. The protein sequence database is stored in two files, a
* database file in FASTA format and an index file; for further information, see
* class {@linkplain ProteinDatabase}. The program uses the Smith-Waterman
* algorithm to compute a local alignment between the query sequence and each
* subject sequence in the database. The program uses the BLOSUM-62 protein
* substitution matrix. The program uses affine gap penalties with a gap
* existence penalty of −11 and a gap extension penalty of −1. The
* program prints on the standard output the resulting alignments from highest
* to lowest score. The program only prints alignments with an <I>E</I>-value
* below the given threshold; if not specified, the default is 10.
* <P>
* The program uses the master-worker pattern for load balancing. The program
* partitions the alignments among the processes using the schedule specified by
* the <TT>-Dpj.schedule</TT> flag. The master sends a range of database indexes
* to a worker; the worker sends back to the master a list of alignments for
* those database indexes; and the process repeats. Within each worker, the
* alignments are partitioned among multiple threads using the parallel loop
* schedule specified by the fourth command line argument. If this argument is
* missing, the default is to divide the alignments evenly among the threads.
* <P>
* Usage: java -Dpj.np=<I>Kp</I> -Dpj.nt=<I>Kt</I> [
* -Dpj.schedule=<I>procschedule</I> ] edu.rit.compbio.seq.FindProteinHyb2
* <I>queryfile</I> <I>databasefile</I> <I>indexfile</I> [ <I>thrschedule</I> [
* <I>expect</I> ] ]
* <BR><I>Kp</I> = Number of parallel processes
* <BR><I>Kt</I> = Number of parallel threads per process
* <BR><I>procschedule</I> = Load balancing schedule for processes (default:
* fixed schedule)
* <BR><I>queryfile</I> = Query sequence file
* <BR><I>databasefile</I> = Protein sequence database file
* <BR><I>indexfile</I> = Protein sequence index file
* <BR><I>thrschedule</I> = Load balancing schedule for threads (default: fixed
* schedule)
* <BR><I>expect</I> = <I>E</I>-value threshold (default: 10)
*
* @author Alan Kaminsky
* @version 07-Jul-2008
*/
public class FindProteinHyb2
{
// Prevent construction.
private FindProteinHyb2()
{
}
// Global variables.
// World communicator.
static Comm world;
static int size;
static int rank;
// Command line arguments.
static File queryfile;
static File databasefile;
static File indexfile;
static LongSchedule thrschedule;
static double expect;
// Query sequence.
static ProteinSequence query;
// Protein sequence database.
static ProteinDatabase database;
// Object to compute alignment statistics.
static AlignmentStats stats;
// List of alignments found.
static List<Alignment> alignmentsFound;
// Main program.
/**
* Main program.
*/
public static void main
(String[] args)
throws Exception
{
// Start timing.
long t1 = System.currentTimeMillis();
// Initialize world communicator.
Comm.init (args);
world = Comm.world();
size = world.size();
rank = world.rank();
// Parse command line arguments.
if (3 > args.length || args.length > 5) usage();
queryfile = new File (args[0]);
databasefile = new File (args[1]);
indexfile = new File (args[2]);
thrschedule = LongSchedule.fixed();
if (args.length >= 4) thrschedule = LongSchedule.parse (args[3]);
expect = 10.0;
if (args.length >= 5) expect = Double.parseDouble (args[4]);
// Set up query sequence.
query = new ProteinSequence (queryfile);
// Set up protein sequence database.
database = new ProteinDatabase (databasefile, indexfile);
// Set up object to compute alignment statistics.
stats = new DefaultAlignmentStats (database.getDatabaseLength());
// Set up list of alignments found.
alignmentsFound = new ArrayList<Alignment>();
long t2 = System.currentTimeMillis();
// In process 0, run the master and the worker in separate threads.
if (rank == 0)
{
new ParallelTeam(2).execute (new ParallelRegion()
{
public void run() throws Exception
{
execute (new ParallelSection()
{
public void run() throws Exception
{
masterSection();
}
},
new ParallelSection()
{
public void run() throws Exception
{
workerSection();
}
});
}
});
}
// In processes 1 and up, run just the worker section.
else
{
workerSection();
}
long t3 = System.currentTimeMillis();
// Process 0 does the postprocessing.
if (rank == 0)
{
// Sort alignments into descending order of score.
Collections.sort (alignmentsFound);
// Set up alignment printer.
AlignmentPrinter printer = new AlignmentPrinter (System.out, stats);
// Print query sequence.
System.out.println ("Query Description:");
System.out.println (query.description());
System.out.println ("Length = "+query.length());
System.out.println();
// Print summary of each alignment.
System.out.println (" Bit E-");
System.out.println ("Subject Description Score Value");
for (Alignment a : alignmentsFound)
{
printer.printSummary
(a, database.getProteinSequence (a.getSubjectId()));
}
System.out.println();
// Print details of each alignment.
for (Alignment a : alignmentsFound)
{
printer.printDetails
(a, query, database.getProteinSequence (a.getSubjectId()));
}
// Print various information about the alignment procedure.
System.out.println
("Query file: "+queryfile);
System.out.println
("Database file: "+databasefile);
System.out.println
("Database index file: "+indexfile);
System.out.println
("Number of sequences: "+database.getProteinCount());
System.out.println
("Number of matches: "+alignmentsFound.size());
System.out.println
("Query length: "+query.length());
System.out.println
("Database length: "+database.getDatabaseLength());
stats.print (System.out);
System.out.println();
long t4 = System.currentTimeMillis();
System.out.println ((t2-t1)+" msec pre");
System.out.println ((t3-t2)+" msec calc");
System.out.println ((t4-t3)+" msec post");
System.out.println ((t4-t1)+" msec total");
}
// Done using the protein sequence database.
database.close();
}
// Hidden operations.
/**
* Perform the master section.
*
* @exception Exception
* Thrown if an I/O error occurred.
*/
private static void masterSection()
throws IOException
{
int worker;
LongRange range;
long t2 = System.currentTimeMillis();
// Set up a schedule object.
LongSchedule schedule = LongSchedule.runtime();
schedule.start (size, new LongRange (0, database.getProteinCount()-1));
// Send initial database index range to each worker. If range is null,
// no more work for that worker. Keep count of active workers.
int activeWorkers = size;
for (worker = 0; worker < size; ++ worker)
{
range = schedule.next (worker);
world.send (worker, ObjectBuf.buffer (range));
if (range == null) -- activeWorkers;
}
// Repeat until all workers have finished.
while (activeWorkers > 0)
{
// Receive a message containing a list of zero or more alignments
// from any worker.
ObjectItemBuf<List<Alignment>> buf = ObjectBuf.buffer();
CommStatus status = world.receive (null, buf);
worker = status.fromRank;
// Send next database index range to that specific worker. If null,
// no more work.
range = schedule.next (worker);
world.send (worker, ObjectBuf.buffer (range));
if (range == null) -- activeWorkers;
// Add alignments to list.
alignmentsFound.addAll (buf.item);
}
}
/**
* Perform the worker section.
*
* @exception Exception
* Thrown if an I/O error occurred.
*/
private static void workerSection()
throws Exception
{
// Set up parallel team.
ParallelTeam team = new ParallelTeam();
int K = team.getThreadCount();
// Set up per-thread objects to perform alignments.
final ProteinLocalAlignment[] aligner = new ProteinLocalAlignment [K];
for (int i = 0; i < K; ++ i)
{
aligner[i] = new ProteinLocalAlignmentSeq();
aligner[i].setQuerySequence (query, 0);
}
// Process chunks from master.
for (;;)
{
// Receive database index range from master. If null, no more work.
ObjectItemBuf<LongRange> rangeBuf = ObjectBuf.buffer();
world.receive (0, rangeBuf);
LongRange range = rangeBuf.item;
if (range == null) break;
final long lb = range.lb();
final long ub = range.ub();
// Set up list to hold alignments.
final List<Alignment> alignments = new ArrayList<Alignment>();
// Align query sequence against every subject sequence.
team.execute (new ParallelRegion()
{
public void run() throws Exception
{
execute (lb, ub, new LongForLoop()
{
// Per-thread variables plus padding.
ProteinLocalAlignment thrAligner;
List<Alignment> thrAlignments;
long p0, p1, p2, p3, p4, p5, p6, p7;
long p8, p9, pa, pb, pc, pd, pe, pf;
// Initialize per-thread variables.
public void start()
{
thrAligner = aligner[getThreadIndex()];
thrAlignments = new ArrayList<Alignment>();
}
// Use thread-level loop schedule.
public LongSchedule schedule()
{
return thrschedule;
}
// Do alignments.
public void run (long first, long last) throws Exception
{
for (long id = first; id <= last; ++ id)
{
ProteinSequence subject =
database.getProteinSequence (id);
thrAligner.setSubjectSequence (subject, id);
Alignment a = thrAligner.align();
if (stats.eValue (a) <= expect)
{
thrAlignments.add (a);
}
}
}
// Reduce per-thread alignments into global alignments.
public void finish() throws Exception
{
region().critical (new ParallelSection()
{
public void run()
{
alignments.addAll (thrAlignments);
}
});
}
});
}
});
// Send alignments back to master.
world.send (0, ObjectBuf.buffer (alignments));
}
};
/**
* Print a usage message and exit.
*/
private static void usage()
{
System.err.println ("Usage: java -Dpj.np=<Kp> -Dpj.nt=<Kt> [-Dpj.schedule=<procschedule>] edu.rit.compbio.seq.FindProteinHyb2 <queryfile> <databasefile> <indexfile> [<thrschedule> [<expect>]]");
System.err.println ("<Kp> = Number of parallel processes");
System.err.println ("<Kt> = Number of parallel threads per process");
System.err.println ("<procschedule> = Load balancing schedule for processes (default: fixed schedule)");
System.err.println ("<queryfile> = Query sequence file");
System.err.println ("<databasefile> = Protein sequence database file");
System.err.println ("<indexfile> = Protein sequence index file");
System.err.println ("<thrschedule> = Load balancing schedule for threads (default: fixed schedule)");
System.err.println ("<expect> = <E>-value threshold (default: 10)");
System.exit (1);
}
}
|