Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix join barcode step for Opossum #1397

Merged
merged 23 commits into from
Nov 6, 2024
Merged
Show file tree
Hide file tree
Changes from 17 commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
6aac6b6
Fix: Use CSI instead of TBI indexing in tabix command to support chro…
khajoue2 Oct 21, 2024
003c7cd
Updated pipeline_versions.txt with all pipeline version information
actions-user Oct 21, 2024
4180947
Merge branch 'develop' into pd-2747-multiome-opossum
khajoue2 Nov 4, 2024
59b58d2
Updated pipeline_versions.txt with all pipeline version information
actions-user Nov 4, 2024
507dd83
updated changelogs
khajoue2 Nov 4, 2024
a61c9db
Updated pipeline_versions.txt with all pipeline version information
actions-user Nov 4, 2024
31993d8
updated pairedtag version
khajoue2 Nov 5, 2024
df9d7f6
Merge branch 'pd-2747-multiome-opossum' of github.com:broadinstitute/…
khajoue2 Nov 5, 2024
ad8366a
Updated pipeline_versions.txt with all pipeline version information
actions-user Nov 5, 2024
e5987b3
Merge branch 'develop' into pd-2747-multiome-opossum
khajoue2 Nov 5, 2024
5fef0e6
CreateFragmentFile task now uses csi index format
khajoue2 Nov 5, 2024
72ab1e2
Update pipelines/skylab/multiome/Multiome.changelog.md
khajoue2 Nov 5, 2024
dd4fc3f
Update pipelines/skylab/optimus/Optimus.changelog.md
khajoue2 Nov 5, 2024
b24ab5b
Update pipelines/skylab/slideseq/SlideSeq.changelog.md
khajoue2 Nov 5, 2024
37bbad9
Update pipelines/skylab/smartseq2_single_nucleus_multisample/MultiSam…
khajoue2 Nov 5, 2024
1eaa77f
Update pipelines/skylab/paired_tag/PairedTag.changelog.md
khajoue2 Nov 5, 2024
96dbba8
Updated pipeline_versions.txt with all pipeline version information
actions-user Nov 5, 2024
6a68d53
updating indexing for pairedtag and changing index file name
ekiernan Nov 5, 2024
a51e6b1
Merge branch 'develop' into pd-2747-multiome-opossum
ekiernan Nov 6, 2024
645883b
Updated outputs to reflect the csi index. Renamed the index from tbi …
khajoue2 Nov 6, 2024
b66ddd8
resolved conflict
khajoue2 Nov 6, 2024
ea6c770
Update Multiome.wdl
khajoue2 Nov 6, 2024
0407007
Update pipelines/skylab/atac/atac.wdl
khajoue2 Nov 6, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions pipeline_versions.txt
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@ ExomeReprocessing 3.3.2 2024-10-28
BuildIndices 3.0.0 2023-12-06
scATAC 1.3.2 2023-08-03
snm3C 4.0.4 2024-08-06
Multiome 5.8.0 2024-10-23
PairedTag 1.8.0 2024-10-23
Multiome 5.9.0 2024-10-21
PairedTag 1.8.1 2024-11-04
MultiSampleSmartSeq2 2.2.22 2024-09-11
MultiSampleSmartSeq2SingleNucleus 2.0.2 2024-10-23
Optimus 7.8.0 2024-10-23
atac 2.4.0 2024-10-23
MultiSampleSmartSeq2SingleNucleus 2.0.3 2024-11-04
Optimus 7.8.1 2024-11-04
atac 2.5.0 2024-10-23
SmartSeq2SingleSample 5.1.21 2024-09-11
SlideSeq 3.4.3 2024-10-24
SlideSeq 3.4.4 2024-11-04
5 changes: 5 additions & 0 deletions pipelines/skylab/atac/atac.changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# 2.5.0
2024-10-23 (Date of Last Commit)

* Updated the tabix flag in CreateFragmentFile task to use CSI instead of TBI indexing, which supports chromosomes larger than 512 Mbp

# 2.4.0
2024-10-23 (Date of Last Commit)

Expand Down
4 changes: 2 additions & 2 deletions pipelines/skylab/atac/atac.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ workflow ATAC {
String adapter_seq_read3 = "TCGTCGGCAGCGTCAGATGTGTATAAGAGACAG"
}

String pipeline_version = "2.4.0"
String pipeline_version = "2.5.0"

