def download_fastq_files(sra_id): | |
file = "fastq_files.txt" | |
with open(file, "w") as f: | |
f.write("FASTQ files for SRA ID: " + sra_id) | |
f.write("file1.fastq") | |
f.write("file2.fastq") | |
return "FASTQ files downloaded successfully!", file |
def download_fastq_files(sra_id): | |
file = "fastq_files.txt" | |
with open(file, "w") as f: | |
f.write("FASTQ files for SRA ID: " + sra_id) | |
f.write("file1.fastq") | |
f.write("file2.fastq") | |
return "FASTQ files downloaded successfully!", file |