Changeset 3253 for trunk/GSASIIscriptable.py
- Timestamp:
- Feb 1, 2018 10:15:35 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GSASIIscriptable.py
r3223 r3253 2679 2679 commandhelp["create"] = "creates a GSAS-II project, optionally adding histograms and/or phases" 2680 2680 def create(args): 2681 """ The create subcommand. This creates a GSAS-II project, optionally adding histograms and/or phases::2681 """Implements the create command-line subcommand. This creates a GSAS-II project, optionally adding histograms and/or phases:: 2682 2682 2683 2683 usage: GSASIIscriptable.py create [-h] [-d HISTOGRAMS [HISTOGRAMS ...]] … … 2723 2723 commandhelp["add"] = "adds histograms and/or phases to GSAS-II project" 2724 2724 def add(args): 2725 """ The addsubcommand. This adds histograms and/or phases to GSAS-II project::2725 """Implements the add command-line subcommand. This adds histograms and/or phases to GSAS-II project:: 2726 2726 2727 2727 usage: GSASIIscriptable.py add [-h] [-d HISTOGRAMS [HISTOGRAMS ...]] … … 2788 2788 commandhelp["dump"] = "Shows the contents of a GSAS-II project" 2789 2789 def dump(args): 2790 """ The dump subcommandshows the contents of a GSAS-II project::2790 """Implements the dump command-line subcommand, which shows the contents of a GSAS-II project:: 2791 2791 2792 2792 usage: GSASIIscriptable.py dump [-h] [-d] [-p] [-r] files [files ...] … … 2856 2856 ''' 2857 2857 def refine(args): 2858 """Conducts refinements on GSAS-II projects according to a JSON refinement dict:: 2858 """Implements the refine command-line subcommand: 2859 conducts refinements on GSAS-II projects according to a JSON refinement dict:: 2859 2860 2860 2861 usage: GSASIIscriptable.py refine [-h] gpxfile [refinements] … … 2888 2889 commandhelp["seqrefine"] = "Not implemented. Placeholder for eventual sequential refinement implementation" 2889 2890 def seqrefine(args): 2890 """ The seqrefine subcommand"""2891 """Future implementation for the seqrefine command-line subcommand """ 2891 2892 raise NotImplementedError("seqrefine is not yet implemented") 2892 2893 … … 2894 2895 commandhelp["export"] = "Export phase as CIF" 2895 2896 def export(args): 2896 """ The exportsubcommand: Exports phase as CIF::2897 """Implements the export command-line subcommand: Exports phase as CIF:: 2897 2898 2898 2899 usage: GSASIIscriptable.py export [-h] gpxfile phase exportfile
Note: See TracChangeset
for help on using the changeset viewer.