Skip to content

Commit 80e19c0

Browse files
committed
fds
1 parent 82dad8f commit 80e19c0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

wdl/pipelines/TechAgnostic/Utility/SplitBamByReadgroup.wdl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ workflow SplitBamByReadgroup {
6767

6868
# basecall_model only applies to ONT, so PacBio data will always get 'None'
6969
Array[String] readgroup_attrs_to_get = ['ID', 'LB', 'PU']
70-
call BU.GetReadGroupInfo { input: uBAM = bam, keys = readgroup_attrs_to_get, null_value_representation = 'None' }
70+
call BU.GetReadGroupInfo { input: bam = bam, keys = readgroup_attrs_to_get, null_value_representation = 'None' }
7171
String rgid = GetReadGroupInfo.read_group_info['ID']
7272
String library = GetReadGroupInfo.read_group_info['LB']
7373
String platform_unit = GetReadGroupInfo.read_group_info['PU']
@@ -100,7 +100,7 @@ workflow SplitBamByReadgroup {
100100
101101
# convert to FASTQ if so requested
102102
if (convert_to_fq) {
103-
call Utils.BamToFastq { input: bam = bam, prefix = basename(bam, ".bam") }
103+
call BU.BamToFastq { input: bam = bam, prefix = basename(bam, ".bam") }
104104
call FF.FinalizeToFile as SaveFq {
105105
input: file = BamToFastq.reads_fq, outdir = outdir
106106
}

0 commit comments

Comments
 (0)