Skip to content

Commit

Permalink
Added human data folder in the data directory, and copied the counts …
Browse files Browse the repository at this point in the history
…for both CCDS and GRCh37 from ~/iSG/indel-seq-gen/human_data folder
  • Loading branch information
cstrope committed Aug 20, 2012
1 parent 156da5b commit 6dae018
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/dependency.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Dependency::Dependency(
void contextDependence::readDependencies(string& file)
{
ifstream is;
char line[256];
char line[2096];
int i = 0;
string sequence;
double val;
Expand All @@ -33,7 +33,7 @@ void contextDependence::readDependencies(string& file)
is.open(file.c_str());
int num_lines = 0;
while(is.good()) {
is.getline(line, 256);
is.getline(line, 2096);
split_line = split (line, " ");
if (split_line.size() < 2) break; // last line might have no values, will cause problems.

Expand Down
4 changes: 2 additions & 2 deletions src/propose_path.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -111,8 +111,8 @@ PathProposal::displayPaths(

void
PathProposal::parseEndpointInfile(
string& filename
)
string& filename
)
{
ifstream infile;
string in_buffer = "";
Expand Down

0 comments on commit 6dae018

Please sign in to comment.