File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
wdl/pipelines/TechAgnostic/Utility Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments