SimpleDNA/dna.pyi

11 lines
362 B
Python
Raw Permalink Normal View History

2024-10-19 06:27:14 +00:00
# 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:...