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
dee7eea1
Commit
dee7eea1
authored
Jun 30, 2015
by
Peter van 't Hof
Browse files
Remove sortable tables from file lists
parent
9cb3ad35
Changes
4
Hide whitespace changes
Inline
Side-by-side
public/flexiprep/src/main/resources/nl/lumc/sasc/biopet/pipelines/flexiprep/flexiprepInputfiles.ssp
View file @
dee7eea1
...
...
@@ -17,16 +17,16 @@
val pipelineOutputDir = summary.getValue("meta", "output_dir").getOrElse("").toString
def removeDir(value: Option[Any]): Option[Any] = {
value.collect { case a =>
if (a.toString.startsWith(pipelineOutputDir) && pipelineOutputDir.nonEmpty) "./" + a.toString.stripPrefix(pipelineOutputDir)
if (a.toString.startsWith(pipelineOutputDir) && pipelineOutputDir.nonEmpty) "./" + a.toString.stripPrefix(pipelineOutputDir
+ File.separator
)
else a
}
}
}#
<table class="table
sortable-theme-bootstrap" data-sortable
>
<table class="table
"
>
<thead><tr>
<th
data-sorted="true" data-sorted-direction="ascending"
>Sample</th>
<th>Sample</th>
<th colspan="2">Library</th>
<th>Path</th>
<th>MD5</th>
...
...
public/flexiprep/src/main/resources/nl/lumc/sasc/biopet/pipelines/flexiprep/flexiprepOutputfiles.ssp
View file @
dee7eea1
...
...
@@ -17,16 +17,16 @@
val pipelineOutputDir = summary.getValue("meta", "output_dir").getOrElse("").toString
def removeDir(value: Option[Any]): Option[Any] = {
value.collect { case a =>
if (a.toString.startsWith(pipelineOutputDir) && pipelineOutputDir.nonEmpty) "./" + a.toString.stripPrefix(pipelineOutputDir)
if (a.toString.startsWith(pipelineOutputDir) && pipelineOutputDir.nonEmpty) "./" + a.toString.stripPrefix(pipelineOutputDir
+ File.separator
)
else a
}
}
}#
<table class="table
sortable-theme-bootstrap" data-sortable
>
<table class="table
"
>
<thead><tr>
<th
data-sorted="true" data-sorted-direction="ascending"
>Sample</th>
<th>Sample</th>
<th colspan="2">Library</th>
<th>Path</th>
<th>MD5</th>
...
...
public/mapping/src/main/resources/nl/lumc/sasc/biopet/pipelines/mapping/outputBamfiles.ssp
View file @
dee7eea1
...
...
@@ -20,7 +20,7 @@
val pipelineOutputDir = summary.getValue("meta", "output_dir").getOrElse("").toString
def removeDir(value: Option[Any]): Option[Any] = {
value.collect { case a =>
if (a.toString.startsWith(pipelineOutputDir) && pipelineOutputDir.nonEmpty) "./" + a.toString.stripPrefix(pipelineOutputDir)
if (a.toString.startsWith(pipelineOutputDir) && pipelineOutputDir.nonEmpty) "./" + a.toString.stripPrefix(pipelineOutputDir
+ File.separator
)
else a
}
}
...
...
@@ -28,9 +28,9 @@
<div class="panel-body">
<!-- Table -->
<table class="table
sortable-theme-bootstrap" data-sortable
>
<table class="table
"
>
<thead><tr>
<th
data-sorted="true" data-sorted-direction="ascending"
>Sample</th>
<th>Sample</th>
#if (!sampleLevel) <th>Library</th> #end
<th>Path</th>
<th>MD5</th>
...
...
public/shiva/src/main/resources/nl/lumc/sasc/biopet/pipelines/shiva/outputVcfFiles.ssp
View file @
dee7eea1
...
...
@@ -13,7 +13,7 @@
val pipelineOutputDir = summary.getValue("meta", "output_dir").getOrElse("").toString
def removeDir(value: Option[Any]): Option[Any] = {
value.collect { case a =>
if (a.toString.startsWith(pipelineOutputDir) && pipelineOutputDir.nonEmpty) "./" + a.toString.stripPrefix(pipelineOutputDir)
if (a.toString.startsWith(pipelineOutputDir) && pipelineOutputDir.nonEmpty) "./" + a.toString.stripPrefix(pipelineOutputDir
+ File.separator
)
else a
}
}
...
...
@@ -21,7 +21,7 @@
<div class="panel-body">
<!-- Table -->
<table class="table
sortable-theme-bootstrap" data-sortable
>
<table class="table
"
>
<thead><tr>
<th>Variantcaller</th>
<th>Path</th>
...
...
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