def test_draw_deepvariant_pileup_with_channels_input(self, composite_type): channels = [_image_array((100, 221)) for _ in range(6)] # Testing that it runs without error vis.draw_deepvariant_pileup(channels=channels, composite_type=composite_type)
def test_draw_deepvariant_pileup_with_example_input(self, composite_type): _, example = _mock_example_with_image((100, 10, 7)) # Testing that it runs without error vis.draw_deepvariant_pileup(example=example, composite_type=composite_type)