SimpleDNA/dna.pyi
2024-10-19 14:27:14 +08:00

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:...