Skip to content

Commit

Permalink
Update output spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
a_anil committed Sep 8, 2017
1 parent 1c02725 commit 2413dbe
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/Find_Interactions.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -109,10 +109,10 @@ void DetectInteractions::CalculatePvalAndPrintInteractionsProbeDistal(ProbeSet&

outf1 << "RefSeqName" << '\t' << "TranscriptName" << '\t' << "Feature_ID" << '\t' << "Probe_ID" << '\t' << "Feature Chr" << '\t' << "Feature Start" << '\t' << "Feature End" << '\t' << "Annotation" << '\t' << "Strand" << '\t';

outf1 << "Interactor Chr" << '\t' << "Interactor Start" << '\t' << "Interactor End" << '\t' << "distance" << '\t';
outf1 << "Interactor Chr" << '\t' << "Interactor Start" << '\t' << "Interactor End" << '\t' << "distance" ;

for (int e = 0; e < NumberofExperiments; ++e)
outf1 << ExperimentNames[e] << "_SuppPairs" << '\t' << ExperimentNames[e] << "_p_value" ;
outf1 << '\t'<< ExperimentNames[e] << "_SuppPairs" << '\t' << ExperimentNames[e] << "_p_value" ;
outf1 << std::endl;

std::map<std::string, FeatureStruct>::iterator featiter;
Expand Down
2 changes: 1 addition & 1 deletion src/ProxDetectMain.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -583,7 +583,7 @@ int HiCapTools::ProxDetectMain(std::string whichchr, std::string statsOption, st
log << "Number_of_Pairs_One_Read_on_Probe" << '\t' << NofPairs_One_on_Probe << std::endl;
log << "Number_of_Pairs_None_on_Probe" << '\t' << NofPairsNoAnn << std::endl;
log << "FractionofPairsOnProbe" << '\t' << (NumberofPairs)/double(totalNumberofPairs) << std::endl;
NumberofPairs = 0; NofPairs_Both_on_Probe = 0; NofPairs_One_on_Probe = 0; NofPairsNoAnn = 0;
totalNumberofPairs = 0; NumberofPairs = 0; NofPairs_Both_on_Probe = 0; NofPairs_One_on_Probe = 0; NofPairsNoAnn = 0;
}
bamfile.ProcessSortedBAMFile(ProbeClass, dpnII, proximities, Exptemp.filepath, ExperimentNo, whichchr, Exptemp.designname, statsOption, proms);

Expand Down

0 comments on commit 2413dbe

Please sign in to comment.