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

Open
wants to merge 2 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion pipeline_versions.txt
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ ExomeReprocessing 3.3.1 2024-09-17
BuildIndices 3.0.0 2023-12-06
scATAC 1.3.2 2023-08-03
snm3C 4.0.4 2024-08-06
Multiome 5.7.1 2024-10-18
Multiome 5.7.2 2024-10-21
PairedTag 1.7.1 2024-10-18
MultiSampleSmartSeq2 2.2.22 2024-09-11
MultiSampleSmartSeq2SingleNucleus 2.0.1 2024-09-24
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.7.2
2024-10-21 (Date of Last Commit)
* Changed a flag in H5adUtils.wdl to se CSI instead of TBI indexing in tabix command to support chromosomes larger than 512 Mbp.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
* Changed a flag in H5adUtils.wdl to se CSI instead of TBI indexing in tabix command to support chromosomes larger than 512 Mbp.
* Changed a flag in H5adUtils.wdl to set CSI instead of TBI indexing in tabix command to support chromosomes larger than 512 Mbp.


# 5.7.1
2024-10-18 (Date of Last Commit)

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

workflow Multiome {

String pipeline_version = "5.7.1"
String pipeline_version = "5.7.2"


input {
Expand Down
2 changes: 1 addition & 1 deletion tasks/skylab/H5adUtils.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,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"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@khajoue2 Do we know if this is still compatible with ArchR import? We only added tabix in to make the outputs compatible, so if it isn't directly compatible, we might want to flag it to Multiome group.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This information wasn't clearly specified in ArchR's public documentation, we can do some downstream check.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We can make a note "If incompatible, explore alternative solutions e.g., chromosome splitting."


>>>

Expand Down