-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e5c5aa2
commit a5a2935
Showing
1 changed file
with
30 additions
and
0 deletions.
There are no files selected for viewing
30 changes: 30 additions & 0 deletions
30
src/depiction_targeted_preproc/app/config_presets/dev_presets_timstof.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# No baseline correction | ||
baseline_correction: null | ||
# No peak picking | ||
pick_peaks: null | ||
# No peak filtering (we only filter for calibration below) | ||
filter_peaks: null | ||
# The calibration settings: | ||
# - less max distance (6x less) | ||
# - percentile based filtering for distance smoothing | ||
# - filter a low number of peaks for each filtering | ||
calibration: | ||
method: | ||
calibration_method: RegressShift | ||
max_distance: 500 | ||
max_distance_unit: ppm | ||
reg_model_type: linear_siegelslopes | ||
reg_model_unit: mz | ||
spatial_smoothing: | ||
type: PercentileFilter | ||
kernel_size: 5 | ||
percentile: 0.25 | ||
kernel_shape: square | ||
min_points: 3 | ||
peak_filtering: | ||
filters: | ||
# TODO try something snr based next as this would be easier to interpretate | ||
- method: FilterNHighestIntensityPartitioned | ||
max_count: 300 | ||
n_partitions: 10 | ||
n_jobs: 10 |