File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 1
1
# Scilifelab_epps Version Log
2
2
3
+ ## 20250304.1
4
+
5
+ Update formulas to match updated [ NEB calc tool] ( https://nebiocalculator.neb.com/#!/dsdnaamt ) , assuming deprotonated phosphate hydroxyls.
6
+
3
7
## 20250218.1
4
8
5
9
Bugfix demux script by skipping outputs that do not contain the relevant sample name.
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ def ng_to_fmol(ng, bp):
10
10
Formula based on NEBioCalculator
11
11
https://nebiocalculator.neb.com/#!/dsdnaamt
12
12
"""
13
- return 10 ** 6 * ng / (bp * 617 .96 + 36.04 )
13
+ return 10 ** 6 * ng / (bp * 615 .96 + 36.04 )
14
14
15
15
16
16
def ng_ul_to_nM (ng_ul , bp ):
@@ -23,7 +23,7 @@ def fmol_to_ng(fmol, bp):
23
23
Formula based on NEBioCalculator
24
24
https://nebiocalculator.neb.com/#!/dsdnaamt
25
25
"""
26
- return fmol * (bp * 617 .96 + 36.04 ) / 10 ** 6
26
+ return fmol * (bp * 615 .96 + 36.04 ) / 10 ** 6
27
27
28
28
29
29
def nM_to_ng_ul (nM , bp ):
You can’t perform that action at this time.
0 commit comments