@@ -2826,38 +2826,6 @@ def test_group_tag_selection_multiple(self, history_id):
28262826 output_content = self .dataset_populator .get_history_dataset_content (history_id , dataset = output )
28272827 assert output_content .strip () == "123\n 456\n 456\n 0ab"
28282828
2829- @skip_without_tool ("cat1" )
2830- def test_run_deferred_dataset (self , history_id ):
2831- details = self .dataset_populator .create_deferred_hda (
2832- history_id , "https://raw.githubusercontent.com/galaxyproject/galaxy/dev/test-data/1.bed" , ext = "bed"
2833- )
2834- inputs = {
2835- "input1" : dataset_to_param (details ),
2836- }
2837- outputs = self ._cat1_outputs (history_id , inputs = inputs )
2838- output = outputs [0 ]
2839- details = self .dataset_populator .get_history_dataset_details (
2840- history_id , dataset = output , wait = True , assert_ok = True
2841- )
2842- assert details ["state" ] == "ok"
2843- output_content = self .dataset_populator .get_history_dataset_content (history_id , dataset = output )
2844- assert output_content .startswith ("chr1 147962192 147962580 CCDS989.1_cds_0_0_chr1_147962193_r 0 -" )
2845-
2846- @skip_without_tool ("metadata_bam" )
2847- def test_run_deferred_dataset_with_metadata_options_filter (self , history_id ):
2848- details = self .dataset_populator .create_deferred_hda (
2849- history_id , "https://raw.githubusercontent.com/galaxyproject/galaxy/dev/test-data/1.bam" , ext = "bam"
2850- )
2851- inputs = {"input_bam" : dataset_to_param (details ), "ref_names" : "chrM" }
2852- run_response = self .dataset_populator .run_tool (tool_id = "metadata_bam" , inputs = inputs , history_id = history_id )
2853- output = run_response ["outputs" ][0 ]
2854- output_details = self .dataset_populator .get_history_dataset_details (
2855- history_id , dataset = output , wait = True , assert_ok = True
2856- )
2857- assert output_details ["state" ] == "ok"
2858- output_content = self .dataset_populator .get_history_dataset_content (history_id , dataset = output )
2859- assert output_content .startswith ("chrM" )
2860-
28612829 @skip_without_tool ("pileup" )
28622830 def test_metadata_validator_on_deferred_input (self , history_id ):
28632831 deferred_bam_details = self .dataset_populator .create_deferred_hda (
0 commit comments