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
50dc06bb
Commit
50dc06bb
authored
10 years ago
by
Peter van 't Hof
Browse files
Options
Downloads
Patches
Plain Diff
deps not required
parent
dc3bc04f
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
flexiprep/src/main/java/nl/lumc/sasc/biopet/wrappers/fastq/Sickle.scala
+2
-17
2 additions, 17 deletions
...main/java/nl/lumc/sasc/biopet/wrappers/fastq/Sickle.scala
with
2 additions
and
17 deletions
flexiprep/src/main/java/nl/lumc/sasc/biopet/wrappers/fastq/Sickle.scala
+
2
−
17
View file @
50dc06bb
...
...
@@ -22,7 +22,7 @@ class Sickle(val globalConfig: Config) extends CommandLineFunction {
@Output
(
doc
=
"stats output"
)
var
output_stats
:
File
=
null
@Input
(
doc
=
"qualityType file"
,
required
=
false
)
var
qualityTypeFile
:
File
=
null
@Argument
(
doc
=
"Quality Type"
,
required
=
false
)
var
qualityType
:
String
=
config
.
getAsString
(
"qualitytype"
,
null
)
@Input
(
doc
=
"deps"
)
var
deps
:
List
[
File
]
=
Nil
@Input
(
doc
=
"deps"
,
required
=
false
)
var
deps
:
List
[
File
]
=
Nil
var
defaultQualityType
:
String
=
config
.
getAsString
(
"defaultqualitytype"
,
"sanger"
)
...
...
@@ -59,22 +59,7 @@ class Sickle(val globalConfig: Config) extends CommandLineFunction {
}
else
logger
.
warn
(
"File : "
+
qualityTypeFile
+
" does not exist"
)
}
}
// private var version: String = _
// def getVersion : String = {
// val REG = """sickle version (.*)""".r
// if (version == null) for (line <- (sickle_exe + " --version").!!.split("\n")) {
// line match {
// case REG(m) => {
// version = m
// return version
// }
// case _ =>
// }
// }
// return version
// }
private
var
version
:
String
=
_
var
versionCommand
=
sickle_exe
+
" --version"
var
versionRegex
=
"""sickle version (.*)"""
...
...
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