本文主要是介绍fasta文件读取c++代码,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
#include <iostream>
#include <fstream>
#include <string>
#include <vector>using namespace std;
// 读取FASTA格式数据并存储到字符串向量中
void readFasta(const string& filename, vector<string>& sequences, vector<string>& sequenceInfo) {ifstream file(filename); // 打开文件string line;string currentSequence = "";string currentInfo = "";if (file.is_open()) {while (std::getline(file, line)) {if (line.empty()) {continue; // 忽略空行}if (line[0] == '>') { // 如果行以">"开头,则是序列信息行if (!currentSequence.empty()) { // 如果当前序列不为空,则将其存入序列向量sequences.push_back(currentSequence);sequenceInfo.push_back(currentInfo);currentSequence = ""; // 清空当前序列currentInfo = ""; // 清空当前序列信
这篇关于fasta文件读取c++代码的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!