... | ... |
@@ -2,7 +2,7 @@ Package: EventPointer |
2 | 2 |
Type: Package |
3 | 3 |
Title: An effective identification of alternative splicing events |
4 | 4 |
using junction arrays and RNA-Seq data |
5 |
-Version: 2.3.3 |
|
5 |
+Version: 2.3.4 |
|
6 | 6 |
Author: Juan Pablo Romero, Juan A. Ferrer-Bonsoms, Pablo Sacristan, Ander Muniategui, Fernando Carazo, Ander Aramburu, Angel Rubio |
7 | 7 |
Maintainer: Juan Pablo Romero <jpromero@ceit.es> |
8 | 8 |
Description: EventPointer is an R package to identify alternative splicing events |
10 | 10 |
deleted file mode 100644 |
... | ... |
@@ -1,163 +0,0 @@ |
1 |
-test_FindPrimers <- function() { |
|
2 |
- |
|
3 |
- obs <- tryCatch(FindPrimers(SG = NULL, |
|
4 |
- EventNum = 4, |
|
5 |
- Primer3Path = "C:\\PROGRA~2\\primer3\\PRIMER~1.EXE", |
|
6 |
- Dir = "C:\\PROGRA~2\\primer3\\", |
|
7 |
- taqman = 1, |
|
8 |
- nProbes=1, |
|
9 |
- nPrimerstwo=4, |
|
10 |
- ncommonForward=4, |
|
11 |
- ncommonReverse=4, |
|
12 |
- nExons=10, |
|
13 |
- nPrimers =5, |
|
14 |
- maxLength = 1200), error=conditionMessage) |
|
15 |
- |
|
16 |
- checkIdentical("SG field is empty", obs) |
|
17 |
- |
|
18 |
- obs <- tryCatch( |
|
19 |
- FindPrimers(SG = list(), |
|
20 |
- EventNum = 0, |
|
21 |
- Primer3Path = "C:\\PROGRA~2\\primer3\\PRIMER~1.EXE", |
|
22 |
- Dir = "C:\\PROGRA~2\\primer3\\", |
|
23 |
- taqman = 1, |
|
24 |
- nProbes=1, |
|
25 |
- nPrimerstwo=4, |
|
26 |
- ncommonForward=4, |
|
27 |
- ncommonReverse=4, |
|
28 |
- nExons=10, |
|
29 |
- nPrimers =5, |
|
30 |
- maxLength = 1200), error=conditionMessage) |
|
31 |
- checkIdentical("EventNum field is empty or is not > 0", obs) |
|
32 |
- |
|
33 |
- obs <- tryCatch( |
|
34 |
- FindPrimers(SG = list(), |
|
35 |
- EventNum = -45, |
|
36 |
- Primer3Path = "C:\\PROGRA~2\\primer3\\PRIMER~1.EXE", |
|
37 |
- Dir = "C:\\PROGRA~2\\primer3\\", |
|
38 |
- taqman = 1, |
|
39 |
- nProbes=1, |
|
40 |
- nPrimerstwo=4, |
|
41 |
- ncommonForward=4, |
|
42 |
- ncommonReverse=4, |
|
43 |
- nExons=10, |
|
44 |
- nPrimers =5, |
|
45 |
- maxLength = 1200), error=conditionMessage) |
|
46 |
- checkIdentical("EventNum field is empty or is not > 0", obs) |
|
47 |
- |
|
48 |
- obs <- tryCatch( |
|
49 |
- FindPrimers(SG = list(), |
|
50 |
- EventNum = NULL, |
|
51 |
- Primer3Path = "C:\\PROGRA~2\\primer3\\PRIMER~1.EXE", |
|
52 |
- Dir = "C:\\PROGRA~2\\primer3\\", |
|
53 |
- taqman = 1, |
|
54 |
- nProbes=1, |
|
55 |
- nPrimerstwo=4, |
|
56 |
- ncommonForward=4, |
|
57 |
- ncommonReverse=4, |
|
58 |
- nExons=10, |
|
59 |
- nPrimers =5, |
|
60 |
- maxLength = 1200), error=conditionMessage) |
|
61 |
- checkIdentical("EventNum field is empty or is not > 0", obs) |
|
62 |
- |
|
63 |
- |
|
64 |
- obs <- tryCatch( |
|
65 |
- FindPrimers(SG = list(), |
|
66 |
- EventNum = 4, |
|
67 |
- Primer3Path = "", |
|
68 |
- Dir = "C:\\PROGRA~2\\primer3\\", |
|
69 |
- taqman = 1, |
|
70 |
- nProbes=1, |
|
71 |
- nPrimerstwo=4, |
|
72 |
- ncommonForward=4, |
|
73 |
- ncommonReverse=4, |
|
74 |
- nExons=10, |
|
75 |
- nPrimers =5, |
|
76 |
- maxLength = 1200), error=conditionMessage) |
|
77 |
- checkIdentical("Primer3Path field should point to the .exe of Primers3. |
|
78 |
- Check in the vignette for more information", obs) |
|
79 |
- |
|
80 |
- obs <- tryCatch( |
|
81 |
- FindPrimers(SG = list(), |
|
82 |
- EventNum = 4, |
|
83 |
- Primer3Path = NULL, |
|
84 |
- Dir = "C:\\PROGRA~2\\primer3\\", |
|
85 |
- taqman = 1, |
|
86 |
- nProbes=1, |
|
87 |
- nPrimerstwo=4, |
|
88 |
- ncommonForward=4, |
|
89 |
- ncommonReverse=4, |
|
90 |
- nExons=10, |
|
91 |
- nPrimers =5, |
|
92 |
- maxLength = 1200), error=conditionMessage) |
|
93 |
- checkIdentical("Primer3Path field is empty", obs) |
|
94 |
- |
|
95 |
- |
|
96 |
- |
|
97 |
- |
|
98 |
- |
|
99 |
- # obs <- tryCatch( |
|
100 |
- # FindPrimers(SG = list(), |
|
101 |
- # EventNum = 1, |
|
102 |
- # Primer3Path = "./inst/extdata/DONSON.gtf", |
|
103 |
- # Dir = "", |
|
104 |
- # taqman = 1, |
|
105 |
- # nProbes=1, |
|
106 |
- # nPrimerstwo=4, |
|
107 |
- # ncommonForward=4, |
|
108 |
- # ncommonReverse=4, |
|
109 |
- # nExons=10, |
|
110 |
- # nPrimers =5, |
|
111 |
- # maxLength = 1200), error=conditionMessage) |
|
112 |
- # checkIdentical("Dir = Complete path where primer3web_v4_0_0_default_settings.txt file and primer3_config directory are stored", obs) |
|
113 |
- # |
|
114 |
- |
|
115 |
- |
|
116 |
- obs <- tryCatch( |
|
117 |
- FindPrimers(SG = list(), |
|
118 |
- EventNum = 1, |
|
119 |
- Primer3Path = "./inst/extdata/DONSON.gtf", |
|
120 |
- Dir = NULL, |
|
121 |
- taqman = 1, |
|
122 |
- nProbes=1, |
|
123 |
- nPrimerstwo=4, |
|
124 |
- ncommonForward=4, |
|
125 |
- ncommonReverse=4, |
|
126 |
- nExons=10, |
|
127 |
- nPrimers =5, |
|
128 |
- maxLength = 1200), error=conditionMessage) |
|
129 |
- checkIdentical("Dir field is empty", obs) |
|
130 |
- |
|
131 |
- obs <- tryCatch( |
|
132 |
- FindPrimers(SG = list(), |
|
133 |
- EventNum = 1, |
|
134 |
- Primer3Path = "./inst/extdata/DONSON.gtf", |
|
135 |
- Dir = "C:\\PROGRA~2\\primer3\\", |
|
136 |
- taqman = NA, |
|
137 |
- nProbes=1, |
|
138 |
- nPrimerstwo=4, |
|
139 |
- ncommonForward=4, |
|
140 |
- ncommonReverse=4, |
|
141 |
- nExons=10, |
|
142 |
- nPrimers =5, |
|
143 |
- maxLength = 1200), error=conditionMessage) |
|
144 |
- checkIdentical("taqman field is empty", obs) |
|
145 |
- |
|
146 |
- |
|
147 |
- obs <- tryCatch( |
|
148 |
- FindPrimers(SG = list(), |
|
149 |
- EventNum = 1, |
|
150 |
- Primer3Path = "C:\\PROGRA~2\\primer3\\PRIMER~1.EXE", |
|
151 |
- Dir = "C:\\PROGRA~2\\primer3\\", |
|
152 |
- taqman = 3, |
|
153 |
- nProbes=1, |
|
154 |
- nPrimerstwo=4, |
|
155 |
- ncommonForward=4, |
|
156 |
- ncommonReverse=4, |
|
157 |
- nExons=10, |
|
158 |
- nPrimers =5, |
|
159 |
- maxLength = 1200), error=conditionMessage) |
|
160 |
- checkIdentical("taqman variable should be equal to 1 or 0", obs) |
|
161 |
- |
|
162 |
- |
|
163 |
-} |