diff --git a/public/biopet-core/src/main/scala/nl/lumc/sasc/biopet/core/report/ReportBuilder.scala b/public/biopet-core/src/main/scala/nl/lumc/sasc/biopet/core/report/ReportBuilder.scala
index 2bfbe8f6afdc65b78e1eead4148a375425029575..41a974fcc7d7fdc4da13d0f8e47ae621c3b8ac13 100644
--- a/public/biopet-core/src/main/scala/nl/lumc/sasc/biopet/core/report/ReportBuilder.scala
+++ b/public/biopet-core/src/main/scala/nl/lumc/sasc/biopet/core/report/ReportBuilder.scala
@@ -24,6 +24,7 @@ import org.broadinstitute.gatk.utils.commandline.Input
 import org.fusesource.scalate.{ TemplateEngine, TemplateSource }
 
 import scala.collection.mutable
+import scala.language.postfixOps
 
 /**
  * This trait is meant to make an extension for a report object
@@ -66,15 +67,28 @@ trait ReportBuilderExtension extends ToolCommandFunction {
 
 trait ReportBuilder extends ToolCommand {
 
-  case class Args(summary: File = null, outputDir: File = null, pageArgs: mutable.Map[String, Any] = mutable.Map()) extends AbstractArgs
+  case class Args(summary: File = null,
+                  outputDir: File = null,
+                  pageArgs: mutable.Map[String, Any] = mutable.Map()) extends AbstractArgs
 
   class OptParser extends AbstractOptParser {
+
+    head(
+      s"""
+         |$commandName - Generate HTML formatted report from a biopet summary.json
+       """.stripMargin
+    )
+
     opt[File]('s', "summary") unbounded () required () maxOccurs 1 valueName "<file>" action { (x, c) =>
       c.copy(summary = x)
-    }
+    } validate {
+      x => if (x.exists) success else failure("Summary JSON file not found!")
+    } text "Biopet summary JSON file"
+
     opt[File]('o', "outputDir") unbounded () required () maxOccurs 1 valueName "<file>" action { (x, c) =>
       c.copy(outputDir = x)
-    }
+    } text "Output HTML report files to this directory"
+
     opt[Map[String, String]]('a', "args") unbounded () action { (x, c) =>
       c.copy(pageArgs = c.pageArgs ++ x)
     }
@@ -142,9 +156,14 @@ trait ReportBuilder extends ToolCommand {
     // Static files that will be copied to the output folder, then file is added to [resourceDir] it's need to be added here also
     val extOutputDir: File = new File(cmdArgs.outputDir, "ext")
 
-    for (resource <- extFiles.par) {
-      IoUtils.copyStreamToFile(getClass.getResourceAsStream(resource.resourcePath), new File(extOutputDir, resource.targetPath), createDirs = true)
-    }
+    // Copy each resource files out to the report destination
+    extFiles.par.foreach(
+      resource =>
+        IoUtils.copyStreamToFile(
+          getClass.getResourceAsStream(resource.resourcePath),
+          new File(extOutputDir, resource.targetPath),
+          createDirs = true)
+    )
 
     logger.info("Parsing summary")
     setSummary = new Summary(cmdArgs.summary)
@@ -165,7 +184,7 @@ trait ReportBuilder extends ToolCommand {
   /** This must be implemented, this will be the root page of the report */
   def indexPage: ReportPage
 
-  /** This must be implemented, this will because the title of the report */
+  /** This must be implemented, this will become the title of the report */
   def reportName: String
 
   /**
@@ -194,8 +213,9 @@ trait ReportBuilder extends ToolCommand {
       )
 
     // Generating subpages
-    val jobs = for ((name, subPage) <- page.subPages.par) yield {
-      generatePage(summary, subPage, outputDir, path ::: name :: Nil, pageArgs)
+    val jobs = page.subPages.par.flatMap {
+      case (name, subPage) => Some(generatePage(summary, subPage, outputDir, path ::: name :: Nil, pageArgs))
+      case _               => None
     }
 
     val output = ReportBuilder.renderTemplate("/nl/lumc/sasc/biopet/core/report/main.ssp",
diff --git a/public/tinycap/.gitignore b/public/tinycap/.gitignore
new file mode 100644
index 0000000000000000000000000000000000000000..1de565933b05f74c75ff9a6520af5f9f8a5a2f1d
--- /dev/null
+++ b/public/tinycap/.gitignore
@@ -0,0 +1 @@
+target
\ No newline at end of file