@@ -562,7 +562,6 @@ def _process(self, beddf, seq_assay_id, newpath, parentid, create_panel=True):
562562 final_bed = add_feature_type (temp_bed_path , exon_gtf_path , gene_gtf_path )
563563 final_bed ["CENTER" ] = self .center
564564 final_bed ["Chromosome" ] = final_bed ["Chromosome" ].astype (str )
565- import pdb ; pdb .set_trace ()
566565 if create_panel :
567566 self .create_gene_panel (final_bed , seq_assay_id , gene_panel_path , parentid )
568567 return final_bed
@@ -601,11 +600,9 @@ def process_steps(
601600 Returns:
602601 str: Path to new bed file
603602 """
604- import pdb ; pdb .set_trace ()
605603 final_beddf = self ._process (
606604 beddf = beddf , seq_assay_id = seq_assay_id , newpath = newPath , parentid = parentId
607605 )
608- import pdb ; pdb .set_trace ()
609606 load .update_table (
610607 syn = self .syn ,
611608 databaseSynId = databaseSynId ,
@@ -694,9 +691,7 @@ def _validate(self, beddf):
694691 gene_positiondf = gene_position_table .convert_dtypes ()
695692 # The apply function of a DataFrame is called twice on the first row (known
696693 # pandas behavior)
697- import pdb ; pdb .set_trace ()
698694 beddf = beddf .apply (lambda x : remap_symbols (x , gene_positiondf ), axis = 1 )
699- import pdb ; pdb .set_trace ()
700695 if any (beddf ["Hugo_Symbol" ].isnull ()):
701696 warning += (
702697 "BED file: "
0 commit comments