Skip to content

Commit

Permalink
Switch to *nix line endings (closes #83).
Browse files Browse the repository at this point in the history
  • Loading branch information
PeteHaitch committed Aug 12, 2014
1 parent f7b607c commit bfbbad9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion comethylation/funcs.py
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ def write_methylation_m_tuples_to_file(methylation_m_tuples, OUT):
OUT: The file to write output to.
"""
# tab_writer writes a tab-separated output file to the filehandle OUT
tab_writer = csv.writer(OUT, delimiter='\t', quotechar=' ', quoting=csv.QUOTE_MINIMAL)
tab_writer = csv.writer(OUT, delimiter = '\t', quotechar = ' ', quoting = csv.QUOTE_MINIMAL, lineterminator = '\n')

# Get m
m = methylation_m_tuples.m
Expand Down

0 comments on commit bfbbad9

Please sign in to comment.