Skip to content

Commit

Permalink
Merge branch 'develop' into azurized_wdls
Browse files Browse the repository at this point in the history
  • Loading branch information
nikellepetrillo authored May 15, 2024
2 parents ebb3c39 + 2f09de3 commit 9cd7ca1
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 8 deletions.
3 changes: 2 additions & 1 deletion pipelines/skylab/multiome/Multiome.changelog.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# 3.4.5
2024-05-11 (Date of Last Commit)
2024-05-14 (Date of Last Commit)

* Updated the PairedTag.wdl to run on Azure. This change does not affect the Multiome pipeline.
* Updated the Paired-tag Demultiplex task so that some intermediate input names have been renamed; this change does not impact the Multiome workflow

# 3.4.4
2024-05-10 (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 @@ -8,7 +8,7 @@ import "../../../tasks/broad/Utilities.wdl" as utils

workflow Multiome {

String pipeline_version = "3.4.4"
String pipeline_version = "3.4.5"

input {
String cloud_provider
Expand Down Expand Up @@ -45,7 +45,6 @@ workflow Multiome {

# CellBender
Boolean run_cellbender = false

}

# Determine docker prefix based on cloud provider
Expand Down
7 changes: 4 additions & 3 deletions pipelines/skylab/multiome/atac.changelog.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
# 1.2.3
2024-05-12 (Date of Last Commit)
2024-05-14 (Date of Last Commit)

* Updated the Optimus.wdl to run on Azure. This change does not affect the ATAC pipeline.
* Updated the PairedTag.wdl to run on Azure. This change does not affect the ATAC pipeline.
* Updated the Optimus.wdl to run on Azure. This change does not affect the ATAC pipeline.
* Updated the PairedTag.wdl to run on Azure. This change does not affect the ATAC pipeline.
* Updated the demultiplex task so that some intermediate input names have been renamed, this does not impact the ATAC workflow

# 1.2.2
2024-05-10 (Date of Last Commit)
Expand Down
2 changes: 2 additions & 0 deletions pipelines/skylab/multiome/atac.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ workflow ATAC {




parameter_meta {
read1_fastq_gzipped: "read 1 FASTQ file as input for the pipeline, contains read 1 of paired reads"
read2_fastq_gzipped: "read 2 FASTQ file as input for the pipeline, contains the cellular barcodes corresponding to the reads in the read1 FASTQ and read 3 FASTQ"
Expand Down Expand Up @@ -149,6 +150,7 @@ workflow ATAC {

}
}

File bam_aligned_output_atac = select_first([BBTag.bb_bam, BWAPairedEndAlignment.bam_aligned_output])
File fragment_file_atac = select_first([BB_fragment.fragment_file, CreateFragmentFile.fragment_file])
File snap_metrics_atac = select_first([BB_fragment.Snap_metrics,CreateFragmentFile.Snap_metrics])
Expand Down
3 changes: 2 additions & 1 deletion pipelines/skylab/paired_tag/PairedTag.changelog.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# 0.6.1
2024-05-12 (Date of Last Commit)
2024-05-14 (Date of Last Commit)

* Updated the PairedTag.wdl to run in Azure
* Updated the demultiplex task so that some intermediate input names have been renamed. There is no change to the outputs.

# 0.6.0
2024-05-10 (Date)
Expand Down
1 change: 0 additions & 1 deletion tasks/skylab/PairedTagUtils.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,6 @@ task PairedTagDemultiplex {
elif [[ $COUNT == 24 && ~{preindex} == "false" ]]
then
echo "FASTQ has correct index length, no modification necessary"
ls -lh
mv "~{input_id}_R2.fq.gz" "~{r2_base}.fq.gz"
mv "~{input_id}_R1.fq.gz" "~{r1_base}.fq.gz"
mv "~{input_id}_R3.fq.gz" "~{r3_base}.fq.gz"
Expand Down

0 comments on commit 9cd7ca1

Please sign in to comment.