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

Lk pd 2814 adding gtf h5ad #1470

Merged
merged 21 commits into from
Jan 15, 2025
Merged
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
e2fef9f
testing h5adutils with new docker
ekiernan Jan 8, 2025
12b99ac
added GTF file to adata_uns
ekiernan Jan 8, 2025
87b73d5
changing name of warp_tools_docker variable so be version agnostic
ekiernan Jan 8, 2025
8458661
Merge branch 'develop' into lk-PD-2814-adding-gtf-h5ad
ekiernan Jan 8, 2025
2fec7b8
removed quotes
ekiernan Jan 8, 2025
38d731c
testing all wdls with new warp-tools docker
ekiernan Jan 9, 2025
ab17c78
Merge branch 'develop' into lk-PD-2814-adding-gtf-h5ad
ekiernan Jan 10, 2025
13fbf2a
updated h5ad with gs:// path for reference_gtf_file
ekiernan Jan 10, 2025
7b5cae5
testing gtf path
ekiernan Jan 10, 2025
cb69b95
testing new script and new logging for gtf path
ekiernan Jan 10, 2025
6f10319
updated gtf_path
ekiernan Jan 10, 2025
422ad3b
testing fix for wdl gtf_path syntax
ekiernan Jan 11, 2025
29a37fc
added annotation file as string to h5ad utils task
ekiernan Jan 13, 2025
ee6c5b7
Updated pipeline_versions.txt with all pipeline version information
actions-user Jan 13, 2025
4e74a75
updating gtf_path for remaining scripts
ekiernan Jan 13, 2025
e1ee332
updated warp-tools docker to versioned docker 2.6.0
ekiernan Jan 13, 2025
f30b7cc
Merge branch 'develop' into lk-PD-2814-adding-gtf-h5ad
ekiernan Jan 13, 2025
f7cf151
Merge branch 'lk-PD-2814-adding-gtf-h5ad' of https://github.com/broad…
ekiernan Jan 13, 2025
9b6b190
changelog updates
ekiernan Jan 13, 2025
343595e
Updated pipeline_versions.txt with all pipeline version information
actions-user Jan 13, 2025
a01cc57
removing unnecessary code from atac createfragmentfile
ekiernan Jan 15, 2025
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
Prev Previous commit
removing unnecessary code from atac createfragmentfile
  • Loading branch information
ekiernan committed Jan 15, 2025
commit a01cc5760e4dc32263fd0e35f59bd563f615bf7e
10 changes: 1 addition & 9 deletions pipelines/skylab/atac/atac.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -604,16 +604,8 @@ task CreateFragmentFile {
atac_data.uns['NHashID'] = atac_nhash_id

# Add GTF to uns field

# Original path from args.annotation_file
gtf_path = "~{gtf_path}" # e.g., '/cromwell_root/gcp-public-data--broad-references/hg38/v0/star/v2_7_10a/modified_v43.annotation.gtf'

# # Transform the path
# if annotation_gtf.startswith('/cromwell_root/'):
# stripped_path = annotation_gtf[len('/cromwell_root/'):] # Remove '/cromwell_root/'
# updated_path = f'gs://{stripped_path}' # Add 'gs://' prefix
# else:
# updated_path = str(atac_gtf)
gtf_path = "~{gtf_path}" # e.g., 'gs://gcp-public-data--broad-references/hg38/v0/star/v2_7_10a/modified_v43.annotation.gtf'

atac_data.uns["reference_gtf_file"] = gtf_path
# calculate tsse metrics
Expand Down
Loading