File tree 3 files changed +6
-6
lines changed
3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -110,14 +110,14 @@ Example
110
110
Navigate to the directory that contains 1D diffraction patterns that you would like to process.
111
111
Activate the conda environment (`conda activate diffpy.labpdfproc_env `) that contains the package and run the following command ::
112
112
113
- labpdfproc <muD> < path/to/inputfile.txt>
113
+ labpdfproc <path/to/inputfile.txt> --mud <muD >
114
114
115
115
Here replace <muD> with the value of muD for your sample
116
116
and <path/to/inputfile.txt> with the path and filename of your input file.
117
117
For example, if the uncorrected data case is called zro2_mo.xy and is in the current directory
118
118
and it has a muD of 2.5 then the command would be ::
119
119
120
- labpdfproc 2.5 zro2_mo.xy
120
+ labpdfproc zro2_mo.xy --mud 2.5
121
121
122
122
Please type ::
123
123
Original file line number Diff line number Diff line change 1
1
**Added: **
2
2
3
- * <news item>
3
+ * Utility and example documentation for `` tools `` module.
4
4
5
5
**Changed: **
6
6
7
- * <news item>
7
+ * Readme: muD now requires the `` --mud `` flag instead of a required argument.
8
8
9
9
**Deprecated: **
10
10
Original file line number Diff line number Diff line change @@ -457,13 +457,13 @@ def preprocessing_args(args):
457
457
The updated argparse Namespace with arguments preprocessed.
458
458
"""
459
459
args = set_mud (args )
460
- args = load_package_info (args )
461
- args = load_user_info (args )
462
460
args = set_input_lists (args )
463
461
args = set_output_directory (args )
464
462
args = set_wavelength (args )
465
463
args = set_xtype (args )
466
464
args = load_user_metadata (args )
465
+ args = load_user_info (args )
466
+ args = load_package_info (args )
467
467
return args
468
468
469
469
You can’t perform that action at this time.
0 commit comments