Skip to content

Commit d5948f9

Browse files
committed
fix/update
1 parent e14bb8c commit d5948f9

File tree

11 files changed

+25
-23
lines changed

11 files changed

+25
-23
lines changed
Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
# 2.0.0
2-
2025-02-21 (Date of Last Commit)
1+
# 1.1.0
2+
2025-02-25 (Date of Last Commit)
33

44
* Removed boolean variable is_slidetags; no longer needed with new updates
5-
* Updated the code to eliminate sharding — now, only a single instance of alignment (Starsolo) in Optimus is running. Removed tasks related to sharding and merging BAM files
5+
* Refactored the STAR alignment step (STARsoloFastq) in Optimus and removed tasks FastqProcessing and MergeSortBamFiles; we are no longer sharding. We are now running one instance of STAR
6+

beta-pipelines/skylab/slidetags/SlideTags.wdl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import "../../../pipelines/skylab/optimus/Optimus.wdl" as optimus
66

77
workflow SlideTags {
88

9-
String pipeline_version = "2.0.0"
9+
String pipeline_version = "1.1.0"
1010

1111
input {
1212
# slide-tags inputs

pipelines/skylab/multiome/Multiome.changelog.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# 6.0.0
2-
2025-02-21 (Date of Last Commit)
3-
*
1+
# 5.12.0
2+
2025-02-25 (Date of Last Commit)
3+
* Refactored the STAR alignment step (STARsoloFastq) in Optimus and removed tasks FastqProcessing and MergeSortBamFiles; we are no longer sharding. We are now running one instance of STAR
44

55
# 5.11.0
66
2025-02-05 (Date of Last Commit)

pipelines/skylab/multiome/Multiome.wdl

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

11-
String pipeline_version = "6.0.0"
11+
String pipeline_version = "5.12.0"
1212

1313
input {
1414
String cloud_provider

pipelines/skylab/optimus/Optimus.changelog.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
# 8.0.0
2-
2025-02-21 (Date of Last Commit)
1+
# 7.10.0
2+
2025-02-25 (Date of Last Commit)
33

44
* Removed boolean variable is_slidetags; no longer needed with new updates
5-
* Updated the code to eliminate sharding — now, only a single instance of alignment (Starsolo) is running. Removed tasks related to sharding and merging BAM files
6-
* Added parameters for STARsoloFastq task, including cpu_platform_star, mem_size_star, cpu_star, disk_star, limitBAMsortRAM_star, and outBAMsortingBinsN_star
5+
* Refactored the STAR alignment step and removed tasks FastqProcessing and MergeSortBamFiles; we are no longer sharding. We are now running one instance of STAR
6+
* Added parameters for STARsoloFastq task, including cpu_platform_star, mem_size_star, cpu_star, disk_star, limitBAMsortRAM_star, and outBAMsortingBinsN_star, for dynamic allocation of resources depending on input size
77

88
# 7.9.2
99
2025-02-12 (Date of Last Commit)

pipelines/skylab/optimus/Optimus.wdl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ workflow Optimus {
7979
}
8080

8181
# version of this pipeline
82-
String pipeline_version = "8.0.0"
82+
String pipeline_version = "7.10.0"
8383

8484
# this is used to scatter matched [r1_fastq, r2_fastq, i1_fastq] arrays
8585
Array[Int] indices = range(length(r1_fastq))

pipelines/skylab/paired_tag/PairedTag.changelog.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# 2.0.0
2-
2025-02-21 (Date of Last Commit)
3-
*
1+
# 1.11.0
2+
2025-02-25 (Date of Last Commit)
3+
* Refactored the STAR alignment step in Optimus and removed tasks FastqProcessing and MergeSortBamFiles; we are no longer sharding. We are now running one instance of STAR
44

55
# 1.10.2
66
2025-02-06 (Date of Last Commit)

pipelines/skylab/paired_tag/PairedTag.wdl

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

99
workflow PairedTag {
1010

11-
String pipeline_version = "2.0.0"
11+
String pipeline_version = "1.11.0"
1212

1313
input {
1414
String input_id

pipelines/skylab/smartseq2_single_nucleus_multisample/MultiSampleSmartSeq2SingleNucleus.changelog.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
# 3.0.0
2-
2025-02-21 (Date of Last Commit)
1+
# 2.1.0
2+
2025-02-25 (Date of Last Commit)
33

4-
*
4+
* Refactored the STAR alignment step (STARsoloFastq) in Optimus and removed tasks FastqProcessing and MergeSortBamFiles; we are no longer sharding. We are now running one instance of STAR
55

66
# 2.0.8
77
2025-02-12 (Date of Last Commit)

pipelines/skylab/smartseq2_single_nucleus_multisample/MultiSampleSmartSeq2SingleNucleus.wdl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ workflow MultiSampleSmartSeq2SingleNucleus {
5757
}
5858
5959
# Version of this pipeline
60-
String pipeline_version = "3.0.0"
60+
String pipeline_version = "2.1.0"
6161
6262
if (false) {
6363
String? none = "None"

0 commit comments

Comments
 (0)