Skip to content

Commit 2413dbe

Browse files
author
a_anil
committed
Update output spacing
1 parent 1c02725 commit 2413dbe

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/Find_Interactions.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,10 +109,10 @@ void DetectInteractions::CalculatePvalAndPrintInteractionsProbeDistal(ProbeSet&
109109

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

112-
outf1 << "Interactor Chr" << '\t' << "Interactor Start" << '\t' << "Interactor End" << '\t' << "distance" << '\t';
112+
outf1 << "Interactor Chr" << '\t' << "Interactor Start" << '\t' << "Interactor End" << '\t' << "distance" ;
113113

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

118118
std::map<std::string, FeatureStruct>::iterator featiter;

src/ProxDetectMain.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -583,7 +583,7 @@ int HiCapTools::ProxDetectMain(std::string whichchr, std::string statsOption, st
583583
log << "Number_of_Pairs_One_Read_on_Probe" << '\t' << NofPairs_One_on_Probe << std::endl;
584584
log << "Number_of_Pairs_None_on_Probe" << '\t' << NofPairsNoAnn << std::endl;
585585
log << "FractionofPairsOnProbe" << '\t' << (NumberofPairs)/double(totalNumberofPairs) << std::endl;
586-
NumberofPairs = 0; NofPairs_Both_on_Probe = 0; NofPairs_One_on_Probe = 0; NofPairsNoAnn = 0;
586+
totalNumberofPairs = 0; NumberofPairs = 0; NofPairs_Both_on_Probe = 0; NofPairs_One_on_Probe = 0; NofPairsNoAnn = 0;
587587
}
588588
bamfile.ProcessSortedBAMFile(ProbeClass, dpnII, proximities, Exptemp.filepath, ExperimentNo, whichchr, Exptemp.designname, statsOption, proms);
589589

0 commit comments

Comments
 (0)