Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/alignToMeth.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ int byread(BamTools::BamAlignment al,
al.GetTag("XM:Z:", Meth);
std::string strand="+";
if (al.IsReverseStrand()) {
std::reverse(Meth.begin(), Meth.end());
// std::reverse(Meth.begin(), Meth.end());
strand="-";
}
for (int i = 0; i < al.QueryBases.size(); i++) {
Expand Down
2 changes: 1 addition & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ int main(int argc, const char * argv[])
//default distance cutoff: 72 // trying to match seq length
int d=72;
//default read coverage: 60
int cov=60;
int cov=10;

std::cerr << "Default program paramters for methclone: \nMax loci width: " << d << " bp" << std::endl;
std::cerr << "Min methylation difference cutoff: " << m << "%" << std::endl;
Expand Down