File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
wdl/pipelines/TechAgnostic/Utility Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -69,10 +69,10 @@ workflow SplitBamByReadgroup {
6969
7070 # basecall_model only applies to ONT, so PacBio data will always get 'None'
7171 Array [String ] readgroup_attrs_to_get = ['ID' , 'LB' , 'PU' ]
72- call BU .GetReadGroupInfo { input : bam = bam , keys = readgroup_attrs_to_get , null_value_representation = 'None' }
73- String rgid = GetReadGroupInfo .read_group_info ['ID' ]
74- String library = GetReadGroupInfo .read_group_info ['LB' ]
75- String platform_unit = GetReadGroupInfo .read_group_info ['PU' ]
72+ # call BU.GetReadGroupInfo { input: bam = bam, keys = readgroup_attrs_to_get, null_value_representation = 'None' }
73+ String rgid = "null" # GetReadGroupInfo.read_group_info['ID']
74+ String library = "null" # GetReadGroupInfo.read_group_info['LB']
75+ String platform_unit = "null" # GetReadGroupInfo.read_group_info['PU']
7676
7777 if (debug_mode ) {
7878 call Utils .CountBamRecords { input : bam = bam }
You can’t perform that action at this time.
0 commit comments