Skip to content

Commit c0798f4

Browse files
authored
Merge branch 'develop' into sps_beagle_no_trailing_zeroes
2 parents 9d4d874 + 9aa6c57 commit c0798f4

14 files changed

Lines changed: 55 additions & 20 deletions

pipeline_versions.txt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,16 @@ IlluminaGenotypingArray 1.12.26 2025-10-09
88
Imputation 1.1.23 2025-10-03
99
ImputationBeagle 2.5.0 2026-01-27
1010
JointGenotyping 1.7.3 2025-08-11
11-
MultiSampleSmartSeq2SingleNucleus 2.2.2 2025-06-20
12-
Multiome 6.1.3 2025-08-15
13-
Optimus 8.0.4 25-07-31
14-
PairedTag 2.1.9 2025-09-19
11+
MultiSampleSmartSeq2SingleNucleus 2.2.3 2026-01-22
12+
Multiome 6.1.4 2026-01-22
13+
Optimus 8.0.5 2026-01-22
14+
PairedTag 2.1.10 2026-01-22
1515
PeakCalling 1.0.1 2025-08-11
1616
Pipeline Name Version Date of Last Commit
1717
RNAWithUMIsPipeline 1.0.19 2025-08-11
1818
ReblockGVCF 2.4.3 2025-10-09
19-
SlideSeq 3.6.3 2025-06-20
20-
SlideTags 1.0.5 2025-10-24
19+
SlideSeq 3.6.4 2026-01-22
20+
SlideTags 1.0.6 2026-01-22
2121
UltimaGenomicsJointGenotyping 1.2.3 2025-08-11
2222
UltimaGenomicsWholeGenomeCramOnly 1.1.2 2025-10-09
2323
UltimaGenomicsWholeGenomeGermline 1.2.1 2025-10-09

pipelines/wdl/multiome/Multiome.changelog.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# 6.1.4
2+
2026-01-22 (Date of Last Commit)
3+
4+
* Added a new, defaulted input cellbender_memory_GB to Optimus; this does not affect the outputs of this pipeline
5+
* Added a task level input, mem_size, to StarSoloFastq to expose memory settings; this does not affect the outputs of this pipeline
6+
17
# 6.1.3
28
2025-08-15 (Date of Last Commit)
39