# Determine docker prefix based on cloud provider
String gcr_docker_prefix = "us.gcr.io/broad-gotc-prod/"
Expand Down Expand Up @@ -614,7 +614,7 @@ task CreateFragmentFile {
echo "Starting bgzip"
bgzip "~{input_id}.fragments.sorted.tsv"
echo "Starting tabix"
tabix -s 1 -b 2 -e 3 "~{input_id}.fragments.sorted.tsv.gz"
tabix -s 1 -b 2 -e 3 -C "~{input_id}.fragments.sorted.tsv.gz"
khajoue2 marked this conversation as resolved.
Show resolved Hide resolved
>>>

runtime {
Expand Down
4 changes: 4 additions & 0 deletions pipelines/skylab/multiome/Multiome.changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 5.9.0
2024-10-21 (Date of Last Commit)
* Updated the tabix flag in JoinMultiomeBarcodes task in H5adUtils.wdl to use CSI instead of TBI indexing, which supports chromosomes larger than 512 Mbp; this task changes the format for the ATAC fragment file index

# 5.8.0
2024-10-23 (Date of Last Commit)

Expand Down
3 changes: 1 addition & 2 deletions pipelines/skylab/multiome/Multiome.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,7 @@ import "../../../tasks/broad/Utilities.wdl" as utils

workflow Multiome {

String pipeline_version = "5.8.0"

String pipeline_version = "5.9.0"

input {
String cloud_provider
Expand Down
5 changes: 5 additions & 0 deletions pipelines/skylab/optimus/Optimus.changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# 7.8.1
2024-11-04 (Date of Last Commit)

* Updated the tabix flag in JoinMultiomeBarcodes task in H5adUtils.wdl to use CSI instead of TBI indexing, which supports chromosomes larger than 512 Mbp; this task should not affect the Optimus pipeline

# 7.8.0
2024-10-23 (Date of Last Commit)

Expand Down
2 changes: 1 addition & 1 deletion pipelines/skylab/optimus/Optimus.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ workflow Optimus {
# version of this pipeline


String pipeline_version = "7.8.0"
String pipeline_version = "7.8.1"


# this is used to scatter matched [r1_fastq, r2_fastq, i1_fastq] arrays
Expand Down
5 changes: 5 additions & 0 deletions pipelines/skylab/paired_tag/PairedTag.changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# 1.8.1
2024-11-04 (Date of Last Commit)

* Updated the tabix flag in JoinMultiomeBarcodes task in H5adUtils.wdl to use CSI instead of TBI indexing, which supports chromosomes larger than 512 Mbp; this task should not affect the Paired-Tag pipeline

# 1.8.0
2024-10-23 (Date of Last Commit)

Expand Down
2 changes: 1 addition & 1 deletion pipelines/skylab/paired_tag/PairedTag.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import "../../../tasks/broad/Utilities.wdl" as utils

workflow PairedTag {

String pipeline_version = "1.8.0"
String pipeline_version = "1.8.1"


input {
Expand Down
5 changes: 5 additions & 0 deletions pipelines/skylab/slideseq/SlideSeq.changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# 3.4.4
2024-11-04 (Date of Last Commit)

* Updated the tabix flag in JoinMultiomeBarcodes task in H5adUtils.wdl to use CSI instead of TBI indexing, which supports chromosomes larger than 512 Mbp; this task should not affect the Slide-seq pipeline

# 3.4.3
2024-10-24 (Date of Last Commit)

Expand Down
2 changes: 1 addition & 1 deletion pipelines/skylab/slideseq/SlideSeq.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import "../../../tasks/broad/Utilities.wdl" as utils

workflow SlideSeq {

String pipeline_version = "3.4.3"
String pipeline_version = "3.4.4"

input {
Array[File] r1_fastq
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# 2.0.3
2024-11-04 (Date of Last Commit)

* Updated the tabix flag in JoinMultiomeBarcodes task in H5adUtils.wdl to use CSI instead of TBI indexing, which supports chromosomes larger than 512 Mbp; this task should not affect the snSS2 pipeline

# 2.0.2
2024-10-23 (Date of Last Commit)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ workflow MultiSampleSmartSeq2SingleNucleus {
}

# Version of this pipeline
String pipeline_version = "2.0.2"
String pipeline_version = "2.0.3"

if (false) {
String? none = "None"
Expand Down
2 changes: 1 addition & 1 deletion tasks/skylab/H5adUtils.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ task JoinMultiomeBarcodes {
echo "Starting bgzip"
bgzip "~{atac_fragment_base}.sorted.tsv"
echo "Starting tabix"
tabix -s 1 -b 2 -e 3 "~{atac_fragment_base}.sorted.tsv.gz"
tabix -s 1 -b 2 -e 3 -C "~{atac_fragment_base}.sorted.tsv.gz"
ekiernan marked this conversation as resolved.
Show resolved Hide resolved

>>>

Expand Down