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
1df0636d
Commit
1df0636d
authored
9 years ago
by
Sander van der Zeeuw
Browse files
Options
Downloads
Patches
Plain Diff
add BuildBamIndex to biopet
parent
95b665ed
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-extentsions/src/main/scala/nl/lumc/sasc/biopet/extensions/picard/BuildBamIndex.scala
+24
-0
24 additions, 0 deletions
...nl/lumc/sasc/biopet/extensions/picard/BuildBamIndex.scala
with
24 additions
and
0 deletions
public/biopet-extentsions/src/main/scala/nl/lumc/sasc/biopet/extensions/picard/BuildBamIndex.scala
0 → 100644
+
24
−
0
View file @
1df0636d
package
nl.lumc.sasc.biopet.extensions.picard
import
java.io.File
import
nl.lumc.sasc.biopet.utils.config.Configurable
import
org.broadinstitute.gatk.utils.commandline.
{
Output
,
Input
}
/**
* Created by sajvanderzeeuw on 6-10-15.
*/
class
BuildBamIndex
(
val
root
:
Configurable
)
extends
Picard
{
javaMainClass
=
new
picard
.
sam
.
BuildBamIndex
().
getClass
.
getName
@Input
(
doc
=
"The input SAM or BAM files to analyze."
,
required
=
true
)
var
input
:
File
=
_
@Output
(
doc
=
"The output file to bam file to"
,
required
=
true
)
var
output
:
File
=
_
override
def
cmdLine
=
super
.
cmdLine
+
required
(
"INPUT="
,
input
,
spaceSeparated
=
false
)
+
required
(
"OUTPUT="
,
output
,
spaceSeparated
=
false
)
}
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