Skip to content

Commit 42fe071

Browse files
committed
chore: apply PR feedback
1 parent ad3364f commit 42fe071

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

tools/bowtie2.wdl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ task align {
141141
external_help: "https://bowtie-bio.sourceforge.net/bowtie2/manual.shtml#multiseed-heuristic",
142142
bowtie_option: "-L",
143143
}
144-
dpad: "Include N extra reference characters on sides of dynamic programming table"
144+
dpad: "Include N extra reference characters on sides of dynamic programming table. Set to 0 for gapless alignment."
145145
gbar: "Disallow gaps within N nucleotides of read ends"
146146
ignore_quals: "When calculating a mismatch penalty, always consider the quality value at the mismatched position to be the highest possible, regardless of the actual value. Treat all quality values as 30 on Phred scale."
147147
nofw: "Do not align to the forward (original) strand of the reference"

tools/hilow.wdl

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,14 @@ task active_regions_merge {
1212
promoters: "Promoter regions in BED format"
1313
loop_bed: "Loop anchors in BED format"
1414
bam: "BAM file"
15+
ncpu: "Number of cores to allocate for task"
1516
}
1617

1718
input {
1819
File promoters
1920
File loop_bed
2021
File bam
22+
Int ncpu = 2
2123
}
2224

2325
String outfile = basename(promoters, ".bed") + ".LoopAnchors.Enhs.combined.sort.bed"
@@ -75,7 +77,7 @@ task active_regions_merge {
7577
}
7678

7779
runtime {
78-
cpu: 8
80+
cpu: ncpu
7981
memory: "20 GB"
8082
maxRetries: 1
8183
container: "ghcr.io/stjudecloud/bedtools:2.31.1"

0 commit comments

Comments
 (0)