correcting indendation

This commit is contained in:
Tanushree Tunstall 2020-04-08 12:43:37 +01:00
parent 2ca5aea897
commit 6f545413bc
3 changed files with 33 additions and 27 deletions

View file

@ -81,8 +81,7 @@ def rd_to_csv(inputtsv, outputrdcsv):
@param outputrdsv: csv file with rd values
@type outfile: string
@return: writes df of kd values as csv
@type: .csv
@return: none, writes rd values df as csv
"""
#========================
# read downloaded tsv file
@ -142,6 +141,7 @@ def rd_to_csv(inputtsv, outputrdcsv):
, '\nExpected no. of rows:', len(rd_data)
, '\nGot no. of rows:', len(rd_df)
, '\n=====================================================')
#===============
# writing file
#===============
@ -160,14 +160,14 @@ def rd_to_csv(inputtsv, outputrdcsv):
#rd_to_csv(infile, outfile)
#=======================================================================
def main():
print('Running hydropathy calcs', in_filename, 'output csv:', out_filename)
rd_to_csv(infile, outfile)
print('residue depth using the following params\n'
, in_filename
, '\noutfile:', out_filename)
rd_to_csv(infile, outfile)
print('Finished Writing file:'
, '\nFilename:', outfile
, '\nPath:', outdir
## , '\nNo. of rows:', ''
## , '\nNo. of cols:', ''
, '\n=============================================================')
, '\nFilename:', out_filename
, '\nPath:', outdir
, '\n=============================================================')
if __name__ == '__main__':
main()