pipelines/wdl/multiome/Multiome.wdl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import "../../../tasks/wdl/Utilities.wdl" as utils
1010
workflow Multiome {
1111

1212

13-
String pipeline_version = "6.1.3"
13+
String pipeline_version = "6.1.4"
1414

1515

1616
input {

pipelines/wdl/optimus/Optimus.changelog.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# 8.0.5
2+
2026-01-22 (Date of Last Commit)
3+
4+
* Added a new, defaulted input cellbender_memory_GB to Optimus; this does not affect the outputs of the pipeline
5+
* Added a task level input, mem_size, to StarSoloFastq to expose memory settings; this does not affect the outputs of this pipeline
6+
17
# 8.0.4
28
25-07-31 (Date of Last Commit)
39

pipelines/wdl/optimus/Optimus.wdl

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ workflow Optimus {
4242

4343
# CellBender
4444
Boolean run_cellbender = false
45+
Int cellbender_memory_GB = 32
4546

4647
# Chemistry options include: 2 or 3
4748
Int tenx_chemistry_version
@@ -73,12 +74,11 @@ workflow Optimus {
7374
# this pipeline does not set any preemptible varibles and only relies on the task-level preemptible settings
7475
# you could override the tasklevel preemptible settings by passing it as one of the workflows inputs
7576
# for example: `"Optimus.StarAlign.preemptible": 3` will let the StarAlign task, which by default disables the
76-
# usage of preemptible machines, attempt to request for preemptible instance up to 3 times.
77-
77+
# usage of preemptible machines, attempt to request for preemptible instance up to 3 times.
7878
}
7979

8080
# Version of this pipeline
81-
String pipeline_version = "8.0.4"
81+
String pipeline_version = "8.0.5"
8282

8383
# this is used to scatter matched [r1_fastq, r2_fastq, i1_fastq] arrays
8484
Array[Int] indices = range(length(r1_fastq))
@@ -233,6 +233,7 @@ workflow Optimus {
233233
warp_tools_docker_path = docker_prefix + warp_tools_docker
234234
}
235235
}
236+
236237
if (count_exons && counting_mode=="sn_rna") {
237238
call H5adUtils.SingleNucleusOptimusH5adOutput as OptimusH5adGenerationWithExons{
238239
input:
@@ -270,7 +271,7 @@ workflow Optimus {
270271
hardware_cpu_count = 4,
271272
hardware_disk_size_GB = 50,
272273
hardware_gpu_type = "nvidia-tesla-t4",
273-
hardware_memory_GB = 32,
274+
hardware_memory_GB = cellbender_memory_GB,
274275
hardware_preemptible_tries = 2,
275276
hardware_zones = "us-central1-a us-central1-c",
276277
nvidia_driver_version = "470.82.01"
@@ -285,7 +286,7 @@ workflow Optimus {
285286
hardware_cpu_count = 4,
286287
hardware_disk_size_GB = 50,
287288
hardware_gpu_type = "nvidia-tesla-t4",
288-
hardware_memory_GB = 32,
289+
hardware_memory_GB = cellbender_memory_GB,
289290
hardware_preemptible_tries = 2,
290291
hardware_zones = "us-central1-a us-central1-c",
291292
nvidia_driver_version = "470.82.01"
@@ -296,7 +297,6 @@ workflow Optimus {
296297
File final_h5ad_output = select_first([OptimusH5adGenerationWithExons.h5ad_output, OptimusH5adGeneration.h5ad_output])
297298
File final_library_metrics = select_first([OptimusH5adGenerationWithExons.library_metrics, OptimusH5adGeneration.library_metrics])
298299
299-
300300
output {
301301
# version of this pipeline
302302
String pipeline_version_out = pipeline_version

pipelines/wdl/paired_tag/PairedTag.changelog.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# 2.1.10
2+
2026-01-22 (Date of Last Commit)
3+
4+
* Added a new, defaulted input cellbender_memory_GB to Optimus; this does not affect the outputs of this pipeline
5+
* Added a task level input, mem_size, to StarSoloFastq to expose memory settings; this does not affect the outputs of this pipeline
6+
17
# 2.1.9
28
2025-09-19 (Date of Last Commit)
39

pipelines/wdl/paired_tag/PairedTag.wdl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import "../../../tasks/wdl/Utilities.wdl" as utils
99

1010
workflow PairedTag {
1111

12-
String pipeline_version = "2.1.9"
12+
String pipeline_version = "2.1.10"
1313

1414
input {
1515
String input_id

pipelines/wdl/slideseq/SlideSeq.changelog.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# 3.6.4
2+
2026-01-22 (Date of Last Commit)
3+
4+
* Added a new, defaulted input cellbender_memory_GB to Optimus; this does not affect the outputs of this pipeline
5+
* Added a task level input, mem_size, to StarSoloFastq to expose memory settings; this does not affect the outputs of this pipeline
6+
17
# 3.6.3
28
2025-06-20 (Date of Last Commit)
39
* Added reference genome/GTF headers to fragment file via new string inputs; this change does not affect this pipeline

pipelines/wdl/slideseq/SlideSeq.wdl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import "../../../tasks/wdl/Utilities.wdl" as utils
2525

2626
workflow SlideSeq {
2727

28-
String pipeline_version = "3.6.3"
28+
String pipeline_version = "3.6.4"
2929

3030
input {
3131
Array[File] r1_fastq

pipelines/wdl/slidetags/SlideTags.changelog.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# 1.0.6
2+
2026-01-22 (Date of Last Commit)
3+
4+
* Added a new, defaulted input cellbender_memory_GB to Optimus; this does not affect the outputs of this pipeline
5+
* Added a task level input, mem_size, to StarSoloFastq to expose memory settings; this does not affect the outputs of this pipeline
6+
17
# 1.0.5
28
2025-10-24 (Date of Last Commit)
39

0 commit comments

Comments
 (0)