Skip to content

Commit 3a16e52

Browse files
committed
skip PBI
1 parent 6ad13a5 commit 3a16e52

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

wdl/pipelines/PacBio/Utility/ProcessOnInstrumentDemuxedChunk.wdl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ workflow ProcessOnInstrumentDemuxedChunk {
9292

9393
File aligned_bam = FinalizeAlignedBam.gcs_path
9494
File aligned_bai = FinalizeAlignedBai.gcs_path
95-
File aligned_pbi = FinalizeAlignedPbi.gcs_path
95+
# File aligned_pbi = FinalizeAlignedPbi.gcs_path
9696
9797
String movie = AlignHiFiUBAM.movie
9898

@@ -141,12 +141,12 @@ workflow ProcessOnInstrumentDemuxedChunk {
141141
142142
File aBAM = AlignHiFiUBAM.aligned_bam
143143
File aBAI = AlignHiFiUBAM.aligned_bai
144-
File aPBI = AlignHiFiUBAM.aligned_pbi
144+
# File aPBI = AlignHiFiUBAM.aligned_pbi
145145
146146
# save
147147
call FF.FinalizeToFile as FinalizeAlignedBam { input: outdir = bc_specific_aln_out, file = aBAM, name = readgroup_id + '.bam' }
148148
call FF.FinalizeToFile as FinalizeAlignedBai { input: outdir = bc_specific_aln_out, file = aBAI, name = readgroup_id + '.bai' }
149-
call FF.FinalizeToFile as FinalizeAlignedPbi { input: outdir = bc_specific_aln_out, file = aPBI, name = readgroup_id + '.pbi' }
149+
# call FF.FinalizeToFile as FinalizeAlignedPbi { input: outdir = bc_specific_aln_out, file = aPBI, name = readgroup_id + '.pbi' }
150150
151151
###################################################################################
152152
# QC

wdl/tasks/Alignment/AlignHiFiUBAM.wdl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ workflow AlignHiFiUBAM {
3333
output {
3434
File aligned_bam = aBAM
3535
File aligned_bai = aBAI
36-
File aligned_pbi = IndexAlignedReads.pbi
36+
# File aligned_pbi = IndexAlignedReads.pbi
3737
3838
String movie = movie_name
3939
String total_runtime = select_first([sumRuntimes.total_runtime, AlignReadsTogether.wallclocktime])
@@ -103,7 +103,7 @@ workflow AlignHiFiUBAM {
103103
104104
File aBAM = select_first([MergeAlignedReads.merged_bam, AlignReadsTogether.aligned_bam])
105105
File aBAI = select_first([MergeAlignedReads.merged_bai, AlignReadsTogether.aligned_bai])
106-
call PB.PBIndex as IndexAlignedReads { input: bam = aBAM }
106+
# call PB.PBIndex as IndexAlignedReads { input: bam = aBAM }
107107
}
108108
109109
task sumRuntimes {

0 commit comments

Comments
 (0)