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

edu.cmu.tetrad.algcomparison.algorithm.external.ExternalAlgorithmBNTPc Maven / Gradle / Ivy

There is a newer version: 7.6.5
Show newest version
package edu.cmu.tetrad.algcomparison.algorithm.external;

import edu.cmu.tetrad.algcomparison.algorithm.ExternalAlgorithm;
import edu.cmu.tetrad.data.DataModel;
import edu.cmu.tetrad.data.DataSet;
import edu.cmu.tetrad.data.DataType;
import edu.cmu.tetrad.data.SimpleDataLoader;
import edu.cmu.tetrad.graph.EdgeListGraph;
import edu.cmu.tetrad.graph.Graph;
import edu.cmu.tetrad.graph.GraphSaveLoadUtils;
import edu.cmu.tetrad.graph.LayoutUtil;
import edu.cmu.tetrad.util.Parameters;
import edu.pitt.dbmi.data.reader.Delimiter;

import java.io.BufferedReader;
import java.io.File;
import java.io.FileReader;
import java.io.IOException;

/**
 * An API to allow results from external algorithms to be included in a report through the algrorithm comparison tool.
 * This one is for matrix generated by PC in pcalg. See below. This script can generate the files in R.
 * 

* library("MASS"); library("pcalg"); *

* path<-"/Users/user/tetrad/comparison-final"; simulation<-1; *

* subdir<-"pc.solve.confl.TRUE"; dir.create(paste(path, "/save/", simulation, "/", subdir, sep="")); *

* for (i in 1:10) { data<-read.table(paste(path, "/save/", simulation, "/data/data.", i, ".txt", sep=""), * header=TRUE) n<-nrow(data) C<-cor(data) v<-names(data) suffStat<-list(C = C, n=n) * pc.fit<-pc(suffStat=suffStat, indepTest=gaussCItest, alpha=0.001, labels=v, solve.conf=TRUE) A<-as(pc.fit, * "amat") name<-paste(path, "/save/", simulation, "/", subdir, "/graph.", i, ".txt", sep="") print(name) * write.matrix(A, file=name, sep="\t") } * * @author josephramsey */ public class ExternalAlgorithmBNTPc extends ExternalAlgorithm { private static final long serialVersionUID = 23L; private final String extDir; private final String shortDescription; public ExternalAlgorithmBNTPc(String extDir) { this.extDir = extDir; this.shortDescription = new File(extDir).getName().replace("_", " "); } public ExternalAlgorithmBNTPc(String extDir, String shortDecription) { this.extDir = extDir; this.shortDescription = shortDecription; } /** * Reads in the relevant graph from the file (see above) and returns it. */ public Graph search(DataModel dataSet, Parameters parameters) { int index = getIndex(dataSet); File file = new File(this.path, "/results/" + this.extDir + "/" + (this.simIndex + 1) + "/graph." + index + ".txt"); System.out.println(file.getAbsolutePath()); try { DataSet dataSet2 = SimpleDataLoader.loadContinuousData(file, "//", '\"', "*", true, Delimiter.TAB, false); System.out.println("Loading graph from " + file.getAbsolutePath()); Graph graph = GraphSaveLoadUtils.loadGraphBNTPcMatrix(dataSet.getVariables(), dataSet2); LayoutUtil.defaultLayout(graph); return graph; } catch (IOException e) { throw new RuntimeException("Couldn't parse graph.", e); } } /** * Returns the CPDAG of the supplied DAG. */ public Graph getComparisonGraph(Graph graph) { return new EdgeListGraph(graph); } public String getDescription() { if (this.shortDescription == null) { return "Load data from " + this.path + "/" + this.extDir; } else { return this.shortDescription; } } @Override public DataType getDataType() { return DataType.Continuous; } @Override public long getElapsedTime(DataModel dataSet, Parameters parameters) { int index = getIndex(dataSet); File file = new File(this.path, "/elapsed/" + this.extDir + "/" + (this.simIndex + 1) + "/graph." + index + ".txt"); try { BufferedReader r = new BufferedReader(new FileReader(file)); String l = r.readLine(); // Skip the first line. return (long) Double.parseDouble(l); } catch (IOException e) { return -99; } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy