All Downloads are FREE. Search and download functionalities are using the official Maven repository.

eqtlmappingpipeline.util.ProbeSpecificFDR Maven / Gradle / Ivy

/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
package eqtlmappingpipeline.util;

import gnu.trove.map.hash.TDoubleIntHashMap;
import gnu.trove.map.hash.TObjectIntHashMap;
import java.io.IOException;
import java.util.Arrays;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Map.Entry;
import umcg.genetica.containers.Pair;
import umcg.genetica.io.Gpio;
import umcg.genetica.io.text.TextFile;
import umcg.genetica.text.Strings;

/**
 *
 * @author Marc Jan Bonder
 */
public class ProbeSpecificFDR {

//    public static String permutationDir = null;
//    public static String outputDir = null;
    /**
     * calculate the FalseDiscoveryRate for the discovered eQTLS
     *
     * @param eQTLTextFileLoc the location where the eQTL text files are stored
     * @param nrPermutationsFDR number of permutations performed
     * @param fdrcutoff the FDR cutoff
     * @param createQQPlot create a QQ plot after performing FDR calculations
     * @param outputDir set an alternate directory for output
     * @param permutationDir set an alternate directory for permutation files
     * @throws IOException
     */
    
    
    public static void calculateFDR(String eQTLTextFileLoc, int nrPermutationsFDR, double fdrcutoff, boolean createQQPlot, boolean onlyUseStrongestEffectPerProbe, boolean createLargeFdrFiles) throws IOException {

        if (eQTLTextFileLoc == null || eQTLTextFileLoc.length() == 0) {
            throw new IllegalArgumentException("File containing real effects is not specified.");
        }
        if (nrPermutationsFDR < 1) {
            throw new IllegalArgumentException("Need at least one permutation to determine FDR");
        }
        if (fdrcutoff < 0 || fdrcutoff > 1) {
            throw new IllegalArgumentException("FDR threshold should be between 0.0 and 1.0! (Specified: " + fdrcutoff + ")");
        }

        //Load permuted data:
//        // load values for each permutation round:
        
        String  permutationDir = eQTLTextFileLoc;
        String outputDir = eQTLTextFileLoc;

        String fileString = permutationDir + "/PermutedEQTLsPermutationRound" + 1 + ".txt.gz";
        TextFile tf = new TextFile(fileString, TextFile.R);
        tf.readLine();
        String[] elems = tf.readLineElems(TextFile.tab);
        int nrColsInPermutedFiles = elems.length;
        tf.close();

        System.out.println(nrColsInPermutedFiles + " columns in permuted QTL file.");
        // new permutationfile format requires different column layout...
        if(onlyUseStrongestEffectPerProbe){
            runFdrBasedOnStrongestEffect(eQTLTextFileLoc, nrPermutationsFDR, fdrcutoff, outputDir, permutationDir, createLargeFdrFiles);
        } else {
            runFdr(eQTLTextFileLoc, nrPermutationsFDR, fdrcutoff, outputDir, permutationDir, createLargeFdrFiles);
        }

    }

