Skip to content

Commit 9933cb8

Browse files
committed
Version 1.1
1 parent c0aa39d commit 9933cb8

4 files changed

Lines changed: 61 additions & 4 deletions

File tree

README.rst

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Nanometer-scale pores have demonstrated potential use in biotechnology applicati
88

99
**If you use MOSAIC in your work, please cite:**
1010

11-
A. Balijepalli, J., Ettedgui, A. T. Cornio, J. W. F. Robertson K. P. Cheung, J. J. Kasianowicz & C. Vaz, "`Quantifying Short-Lived Events in Multistate Ionic Current Measurements. <http://pubs.acs.org/doi/abs/10.1021/nn405761y>`_" *ACS Nano* 2014, **8**, 1547–1553.
11+
\A. Balijepalli, J., Ettedgui, A. T. Cornio, J. W. F. Robertson K. P. Cheung, J. J. Kasianowicz & C. Vaz, "`Quantifying Short-Lived Events in Multistate Ionic Current Measurements. <http://pubs.acs.org/doi/abs/10.1021/nn405761y>`_" *ACS Nano* 2014, **8**, 1547–1553.
1212

1313

1414
Installation
@@ -25,6 +25,13 @@ You can `contact MOSAIC developers <http://www.nist.gov/cgi-bin/wwwph/cso.nist.g
2525
Change Log
2626
=================================
2727

28+
**v1.1**
29+
30+
- [Addons] IGOR_ support.
31+
- PyPi package automatically installs MOSAIC dependencies.
32+
- Miscellaneous bug fixes.
33+
- *Known Issues:* See #8 and #10.
34+
2835
**v1.0**
2936

3037
- Fixed a bug in multistate code that constrained the RC constant resulting in systematic fitting errors (pull request #25).

data/README.rst

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
PEG 28 Reference Data
2+
=================================
3+
4+
Sample
5+
----------------------------
6+
7+
Analyte: PEG28, PolyPure Norway
8+
Electrolyte: 4 M KCl, 10 mM TRIS, pH 7.0
9+
10+
Instrumentation
11+
----------------------------
12+
13+
Electronic Biosciences AC Amplifier
14+
Bandwidth=100 kHz
15+
Sampling Frequency=500 kHz
16+
17+
Analysis
18+
----------------------------
19+
20+
Algorithm: MOSAIC StepResponse
21+
OutputDB: eventMD-PEG28-Reference.sqlite
22+
Settings:
23+
24+
{
25+
"stepResponseAnalysis": {
26+
"FitTol": 1e-07,
27+
"BlockRejectRatio": 0.9,
28+
"FitIters": 50000
29+
},
30+
"qdfTrajIO": {
31+
"filter": "*.qdf",
32+
"start": 0.0,
33+
"Cfb": 1.07e-12,
34+
"dcOffset": 0.0,
35+
"Rfb": 9100000000.0
36+
},
37+
"eventSegment": {
38+
"meanOpenCurr": -1.0,
39+
"slopeOpenCurr": -1.0,
40+
"eventPad": 50,
41+
"driftThreshold": 999.0,
42+
"maxDriftRate": 999.0,
43+
"eventThreshold": 3.9373285666187976,
44+
"writeEventTS": 1,
45+
"minEventLength": 5,
46+
"sdOpenCurr": -1.0,
47+
"reserveNCPU": 3,
48+
"parallelProc": 0,
49+
"blockSizeSec": 0.5
50+
}
51+
}

mosaic/settings.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -91,13 +91,12 @@ def getSettings(self, section):
9191
},
9292
"stepResponseAnalysis" : {
9393
"FitTol" : "1.e-7",
94-
"FitIters" : "50000",
95-
"BlockRejectRatio" : "0.9"
94+
"FitIters" : "50000"
9695
},
9796
"multiStateAnalysis" : {
9897
"FitTol" : "1.e-7",
9998
"FitIters" : "50000",
100-
"InitThreshold" : "5.0"
99+
"InitThreshold" : "3.0"
101100
},
102101
"besselLowpassFilter" : {
103102
"filterOrder" : "6",

0 commit comments

Comments
 (0)