Changes between Version 6 and Version 7 of xQTLBioinformaticianRCheatSheet


Ignore:
Timestamp:
2011-10-27T14:36:09+02:00 (13 years ago)
Author:
jvelde
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • xQTLBioinformaticianRCheatSheet

    v6 v7  
    77== > Downloading ==
    88
    9 === Retrieve annotations, all attributes ===
     9=== Annotations, all attributes ===
    1010
    1111`find.marker()`[[BR]]
     
    1313`find.investigation()`
    1414
    15 === Retrieve annotations, specific attributes ===
     15=== Annotations, specific attributes ===
    1616
    1717`find.marker()[,c("name")]`[[BR]]
     
    1919`find.investigation()[,c("id","name")]`
    2020
    21 === Get a simple overview of all data matrices ===
     21=== Overview of data matrices ===
    2222
    2323`find.data()[,c("id","name","investigation","investigation_name")]`
    2424
    25 === Retrieve a data matrix ===
     25=== Data matrix values ===
    2626
    2727`dataId <- 0`[[BR]]
     
    3131== > Uploading ==
    3232
    33 === Add annotations ===
     33=== Annotations ===
    3434
    3535`invId <- 0`[[BR]]
     
    3737`add.marker(name="testMarker2", cm="11.3", bpstart="456237", investigation_id=invId)`
    3838
    39 === Add a completely new data matrix, including annotations ===
     39=== New data matrix, plus annotations ===
    4040
    4141`invId <- 0`[[BR]]
     
    5151`add.datamatrix(data, name="myResults", investigation_id=invId, rowtype="Marker", coltype="Individual", valuetype="Text")`
    5252
    53 === Upload a file ===
     53=== File ===
    5454
    5555`uri <- paste(serverpath,"/uploadfile",sep="")`[[BR]]