Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
aawdeh committed Jan 21, 2025
1 parent 5e81613 commit f0216ab
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions pipelines/skylab/atac/atac.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -178,8 +178,11 @@ workflow ATAC {
File library_metrics = select_first([BB_fragment.atac_library_metrics, CreateFragmentFile.atac_library_metrics])

# if peakcalling task not called set peakcall_h5ad to null
File peakcall_h5ad = (if (peak_calling) PeakCalling.peaks_h5ad else snap_metrics_atac)

File peakcall_h5ad = snap_metrics_atac
if (peak_calling) {
File peakcall_h5ad_file = PeakCalling.peaks_h5ad
}

output {
File bam_aligned_output = bam_aligned_output_atac
File fragment_file = fragment_file_atac
Expand Down

0 comments on commit f0216ab

Please sign in to comment.