Skip to content
Snippets Groups Projects
Commit 01aa41d2 authored by Cats's avatar Cats
Browse files

fix heredoc

parent 1b4238c6
No related branches found
No related tags found
No related merge requests found
......@@ -94,7 +94,7 @@ task AnnotateSvTypes {
command <<<
set -e
mkdir -p "$(dirname ~{outputPath})"
R --vanilla << EOF
R --vanilla << "EOF"
library(VariantAnnotation)
library(StructuralVariantAnnotation)
......@@ -115,7 +115,7 @@ task AnnotateSvTypes {
gr <- breakpointRanges(vcf)
svtype <- simpleEventType(gr)
info(vcf[gr$sourceId])$SVTYPE <- svtype
writeVcf(vcf, out_path)
writeVcf(vcf, out_path, index=T)
EOF
>>>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment