-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathREADME
88 lines (56 loc) · 2.47 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
pvconv
------
pvconv is a converter for Bruker format MRI image data. It contains
some programs including the converter, and libraries supporting reads
of Bruker data and handling of Analyze and matlab format files.
See html documentation at http://pvconv.sourceforge.net.
PREREQUISITES
In order to install and use this package you will need Perl version 5.
Some modules within this package depend on other packages that are
distributed separately from Perl. We will need the following packages
installed before you install pvconv:
Math-Matrix
Getopt-ArgvFile
These packages should be available on CPAN (see below).
INSTALLATION
You install pvconv using the normal perl module distribution drill:
perl Makefile.PL
make
make install
If you want to install a private copy of pvconv in your home
directory, then you should try to produce the initial Makefile with
something like this command:
perl Makefile.PL PREFIX=~/perl
This will put all the library modules in ~/perl/lib, and the scripts
in ~/perl/bin. If you want to be more tricky you could try something
like:
perl Makefile.PL LIB=~/perl INSTALLBIN=~/bin
will put the libraries into ~/perl/lib, and the scripts into ~/bin.
The Makefile.PL program will start out by checking your perl
installation for a few packages that are recommended to be installed
together with pvconv.
DOCUMENTATION
There is html documentation at http://pvconv.sourceforge.net. Also,
see the pod documentation in pvconv.pl for an overview of the
program. See ./CHANGES for recent changes.
POD style documentation is included in the scripts pvconv.pl and
pvshow.pl. These are normally converted to manual pages and installed
as part of the "make install" process. You should also be able to use
the 'perldoc' utility to extract and read documentation from the files
directly.
LINKS
The example Bruker data text files report themselves as being in JCAMP-DX
format. For information on this format, see:
http://jcamp-dx.org/
In particular, the example files say they are in JCAMP-DX 4.24 format. The
reference for this format appears to be:
http://jcamp-dx.org/protocols/dxir01.pdf
SUPPORT
Please send questions and bug reports to [email protected]
AVAILABILITY
The latest version of pvconv should always be available from:
http://pvconv.sourceforge.net
COPYRIGHT
© 2001-2004 Matthew Brett. Andrew Janke. All rights reserved.
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.