From 5325ea6c7e3c19f0bae0dfc4a9c45024fca92b34 Mon Sep 17 00:00:00 2001 From: Christoph Gohlke Date: Thu, 18 Nov 2021 10:58:55 -0800 Subject: [PATCH] Update sdtfile/sdt2dat.py --- sdtfile/sdt2dat.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/sdtfile/sdt2dat.py b/sdtfile/sdt2dat.py index 578534c..2f1a6d0 100644 --- a/sdtfile/sdt2dat.py +++ b/sdtfile/sdt2dat.py @@ -44,18 +44,18 @@ :License: BSD 3-Clause -:Version: 2021.3.21 +:Version: 2021.11.18 For command line usage run ``python -m sdtfile.sdt2dat --help`` For example, to analyze the decay curve in `file.sdt` using a reference decay -in `reference.sdt` with lifetime 4.0 ns, after subtreacting a background of +in `reference.sdt` with lifetime 4.0 ns, after subtracting a background of 100 and extracting data in range 500 to 3900: ``sdt2dat -r reference.sdt -l 4.0 -b 100 -s 500 3900 file.sdt`` -The decay curves will be saved to `file.sdt.dat`. Phasor coordinates will be -saved to `sdtphasor.tsv`. +The decay curves are saved to `file.sdt.dat`. Phasor coordinates are saved +to `sdtphasor.tsv`. This script depends on Python >= 3.7 and the matplotlib, numpy, and click libraries, which can be installed with: @@ -64,7 +64,7 @@ """ -__version__ = '2021.3.21' +__version__ = '2021.11.18' import os import sys