diff options
author | Frederick Muriuki Muriithi | 2025-06-02 14:02:38 -0500 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2025-06-02 14:02:38 -0500 |
commit | 4c5b7b7ef118a9ad0b620ae7c7563daa9cd1c33d (patch) | |
tree | a8048f35e75b3a210e0f224595e7fc351f49e94f | |
parent | 75c0183b88067fa3a6ca74fa383aefee0938564a (diff) | |
download | gn-uploader-4c5b7b7ef118a9ad0b620ae7c7563daa9cd1c33d.tar.gz |
Add note in documentation.
-rw-r--r-- | r_qtl/r_qtl2.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/r_qtl/r_qtl2.py b/r_qtl/r_qtl2.py index b1eae90..06175ce 100644 --- a/r_qtl/r_qtl2.py +++ b/r_qtl/r_qtl2.py @@ -575,7 +575,7 @@ def read_text_file(filepath: Union[str, Path]) -> Iterator[str]: def read_csv_file(filepath: Union[str, Path], separator: str = ",", comment_char: str = "#") -> Iterator[tuple[str, ...]]: - """Read a file as a csv file.""" + """Read a file as a csv file. This does not process the N/A values.""" for line in read_text_file(filepath): if line.startswith(comment_char): continue |