Skip to content
Snippets Groups Projects
Commit 3709b00d authored by james94's avatar james94
Browse files

remove print statements

parent 219ac6c6
Branches
No related tags found
No related merge requests found
......@@ -4,9 +4,9 @@ samples=pd.read_csv(snakemake.input.results, dtype=str, index_col=0, delim_white
# samples=samples.reset_index
turn2FloatAndMb=['Bases_Mb','Est_Size_Mb','Longest_Scaff_Mb','Scaff_N50_Mb','Scaff_NG50_Mb','Scaff_N95_Mb','Scaff_NG95_Mb','Longest_Cont_Mb','Cont_N50_Mb','Cont_NG50_Mb','Cont_N95_Mb','Cont_NG95_Mb']
roundDecimals=['Comp_BUSCOs_%','Comp_Single_BUSCOs_%','Het_%','GC_%','QV','Completeness','Bases_Mb','Est_Size_Mb','Longest_Scaff_Mb','Scaff_N50_Mb','Scaff_NG50_Mb','Scaff_N95_Mb','Scaff_NG95_Mb','Longest_Cont_Mb','Cont_N50_Mb','Cont_NG50_Mb','Cont_N95_Mb','Cont_NG95_Mb']
print('this is samples',samples)
# print('this is samples',samples)
sampleTransposed=samples.T
print('this is sampleTransposed',sampleTransposed)
# print('this is sampleTransposed',sampleTransposed)
for header in turn2FloatAndMb:
sampleTransposed[header]=sampleTransposed[header].astype(float).div(1000000)
for i in range(0,4):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment