Skip to content

Commit 74ca068

Browse files
committed
Scaling Ratio Change
Change to ‘*’ instead of ‘/‘ to match how the new scaling ratios are calculated
1 parent 57a51ff commit 74ca068

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/scripts/Read_Analysis/PileupScripts/PileupExtract.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -166,8 +166,8 @@ else if(param.getTrans() == 2) {
166166
//Perform Tag Standardization Here
167167
if(param.getStandard()) {
168168
for(int i = 0; i < finalF.length; i++) {
169-
if(finalF != null) finalF[i] /= param.getRatio();
170-
if(finalR != null) finalR[i] /= param.getRatio();
169+
if(finalF != null) finalF[i] *= param.getRatio();
170+
if(finalR != null) finalR[i] *= param.getRatio();
171171
}
172172
}
173173

0 commit comments

Comments
 (0)