2

我一直在努力让 C++ 变得越来越舒服,并且我已经开始尝试编写一些文件操作的东西。我已经完成了能够解析 fasta 文件的事情的一半,但我有点卡住了:

#include<fstream>
#include<iostream>
#include<string>
#include<vector>

using namespace std;

//A function for reading in DNA files in FASTA format.
void fastaRead(string file)
{
    ifstream inputFile;
    inputFile.open(file);
    if (inputFile.is_open()) {
        vector<string> seqNames;
        vector<string> sequences;
        string currentSeq;
        string line;
        while (getline(inputFile, line))
        {
            if (line[0] == '>') {
                seqNames.push_back(line);
            }
        }
    }
    for( int i = 0; i < seqNames.size(); i++){
        cout << seqNames[i] << endl;
    }
    inputFile.close();
}

int main()
{
    string fileName;
    cout << "Enter the filename and path of the fasta file" << endl;
    getline(cin, fileName);
    cout << "The file name specified was: " << fileName << endl;
    fastaRead(fileName);
    return 0;
}

该函数应该通过一个文本文件,如下所示:

Hello World!
>foo
bleep bleep
>nope

并识别以 '>' 开头的那些并将它们推送到向量 seqNames 上,然后将内容报告回命令行。- 所以我正在尝试编写检测快速格式磁头的能力。但是,当我编译时,我被告知:

n95753:Desktop wardb$ g++ testfasta.cpp
testfasta.cpp:25:25: error: use of undeclared identifier 'seqNames'
    for( int i = 0; i < seqNames.size(); i++){
                        ^
testfasta.cpp:26:17: error: use of undeclared identifier 'seqNames'
        cout << seqNames[i] << endl;

但是我很确定我在该行中声明了向量: vector<string> seqNames;

谢谢,本。

4

2 回答 2

5

这是因为您在if. 您需要将声明移出,以便您的while循环也可以看到它们:

vector<string> seqNames;
vector<string> sequences;
if (inputFile.is_open()) {
    string currentSeq;
    string line;
    while (getline(inputFile, line))
    {
        if (line[0] == '>') {
            seqNames.push_back(line);
        }
    }
}
for( int i = 0; i < seqNames.size(); i++){
    cout << seqNames[i] << endl;
}
于 2013-11-06T18:55:57.333 回答
2
if (inputFile.is_open()) {
    vector<string> seqNames;
    vector<string> sequences;
    ...
}
for( int i = 0; i < seqNames.size(); i++){
    cout << seqNames[i] << endl;
}

seqNames在声明范围内定义if。在if语句之后,标识符seqNames未定义。在涵盖if和的范围内更早地定义它for

于 2013-11-06T18:56:40.047 回答