Skip to content
Snippets Groups Projects
Commit a80da1d9 authored by JasperBoom's avatar JasperBoom
Browse files

Reinstate symlink.

parent 441890ee
No related branches found
No related tags found
No related merge requests found
......@@ -334,7 +334,7 @@ task CreateSequenceDictionary {
}
output {
File outputDict = outputDir + "/" + basename(InputFile) + ".dict"
File outputDict = outputDir + "/" + basename(inputFile) + ".dict"
}
runtime {
......
......@@ -70,7 +70,7 @@ task Faidx {
command {
set -e
mkdir -p "~{outputDir}"
ln ~{inputFile} "~{outputDir}/~{basenameInputFile}"
ln -s ~{inputFile} "~{outputDir}/~{basenameInputFile}"
samtools faidx \
"~{outputDir}/~{basenameInputFile}"
}
......
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