Mercurial > repos > timpalpant > java_genomics_toolkit
diff java-genomics-toolkit/src/edu/unc/genomics/wigmath/Multiply.java @ 0:1daf3026d231
Upload alpha version
author | timpalpant |
---|---|
date | Mon, 13 Feb 2012 21:55:55 -0500 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/java-genomics-toolkit/src/edu/unc/genomics/wigmath/Multiply.java Mon Feb 13 21:55:55 2012 -0500 @@ -0,0 +1,73 @@ +package edu.unc.genomics.wigmath; + +import java.io.IOException; +import java.nio.file.Paths; +import java.util.ArrayList; +import java.util.Arrays; +import java.util.Iterator; +import java.util.List; + +import org.apache.log4j.Logger; +import org.broad.igv.bbfile.WigItem; + +import com.beust.jcommander.Parameter; + +import edu.unc.genomics.io.WigFile; +import edu.unc.genomics.io.WigFileException; + +public class Multiply extends WigMathTool { + + private static final Logger log = Logger.getLogger(Multiply.class); + + @Parameter(description = "Input files", required = true) + public List<String> inputFiles = new ArrayList<String>(); + + @Override + public void setup() { + log.debug("Initializing input files"); + for (String inputFile : inputFiles) { + try { + addInputFile(WigFile.autodetect(Paths.get(inputFile))); + } catch (IOException | WigFileException e) { + log.error("Error initializing input Wig file: " + inputFile); + e.printStackTrace(); + System.exit(-1); + } + } + log.debug("Initialized " + inputs.size() + " input files"); + } + + @Override + public float[] compute(String chr, int start, int stop) throws IOException, WigFileException { + log.debug("Computing sum for chunk "+chr+":"+start+"-"+stop); + + int length = stop - start + 1; + float[] product = new float[length]; + Arrays.fill(product, 1); + + for (WigFile wig : inputs) { + Iterator<WigItem> data = wig.query(chr, start, stop); + while (data.hasNext()) { + WigItem item = data.next(); + for (int i = item.getStartBase(); i <= item.getEndBase(); i++) { + if (i-start >= 0 && i-start < product.length) { + product[i-start] *= item.getWigValue(); + } + } + } + } + + return product; + } + + + /** + * @param args + * @throws WigFileException + * @throws IOException + */ + public static void main(String[] args) throws IOException, WigFileException { + new Multiply().instanceMain(args); + } + +}