Skip to content
GitLab
Menu
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
43fc01cd
Commit
43fc01cd
authored
Jan 30, 2015
by
Wai Yi Leung
Browse files
Move SVcallers into the toplevel extensions directory
parent
0f475cfa
Changes
13
Hide whitespace changes
Inline
Side-by-side
public/biopet-framework/src/main/resources/nl/lumc/sasc/biopet/extensions/
svcall
er
s
/breakdancer2vcf.py
→
public/biopet-framework/src/main/resources/nl/lumc/sasc/biopet/extensions/
breakdanc
er/breakdancer2vcf.py
View file @
43fc01cd
File moved
public/biopet-framework/src/main/scala/nl/lumc/sasc/biopet/extensions/
svcall
er
s
/Breakdancer.scala
→
public/biopet-framework/src/main/scala/nl/lumc/sasc/biopet/extensions/
breakdanc
er/Breakdancer.scala
View file @
43fc01cd
...
@@ -13,16 +13,14 @@
...
@@ -13,16 +13,14 @@
* license; For commercial users or users who do not want to follow the AGPL
* license; For commercial users or users who do not want to follow the AGPL
* license, please contact us to obtain a separate license.
* license, please contact us to obtain a separate license.
*/
*/
package
nl.lumc.sasc.biopet.extensions.
svcall
er
s
package
nl.lumc.sasc.biopet.extensions.
breakdanc
er
import
java.io.File
import
java.io.File
import
org.broadinstitute.gatk.queue.QScript
import
org.broadinstitute.gatk.utils.commandline.
{
Input
,
Output
,
Argument
}
import
nl.lumc.sasc.biopet.core.config.Configurable
import
nl.lumc.sasc.biopet.core.config.Configurable
import
nl.lumc.sasc.biopet.core.BiopetQScript
import
nl.lumc.sasc.biopet.core.
{
BiopetQScript
,
PipelineCommand
}
import
nl.lumc.sasc.biopet.core.PipelineCommand
import
nl.lumc.sasc.biopet.extensions.breakdancer.BreakdancerVCF
import
org.broadinstitute.gatk.queue.QScript
/// Breakdancer is actually a mini pipeline executing binaries from the breakdancer package
/// Breakdancer is actually a mini pipeline executing binaries from the breakdancer package
class
Breakdancer
(
val
root
:
Configurable
)
extends
QScript
with
BiopetQScript
{
class
Breakdancer
(
val
root
:
Configurable
)
extends
QScript
with
BiopetQScript
{
...
...
public/biopet-framework/src/main/scala/nl/lumc/sasc/biopet/extensions/
svcall
er
s
/BreakdancerCaller.scala
→
public/biopet-framework/src/main/scala/nl/lumc/sasc/biopet/extensions/
breakdanc
er/BreakdancerCaller.scala
View file @
43fc01cd
package
nl.lumc.sasc.biopet.extensions.
svcall
er
s
package
nl.lumc.sasc.biopet.extensions.
breakdanc
er
import
java.io.File
import
java.io.File
import
org.broadinstitute.gatk.utils.commandline.
{
Input
,
Output
,
Argument
}
import
nl.lumc.sasc.biopet.core.BiopetCommandLineFunction
import
nl.lumc.sasc.biopet.core.BiopetCommandLineFunction
import
nl.lumc.sasc.biopet.core.config.Configurable
import
nl.lumc.sasc.biopet.core.config.Configurable
import
org.broadinstitute.gatk.utils.commandline.
{
Input
,
Output
}
class
BreakdancerCaller
(
val
root
:
Configurable
)
extends
BiopetCommandLineFunction
{
class
BreakdancerCaller
(
val
root
:
Configurable
)
extends
BiopetCommandLineFunction
{
executable
=
config
(
"exe"
,
default
=
"breakdancer-max"
,
freeVar
=
false
)
executable
=
config
(
"exe"
,
default
=
"breakdancer-max"
,
freeVar
=
false
)
...
...
public/biopet-framework/src/main/scala/nl/lumc/sasc/biopet/extensions/
svcall
er
s
/BreakdancerConfig.scala
→
public/biopet-framework/src/main/scala/nl/lumc/sasc/biopet/extensions/
breakdanc
er/BreakdancerConfig.scala
View file @
43fc01cd
package
nl.lumc.sasc.biopet.extensions.
svcall
er
s
package
nl.lumc.sasc.biopet.extensions.
breakdanc
er
import
java.io.File
import
java.io.File
import
org.broadinstitute.gatk.utils.commandline.
{
Input
,
Output
,
Argument
}
import
nl.lumc.sasc.biopet.core.BiopetCommandLineFunction
import
nl.lumc.sasc.biopet.core.BiopetCommandLineFunction
import
nl.lumc.sasc.biopet.core.config.Configurable
import
nl.lumc.sasc.biopet.core.config.Configurable
import
org.broadinstitute.gatk.utils.commandline.
{
Input
,
Output
}
class
BreakdancerConfig
(
val
root
:
Configurable
)
extends
BiopetCommandLineFunction
{
class
BreakdancerConfig
(
val
root
:
Configurable
)
extends
BiopetCommandLineFunction
{
executable
=
config
(
"exe"
,
default
=
"bam2cfg.pl"
,
freeVar
=
false
)
executable
=
config
(
"exe"
,
default
=
"bam2cfg.pl"
,
freeVar
=
false
)
...
...
public/biopet-framework/src/main/scala/nl/lumc/sasc/biopet/extensions/
svcall
er
s
/BreakdancerVCF.scala
→
public/biopet-framework/src/main/scala/nl/lumc/sasc/biopet/extensions/
breakdanc
er/BreakdancerVCF.scala
View file @
43fc01cd
...
@@ -13,14 +13,13 @@
...
@@ -13,14 +13,13 @@
* license; For commercial users or users who do not want to follow the AGPL
* license; For commercial users or users who do not want to follow the AGPL
* license, please contact us to obtain a separate license.
* license, please contact us to obtain a separate license.
*/
*/
package
nl.lumc.sasc.biopet.extensions.
svcall
er
s
package
nl.lumc.sasc.biopet.extensions.
breakdanc
er
import
java.io.File
import
java.io.File
import
org.broadinstitute.gatk.utils.commandline.
{
Input
,
Output
}
import
nl.lumc.sasc.biopet.core.config.Configurable
import
nl.lumc.sasc.biopet.core.config.Configurable
import
nl.lumc.sasc.biopet.extensions.PythonCommandLineFunction
import
nl.lumc.sasc.biopet.extensions.PythonCommandLineFunction
import
org.broadinstitute.gatk.utils.commandline.
{
Input
,
Output
}
class
BreakdancerVCF
(
val
root
:
Configurable
)
extends
PythonCommandLineFunction
{
class
BreakdancerVCF
(
val
root
:
Configurable
)
extends
PythonCommandLineFunction
{
setPythonScript
(
"breakdancer2vcf.py"
)
setPythonScript
(
"breakdancer2vcf.py"
)
...
...
public/biopet-framework/src/main/scala/nl/lumc/sasc/biopet/extensions/
svcall
er
s
/Clever.scala
→
public/biopet-framework/src/main/scala/nl/lumc/sasc/biopet/extensions/
clev
er/Clever.scala
View file @
43fc01cd
...
@@ -13,16 +13,13 @@
...
@@ -13,16 +13,13 @@
* license; For commercial users or users who do not want to follow the AGPL
* license; For commercial users or users who do not want to follow the AGPL
* license, please contact us to obtain a separate license.
* license, please contact us to obtain a separate license.
*/
*/
package
nl.lumc.sasc.biopet.extensions.
svcall
er
s
package
nl.lumc.sasc.biopet.extensions.
clev
er
import
java.io.File
import
java.io.File
import
org.broadinstitute.gatk.queue.QScript
import
org.broadinstitute.gatk.utils.commandline.
{
Input
,
Output
,
Argument
}
import
nl.lumc.sasc.biopet.core.config.Configurable
import
nl.lumc.sasc.biopet.core.config.Configurable
import
nl.lumc.sasc.biopet.core.BiopetQScript
import
nl.lumc.sasc.biopet.core.
{
BiopetQScript
,
PipelineCommand
}
import
nl.lumc.sasc.biopet.core.PipelineCommand
import
org.broadinstitute.gatk.queue.QScript
class
Clever
(
val
root
:
Configurable
)
extends
QScript
with
BiopetQScript
{
class
Clever
(
val
root
:
Configurable
)
extends
QScript
with
BiopetQScript
{
def
this
()
=
this
(
null
)
def
this
()
=
this
(
null
)
...
...
public/biopet-framework/src/main/scala/nl/lumc/sasc/biopet/extensions/
svcall
er
s
/CleverCaller.scala
→
public/biopet-framework/src/main/scala/nl/lumc/sasc/biopet/extensions/
clev
er/CleverCaller.scala
View file @
43fc01cd
package
nl.lumc.sasc.biopet.extensions.
svcall
er
s
package
nl.lumc.sasc.biopet.extensions.
clev
er
import
java.io.File
import
java.io.File
import
org.broadinstitute.gatk.utils.commandline.
{
Input
,
Output
,
Argument
}
import
nl.lumc.sasc.biopet.core.BiopetCommandLineFunction
import
nl.lumc.sasc.biopet.core.BiopetCommandLineFunction
import
nl.lumc.sasc.biopet.core.config.Configurable
import
nl.lumc.sasc.biopet.core.config.Configurable
import
org.broadinstitute.gatk.utils.commandline.
{
Argument
,
Input
,
Output
}
class
CleverCaller
(
val
root
:
Configurable
)
extends
BiopetCommandLineFunction
{
class
CleverCaller
(
val
root
:
Configurable
)
extends
BiopetCommandLineFunction
{
executable
=
config
(
"exe"
,
default
=
"clever"
)
executable
=
config
(
"exe"
,
default
=
"clever"
)
...
...
public/biopet-framework/src/main/scala/nl/lumc/sasc/biopet/extensions/
svcallers
/Delly.scala
→
public/biopet-framework/src/main/scala/nl/lumc/sasc/biopet/extensions/
delly
/Delly.scala
View file @
43fc01cd
package
nl.lumc.sasc.biopet.extensions.
svcallers
package
nl.lumc.sasc.biopet.extensions.
delly
import
java.io.File
import
java.io.File
...
...
public/biopet-framework/src/main/scala/nl/lumc/sasc/biopet/extensions/
svcallers
/DellyCaller.scala
→
public/biopet-framework/src/main/scala/nl/lumc/sasc/biopet/extensions/
delly
/DellyCaller.scala
View file @
43fc01cd
package
nl.lumc.sasc.biopet.extensions.
svcallers
package
nl.lumc.sasc.biopet.extensions.
delly
import
java.io.File
import
java.io.File
...
...
public/biopet-framework/src/main/scala/nl/lumc/sasc/biopet/extensions/
svcallers/
pindel/Pindel.scala
→
public/biopet-framework/src/main/scala/nl/lumc/sasc/biopet/extensions/pindel/Pindel.scala
View file @
43fc01cd
...
@@ -13,7 +13,7 @@
...
@@ -13,7 +13,7 @@
* license; For commercial users or users who do not want to follow the AGPL
* license; For commercial users or users who do not want to follow the AGPL
* license, please contact us to obtain a separate license.
* license, please contact us to obtain a separate license.
*/
*/
package
nl.lumc.sasc.biopet.extensions.
svcallers.
pindel
package
nl.lumc.sasc.biopet.extensions.pindel
import
nl.lumc.sasc.biopet.core.BiopetCommandLineFunction
import
nl.lumc.sasc.biopet.core.BiopetCommandLineFunction
import
org.broadinstitute.gatk.queue.QScript
import
org.broadinstitute.gatk.queue.QScript
...
...
public/biopet-framework/src/main/scala/nl/lumc/sasc/biopet/extensions/
svcallers/
pindel/PindelCaller.scala
→
public/biopet-framework/src/main/scala/nl/lumc/sasc/biopet/extensions/pindel/PindelCaller.scala
View file @
43fc01cd
...
@@ -13,7 +13,7 @@
...
@@ -13,7 +13,7 @@
* license; For commercial users or users who do not want to follow the AGPL
* license; For commercial users or users who do not want to follow the AGPL
* license, please contact us to obtain a separate license.
* license, please contact us to obtain a separate license.
*/
*/
package
nl.lumc.sasc.biopet.extensions.
svcallers.
pindel
package
nl.lumc.sasc.biopet.extensions.pindel
import
nl.lumc.sasc.biopet.core.BiopetCommandLineFunction
import
nl.lumc.sasc.biopet.core.BiopetCommandLineFunction
import
nl.lumc.sasc.biopet.core.config.Configurable
import
nl.lumc.sasc.biopet.core.config.Configurable
...
...
public/biopet-framework/src/main/scala/nl/lumc/sasc/biopet/extensions/
svcallers/
pindel/PindelConfig.scala
→
public/biopet-framework/src/main/scala/nl/lumc/sasc/biopet/extensions/pindel/PindelConfig.scala
View file @
43fc01cd
...
@@ -13,7 +13,7 @@
...
@@ -13,7 +13,7 @@
* license; For commercial users or users who do not want to follow the AGPL
* license; For commercial users or users who do not want to follow the AGPL
* license, please contact us to obtain a separate license.
* license, please contact us to obtain a separate license.
*/
*/
package
nl.lumc.sasc.biopet.extensions.
svcallers.
pindel
package
nl.lumc.sasc.biopet.extensions.pindel
import
nl.lumc.sasc.biopet.core.BiopetJavaCommandLineFunction
import
nl.lumc.sasc.biopet.core.BiopetJavaCommandLineFunction
import
nl.lumc.sasc.biopet.core.PipelineCommand
import
nl.lumc.sasc.biopet.core.PipelineCommand
...
...
public/yamsvp/src/main/scala/nl/lumc/sasc/biopet/pipelines/yamsvp/Yamsvp.scala
View file @
43fc01cd
...
@@ -25,10 +25,12 @@ import nl.lumc.sasc.biopet.core.config.Configurable
...
@@ -25,10 +25,12 @@ import nl.lumc.sasc.biopet.core.config.Configurable
import
nl.lumc.sasc.biopet.core.
{
BiopetQScript
,
MultiSampleQScript
,
PipelineCommand
}
import
nl.lumc.sasc.biopet.core.
{
BiopetQScript
,
MultiSampleQScript
,
PipelineCommand
}
import
nl.lumc.sasc.biopet.extensions.Ln
import
nl.lumc.sasc.biopet.extensions.Ln
import
nl.lumc.sasc.biopet.extensions.breakdancer.Breakdancer
import
nl.lumc.sasc.biopet.extensions.clever.CleverCaller
import
nl.lumc.sasc.biopet.extensions.igvtools.IGVToolsCount
import
nl.lumc.sasc.biopet.extensions.igvtools.IGVToolsCount
import
nl.lumc.sasc.biopet.extensions.sambamba.
{
SambambaMerge
,
SambambaMarkdup
}
import
nl.lumc.sasc.biopet.extensions.sambamba.
{
SambambaMerge
,
SambambaMarkdup
}
//import nl.lumc.sasc.biopet.extensions.
svcallers.
pindel.Pindel
//import nl.lumc.sasc.biopet.extensions.pindel.Pindel
import
nl.lumc.sasc.biopet.extensions.
svcallers.
{
Breakdancer
,
Delly
,
CleverCaller
}
import
nl.lumc.sasc.biopet.extensions.
delly.Delly
import
nl.lumc.sasc.biopet.pipelines.bammetrics.BamMetrics
import
nl.lumc.sasc.biopet.pipelines.bammetrics.BamMetrics
import
nl.lumc.sasc.biopet.pipelines.mapping.Mapping
import
nl.lumc.sasc.biopet.pipelines.mapping.Mapping
...
...
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