Skip to content
Snippets Groups Projects
Commit ab173bb2 authored by pinyili2's avatar pinyili2
Browse files

reset index warning

parent 40190e8d
No related branches found
No related tags found
1 merge request!1Pinyili2
...@@ -96,6 +96,7 @@ def mrdna_model_from_oxdna(coordinate_file, topology_file,virt2nuc=None,get_nt_p ...@@ -96,6 +96,7 @@ def mrdna_model_from_oxdna(coordinate_file, topology_file,virt2nuc=None,get_nt_p
L1=_find_vh_vb_table(vh_vb._scaf,1) L1=_find_vh_vb_table(vh_vb._scaf,1)
L2=_find_vh_vb_table(vh_vb._stap,0) L2=_find_vh_vb_table(vh_vb._stap,0)
nt_prop=pd.DataFrame(L1+L2,dtype=object) nt_prop=pd.DataFrame(L1+L2,dtype=object)
nt_prop["index"]=nt_prop["index"].astype(int)
nt_prop.set_index("index",inplace=True) nt_prop.set_index("index",inplace=True)
nt_prop.sort_index(inplace=True) nt_prop.sort_index(inplace=True)
nt_prop["threeprime"]=top_data[2] nt_prop["threeprime"]=top_data[2]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment