We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 32c5186 commit 6d19646Copy full SHA for 6d19646
1 file changed
src/idc_annotation_conversion/tcga_til_maps/__main__.py
@@ -789,11 +789,16 @@ def convert_2022(
789
if not 'prediction' in b.name or b.name.endswith('low_res'):
790
continue
791
792
+ # The meso collection has multiple versions available so choose the
793
+ # incep4 only
794
+ if "meso" in b.name and "incep4" not in b.name:
795
+ continue
796
+
797
if blob_filter is not None:
798
if blob_filter not in b.name:
799
800
- dir_name = b.name.split('/')[-2]
801
+ dir_name = b.name.split('/')[-3]
802
is_binary = 'binary' in dir_name
803
804
container_id = b.name.split('/')[-1].replace('prediction-', '').split('.')[0]
0 commit comments