Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Mirrors
biopet.biopet
Commits
6142593f
Commit
6142593f
authored
Jun 23, 2015
by
Peter van 't Hof
Browse files
Added some more docs
parent
85a682d1
Changes
1
Hide whitespace changes
Inline
Side-by-side
public/biopet-framework/src/main/scala/nl/lumc/sasc/biopet/core/report/ReportBuilder.scala
View file @
6142593f
...
...
@@ -72,8 +72,7 @@ trait ReportBuilder extends ToolCommand {
logger
.
info
(
"Copy Base files"
)
// Copying out the static files from this
// 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"
)
val
resourceDir
:
String
=
"/nl/lumc/sasc/biopet/core/report/ext/"
val
extFiles
=
List
(
...
...
@@ -156,7 +155,13 @@ object ReportBuilder {
private
var
templateCache
:
Map
[
String
,
File
]
=
Map
()
def
renderTemplate
(
location
:
String
,
args
:
Map
[
String
,
Any
])
:
String
=
{
/**
* This method will render a template that is located in the classpath / jar
* @param location location in the classpath / jar
* @param args Additional arguments, not required
* @return Rendered result of template
*/
def
renderTemplate
(
location
:
String
,
args
:
Map
[
String
,
Any
]
=
Map
())
:
String
=
{
val
templateFile
:
File
=
templateCache
.
get
(
location
)
match
{
case
Some
(
template
)
=>
template
case
_
=>
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment