Skip to content

Commit

Permalink
Merge pull request #96 from Oliver-Lorenz-dev/remove-reference-from-c…
Browse files Browse the repository at this point in the history
…ram-decode-farm5

remove ref from cram decode (farm5)
  • Loading branch information
GvandeSteeg authored Nov 12, 2021
2 parents baec7b6 + 557dfa3 commit 4cd0e23
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion tasks/farm5/Alignment.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ workflow Alignment {
input:
input_file = input_cram,
output_filename = output_file_basename + ".bam",
reference = reference,
runTimeSettings = runTimeSettings
}
}
Expand Down
3 changes: 1 addition & 2 deletions tasks/farm5/ShortReadAlignmentTasks.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,6 @@ task CramToBam {
Int memory = 3000
String? lsf_group
String? lsf_queue
ReferenceSequence reference
RunTimeSettings runTimeSettings
}

Expand All @@ -103,7 +102,7 @@ task CramToBam {
set -e
set -o pipefail

samtools view -h -T ~{reference.ref_fasta} ~{input_file} |
samtools view -h ~{input_file} |
samtools view -b -o ~{output_filename} -
samtools index -b ~{output_filename}

Expand Down

0 comments on commit 4cd0e23

Please sign in to comment.