11 lines
362 B
Python
11 lines
362 B
Python
|
# void convert_from_file(
|
||
|
# std::string source_file=std::string("filteredReads.txt"),
|
||
|
# std::string destination_file=std::string("reversedSequence.txt"),
|
||
|
# size_t buffer_size_gb=4
|
||
|
# )
|
||
|
|
||
|
def convert_from_file(
|
||
|
source_file:str="filteredReads.txt",
|
||
|
destination_file:str="reversedSequence.txt",
|
||
|
buffer_size_gb:int=4
|
||
|
)->None:...
|