Skip to content
Snippets Groups Projects
Commit f4b5230c authored by Peter van 't Hof's avatar Peter van 't Hof
Browse files

Moved core sources

parent 7854fb6e
No related branches found
No related tags found
No related merge requests found
Showing
with 9 additions and 2 deletions
......@@ -6,12 +6,19 @@
<artifactId>Biopet</artifactId>
<groupId>nl.lumc.sasc</groupId>
<version>0.5.0-SNAPSHOT</version>
<relativePath>../</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>BiopetCore</artifactId>
<packaging>jar</packaging>
<dependencies>
<dependency>
<groupId>nl.lumc.sasc</groupId>
<artifactId>BiopetUtils</artifactId>
<version>0.5.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
......
......@@ -84,11 +84,11 @@ trait BiopetQScript extends Configurable with GatkLogging {
if (outputDir.getParentFile.canWrite || (outputDir.exists && outputDir.canWrite))
globalConfig.writeReport(qSettings.runName, new File(outputDir, ".log/" + qSettings.runName))
else BiopetQScript.addError("Parent of output dir: '" + outputDir.getParent + "' is not writeable, outputdir can not be created")
else Logging.addError("Parent of output dir: '" + outputDir.getParent + "' is not writeable, outputdir can not be created")
reportClass.foreach(add(_))
BiopetQScript.checkErrors()
Logging.checkErrors()
}
/** Get implemented from org.broadinstitute.gatk.queue.QScript */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment