尝试插入 unordered_map 时,当 datact=10736 时发生分段错误(请参阅调用引发错误的注释行)。请参阅下面的尝试修复。
当 SIGSEGV 被抛出时,它指向我的第 764 行hashtable_policy.h
INPUT:column1=counts, column2=16-character strings 的数据文件
目的:通过将所有 1 替换不同序列的计数相加来聚类 16 个字符的序列。看到的第一个序列是“起源”,通过它可以识别它的所有 1 替换朋友。
PSEUDOCODE:对于文件中的每一行:
读计数,读序列。
如果序列 key_value 存在于哈希“位置”(类型 unordered_map)中,则添加当前计数;
否则创建一个新的 key_value,让它指向这里的计数,并分配所有 1 替换序列也指向这个计数。
代码:
#include <iostream>
#include <fstream>
#include <string>
#include <sstream>
#include <cmath>
#include <vector>
#include <unordered_map>
#include <map>
#include "matrix.h"
using namespace std;
int nuc2num(char currchar)
{ // returns 0,1,2,3 for A,C,T,G respectively
int outnum;
if (currchar=='A')
{
outnum=0;
}
else if (currchar=='C')
{
outnum=1;
}
else if (currchar=='T')
{
outnum=2;
}
else
{
outnum=3;
}
return outnum;
}
int main(int argc, char* argv[])
{
//command line arguments
// arg1=filename, arg2=barcode sequence length, arg3=#mismatches permitted
//input handling
// file format: column 1 | column 2
// counts | sequence [int | string]
string filename;
string funnelstring;
// define lookup matrix; rows=ACTG, cols = ACTG without row element
Matrix <char> sub_lookup(4,3);
sub_lookup[0][0] = 'C';
sub_lookup[0][1] = 'T';
sub_lookup[0][2] = 'G';
sub_lookup[1][0] = 'A';
sub_lookup[1][1] = 'T';
sub_lookup[1][2] = 'G';
sub_lookup[2][0] = 'A';
sub_lookup[2][1] = 'C';
sub_lookup[2][2] = 'G';
sub_lookup[3][0] = 'A';
sub_lookup[3][1] = 'C';
sub_lookup[3][2] = 'T';
int L,k;
int j=0;
const int buffersize=10000;
int currentsize=buffersize;
int datact=0;
int currchar;
vector <unsigned int> ctarr(buffersize);
vector <string> seqarr(buffersize);
filename=argv[1];
L=atoi(argv[2]);
k=atoi(argv[3]);
unsigned int sct;
int substrlen;
string sequence,textct;
ifstream seqfile (filename.c_str());
//map <string,unsigned int*> location;
unordered_map <string,unsigned int*> location;
if (seqfile.is_open())
{
getline(seqfile,textct,'\n');
while (textct != "")
{
sct=atoi(textct.c_str());
substrlen=textct.length();
//cout << textct << endl;
sequence=textct.substr(substrlen-L,L);
//cout << sequence << endl;
//is there an associated guy?
if (location.find(sequence) != location.end()) //just asks whether this key has been assigned
{ //there's a value in the region
*location[sequence]+=sct;
}
else
{ //no value in region, make a footprint
ctarr[datact]=sct;
seqarr[datact]=sequence;
location[sequence]=&ctarr[datact]; //assign current key to point to data count
//assign k substitution "funnel" region to point to this count as well
for (j=0; j<L; j++)
{
funnelstring=sequence;
currchar = nuc2num(sequence[j]);
if (datact==10736 && j==13)
{
cout << "here" << endl;
cout << sequence << endl;
}
for (k=0; k<3; k++)
{
funnelstring[j]=sub_lookup[currchar][k];
// if (datact==10736 && j==13)
// {
// cout << funnelstring << endl;
// cout << location.max_size() << " | " << location.size() << endl;
// string asdf;
// asdf="AAAAAAAAAAAAAAAA";
// location[asdf]=&ctarr[datact]; //still segfaults
// }
if (location.find(funnelstring) == location.end()) // asks whether this key has been assigned
{ //this region is not assigned to another funnel
location[funnelstring]=&ctarr[datact]; //LINE THAT CAUSES SIGSEGV
}
}
}
datact++;
cout << datact << endl;
if (datact>=currentsize)
{
ctarr.resize(currentsize+buffersize);
seqarr.resize(currentsize+buffersize);
currentsize+=buffersize;
}
}
getline(seqfile,textct,'\n');
}
seqfile.close();
}
探索。
- 添加什么键无关紧要,何时
datact==10736
和j=13
,添加到 (unordered_map) 位置的任何键都会导致 SIGSEGV。 - 有问题的代码行(由上面的注释标记)被多次调用,并且运行正确。
- 将 unordered_map 交换为 map 会导致相同的事件,但 datact 的计数不同(更高)。仍然很低(在
datact
==16-35 千之间)。 - 据我所知,几乎完全重写此代码,但随机生成的 16 个字符序列可以完美地工作(数据集没有段错误,最高 200,000,没有测试更高)。
- 在 (4) 中的代码中,似乎在 10000 左右有一次重新散列,这可能是相关的,也可能是巧合。
如果需要,我可以发布读取的数据文件。
编辑:解决
而不是unordered_map <string,unsigned int*> location
,替换为unordered_map <string,unsigned int> location
(value_type 是 int 而不是 int*)。现在 value_type 将索引保存在 ctarr[] 中。运行良好。谢谢!