Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
B
biopet.biopet
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Jobs
Commits
Open sidebar
Mirrors
biopet.biopet
Commits
a8a0e1b0
Commit
a8a0e1b0
authored
Oct 03, 2016
by
Peter van 't Hof
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix type
parent
091a2657
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
8 deletions
+8
-8
biopet-extensions/src/main/scala/nl/lumc/sasc/biopet/extensions/Cuffquant.scala
...main/scala/nl/lumc/sasc/biopet/extensions/Cuffquant.scala
+2
-2
biopet-extensions/src/main/scala/nl/lumc/sasc/biopet/extensions/centrifuge/Centrifuge.scala
...l/lumc/sasc/biopet/extensions/centrifuge/Centrifuge.scala
+3
-3
biopet-extensions/src/main/scala/nl/lumc/sasc/biopet/extensions/centrifuge/CentrifugeKreport.scala
...sasc/biopet/extensions/centrifuge/CentrifugeKreport.scala
+3
-3
No files found.
biopet-extensions/src/main/scala/nl/lumc/sasc/biopet/extensions/Cuffquant.scala
View file @
a8a0e1b0
...
...
@@ -35,11 +35,11 @@ class Cuffquant(val root: Configurable) extends BiopetCommandLineFunction with V
means we have 2 samples, each with 2 replicates
so our input is a list of lists of Files
*/
var
input
:
List
[
List
[
File
]]
=
List
.
empty
[
List
[
File
]]
var
input
:
List
[
List
[
File
]]
=
Nil
/** input GTF file */
@Input
(
doc
=
"Input GTF file"
,
required
=
true
)
var
transcriptsGtf
:
File
=
null
var
transcriptsGtf
:
File
=
_
/** output file, computed automatically from output directory */
@Output
(
doc
=
"Output CXB file"
)
...
...
biopet-extensions/src/main/scala/nl/lumc/sasc/biopet/extensions/centrifuge/Centrifuge.scala
View file @
a8a0e1b0
...
...
@@ -38,9 +38,9 @@ class Centrifuge(val root: Configurable) extends BiopetCommandLineFunction with
override
def
beforeGraph
()
:
Unit
=
{
super
.
beforeGraph
()
deps
:+=
index
+
".1.cf"
deps
:+=
index
+
".2.cf"
deps
:+=
index
+
".3.cf"
deps
:+=
new
File
(
index
+
".1.cf"
)
deps
:+=
new
File
(
index
+
".2.cf"
)
deps
:+=
new
File
(
index
+
".3.cf"
)
}
/**
...
...
biopet-extensions/src/main/scala/nl/lumc/sasc/biopet/extensions/centrifuge/CentrifugeKreport.scala
View file @
a8a0e1b0
...
...
@@ -31,9 +31,9 @@ class CentrifugeKreport(val root: Configurable) extends BiopetCommandLineFunctio
override
def
beforeGraph
()
:
Unit
=
{
super
.
beforeGraph
()
deps
:+=
index
+
".1.cf"
deps
:+=
index
+
".2.cf"
deps
:+=
index
+
".3.cf"
deps
:+=
new
File
(
index
+
".1.cf"
)
deps
:+=
new
File
(
index
+
".2.cf"
)
deps
:+=
new
File
(
index
+
".3.cf"
)
}
def
cmdLine
=
executable
+
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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