Skip to content

Commit

Permalink
Add BioFSharp.Mz dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
Freymaurer committed Feb 19, 2021
1 parent cd60fdb commit 15f96f0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
5 changes: 3 additions & 2 deletions docs/JP08_Centroidisation.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ explained under quantification in the following section.
#r "nuget: BioFSharp, 2.0.0-beta5"
#r "nuget: BioFSharp.IO, 2.0.0-beta5"
#r "nuget: Plotly.NET, 2.0.0-beta6"
#r "nuget: BioFSharp.Mz, 0.1.5-beta"

#if IPYNB
#r "nuget: Plotly.NET, 2.0.0-beta6"
Expand Down Expand Up @@ -57,12 +58,12 @@ let ms1PeakPicking (mzData:float []) (intensityData: float []) =
let paddingParams =
SignalDetection.Padding.createPaddingParameters paddYValue (Some 7) 0.05 150 95.
let waveletParameters =
SignalDetection.Wavelet.createWaveletParameters 10 paddYValue 0.1 90. 1.
SignalDetection.Wavelet.createWaveletParameters 10 paddYValue 0.1 90. 1. false false

let paddedMz,paddedIntensity =
SignalDetection.Padding.paddDataBy paddingParams mzData intensityData

BioFSharp.Mz.SignalDetection.Wavelet.toCentroidWithRicker2D waveletParameters paddedMz paddedIntensity
BioFSharp.Mz.SignalDetection.Wavelet.toCentroidWithRicker2D waveletParameters paddedMz paddedIntensity


(**
Expand Down
3 changes: 2 additions & 1 deletion docs/JP11_Quantification.fsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
(**
# Quantification
# JP11 Quantification
1. [Quantification Theory](#Quantification-Theory)<br>
1. [Targeted quantification](#Targeted-quantification)
Expand Down Expand Up @@ -107,6 +107,7 @@ Let’s start and extract a XIC…
#r "nuget: BioFSharp.IO, 2.0.0-beta5"
#r "nuget: Plotly.NET, 2.0.0-beta6"
#r "nuget: System.Data.SQLite, 1.0.113.7"
#r "nuget: BioFSharp.Mz, 0.1.5-beta"

#if IPYNB
#r "nuget: Plotly.NET, 2.0.0-beta6"
Expand Down

0 comments on commit 15f96f0

Please sign in to comment.