Parcourir la source

Versión command line

Jose R Ortiz Ubarri il y a 1 an
Parent
révision
ff678a2129
1 fichiers modifiés avec 53 ajouts et 3 suppressions
  1. 53
    3
      README.md

+ 53
- 3
README.md Voir le fichier

@@ -1,5 +1,55 @@
1
-# maldisoft
1
+# Initial Maldisoft cmdline usage tutorial
2 2
 
3
-Moving the source to a public repository
4
-asa
3
+If you are reading this is because you already unpacked the program.
4
+
5
+If you list the files and directories you will find the directories:
6
+
7
+```
8
+data
9
+html
10
+```
11
+
12
+In the data directory you **MUST** create a sub directory with the data that you want to analyze together and then create a directory inside html where the results will be written.
13
+
14
+For instance for the NIH example:
15
+```
16
+mkdir data/nih
17
+mkdir html/nih
18
+```
19
+
20
+Copy inside `data/nih` the data to be analyzed.
21
+
22
+The list of peaks that you want to analyze is inside the file peaks.txt.  If you want to remove or add a new peak just follow the same format that is inside the file.  
23
+
24
+Currently:
25
+
26
+```
27
+1257.4
28
+1419.5
29
+1581.5
30
+1743.6
31
+1809.7
32
+1905.6
33
+```
34
+
35
+To run the program you just need to follow the following syntax in the terminal:
36
+
37
+```
38
+python maldisoft.py peaks.txt html/sample_name/ data/sample_name/*
39
+```
40
+
41
+For the NIH example it would be:
42
+```
43
+python maldisoft.py peaks.txt html/nih/ data/nih/*
44
+```
45
+
46
+The results should be inside `html/nih`.
47
+
48
+To open the results page in your computer go to the directory and double click the index.html file.
49
+
50
+If you have a mac just do:
51
+
52
+```
53
+open html/nih/index.html
54
+```
5 55