Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
biopet.biopet
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Analyze
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Mirrors
biopet.biopet
Commits
ea03623c
Commit
ea03623c
authored
9 years ago
by
Peter van 't Hof
Browse files
Options
Downloads
Patches
Plain Diff
Moved doc to scala docs
parent
31344c21
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
public/biopet-tools-extensions/src/main/scala/nl/lumc/sasc/biopet/extensions/tools/FastqSync.scala
+10
-4
10 additions, 4 deletions
...cala/nl/lumc/sasc/biopet/extensions/tools/FastqSync.scala
with
10 additions
and
4 deletions
public/biopet-tools-extensions/src/main/scala/nl/lumc/sasc/biopet/extensions/tools/FastqSync.scala
+
10
−
4
View file @
ea03623c
...
...
@@ -34,22 +34,28 @@ class FastqSync(val root: Configurable) extends ToolCommandFuntion with Summariz
def
toolObject
=
nl
.
lumc
.
sasc
.
biopet
.
tools
.
FastqSync
@Input
(
doc
=
"Original FASTQ file (read 1 or 2)"
,
shortName
=
"r"
,
required
=
true
)
/** Original FASTQ file (read 1 or 2) */
@Input
(
required
=
true
)
var
refFastq
:
File
=
null
/** "Input read 1 FASTQ file" */
@Input
(
required
=
true
)
var
inputFastq1
:
File
=
null
/** Input read 2 FASTQ file */
@Input
(
required
=
true
)
var
inputFastq2
:
File
=
null
@Output
(
doc
=
"Output read 1 FASTQ file"
,
shortName
=
"o"
,
required
=
true
)
/** Output read 1 FASTQ file */
@Output
(
required
=
true
)
var
outputFastq1
:
File
=
null
@Output
(
doc
=
"Output read 2 FASTQ file"
,
shortName
=
"p"
,
required
=
true
)
/** Output read 2 FASTQ file */
@Output
(
required
=
true
)
var
outputFastq2
:
File
=
null
@Output
(
doc
=
"Sync statistics"
,
required
=
true
)
/** Sync statistics */
@Output
(
required
=
true
)
var
outputStats
:
File
=
null
override
def
defaultCoreMemory
=
4.0
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment