-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathREADME
65 lines (46 loc) · 1.89 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
README
--------------------------------------------
GenBank2Any v. 0.2
(c) 2008 Jacob Israel Cervantes Luevano
http://www.langebio.cinvestav.mx
http://www.langebio.cinvestav.mx/bioinformatica/jacob
Langebio Cinvestav, Dept. of Bioinformatics
--------------------------------------------
TABLE OF CONTENTS
I. INTRODUCTION
II. REQUIRIMENTS
III. INSTRUCTIONS
IV. NOTES
Introduction
============
GenBank2Any allows to extract the sequences in several formats and separate files, each file contains the complete sequence
Requiriments
============
- Mono Runtime 1.9.1 and Mono C# Compilers(for.NET 1.1 and .NET 2.0)
- sharpPDF dynamic link library are included
* Optionally you can use the Microsoft.NET C# Compilers
This program runs on Windows, Linux, Mac OS X , iPhone and Android.
No Makefile included, sorry.
Instructions
============
to compile follow this steps:
a) compile a GenBank2Html , IGenBank2Any :
$gmcs GenBank2Html.cs IGenBank2Any.cs -t:library -out:GenBank2Html.dll
b) compile a GenBank2Text , IGenBank2Any :
$gmcs GenBank2Text.cs IGenBank2Any.cs -t:library -out:GenBank2Text.dll
c) compile a GenBank2Pdf, IGenBank2Any :
$gmcs GenBank2Pdf.cs IGenBank2Any.cs -r:sharpPDF.dll -t:library -out:GenBank2Pdf.dll
d) compile the main program :
$gmcs -r:GenBank2Html.dll,GenBank2Text.dll,GenBank2Pdf.dll Main.cs -out:GenBank2Any.exe
to run:
a) mono GenBank2Any.exe --file test/testdata.gb --mode html --> generate html files
b) mono GenBank2Any.exe --file test/testdata.gb --mode text --> generate text files
c) mono GenBank2Any.exe --file test/testdata.gb --mode pdf --> generate pdf files
d) mono GenBank2Any.exe --help
Notes:
- only html,text and pdf modes are supported.
- you can use a relative or absolute paths to the parameter --file.
Futures:
- Makefile or autotools in next versions.
- more modes.
by jcervantes at ira period cinvestav period mx , 2008, Mexico.