Skip to content

Commit

Permalink
corrected a typo in the dsDNA example. (...specifically the tools tha…
Browse files Browse the repository at this point in the history
…t were included to estimate the persistence length. The dsDNA example itself is fine.)
  • Loading branch information
jewettaij committed Mar 28, 2020
1 parent 3c11bea commit 72cb8b1
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
g_program_name = g_filename
if g_filename.rfind('.py') != -1:
g_module_name = g_filename[:g_filename.rfind('.py')]
g_date_str = '2017-2-12'
g_version_str = '0.2'
g_date_str = '2020-1-19'
g_version_str = '0.3.0'



Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ def ProcessStructure(x_id, normalize=False):

# x_d contains the coordinates read from the
# most recent line in the current frame
x_d = map(float, tokens)
x_d = list(map(float, tokens))
x_id.append(x_d)

if len(x_id) > 0:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
g_program_name = g_filename
if g_filename.rfind('.py') != -1:
g_module_name = g_filename[:g_filename.rfind('.py')]
g_date_str = '2017-2-12'
g_version_str = '0.2'
g_date_str = '2020-1-19'
g_version_str = '0.3.0'



Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ def ProcessStructure(x_id, normalize=False):

# x_d contains the coordinates read from the
# most recent line in the current frame
x_d = map(float, tokens)
x_d = list(map(float, tokens))
x_id.append(x_d)

if len(x_id) > 0:
Expand Down

0 comments on commit 72cb8b1

Please sign in to comment.