    private static void runFdr(String baseDir, int nrPermutationsFDR, double fdrcutoff, String outputDir, String permutationDir, boolean createLargeFdrFiles) throws IOException {
        //Grabing important Probe names//
        System.out.println("Reading in relevant bacteria labels.");
        String fileString = baseDir + "/eQTLs.txt.gz";
        if (!Gpio.exists(fileString)) {
            System.out.println("Could not find file: " + fileString + " trying un-GZipped file....");
            fileString = baseDir + "/eQTLs.txt";
        }
        if (!Gpio.exists(fileString)) {
            System.out.println("Could not the real eQTL file");
            System.exit(0);
        }

        TextFile realEQTLs = new TextFile(fileString, TextFile.R);
        HashSet relevantKeys = new HashSet();
        realEQTLs.readLine();

        String str = realEQTLs.readLine();
        while (str != null) {
            String[] data = Strings.tab.split(str);
//            System.out.println(data[4]);
            relevantKeys.add(data[4]);
            str = realEQTLs.readLine();
        }
        realEQTLs.close();
        ///
        

        HashMap permutedPvalues = new HashMap();
        
        //Load permuted data:
        // load values for each permutation round:
//        ProgressBar pb = new ProgressBar(nrPermutationsFDR, "Reading permuted data:");
        System.out.println("Reading permuted files");
                
        for (int permutationRound = 0; permutationRound < nrPermutationsFDR; permutationRound++) {
            fileString = permutationDir + "/PermutedEQTLsPermutationRound" + (permutationRound + 1) + ".txt.gz";
            System.out.println(fileString);
            // read the permuted eqtl output
            TextFile gz = new TextFile(fileString, TextFile.R);

            String[] header = gz.readLineElems(TextFile.tab);
            int snpcol = -1;
            int pvalcol = -1;
            int probecol = -1;
            int genecol = -1;

            for (int col = 0; col < header.length; col++) {
                if (header[col].equals("PValue")) {
                    pvalcol = col;
                }
                if (header[col].equals("SNP")) {
                    snpcol = col;
                }
                if (header[col].equals("Probe")) {
                    probecol = col;
                }
                if (header[col].equals("Gene")) {
                    genecol = col;
                }
            }
            
            
            
            //PValue  SNP     Probe   Gene
            if (snpcol == -1 || pvalcol == -1 || probecol == -1 && genecol == -1) {
                System.out.println("Column not found in permutation file: " + fileString);
                System.out.println("PValue: " + pvalcol);
                System.out.println("SNP: " + snpcol);
                System.out.println("Probe: " + probecol);
                System.out.println("Gene: " + genecol);
            }

            String[] data = gz.readLineElemsReturnReference(TextFile.tab);
            //Is this necessary?
            double lastObservedP = 0.0d;
            TObjectIntHashMap observedIds = new TObjectIntHashMap();
            //
            
            while (data != null) {
                if (data.length != 0) {
                    String fdrId = data[probecol];
                    double permutedP = Double.parseDouble(data[0]);
                    lastObservedP = permutedP;
                    
//                    System.out.println(fdrId);
                    if(relevantKeys.contains(fdrId)){
                        if (!permutedPvalues.containsKey(fdrId)) {
                            permutedPvalues.put(fdrId, new TDoubleIntHashMap(10000, 0.5f));
                        }
                        if (!permutedPvalues.get(fdrId).containsKey(permutedP)) {
                            permutedPvalues.get(fdrId).put(permutedP, 0);
                        } 
                        permutedPvalues.get(fdrId).increment(permutedP);
                    }
                    if (!observedIds.containsKey(fdrId)) {
                        observedIds.put(fdrId, 0);
                    } 
                    observedIds.increment(fdrId);
                }
                data = gz.readLineElemsReturnReference(TextFile.tab);
            }
            gz.close();
            
            //Is this necessary?
            //Here we make sure that all (relevant) bacteria get information and that their is equal number of p-values added.
            int maxStoredPvalues = 0;
            for(String key : observedIds.keySet()){
                if(observedIds.get(key)>maxStoredPvalues){
                    maxStoredPvalues = observedIds.get(key);
                }
            }
            
            for(String key : relevantKeys){
                if(observedIds.containsKey(key)){
                    if(observedIds.get(key)> informationPerProbe = new HashMap>();

        double averageUniquqPerm = 0;
        for (Entry  e : permutedPvalues.entrySet()) {

            double[] uniquePermutedPvalues = e.getValue().keys();
            Arrays.sort(uniquePermutedPvalues);

            double[] uniquePermutedPvaluesCounts = new double[uniquePermutedPvalues.length];

            long cummulativeCount = 0;
            double nrPermutationsFDRd = (double) nrPermutationsFDR;
            for (int i = 0; i < uniquePermutedPvalues.length; ++i) {
                cummulativeCount += e.getValue().get(uniquePermutedPvalues[i]);
                uniquePermutedPvaluesCounts[i] = cummulativeCount / nrPermutationsFDRd;
            }
            informationPerProbe.put(e.getKey(), new Pair(uniquePermutedPvalues, uniquePermutedPvaluesCounts));
            averageUniquqPerm += uniquePermutedPvalues.length;
        }
        
        System.out.println("Average number of unique permutation p-values: " + averageUniquqPerm / permutedPvalues.size());
        permutedPvalues = null;

        if (outputDir == null) {
            outputDir = baseDir;
        }

        String fileSuffix = "-ProbeSpecific";

        String outFileName = outputDir + "/eQTLsFDR" + fdrcutoff + fileSuffix + ".txt";
        String outFileNameAll = outputDir + "/eQTLsFDR" + fileSuffix + ".txt.gz";

        TextFile outputWriterSignificant = new TextFile(outFileName, TextFile.W);

        TextFile outputWriterAll = null;
        if (createLargeFdrFiles) {
            outputWriterAll = new TextFile(outFileNameAll, TextFile.W);
        }

        // REAL DATA PROCESSING
        
        fileString = baseDir + "/eQTLs.txt.gz";
        realEQTLs = new TextFile(fileString, TextFile.R);

        String header = realEQTLs.readLine();

        if (createLargeFdrFiles) {
            outputWriterAll.append(header);
            outputWriterAll.append("\tFDR\n");
        }

        outputWriterSignificant.append(header);
        outputWriterSignificant.append("\tFDR\n");

        str = realEQTLs.readLine();

        double lastEqtlPvalue = 0;

        int nrSignificantEQTLs = 0;

        TObjectIntHashMap probeSpecificItr = new TObjectIntHashMap();

        while (str != null) {
            String[] data = Strings.tab.split(str);
            String probeId = data[4];
            double eQtlPvalue = Double.parseDouble(data[0]);
            
            
            if (lastEqtlPvalue > eQtlPvalue) {
                System.err.println("Sorted P-Value list is not perfectly sorted!!!!");
                System.exit(-1);
            }
            lastEqtlPvalue = eQtlPvalue;

            //This needs to be now per Probe. Not per all probes. So there is no way to use smart tricks. Needs to change!
            //Left : uniquePermutedPvalues
            //Right : uniquePermutedPvaluesCounts
            double fdr = 0;
            int relevantLocation = 0;
            
            if(!probeSpecificItr.containsKey(probeId)){
                probeSpecificItr.put(probeId, 1);
            } else {
                probeSpecificItr.increment(probeId);
            }
            
            if (eQtlPvalue >= informationPerProbe.get(probeId).getLeft()[relevantLocation]) {

                while (informationPerProbe.get(probeId).getLeft()[relevantLocation+1] <= eQtlPvalue && relevantLocation < informationPerProbe.get(probeId).getRight().length - 2) {
                    ++relevantLocation;
                }
                
                fdr = informationPerProbe.get(probeId).getRight()[relevantLocation] / probeSpecificItr.get(probeId);

                if (fdr > 1) {
                    fdr = 1;
                }
            }

            StringBuilder currentString = new StringBuilder();
            currentString.append(str).append('\t').append(String.valueOf(fdr)).append('\n');

            if (createLargeFdrFiles) {
                outputWriterAll.append(currentString.toString());
            }

            if (fdr <= fdrcutoff) {

                outputWriterSignificant.append(currentString.toString());
                ++nrSignificantEQTLs;

            }

            str = realEQTLs.readLine();
        }

        realEQTLs.close();
        outputWriterSignificant.close();

        if (createLargeFdrFiles) {
            outputWriterAll.close();
        }

        //System.out.println("");
        System.out.println("Number of significant eQTLs:\t" + nrSignificantEQTLs);

//        if (createQQPlot) {
//            System.out.println("Creating QQ plot. This might take a while...");
//            String fileName = baseDir + "/eQTLsFDR" + fdrcutoff + fileSuffix + "-QQPlot.pdf";
//            if (maxNrMostSignificantEQTLs > pValueRealData.size()) {
//                createQQPlots(permutationDir, nrPermutationsFDR, pValueRealData.size(), fdrcutoff, m, pValueRealData.toArray(), significantPvalue, nrSignificantEQTLs, fileName);
//            } else if (maxNrMostSignificantEQTLs > 100000) {
//                System.out.println("Only taking the top 100,000 for QQplot creation.");
//                createQQPlots(permutationDir, nrPermutationsFDR, 100000, fdrcutoff, m, pValueRealData.toArray(), significantPvalue, nrSignificantEQTLs, fileName);
//            } else {
//                createQQPlots(permutationDir, nrPermutationsFDR, maxNrMostSignificantEQTLs, fdrcutoff,  m, pValueRealData.toArray(), significantPvalue, nrSignificantEQTLs, fileName);
//            }
//
    }
    
    
    private static void runFdrBasedOnStrongestEffect(String baseDir, int nrPermutationsFDR, double fdrcutoff, String outputDir, String permutationDir, boolean createLargeFdrFiles) throws IOException {
        //Grabing important Probe names//
        System.out.println("Reading in relevant bacteria labels.");
        String fileString = baseDir + "/eQTLs.txt.gz";
        if (!Gpio.exists(fileString)) {
            System.out.println("Could not find file: " + fileString + " trying un-GZipped file....");
            fileString = baseDir + "/eQTLs.txt";
        }
        if (!Gpio.exists(fileString)) {
            System.out.println("Could not the real eQTL file");
            System.exit(0);
        }

        TextFile realEQTLs = new TextFile(fileString, TextFile.R);
        HashSet relevantKeys = new HashSet();
        realEQTLs.readLine();

        String str = realEQTLs.readLine();
        while (str != null) {
            String[] data = Strings.tab.split(str);
            relevantKeys.add(data[4]);
            str = realEQTLs.readLine();
        }
        realEQTLs.close();
        ///
        

        HashMap permutedPvalues = new HashMap();
        //Load permuted data:
        // load values for each permutation round:
//        ProgressBar pb = new ProgressBar(nrPermutationsFDR, "Reading permuted data:");
        System.out.println("Reading permuted files");
                
        for (int permutationRound = 0; permutationRound < nrPermutationsFDR; permutationRound++) {
            fileString = permutationDir + "/PermutedEQTLsPermutationRound" + (permutationRound + 1) + ".txt.gz";
            System.out.println(fileString);
            // read the permuted eqtl output
            TextFile gz = new TextFile(fileString, TextFile.R);

            String[] header = gz.readLineElems(TextFile.tab);
            int snpcol = -1;
            int pvalcol = -1;
            int probecol = -1;
            int genecol = -1;

            for (int col = 0; col < header.length; col++) {
                if (header[col].equals("PValue")) {
                    pvalcol = col;
                }
                if (header[col].equals("SNP")) {
                    snpcol = col;
                }
                if (header[col].equals("Probe")) {
                    probecol = col;
                }
                if (header[col].equals("Gene")) {
                    genecol = col;
                }
            }
            
            
            
            //PValue  SNP     Probe   Gene
            if (snpcol == -1 || pvalcol == -1 || probecol == -1 && genecol == -1) {
                System.out.println("Column not found in permutation file: " + fileString);
                System.out.println("PValue: " + pvalcol);
                System.out.println("SNP: " + snpcol);
                System.out.println("Probe: " + probecol);
                System.out.println("Gene: " + genecol);
            }

            String[] data = gz.readLineElemsReturnReference(TextFile.tab);
            //Is this necessary?
            double lastObservedP = 0.0d;
            HashSet observedIds = new HashSet();
            //
            
            while (data != null) {
                if (data.length != 0) {
                    String fdrId = data[probecol];
                    double permutedP = Double.parseDouble(data[0]);
                    lastObservedP = permutedP;
//                    System.out.println(fdrId);
                    if(relevantKeys.contains(fdrId) && !observedIds.contains(fdrId)){
                        observedIds.add(fdrId);
                        if (!permutedPvalues.containsKey(fdrId)) {
                            permutedPvalues.put(fdrId, new TDoubleIntHashMap(10000, 0.5f));
                        }
                        if (!permutedPvalues.get(fdrId).containsKey(permutedP)) {
                            permutedPvalues.get(fdrId).put(permutedP, 0);
                        } 
                        permutedPvalues.get(fdrId).increment(permutedP);
                    }
                }
                data = gz.readLineElemsReturnReference(TextFile.tab);
            }
            gz.close();
            
            //If we have not observed the bacteria add the highest observed P-value.
            for(String key : relevantKeys){
                if(!observedIds.contains(key)){
                    if (!permutedPvalues.get(key).containsKey(lastObservedP)) {
                        permutedPvalues.get(key).put(lastObservedP, 1);
                    } else {
                        permutedPvalues.get(key).increment(lastObservedP);
                    }
                }
            }
            //
        }

        HashMap> informationPerProbe = new HashMap>();

        double averageUniquqPerm = 0;
        for (Entry  e : permutedPvalues.entrySet()) {

            double[] uniquePermutedPvalues = e.getValue().keys();
            Arrays.sort(uniquePermutedPvalues);

            double[] uniquePermutedPvaluesCounts = new double[uniquePermutedPvalues.length];

            long cummulativeCount = 0;
            double nrPermutationsFDRd = (double) nrPermutationsFDR;
            for (int i = 0; i < uniquePermutedPvalues.length; ++i) {
                cummulativeCount += e.getValue().get(uniquePermutedPvalues[i]);
                uniquePermutedPvaluesCounts[i] = cummulativeCount / nrPermutationsFDRd;
            }
            informationPerProbe.put(e.getKey(), new Pair(uniquePermutedPvalues, uniquePermutedPvaluesCounts));
            averageUniquqPerm += uniquePermutedPvalues.length;
        }
        
        System.out.println("Average number of unique permutation p-values: " + averageUniquqPerm / permutedPvalues.size());
        permutedPvalues = null;

        if (outputDir == null) {
            outputDir = baseDir;
        }

        String fileSuffix = "-StringentProbeSpecific";

        String outFileName = outputDir + "/eQTLsFDR" + fdrcutoff + fileSuffix + ".txt";
        String outFileNameAll = outputDir + "/eQTLsFDR" + fileSuffix + ".txt.gz";

        TextFile outputWriterSignificant = new TextFile(outFileName, TextFile.W);

        TextFile outputWriterAll = null;
        if (createLargeFdrFiles) {
            outputWriterAll = new TextFile(outFileNameAll, TextFile.W);
        }

        // REAL DATA PROCESSING
        
        fileString = baseDir + "/eQTLs.txt.gz";
        realEQTLs = new TextFile(fileString, TextFile.R);

        String header = realEQTLs.readLine();

        if (createLargeFdrFiles) {
            outputWriterAll.append(header);
            outputWriterAll.append("\tFDR\n");
        }

        outputWriterSignificant.append(header);
        outputWriterSignificant.append("\tFDR\n");

        str = realEQTLs.readLine();

        double lastEqtlPvalue = 0;

        int nrSignificantEQTLs = 0;

        TObjectIntHashMap probeSpecificItr = new TObjectIntHashMap();

        while (str != null) {
            String[] data = Strings.tab.split(str);
            String probeId = data[4];
            double eQtlPvalue = Double.parseDouble(data[0]);
            
            
            if (lastEqtlPvalue > eQtlPvalue) {
                System.err.println("Sorted P-Value list is not perfectly sorted!!!!");
                System.exit(-1);
            }
            lastEqtlPvalue = eQtlPvalue;

            //This needs to be now per Probe. Not per all probes. So there is no way to use smart tricks. Needs to change!
            //Left : uniquePermutedPvalues
            //Right : uniquePermutedPvaluesCounts
            double fdr = 0;
            int relevantLocation = 0;

            if (eQtlPvalue >= informationPerProbe.get(probeId).getLeft()[relevantLocation]) {

                while (informationPerProbe.get(probeId).getLeft()[relevantLocation+1] <= eQtlPvalue && relevantLocation < informationPerProbe.get(probeId).getRight().length - 2) {
                    ++relevantLocation;
                }
                
                fdr = informationPerProbe.get(probeId).getRight()[relevantLocation];

                if (fdr > 1) {
                    fdr = 1;
                }
            }

            StringBuilder currentString = new StringBuilder();
            currentString.append(str).append('\t').append(String.valueOf(fdr)).append('\n');

            if (createLargeFdrFiles) {
                outputWriterAll.append(currentString.toString());
            }

            if (fdr <= fdrcutoff) {

                outputWriterSignificant.append(currentString.toString());
                ++nrSignificantEQTLs;

            }

            str = realEQTLs.readLine();
        }

        realEQTLs.close();
        outputWriterSignificant.close();

        if (createLargeFdrFiles) {
            outputWriterAll.close();
        }

        //System.out.println("");
        System.out.println("Number of significant eQTLs:\t" + nrSignificantEQTLs);

//        if (createQQPlot) {
//            System.out.println("Creating QQ plot. This might take a while...");
//            String fileName = baseDir + "/eQTLsFDR" + fdrcutoff + fileSuffix + "-QQPlot.pdf";
//            if (maxNrMostSignificantEQTLs > pValueRealData.size()) {
//                createQQPlots(permutationDir, nrPermutationsFDR, pValueRealData.size(), fdrcutoff, m, pValueRealData.toArray(), significantPvalue, nrSignificantEQTLs, fileName);
//            } else if (maxNrMostSignificantEQTLs > 100000) {
//                System.out.println("Only taking the top 100,000 for QQplot creation.");
//                createQQPlots(permutationDir, nrPermutationsFDR, 100000, fdrcutoff, m, pValueRealData.toArray(), significantPvalue, nrSignificantEQTLs, fileName);
//            } else {
//                createQQPlots(permutationDir, nrPermutationsFDR, maxNrMostSignificantEQTLs, fdrcutoff,  m, pValueRealData.toArray(), significantPvalue, nrSignificantEQTLs, fileName);
//            }
//
    }
    

//
//    private static void createQQPlots(String permutationDir, int nrPermutationsFDR, int maxNrMostSignificantEQTLs, double fdrcutoff, FDRMethod m, double[] pValueRealData, ArrayList significantPvalue, int nrSignificantEQTLs, String fileName) throws IOException {
//        DoubleMatrix2D permutedPValues;
//
//        if ((nrPermutationsFDR * (long) maxNrMostSignificantEQTLs) < (Integer.MAX_VALUE - 2)) {
//            permutedPValues = new DenseDoubleMatrix2D(nrPermutationsFDR, maxNrMostSignificantEQTLs);
//        } else {
//            permutedPValues = new DenseLargeDoubleMatrix2D(nrPermutationsFDR, maxNrMostSignificantEQTLs);
//        }
//
//        int nrEQTLs = -1;
//        permutedPValues.assign(1);
//
//        for (int permutationRound = 0; permutationRound < nrPermutationsFDR; permutationRound++) {
//            String fileString = permutationDir + "/PermutedEQTLsPermutationRound" + (permutationRound + 1) + ".txt.gz";
//            // read the permuted eqtl output
//            TextFile gz = new TextFile(fileString, TextFile.R);
//
//            String[] header = gz.readLineElems(TextFile.tab);
//            int snpcol = -1;
//            int pvalcol = -1;
//            int probecol = -1;
//            int genecol = -1;
//
//            //PValue  SNP     Probe   Gene 
//            for (int col = 0; col < header.length; col++) {
//                if (header[col].equals("PValue")) {
//                    pvalcol = col;
//                }
//                if (header[col].equals("SNP")) {
//                    snpcol = col;
//                }
//                if (header[col].equals("Probe")) {
//                    probecol = col;
//                }
//                if (header[col].equals("Gene")) {
//                    genecol = col;
//                }
//            }
//            
//            String[] data = gz.readLineElemsReturnReference(TextFile.tab);
//            int itr = 0;
//
//            HashSet visitedEffects = new HashSet();
//            while (data != null) {
//
//                if (data.length != 0) {
//                    if (itr > maxNrMostSignificantEQTLs - 1) {
//                        break;
//                    } else {
//                        int filteronColumn;
//                        String fdrId;
//                        if (m == FDRMethod.GENELEVEL) {
//                            fdrId = data[QTLTextFile.HUGO];
//                            filteronColumn = QTLTextFile.HUGO;
//                        } else if (m == FDRMethod.PROBELEVEL) {
//                            fdrId = data[4];
//                            filteronColumn = 4;
//                        } else {
//                            fdrId = data[1] + "-" + data[4];
//                            filteronColumn = 4;
//                        }
//
//
//                        // take top effect per gene / probe
//                        if (data.length > filteronColumn) {
//
//                            if (!fdrId.equals("-") && !visitedEffects.contains(fdrId)) {
//                                permutedPValues.setQuick(permutationRound, itr, Double.parseDouble(data[0]));
////                                permutedPValues[permutationRound][itr] = Double.parseDouble(data[0]);
//                                visitedEffects.add(fdrId);
//                                if (itr > 0 && permutedPValues.getQuick(permutationRound, (itr - 1)) > permutedPValues.getQuick(permutationRound, itr)) {
//                                    System.err.println("Sorted P-Value list is not perfectly sorted!!!!");
//                                    System.exit(-1);
//                                }
//                                itr++;
//                            }
//                        } else {
//                            System.out.println(Strings.concat(data, Strings.tab));
//                        }
//                        data = gz.readLineElemsReturnReference(TextFile.tab);
//                    }
//                }
//            }
//            gz.close();
//
//            if (nrEQTLs == -1) {
//                nrEQTLs = itr;
//            }
//        }
//        boolean[] significant = new boolean[significantPvalue.size()];
//
//        int pos = 0;
//        for (Boolean i : significantPvalue) {
//            significant[pos] = i;
//            pos++;
//        }
//
//        QQPlot qq = new QQPlot();
//        qq.draw(fileName, fdrcutoff, nrPermutationsFDR, maxNrMostSignificantEQTLs, permutedPValues.toArray(), pValueRealData, significant, nrSignificantEQTLs);
//    }
//    public static void calculateFDRAdvanced(String eQTLTextFileLoc, int nrPermutationsFDR, int maxNrMostSignificantEQTLs, double fdrcutoff, boolean createQQPlot, String outputDir, String permutationDir, FDRMethod fdrType, boolean createLargeFdrFiles, String snpselectionlist, String probeselectionlist, String snpprobeselectionlist) throws IOException {
//        System.out.println("Using advance FDR calculation.\n");
//        if (eQTLTextFileLoc == null || eQTLTextFileLoc.length() == 0) {
//            throw new IllegalArgumentException("File containing real effects is not specified.");
//        }
//        if (nrPermutationsFDR < 1) {
//            throw new IllegalArgumentException("Need at least one permutation to determine FDR");
//        }
//        if (maxNrMostSignificantEQTLs < 1) {
//            throw new IllegalArgumentException("Need at least a single effect to perform FDR estimation");
//        }
//        if (fdrcutoff < 0 || fdrcutoff > 1) {
//            throw new IllegalArgumentException("FDR threshold should be between 0.0 and 1.0! (Specified: " + fdrcutoff + ")");
//        }
//
//        //Load permuted data:
////        // load values for each permutation round:
//        if (permutationDir == null) {
//            permutationDir = eQTLTextFileLoc;
//        }
//
//        if (outputDir == null) {
//            outputDir = eQTLTextFileLoc;
//        }
//
//        String fileString = permutationDir + "/PermutedEQTLsPermutationRound" + 1 + ".txt.gz";
//        TextFile tf = new TextFile(fileString, TextFile.R);
//        tf.readLine();
//        String[] elems = tf.readLineElems(TextFile.tab);
//        int nrColsInPermutedFiles = elems.length;
//        tf.close();
//
//        System.out.println(nrColsInPermutedFiles + " columns in permuted QTL file.");
//        // new permutationfile format requires different column layout...
//        if (nrColsInPermutedFiles > 7) {
//            System.out.println("Large permutation files detected.");
//            if (fdrType.equals(FDRMethod.PROBELEVEL) || fdrType.equals(FDRMethod.ALL)) {
//                runFDRAdvanced(eQTLTextFileLoc, nrPermutationsFDR, maxNrMostSignificantEQTLs, fdrcutoff, FileFormat.LARGE, FDRMethod.PROBELEVEL, outputDir, permutationDir, createQQPlot, createLargeFdrFiles, snpselectionlist, probeselectionlist, snpprobeselectionlist);
//            }
//            if (fdrType.equals(FDRMethod.SNPLEVEL) || fdrType.equals(FDRMethod.ALL)) {
//                runFDRAdvanced(eQTLTextFileLoc, nrPermutationsFDR, maxNrMostSignificantEQTLs, fdrcutoff, FileFormat.LARGE, FDRMethod.SNPLEVEL, outputDir, permutationDir, createQQPlot, createLargeFdrFiles, snpselectionlist, probeselectionlist, snpprobeselectionlist);
//            }
//            if (fdrType.equals(FDRMethod.GENELEVEL) || fdrType.equals(FDRMethod.ALL)) {
//                runFDRAdvanced(eQTLTextFileLoc, nrPermutationsFDR, maxNrMostSignificantEQTLs, fdrcutoff, FileFormat.LARGE, FDRMethod.GENELEVEL, outputDir, permutationDir, createQQPlot, createLargeFdrFiles, snpselectionlist, probeselectionlist, snpprobeselectionlist);
//            }
//            if (fdrType.equals(FDRMethod.FULL) || fdrType.equals(FDRMethod.ALL)) {
//                runFDRAdvanced(eQTLTextFileLoc, nrPermutationsFDR, maxNrMostSignificantEQTLs, fdrcutoff, FileFormat.LARGE, FDRMethod.FULL, outputDir, permutationDir, createQQPlot, createLargeFdrFiles, snpselectionlist, probeselectionlist, snpprobeselectionlist);
//            }
//
//        } else {
//            if (fdrType.equals(FDRMethod.PROBELEVEL) || fdrType.equals(FDRMethod.ALL)) {
//                runFDRAdvanced(eQTLTextFileLoc, nrPermutationsFDR, maxNrMostSignificantEQTLs, fdrcutoff, FileFormat.REDUCED, FDRMethod.PROBELEVEL, outputDir, permutationDir, createQQPlot, createLargeFdrFiles, snpselectionlist, probeselectionlist, snpprobeselectionlist);
//            }
//            if (fdrType.equals(FDRMethod.SNPLEVEL) || fdrType.equals(FDRMethod.ALL)) {
//                runFDRAdvanced(eQTLTextFileLoc, nrPermutationsFDR, maxNrMostSignificantEQTLs, fdrcutoff, FileFormat.REDUCED, FDRMethod.SNPLEVEL, outputDir, permutationDir, createQQPlot, createLargeFdrFiles, snpselectionlist, probeselectionlist, snpprobeselectionlist);
//            }
//            if (fdrType.equals(FDRMethod.GENELEVEL) || fdrType.equals(FDRMethod.ALL) && nrColsInPermutedFiles >= 4) {
//                runFDRAdvanced(eQTLTextFileLoc, nrPermutationsFDR, maxNrMostSignificantEQTLs, fdrcutoff, FileFormat.REDUCED, FDRMethod.GENELEVEL, outputDir, permutationDir, createQQPlot, createLargeFdrFiles, snpselectionlist, probeselectionlist, snpprobeselectionlist);
//            }
//            if (fdrType.equals(FDRMethod.FULL) || fdrType.equals(FDRMethod.ALL)) {
//                runFDRAdvanced(eQTLTextFileLoc, nrPermutationsFDR, maxNrMostSignificantEQTLs, fdrcutoff, FileFormat.REDUCED, FDRMethod.FULL, outputDir, permutationDir, createQQPlot, createLargeFdrFiles, snpselectionlist, probeselectionlist, snpprobeselectionlist);
//            }
//        }
//    }
//
//    private static void runFDRAdvanced(String baseDir, int nrPermutationsFDR, int maxNrMostSignificantEQTLs,
//            double fdrcutoff, FileFormat f, FDRMethod m, String outputDir, String permutationDir, boolean createQQPlot, boolean createLargeFdrFiles, String snpselectionlist, String probeselectionlist, String snpprobeselectionlist) throws IOException {
//        //Load permuted data:
//        // load values for each permutation round:
//        System.out.println("");
//        if (m == FDRMethod.GENELEVEL) {
//            System.out.println("Performing gene level FDR");
//        } else if (m == FDRMethod.SNPLEVEL) {
//            System.out.println("Performing SNP level FDR");
//        } else if (m == FDRMethod.PROBELEVEL) {
//            System.out.println("Performing probe level FDR");
//        } else if (m == FDRMethod.FULL) {
//            System.out.println("Determining the FDR using all data");
//        }
//        
//        int selectionCriteria = 0;
//
//        THashSet selectionOfSnps = null;
//        if (snpselectionlist != null) {
//            System.out.println("Reading: " + snpselectionlist);
//            TextFile t = new TextFile(snpselectionlist, TextFile.R);
//
//            selectionOfSnps = new THashSet(100000000, 4f);
//            for (String s : t) {
//                selectionOfSnps.add(s);
//            }
//
//            t.close();
//            System.out.println("Size selection list:"+selectionOfSnps.size());
//            selectionCriteria++;
//        }
//        
//        THashSet selectionOfProbes = null;
//        if (probeselectionlist != null) {
//            System.out.println("Reading: " + probeselectionlist);
//            TextFile t = new TextFile(probeselectionlist, TextFile.R);
//
//            selectionOfProbes = new THashSet(100000000, 4f);
//            for (String s : t) {
//                selectionOfProbes.add(s);
//            }
//
//            t.close();
//            System.out.println("Size selection list:"+selectionOfProbes.size());
//            selectionCriteria++;
//        }
//
//        THashSet selectionOfSnpProbes = null;
//        if (snpprobeselectionlist != null) {
//            System.out.println("Reading: " + snpprobeselectionlist);
//            TextFile t = new TextFile(snpprobeselectionlist, TextFile.R);
//
//            selectionOfSnpProbes = new THashSet(100000000, 4f);
//            for (String s : t) {
//                selectionOfSnpProbes.add(s);
//            }
//            t.close();
//            System.out.println("Size selection list:"+selectionOfSnpProbes.size());
//            selectionCriteria++;
//        }
//        
//        if(selectionCriteria > 1){
//            System.out.println("Error, only one selection criteria at the same time allowed.");
//            System.exit(0);
//        }
//        
//        TDoubleIntHashMap permutedPvalues = new TDoubleIntHashMap(1000000, 2f);
//
////        ProgressBar pb = new ProgressBar(nrPermutationsFDR, "Reading permuted data:");
//        
//        
//        System.out.println("Reading permuted files");
//
//        for (int permutationRound = 0; permutationRound < nrPermutationsFDR; permutationRound++) {
//            String fileString = permutationDir + "/PermutedEQTLsPermutationRound" + (permutationRound + 1) + ".txt.gz";
//            System.out.println(fileString);
//            // read the permuted eqtl output
//            TextFile gz = new TextFile(fileString, TextFile.R);
//
//            String[] header = gz.readLineElems(TextFile.tab);
//            int snpcol = -1;
//            int pvalcol = -1;
//            int probecol = -1;
//            int genecol = -1;
//
//            if (f == FileFormat.REDUCED) {
//
//                //PValue  SNP     Probe   Gene 
//                for (int col = 0; col < header.length; col++) {
//                    if (header[col].equals("PValue")) {
//                        pvalcol = col;
//                    }
//                    if (header[col].equals("SNP")) {
//                        snpcol = col;
//                    }
//                    if (header[col].equals("Probe")) {
//                        probecol = col;
//                    }
//                    if (header[col].equals("Gene")) {
//                        genecol = col;
//                    }
//                }
//
//                //PValue  SNP     Probe   Gene
//                if (snpcol == -1 || pvalcol == -1 || probecol == -1 && genecol == -1) {
//                    System.out.println("Column not found in permutation file: " + fileString);
//                    System.out.println("PValue: " + pvalcol);
//                    System.out.println("SNP: " + snpcol);
//                    System.out.println("Probe: " + probecol);
//                    System.out.println("Gene: " + genecol);
//                }
//            }
//            String[] data = gz.readLineElemsReturnReference(TextFile.tab);
//            int itr = 0;
//
//            HashSet visitedEffects = new HashSet();
//            while (data != null) {
//                if (data.length != 0) {
//                    if (itr > maxNrMostSignificantEQTLs - 1) {
//                        System.out.println("Breaking because: " + itr);
//                        break;
//                    } else {
//                        String fdrId = null;
//                        if (f == FileFormat.REDUCED) {
//                            if (m == FDRMethod.PROBELEVEL) {
//                                fdrId = data[probecol];
//                            } else if (m == FDRMethod.GENELEVEL && data.length > 3) {
//                                fdrId = data[genecol];
//                            } else if (m == FDRMethod.SNPLEVEL) {
//                                fdrId = data[snpcol];
//                            }
//
//                        } else {
//                            if (m == FDRMethod.GENELEVEL) {
//                                fdrId = data[QTLTextFile.HUGO];
//                            } else if (m == FDRMethod.SNPLEVEL) {
//                                fdrId = data[QTLTextFile.SNP];
//                            } else if (m == FDRMethod.PROBELEVEL) {
//                                fdrId = data[4];
//                            }
//                        }
//
//                        // take top effect per gene / probe
//                        if (selectionOfSnpProbes != null && selectionOfSnpProbes.contains(data[snpcol] + "-" + data[probecol])) {
//                            if (m == FDRMethod.FULL || (!fdrId.equals("-") && !visitedEffects.contains(fdrId))) {
//                                if (m != FDRMethod.FULL) {
//                                    visitedEffects.add(fdrId);
//                                }
//
//                                double permutedP = Double.parseDouble(data[0]);
//                                if (permutedPvalues.containsKey(permutedP)) {
//                                    permutedPvalues.increment(permutedP);
//                                } else {
//                                    permutedPvalues.put(permutedP, 1);
//                                }
//
//                                itr++;
//                            }
//                        }
//                        if (selectionOfSnps != null && selectionOfSnps.contains(data[snpcol])) {
//                            if (m == FDRMethod.FULL || (!fdrId.equals("-") && !visitedEffects.contains(fdrId))) {
//                                if (m != FDRMethod.FULL) {
//                                    visitedEffects.add(fdrId);
//                                }
//
//                                double permutedP = Double.parseDouble(data[0]);
//                                if (permutedPvalues.containsKey(permutedP)) {
//                                    permutedPvalues.increment(permutedP);
//                                } else {
//                                    permutedPvalues.put(permutedP, 1);
//                                }
//
//                                itr++;
//                            }
//                        }
//                        if (selectionOfProbes != null && selectionOfProbes.contains(data[probecol])) {
//                            if (m == FDRMethod.FULL || (!fdrId.equals("-") && !visitedEffects.contains(fdrId))) {
//                                if (m != FDRMethod.FULL) {
//                                    visitedEffects.add(fdrId);
//                                }
//
//                                double permutedP = Double.parseDouble(data[0]);
//                                if (permutedPvalues.containsKey(permutedP)) {
//                                    permutedPvalues.increment(permutedP);
//                                } else {
//                                    permutedPvalues.put(permutedP, 1);
//                                }
//
//                                itr++;
//                            }
//                        }
//                        if(selectionOfProbes != null && selectionOfSnps != null && selectionOfSnpProbes != null){
//                            if (m == FDRMethod.FULL || (!fdrId.equals("-") && !visitedEffects.contains(fdrId))) {
//                                if (m != FDRMethod.FULL) {
//                                    visitedEffects.add(fdrId);
//                                }
//
//                                double permutedP = Double.parseDouble(data[0]);
//                                if (permutedPvalues.containsKey(permutedP)) {
//                                    permutedPvalues.increment(permutedP);
//                                } else {
//                                    permutedPvalues.put(permutedP, 1);
//                                }
//
//                                itr++;
//                            }
//                        }
//                        
//                        data = gz.readLineElemsReturnReference(TextFile.tab);
//                    }
//
//                }
//            }
//            System.out.println("\tUsed from permutation " + (permutationRound+1) + " : " + itr + " rows.");
//            gz.close();
//
//        }
//
//        double[] uniquePermutedPvalues = permutedPvalues.keys();
//        Arrays.sort(uniquePermutedPvalues);
//
//        double[] uniquePermutedPvaluesCounts = new double[uniquePermutedPvalues.length];
//
//        long cummulativeCount = 0;
//        double nrPermutationsFDRd = (double) nrPermutationsFDR;
//        for (int i = 0; i < uniquePermutedPvalues.length; ++i) {
//            cummulativeCount += permutedPvalues.get(uniquePermutedPvalues[i]);
//            uniquePermutedPvaluesCounts[i] = cummulativeCount / nrPermutationsFDRd;
//        }
//        permutedPvalues = null;
//        System.out.println("Number of unique permutation p-values: " + uniquePermutedPvalues.length);
//
//        if (outputDir == null) {
//            outputDir = baseDir;
//        }
//
//        String fileSuffix = "";
//        if (m == FDRMethod.GENELEVEL) {
//            fileSuffix = "-GeneLevel";
//        } else if (m == FDRMethod.SNPLEVEL) {
//            fileSuffix = "-SNPLevel";
//        } else if (m == FDRMethod.PROBELEVEL) {
//            fileSuffix = "-ProbeLevel";
//        }
//
//        String outFileName = outputDir + "/eQTLsFDR" + fdrcutoff + fileSuffix + ".txt";
//        String outFileNameSnps = outputDir + "/eQTLSNPsFDR" + fdrcutoff + fileSuffix + ".txt";
//        String outFileNameProbes = outputDir + "/eQTLProbesFDR" + fdrcutoff + fileSuffix + ".txt";
//        String outFileNameAll = outputDir + "/eQTLsFDR" + fileSuffix + ".txt.gz";
//
//        TextFile outputWriterSignificant = new TextFile(outFileName, TextFile.W);
//        TextFile outputWriterESNPs = new TextFile(outFileNameSnps, TextFile.W);
//        TextFile outputWriterEProbes = new TextFile(outFileNameProbes, TextFile.W);
//
//        TextFile outputWriterAll = null;
//        if (createLargeFdrFiles) {
//            outputWriterAll = new TextFile(outFileNameAll, TextFile.W);
//        }
//        String fileString = baseDir + "/eQTLs.txt.gz";
//        if (!Gpio.exists(fileString)) {
//            System.out.println("Could not find file: " + fileString + " trying un-GZipped file....");
//            fileString = baseDir + "/eQTLs.txt";
//        }
//        if (!Gpio.exists(fileString)) {
//            System.out.println("Could not find file: " + fileString);
//            System.exit(0);
//        }
//
//        TextFile realEQTLs = new TextFile(fileString, TextFile.R);
//
//        String header = realEQTLs.readLine();
//
//        if (createLargeFdrFiles) {
//            outputWriterAll.append(header);
//            outputWriterAll.append("\tFDR\n");
//        }
//        outputWriterEProbes.append(header);
//        outputWriterEProbes.append("\tFDR\n");
//
//        outputWriterESNPs.append(header);
//        outputWriterESNPs.append("\tFDR\n");
//
//        outputWriterSignificant.append(header);
//        outputWriterSignificant.append("\tFDR\n");
//
//        String str = realEQTLs.readLine();
//
//// REAL DATA PROCESSING
//        int itr = 0;
//        HashSet visitedEffects = new HashSet();
//        HashSet visitedSnps = new HashSet();
//        HashSet visitedProbes = new HashSet();
//        double lastEqtlPvalue = 0;
//        boolean foundHigherFDRThanDesiredCutOff = false;
//
//        double currentPvalue = 0;
//        ArrayList currentPvalueEqtls = new ArrayList();
//        ArrayList currentPvalueEqtlSnps = new ArrayList();
//        ArrayList currentPvalueEqtlProbes = new ArrayList();
//
//        TDoubleArrayList pValueRealData = new TDoubleArrayList();
//        ArrayList significantPvalue = new ArrayList();
//        int lastUsedPermutedPvalueIndex = 0;
//
//        int nrSignificantEQTLs = 0;
//
//        while ((str = realEQTLs.readLine()) != null) {
//            if (itr > maxNrMostSignificantEQTLs - 1) {
//                break;
//            } else {
//
//                String fdrId = null;
//                String[] data = Strings.tab.split(str);
//
//                if (selectionOfSnps != null && !selectionOfSnps.contains(data[QTLTextFile.SNP])) {
//                    continue;
//                }
//                if (selectionOfProbes != null && !selectionOfProbes.contains(data[QTLTextFile.PROBE])) {
//                    continue;
//                }
//                if (selectionOfSnpProbes != null && !selectionOfSnpProbes.contains(data[QTLTextFile.SNP] + "-" + data[QTLTextFile.PROBE])) {
//                    continue;
//                }
//                
//                if (m == FDRMethod.GENELEVEL) {
//                    fdrId = data[QTLTextFile.HUGO];
//                } else if (m == FDRMethod.PROBELEVEL) {
//                    fdrId = data[4];
//                } else if (m == FDRMethod.SNPLEVEL) {
//                    fdrId = data[QTLTextFile.SNP];
//                }
//
//                double eQtlPvalue = Double.parseDouble(data[0]);
//
//                if (itr > 0 && lastEqtlPvalue > eQtlPvalue) {
//                    System.err.println("Sorted P-Value list is not perfectly sorted!!!!");
//                    System.exit(-1);
//                }
//
//                if (eQtlPvalue > currentPvalue) {
//                    //Process old results for current pvalue
//
//                    double fdr = 0;
//                    if (currentPvalue >= uniquePermutedPvalues[0]) {
//
//                        while (uniquePermutedPvalues[lastUsedPermutedPvalueIndex + 1] <= currentPvalue && lastUsedPermutedPvalueIndex < uniquePermutedPvalues.length - 2) {
//                            ++lastUsedPermutedPvalueIndex;
//                        }
//                        fdr = uniquePermutedPvaluesCounts[lastUsedPermutedPvalueIndex] / itr;
//
//                        if (fdr > 1) {
//                            fdr = 1;
//                        }
//
//                    }
//
//                    for (int i = 0; i < currentPvalueEqtls.size(); ++i) {
//                        String cachedEqtls = currentPvalueEqtls.get(i);
//                        String cachedEqtlsProbe = currentPvalueEqtlProbes.get(i);
//                        String cachedEqtlsSnps = currentPvalueEqtlSnps.get(i);
//
//                        StringBuilder currentString = new StringBuilder();
//                        currentString.append(cachedEqtls).append('\t').append(String.valueOf(fdr)).append('\n');
//                        pValueRealData.add(currentPvalue);
//
//                        if (createLargeFdrFiles) {
//                            outputWriterAll.append(currentString.toString());
//                        }
//
//                        if (fdr <= fdrcutoff) {
//                            foundHigherFDRThanDesiredCutOff = true;
//                            if (!visitedProbes.contains(cachedEqtlsProbe)) {
//                                outputWriterEProbes.append(currentString.toString());
//                                visitedProbes.add(cachedEqtlsProbe);
//                            }
//                            if (!visitedSnps.contains(cachedEqtlsSnps)) {
//                                outputWriterESNPs.append(currentString.toString());
//                                visitedSnps.add(cachedEqtlsSnps);
//
//                            }
//
//                            significantPvalue.add(true);
//                            outputWriterSignificant.append(currentString.toString());
//                            ++nrSignificantEQTLs;
//                        } else {
//                            significantPvalue.add(false);
//                        }
//
//                    }
//
//                    //Create new temp list for this pvalue
//                    currentPvalue = eQtlPvalue;
//                    currentPvalueEqtls.clear();
//                    currentPvalueEqtlProbes.clear();
//                    currentPvalueEqtlSnps.clear();
//                    currentPvalueEqtls.add(str);
//                    currentPvalueEqtlProbes.add(data[QTLTextFile.PROBE]);
//                    currentPvalueEqtlSnps.add(data[QTLTextFile.SNP]);
//
//                } else {
//                    //add to current pvalue list
//                    currentPvalueEqtls.add(str);
//                    currentPvalueEqtlProbes.add(data[QTLTextFile.PROBE]);
//                    currentPvalueEqtlSnps.add(data[QTLTextFile.SNP]);
//                }
//
//                lastEqtlPvalue = eQtlPvalue;
//
//                if (m == FDRMethod.FULL || (!fdrId.equals("-") && !visitedEffects.contains(fdrId))) {
//                    itr++;
//                    visitedEffects.add(fdrId);
//                }
//            }
//
//        }
//
//        //Write buffer to files
//        double fdr = 0;
//        if (currentPvalue >= uniquePermutedPvalues[0]) {
//
//            while (uniquePermutedPvalues[lastUsedPermutedPvalueIndex + 1] <= currentPvalue && lastUsedPermutedPvalueIndex < uniquePermutedPvalues.length - 2) {
//                ++lastUsedPermutedPvalueIndex;
//            }
//            fdr = uniquePermutedPvaluesCounts[lastUsedPermutedPvalueIndex] / itr;
//
//            if (fdr > 1) {
//                fdr = 1;
//            }
//        }
//
//        for (int i = 0; i < currentPvalueEqtls.size(); ++i) {
//            String cachedEqtls = currentPvalueEqtls.get(i);
//            String cachedEqtlsProbe = currentPvalueEqtlProbes.get(i);
//            String cachedEqtlsSnps = currentPvalueEqtlSnps.get(i);
//
//            StringBuilder currentString = new StringBuilder();
//            currentString.append(cachedEqtls).append('\t').append(String.valueOf(fdr)).append('\n');
//
//            pValueRealData.add(currentPvalue);
//            if (createLargeFdrFiles) {
//                outputWriterAll.append(currentString.toString());
//            }
//
//            if (fdr <= fdrcutoff) {
//                foundHigherFDRThanDesiredCutOff = true;
//                if (!visitedProbes.contains(cachedEqtlsProbe)) {
//                    outputWriterEProbes.append(currentString.toString());
//                    visitedProbes.add(cachedEqtlsProbe);
//                }
//                if (!visitedSnps.contains(cachedEqtlsSnps)) {
//                    outputWriterESNPs.append(currentString.toString());
//                    visitedSnps.add(cachedEqtlsSnps);
//                }
//
//                significantPvalue.add(true);
//                outputWriterSignificant.append(currentString.toString());
//                ++nrSignificantEQTLs;
//            } else {
//                significantPvalue.add(false);
//            }
//        }
//
//        realEQTLs.close();
//        if (createLargeFdrFiles) {
//            outputWriterAll.close();
//        }
//        outputWriterEProbes.close();
//        outputWriterESNPs.close();
//        outputWriterSignificant.close();
//
//        if (!foundHigherFDRThanDesiredCutOff) {
//            System.out.println("Warning: Not enough results stored. Need more results for desired FDR threshold.");
//        }
//        //System.out.println("");
//        System.out.println("Number of significant eQTLs:\t" + nrSignificantEQTLs);
//        System.out.println(" - Number of unique SNPs, constituting an eQTL:\t" + visitedSnps.size());
//        System.out.println(" - Number of unique probes, constituting an eQTL:\t" + visitedProbes.size());
//
//        if (createQQPlot) {
//            System.out.println("Creating QQ plot. This might take a while...");
//            String fileName = baseDir + "/eQTLsFDR" + fdrcutoff + fileSuffix + "-QQPlot.pdf";
//            if (maxNrMostSignificantEQTLs > pValueRealData.size()) {
//                createQQPlots(permutationDir, nrPermutationsFDR, pValueRealData.size(), fdrcutoff, f, m, pValueRealData.toArray(), significantPvalue, nrSignificantEQTLs, fileName);
//            } else if (maxNrMostSignificantEQTLs > 100000) {
//                System.out.println("Only taking the top 100,000 for QQplot creation.");
//                createQQPlots(permutationDir, nrPermutationsFDR, 100000, fdrcutoff, f, m, pValueRealData.toArray(), significantPvalue, nrSignificantEQTLs, fileName);
//            } else {
//                createQQPlots(permutationDir, nrPermutationsFDR, maxNrMostSignificantEQTLs, fdrcutoff, f, m, pValueRealData.toArray(), significantPvalue, nrSignificantEQTLs, fileName);
//            }
//
//        }
//    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy