Révision e5603c3f doc/sphinx_doc/rref.rst

b/doc/sphinx_doc/rref.rst
4 4
Description
5 5
~~~~~~~~~~~
6 6

  
7
Util to convert Arabicto Roman
7
Utility to convert Arabic numbers to Roman numbers
8 8

  
9 9
Usage
10 10
~~~~~
......
72 72
Description
73 73
~~~~~~~~~~~
74 74

  
75
Util to convert Roman to Arabic
75
Utility to convert Roman numbers into Arabic numbers
76 76

  
77 77
Usage
78 78
~~~~~
......
94 94
Description
95 95
~~~~~~~~~~~
96 96

  
97
This function aggregates nucleosome for replicated samples. It uses
97
This function aggregates nucleosomes from replicated samples. It uses
98 98
TemplateFilter ouput of each sample as replicate. Each sample owns a set
99 99
of nucleosomes computed using TemplateFilter and ordered by the position
100
of their center. Adajacent nucleosomes are compared two by two.
101
Comparison is based on a log likelihood ratio score. The issue of
102
comparison is adjacents nucleosomes merge or separation. Finally the
103
function returns a list of clusters and all computed *llr\_scores*. Each
104
cluster ows an attribute *wp* for "well positionned". This attribute is
105
set as *TRUE* if the cluster is composed of exactly one nucleosomes of
106
each sample.
100
of their center (dyad). A chain of nucleosomes is builts across all
101
replicates. Adjacent nucleosomes of the chain are compared two by two.
102
Comparison is based on a log likelihood ratio (LLR1). depending on the
103
LLR1 value nucleosomes are merged (low LLR) or separated (high LLR).
104
Finally the function returns a list of clusters and all computed
105
llr\_scores. Each cluster ows an attribute wp for “well positioned”.
106
This attribute is set to TRUE if the cluster is composed of exactly one
107
nucleosome of each sample.
107 108

  
108 109
Usage
109 110
~~~~~
......
123 124

  
124 125
``llr_thres``
125 126

  
126
Log likelihood ration threshold.
127
Log likelihood ratio threshold to decide between merging and separating
127 128

  
128 129
``coord_max``
129 130

  
......
176 177
Description
177 178
~~~~~~~~~~~
178 179

  
179
This function aligns nucs between two strains for a given genome region.
180
This function aligns nucleosomes between two strains for a given genome
181
region.
180 182

  
181 183
Usage
182 184
~~~~~
......
196 198

  
197 199
``wp_nucs_strain_ref1``
198 200

  
199
List of aggregates nucleosome for strain 1. If it's null this list will
201
List of aggregates nucleosome for strain 1. If it's NULL this list will
200 202
be computed.
201 203

  
202 204
``wp_nucs_strain_ref2``
203 205

  
204
List of aggregates nucleosome for strain 2. If it's null this list will
206
List of aggregates nucleosome for strain 2. If it's NULL this list will
205 207
be computed.
206 208

  
207 209
``corr_thres``
......
210 212

  
211 213
``llr_thres``
212 214

  
213
LOD cut off.
215
Log likelihood ratio threshold to decide between merging and separating
214 216

  
215 217
``config``
216 218

  
......
278 280
    }
279 281
    print(align_inter_strain_nucs(replicates))
280 282

  
281
R: Launch deseq methods.
283
R: Launch DESeq methods.
282 284

  
283
Launch deseq methods.
285
Launch DESeq methods.
284 286
---------------------
285 287

  
286 288
Description
287 289
~~~~~~~~~~~
288 290

  
289
This function is based on deseq example. It mormalizes data, fit data to
290
GLM model with and without interaction term and compare the two
291
l;=models.
291
This function is based on DESeq example. It normalizes data, fit data to
292
GLM model with and without interaction term and compares the two models.
292 293

  
293 294
Usage
294 295
~~~~~
......
302 303

  
303 304
``snep_design``
304 305

  
305
The design to considere.
306
The design to consider.
306 307

  
307 308
``reads``
308 309

  
309
The data to considere.
310
The data to consider.
310 311

  
311 312
Author(s)
312 313
~~~~~~~~~
......
321 322
Description
322 323
~~~~~~~~~~~
323 324

  
324
This function loads in memory data corresponding to the given
325
This function loads in memory the data corresponding to the given
325 326
experiments.
326 327

  
327 328
Usage
......
337 338

  
338 339
``expe``
339 340

  
340
a list of vector corresponding to vector of replicates.
341
a list of vectors corresponding to replicates.
341 342

  
342 343
``roi``
343 344

  
......
373 374
    # library(nucleominer)
374 375
    #
375 376
    # # Read config file
376
    # json_conf_file = "nucleo_miner_config.json"
377
    # json_conf_file = "nucleominer_config.json"
377 378
    # config = fromJSON(paste(readLines(json_conf_file), collapse=""))
378 379
    # # Read sample file
379 380
    # all_samples = get_content(config$CSV_SAMPLE_FILE, "cvs", sep=";", head=TRUE, stringsAsFactors=FALSE)
......
405 406
Description
406 407
~~~~~~~~~~~
407 408

  
408
This fonction allow to acces to a specific part of the c2c file.
409
This fonction allows to access to a specific part of the c2c file.
409 410

  
410 411
Usage
411 412
~~~~~
......
428 429

  
429 430
``chr``
430 431

  
431
if defined, the c2c will filtered according to the chromosome value
432
if defined, the c2c will be filtered according to the chromosome value
432 433

  
433 434
``lower_bound``
434 435

  
435
if defined, the c2c will filtered for part of the genome upper than
436
if defined, the c2c will be filtered for part of the genome upper than
436 437
lower\_bound
437 438

  
438 439
``upper_bound``
439 440

  
440
if defined, the c2c will filtered for part of the genome lower than
441
if defined, the c2c will be filtered for part of the genome lower than
441 442
upper\_bound
442 443

  
443 444
``config``
......
950 951

  
951 952
Florent Chuffart
952 953

  
953
R: Build the design for deseq
954
R: Build the design for DESeq
954 955

  
955
Build the design for deseq
956
Build the design for DESeq
956 957
--------------------------
957 958

  
958 959
Description
......
1044 1045

  
1045 1046
::
1046 1047

  
1047
    get_sneps(marker, combi, form, all_samples, config = NULL)
1048
    get_sneps(marker, combi, form, all_samples, FDR = 1e-04, config = NULL)
1048 1049

  
1049 1050
Arguments
1050 1051
~~~~~~~~~
......
1065 1066

  
1066 1067
Global list of samples.
1067 1068

  
1069
``FDR``
1070

  
1068 1071
``config``
1069 1072

  
1070 1073
GLOBAL config variable
......
1214 1217

  
1215 1218
::
1216 1219

  
1217
    # LOD score for 2 set of values
1220
    # LLR score for 2 set of values
1218 1221
    mean1=5; sd1=2; card2 = 250
1219 1222
    mean2=6; sd2=3; card1 = 200
1220 1223
    x1 = rnorm(card1, mean1, sd1)
......
1270 1273
Description
1271 1274
~~~~~~~~~~~
1272 1275

  
1273
This fuxntion use the deseq nomalization feature to compare
1276
This fuxntion use the DESeq nomalization feature to compare
1274 1277
qualitatively the distribution.
1275 1278

  
1276 1279
Usage
......
1491 1494
Description
1492 1495
~~~~~~~~~~~
1493 1496

  
1494
This function is an eloborated call to translate\_cur.
1497
This function is an elaborated call to translate\_cur.
1495 1498

  
1496 1499
Usage
1497 1500
~~~~~
......
1528 1531

  
1529 1532
Florent Chuffart
1530 1533

  
1531
R: Aggregate regions that intersect themnselves.
1534
R: Aggregate regions that intersect themselves.
1532 1535

  
1533
Aggregate regions that intersect themnselves.
1534
---------------------------------------------
1536
Aggregate regions that intersect themselves.
1537
--------------------------------------------
1535 1538

  
1536 1539
Description
1537 1540
~~~~~~~~~~~

Formats disponibles : Unified diff