Gcosy.c

From NMR Wiki

(Difference between revisions)
Jump to: navigation, search
Current revision (17:02, 21 September 2009) (edit) (undo)
m
 
Line 32: Line 32:
-out test.ft2 -verb 2 -ov
-out test.ft2 -verb 2 -ov
</source>
</source>
-
MC nmrpipe command does magnitude calcuation
+
[[NMRPipe:MC|MC]] nmrpipe command does magnitude calcuation
[[Category:Categorize]]
[[Category:Categorize]]

Current revision

nmrPipe processing scripts

Example conversion scripts

#!/bin/csh
var2pipe -in ./fid -noaswap  \
  -xN             12000  -yN              1024  \
  -xT              6000  -yT              1024  \
  -xMODE        Complex  -yMODE          Real \
  -xSW         5999.700  -ySW         5999.700  \
  -xOBS         499.949  -yOBS         499.949  \
  -xCAR           4.725  -yCAR           4.725  \
  -xLAB              H1  -yLAB              H1  \
  -ndim               2  -aq2D          Magnitude \
  -out ./test.fid -verb -ov

The key parts are that -yN is equal to -yT, -yMODE is 'Real' and -aq2D - 'Magnitude'

Example processing script

#!/bin/csh
nmrPipe -in test.fid \
| nmrPipe  -fn SP -off 0.0 -end 1.00 -pow 1 -c 1.0    \
| nmrPipe  -fn ZF -auto                               \
| nmrPipe  -fn FT -auto                               \
| nmrPipe  -fn TP                                     \
| nmrPipe  -fn SP -off 0.0 -end 1.00 -pow 1 -c 1.0    \
| nmrPipe  -fn ZF -auto                               \
| nmrPipe  -fn FT                               \
| nmrPipe  -fn TP                                     \
| nmrPipe  -fn MC               \
   -out test.ft2 -verb 2 -ov

MC nmrpipe command does magnitude calcuation

Personal tools