Last data update: 2014.03.03

R: Maps between manufacturer IDs and Gene Ontology (GO) IDs
illuminaMousev2GOR Documentation

Maps between manufacturer IDs and Gene Ontology (GO) IDs

Description

illuminaMousev2GO is an R object that provides mappings between manufacturer identifiers and the GO identifiers that they are directly associated with. This mapping and its reverse mapping (illuminaMousev2GO2PROBE) do NOT associate the child terms from the GO ontology with the gene. Only the directly evidenced terms are represented here.

illuminaMousev2GO2ALLPROBES is an R object that provides mappings between a given GO identifier and all of the manufacturer identifiers annotated at that GO term OR TO ONE OF IT'S CHILD NODES in the GO ontology. Thus, this mapping is much larger and more inclusive than illuminaMousev2GO2PROBE.

Details

If illuminaMousev2GO is cast as a list, each manufacturer identifier is mapped to a list of lists. The names on the outer list are GO identifiers. Each inner list consists of three named elements: GOID, Ontology, and Evidence.

The GOID element matches the GO identifier named in the outer list and is included for convenience when processing the data using 'lapply'.

The Ontology element indicates which of the three Gene Ontology categories this identifier belongs to. The categories are biological process (BP), cellular component (CC), and molecular function (MF).

The Evidence element contains a code indicating what kind of evidence supports the association of the GO identifier to the manufacturer id. Some of the evidence codes in use include:

IMP: inferred from mutant phenotype

IGI: inferred from genetic interaction

IPI: inferred from physical interaction

ISS: inferred from sequence similarity

IDA: inferred from direct assay

IEP: inferred from expression pattern

IEA: inferred from electronic annotation

TAS: traceable author statement

NAS: non-traceable author statement

ND: no biological data available

IC: inferred by curator

A more complete listing of evidence codes can be found at:

http://www.geneontology.org/GO.evidence.shtml

If illuminaMousev2GO2ALLPROBES or illuminaMousev2GO2PROBE is cast as a list, each GO term maps to a named vector of manufacturer identifiers and evidence codes. A GO identifier may be mapped to the same manufacturer identifier more than once but the evidence code can be different. Mappings between Gene Ontology identifiers and Gene Ontology terms and other information are available in a separate data package named GO.

Whenever any of these mappings are cast as a data.frame, all the results will be output in an appropriate tabular form.

Mappings between manufacturer identifiers and GO information were obtained through their mappings to manufacturer identifiers. NAs are assigned to manufacturer identifiers that can not be mapped to any Gene Ontology information. Mappings between Gene Ontology identifiers an Gene Ontology terms and other information are available in a separate data package named GO.

All mappings were based on data provided by: Gene Ontology ftp://ftp.geneontology.org/pub/go/godatabase/archive/latest-lite/ With a date stamp from the source of: 20150314

References

ftp://ftp.ncbi.nlm.nih.gov/gene/DATA/

See Also

illuminaMousev2GO2ALLPROBES.

Examples

    x <- illuminaMousev2GO
    # Get the manufacturer identifiers that are mapped to a GO ID
    mapped_genes <- mappedkeys(x)
    # Convert to a list
    xx <- as.list(x[mapped_genes])
    if(length(xx) > 0) {
        # Try the first one
        got <- xx[[1]]           
        got[[1]][["GOID"]]
        got[[1]][["Ontology"]]
        got[[1]][["Evidence"]]
    }
    # For the reverse map:
    # Convert to a list
    xx <- as.list(illuminaMousev2GO2PROBE)
    if(length(xx) > 0){
        # Gets the manufacturer ids for the top 2nd and 3nd GO identifiers
        goids <- xx[2:3]
        # Gets the manufacturer ids for the first element of goids
        goids[[1]]
        # Evidence code for the mappings
        names(goids[[1]])
    }
    # Convert illuminaMousev2GO2ALLPROBES to a list
    xx <- as.list(illuminaMousev2GO2ALLPROBES)
    if(length(xx) > 0){
        # Gets the manufacturer identifiers for the top 2nd and 3nd GO identifiers
        goids <- xx[2:3]
        # Gets all the manufacturer identifiers for the first element of goids
        goids[[1]]
        # Evidence code for the mappings
        names(goids[[1]])
    }

Results


R version 3.3.1 (2016-06-21) -- "Bug in Your Hair"
Copyright (C) 2016 The R Foundation for Statistical Computing
Platform: x86_64-pc-linux-gnu (64-bit)

R is free software and comes with ABSOLUTELY NO WARRANTY.
You are welcome to redistribute it under certain conditions.
Type 'license()' or 'licence()' for distribution details.

R is a collaborative project with many contributors.
Type 'contributors()' for more information and
'citation()' on how to cite R or R packages in publications.

Type 'demo()' for some demos, 'help()' for on-line help, or
'help.start()' for an HTML browser interface to help.
Type 'q()' to quit R.

> library(illuminaMousev2.db)
Loading required package: AnnotationDbi
Loading required package: stats4
Loading required package: BiocGenerics
Loading required package: parallel

Attaching package: 'BiocGenerics'

The following objects are masked from 'package:parallel':

    clusterApply, clusterApplyLB, clusterCall, clusterEvalQ,
    clusterExport, clusterMap, parApply, parCapply, parLapply,
    parLapplyLB, parRapply, parSapply, parSapplyLB

The following objects are masked from 'package:stats':

    IQR, mad, xtabs

The following objects are masked from 'package:base':

    Filter, Find, Map, Position, Reduce, anyDuplicated, append,
    as.data.frame, cbind, colnames, do.call, duplicated, eval, evalq,
    get, grep, grepl, intersect, is.unsorted, lapply, lengths, mapply,
    match, mget, order, paste, pmax, pmax.int, pmin, pmin.int, rank,
    rbind, rownames, sapply, setdiff, sort, table, tapply, union,
    unique, unsplit

Loading required package: Biobase
Welcome to Bioconductor

    Vignettes contain introductory material; view with
    'browseVignettes()'. To cite Bioconductor, see
    'citation("Biobase")', and for packages 'citation("pkgname")'.

Loading required package: IRanges
Loading required package: S4Vectors

Attaching package: 'S4Vectors'

The following objects are masked from 'package:base':

    colMeans, colSums, expand.grid, rowMeans, rowSums

Loading required package: org.Mm.eg.db


> png(filename="/home/ddbj/snapshot/RGM3/R_BC/result/illuminaMousev2.db/illuminaMousev2GO.Rd_%03d_medium.png", width=480, height=480)
> ### Name: illuminaMousev2GO
> ### Title: Maps between manufacturer IDs and Gene Ontology (GO) IDs
> ### Aliases: illuminaMousev2GO illuminaMousev2GO2PROBE
> ###   illuminaMousev2GO2ALLPROBES
> ### Keywords: datasets
> 
> ### ** Examples
> 
>     x <- illuminaMousev2GO
>     # Get the manufacturer identifiers that are mapped to a GO ID
>     mapped_genes <- mappedkeys(x)
>     # Convert to a list
>     xx <- as.list(x[mapped_genes])
>     if(length(xx) > 0) {
+         # Try the first one
+         got <- xx[[1]]           
+         got[[1]][["GOID"]]
+         got[[1]][["Ontology"]]
+         got[[1]][["Evidence"]]
+     }
[1] "IEA"
>     # For the reverse map:
>     # Convert to a list
>     xx <- as.list(illuminaMousev2GO2PROBE)
>     if(length(xx) > 0){
+         # Gets the manufacturer ids for the top 2nd and 3nd GO identifiers
+         goids <- xx[2:3]
+         # Gets the manufacturer ids for the first element of goids
+         goids[[1]]
+         # Evidence code for the mappings
+         names(goids[[1]])
+     }
[1] "IBA" "IBA"
>     # Convert illuminaMousev2GO2ALLPROBES to a list
>     xx <- as.list(illuminaMousev2GO2ALLPROBES)
>     if(length(xx) > 0){
+         # Gets the manufacturer identifiers for the top 2nd and 3nd GO identifiers
+         goids <- xx[2:3]
+         # Gets all the manufacturer identifiers for the first element of goids
+         goids[[1]]
+         # Evidence code for the mappings
+         names(goids[[1]])
+     }
   [1] "IMP" "IMP" "IEA" "IMP" "IMP" "IMP" "IEA" "IMP" "IMP" "IMP" "ISO" "IGI"
  [13] "IMP" "IMP" "IDA" "IMP" "ISA" "IMP" "IEA" "ISO" "IMP" "IBA" "IDA" "IMP"
  [25] "IGI" "IMP" "IBA" "IMP" "NAS" "IMP" "IDA" "IMP" "ISO" "IMP" "IMP" "IBA"
  [37] "ISO" "IMP" "ISO" "ISO" "IGI" "IMP" "IMP" "IMP" "IMP" "ISO" "IMP" "ISO"
  [49] "IMP" "IMP" "IDA" "IEA" "IGI" "IMP" "IMP" "IMP" "IGI" "ISO" "IC"  "IEA"
  [61] "IMP" "IMP" "TAS" "IGI" "IMP" "ISO" "TAS" "IEA" "ISO" "IMP" "IMP" "ISA"
  [73] "IEA" "IMP" "ISO" "IC"  "IEA" "IMP" "IMP" "ISO" "IMP" "IMP" "IMP" "IBA"
  [85] "IMP" "IMP" "IDA" "IBA" "IBA" "IMP" "IEA" "IMP" "ISO" "IMP" "IMP" "IDA"
  [97] "IEA" "IMP" "IMP" "IMP" "IGI" "IMP" "IMP" "IMP" "IMP" "IDA" "IEA" "IEA"
 [109] "IPI" "ISO" "IMP" "IMP" "IMP" "ISO" "IBA" "IBA" "IMP" "IMP" "IDA" "IMP"
 [121] "TAS" "IGI" "IBA" "IMP" "IGI" "IMP" "IMP" "IGI" "IMP" "IGI" "IMP" "ISO"
 [133] "IEA" "IMP" "TAS" "IMP" "ISO" "IMP" "IMP" "IMP" "IMP" "IEA" "IEA" "IMP"
 [145] "IDA" "IDA" "TAS" "IEA" "IDA" "TAS" "IMP" "IMP" "IMP" "IMP" "ISO" "IMP"
 [157] "IEA" "IEA" "IPI" "ISO" "IMP" "IEA" "IMP" "IMP" "IMP" "NAS" "IMP" "IMP"
 [169] "IMP" "IMP" "IGI" "IMP" "IMP" "IMP" "TAS" "IGI" "IMP" "ISO" "TAS" "IMP"
 [181] "IMP" "IEA" "IGI" "IMP" "IMP" "IMP" "IMP" "IMP" "IMP" "ISO" "IGI" "IDA"
 [193] "IMP" "ISO" "IMP" "IDA" "IMP" "ISO" "IMP" "IMP" "IEA" "IMP" "IEA" "IMP"
 [205] "ISO" "IDA" "IMP" "IMP" "IMP" "IEA" "IMP" "IMP" "ISO" "ISO" "IGI" "IEA"
 [217] "IMP" "IGI" "ISO" "IMP" "IPI" "IMP" "IMP" "IMP" "IDA" "IBA" "IMP" "IMP"
 [229] "IEA" "ISO" "IEA" "IMP" "ISO" "IEA" "IMP" "TAS" "IMP" "IMP" "IMP" "ISO"
 [241] "IMP" "IMP" "IMP" "IDA" "IMP" "ISO" "IGI" "IMP" "IBA" "IMP" "IBA" "IMP"
 [253] "IGI" "IMP" "IMP" "IMP" "IMP" "IMP" "IMP" "ISO" "IEA" "IMP" "IGI" "IMP"
 [265] "ISO" "IMP" "IEA" "IMP" "IMP" "IMP" "IMP" "IMP" "IEA" "IMP" "IMP" "IGI"
 [277] "IMP" "IMP" "IMP" "IEA" "IEA" "IEA" "IMP" "IGI" "IMP" "IMP" "IMP" "IMP"
 [289] "ISO" "IGI" "IMP" "IMP" "ISO" "IMP" "IBA" "IEA" "IMP" "IMP" "IEA" "IMP"
 [301] "IMP" "ISO" "IMP" "IMP" "IGI" "IEA" "IGI" "IEA" "ISO" "IMP" "IDA" "IEA"
 [313] "IMP" "IMP" "IMP" "IDA" "ISO" "IMP" "IMP" "IMP" "IMP" "IGI" "IMP" "ISO"
 [325] "IMP" "IDA" "IGI" "IMP" "ISO" "IEA" "IMP" "ISO" "ISO" "IMP" "IMP" "IDA"
 [337] "IDA" "IMP" "ISO" "IMP" "ISO" "IMP" "IGI" "IMP" "IMP" "IMP" "IGI" "IMP"
 [349] "ISO" "IMP" "ISO" "IMP" "IEA" "IMP" "IBA" "IMP" "IGI" "ISO" "IMP" "IEA"
 [361] "IEA" "IMP" "IMP" "IEA" "IMP" "IMP" "IDA" "ISO" "IMP" "IMP" "IGI" "IMP"
 [373] "TAS" "IMP" "ISO" "IMP" "IDA" "IEA" "IMP" "ISO" "IMP" "IEA" "IDA" "IMP"
 [385] "TAS" "IMP" "ISO" "IMP" "ISO" "IMP" "IMP" "IEA" "IMP" "IMP" "NAS" "TAS"
 [397] "IMP" "IMP" "IMP" "IMP" "IMP" "IMP" "IEA" "IMP" "IMP" "IMP" "IMP" "ISO"
 [409] "IEA" "IMP" "IMP" "IEA" "IMP" "IGI" "IGI" "IGI" "IMP" "ISO" "IMP" "IMP"
 [421] "ISO" "IEA" "IEA" "ISO" "IBA" "IMP" "IDA" "ISO" "IBA" "IEA" "IMP" "IMP"
 [433] "IGI" "ISO" "IMP" "IMP" "ISO" "IBA" "IEA" "IMP" "IMP" "IMP" "ISO" "IMP"
 [445] "IEA" "ISO" "IGI" "IMP" "IMP" "IMP" "IBA" "IMP" "IMP" "TAS" "IGI" "IMP"
 [457] "IBA" "ISO" "IGI" "ISO" "IGI" "IMP" "IMP" "IBA" "IBA" "IDA" "IGI" "IMP"
 [469] "ISO" "IEA" "IMP" "ISO" "IGI" "IMP" "IEA" "IMP" "IGI" "IEA" "IMP" "IMP"
 [481] "TAS" "IPI" "TAS" "IEA" "IDA" "IEA" "IMP" "IEA" "IMP" "IMP" "IMP" "ISO"
 [493] "IMP" "IDA" "IMP" "ISO" "IMP" "IGI" "IMP" "IMP" "IMP" "ISO" "IMP" "IEA"
 [505] "IMP" "IMP" "ISO" "IEA" "IMP" "ISO" "IGI" "TAS" "IMP" "IMP" "IGI" "ISO"
 [517] "IMP" "IMP" "IMP" "IMP" "IMP" "IMP" "IMP" "IMP" "IMP" "IMP" "IGI" "IMP"
 [529] "ISO" "TAS" "IMP" "IGI" "IMP" "IMP" "IMP" "ISO" "IEA" "IMP" "IDA" "IMP"
 [541] "IMP" "IMP" "IMP" "IMP" "IMP" "IMP" "IMP" "IMP" "IMP" "IMP" "IGI" "ISO"
 [553] "ISO" "IEA" "IMP" "ISO" "IEA" "IMP" "IEA" "IMP" "IMP" "IMP" "IEA" "IMP"
 [565] "IGI" "IMP" "IEA" "TAS" "ISO" "IGI" "IMP" "IGI" "IDA" "IMP" "ISO" "IGI"
 [577] "IMP" "IMP" "IGI" "IMP" "ISO" "ISO" "IMP" "IMP" "IGI" "IMP" "ISO" "TAS"
 [589] "NAS" "IMP" "IGI" "IEA" "IMP" "IMP" "IMP" "IEA" "IMP" "IMP" "IEA" "IBA"
 [601] "IMP" "IMP" "IMP" "IMP" "IMP" "IGI" "IMP" "IMP" "IMP" "IMP" "ISO" "IMP"
 [613] "IMP" "ISA" "ISS" "IMP" "IEA" "IMP" "IMP" "IMP" "IMP" "IDA" "IMP" "IMP"
 [625] "IMP" "IMP" "IEA" "IPI" "ISO" "IDA" "IMP" "IGI" "IMP" "IMP" "ISO" "IMP"
 [637] "IDA" "IGI" "IMP" "ISO" "IDA" "IMP" "IDA" "IMP" "IMP" "IGI" "IMP" "IGI"
 [649] "IMP" "IMP" "IMP" "IMP" "IMP" "ISO" "IEA" "NAS" "IGI" "IMP" "IMP" "IMP"
 [661] "IGI" "IMP" "TAS" "NAS" "IDA" "IEA" "IGI" "IGI" "IMP" "IBA" "IMP" "ISO"
 [673] "IBA" "IMP" "IDA" "IMP" "TAS" "IEA" "IMP" "IEA" "IMP" "IDA" "ISO" "IMP"
 [685] "IMP" "IMP" "IEA" "IMP" "IMP" "IEA" "IMP" "IBA" "IEA" "IMP" "IBA" "ISO"
 [697] "IMP" "IBA" "IMP" "IEA" "IMP" "IMP" "IEA" "IGI" "IMP" "ISO" "IMP" "IMP"
 [709] "IMP" "IMP" "IDA" "ISO" "IMP" "IMP" "IMP" "IDA" "IMP" "ISO" "IMP" "IBA"
 [721] "ISO" "IMP" "IEA" "IEA" "IMP" "IMP" "IMP" "IGI" "IC"  "IEA" "ISO" "IMP"
 [733] "IMP" "TAS" "IEA" "IMP" "IEA" "IGI" "IMP" "IMP" "IDA" "IBA" "IMP" "ISO"
 [745] "ISO" "IMP" "IMP" "IMP" "IMP" "IEA" "IMP" "ISO" "IEA" "IMP" "IMP" "IMP"
 [757] "IMP" "IMP" "IMP" "IMP" "IMP" "IMP" "IMP" "IMP" "ISO" "IEA" "IMP" "NAS"
 [769] "IMP" "IEA" "IMP" "IEA" "IMP" "IMP" "IMP" "IMP" "IMP" "IBA" "IMP" "IMP"
 [781] "IMP" "IMP" "IGI" "IMP" "IGI" "IGI" "IMP" "IMP" "IMP" "IMP" "IEA" "IMP"
 [793] "IMP" "IMP" "IEA" "IMP" "IMP" "IBA" "IBA" "IMP" "IEA" "IMP" "IEA" "IMP"
 [805] "IMP" "IMP" "IMP" "IEA" "ISO" "IMP" "IDA" "IEA" "IGI" "IMP" "ISO" "IMP"
 [817] "IDA" "IGI" "IMP" "ISO" "IDA" "IMP" "IEA" "IMP" "IMP" "IMP" "IGI" "IMP"
 [829] "ISO" "IDA" "IGI" "IMP" "IPI" "ISO" "IMP" "IMP" "IEA" "TAS" "IEA" "IEA"
 [841] "IGI" "IMP" "ISO" "IMP" "IBA" "IMP" "IBA" "IMP" "IBA" "IEA" "IMP" "IBA"
 [853] "IEA" "IMP" "IMP" "ISA" "IEA" "IMP" "IMP" "IEA" "IMP" "IGI" "IEA" "IBA"
 [865] "IMP" "IDA" "IMP" "IMP" "IEA" "IMP" "IMP" "IMP" "IDA" "IMP" "IGI" "IMP"
 [877] "IEA" "IMP" "IEA" "IEA" "IMP" "IMP" "IGI" "IEA" "IMP" "IEA" "IMP" "IDA"
 [889] "IGI" "IMP" "ISO" "IBA" "IGI" "IMP" "ISO" "ISS" "IGI" "IMP" "IMP" "NAS"
 [901] "IMP" "IEA" "IMP" "IMP" "IMP" "IEA" "IEA" "IMP" "IMP" "IEA" "ISO" "IMP"
 [913] "IEA" "ISO" "IMP" "IGI" "IMP" "IEA" "IMP" "IGI" "IDA" "IEA" "IMP" "ISO"
 [925] "IMP" "IDA" "IMP" "IGI" "IMP" "IMP" "IMP" "IEA" "IMP" "IMP" "IDA" "IEA"
 [937] "IMP" "IEA" "IMP" "IMP" "IBA" "ISO" "IMP" "IDA" "IMP" "IMP" "IMP" "IMP"
 [949] "IMP" "IMP" "ISO" "IEA" "TAS" "IMP" "IEA" "IMP" "IMP" "IMP" "ISO" "ISO"
 [961] "IMP" "IMP" "IMP" "ISO" "IDA" "IMP" "IMP" "IGI" "IMP" "ISO" "IEA" "IMP"
 [973] "IMP" "IDA" "IDA" "IMP" "TAS" "IEA" "IMP" "IEA" "IEA" "IMP" "IEA" "NAS"
 [985] "IGI" "IDA" "IMP" "IMP" "IMP" "IMP" "IMP" "TAS" "IMP" "IGI" "IMP" "IDA"
 [997] "ISO" "IMP" "IDA" "IMP" "IGI" "IMP" "IGI" "IGI" "IMP" "IGI" "IMP" "ISO"
[1009] "IMP" "ISO" "IMP" "IMP" "IMP" "IEA" "IMP" "IMP" "IMP" "IMP" "IMP" "IMP"
[1021] "IDA" "IEA" "IMP" "IMP" "IMP" "IMP" "ISO" "IGI" "IMP" "IGI" "IMP" "ISO"
[1033] "TAS" "IMP" "ISO" "IDA" "IEA" "IMP" "IEA" "ISA" "ISO" "IEA" "IMP" "IEA"
[1045] "IPI" "ISO" "IMP" "TAS" "IEA" "IEA" "IPI" "IEA" "IPI" "ISO" "IGI" "IMP"
[1057] "IMP" "IGI" "IMP" "ISO" "IEA" "IMP" "IEA" "IMP" "IMP" "IDA" "IMP" "TAS"
[1069] "ISO" "IEA" "IMP" "IMP" "ISO" "IMP" "IEA" "IMP" "IMP" "IGI" "IMP" "IDA"
[1081] "IGI" "IMP" "ISO" "IEA" "IPI" "ISO" "IMP" "NAS" "IEA" "IMP" "IEA" "IGI"
[1093] "IMP" "IMP" "IMP" "ISO" "IMP" "ISO" "IMP" "IMP" "IMP" "ISO" "IGI" "IMP"
[1105] "IEA" "IMP" "IGI" "IMP" "ISO" "IEA" "IMP" "IGI" "IDA" "IMP" "IEA" "IMP"
[1117] "IMP" "IMP" "IMP" "IMP" "IEA" "IMP" "IMP" "IMP" "IEA" "IGI" "IMP" "IMP"
[1129] "IEA" "IMP" "IGI" "IMP" "ISO" "IMP" "IMP" "IEA" "IMP" "ISO" "IMP" "IGI"
[1141] "IMP" "IMP" "IEA" "IMP" "IBA" "IMP" "IMP" "IMP" "IMP" "IEA" "IMP" "IEA"
[1153] "IGI" "IMP" "IMP" "IMP" "IGI" "IEA" "IEA" "IGI" "IMP" "IMP" "IBA" "IBA"
[1165] "IEA" "IMP" "IMP" "IMP" "ISO" "IBA" "IDA" "IMP" "IMP" "IEA" "IMP" "IEA"
[1177] "IGI" "IMP" "IMP" "IEA" "IMP" "IDA" "IGI" "ISO" "IMP" "IEA" "IMP" "IEA"
[1189] "IMP" "IMP" "ISO" "IDA" "IEA" "IMP" "IEA" "IGI" "IMP" "IMP" "IEA" "IMP"
[1201] "ISO" "IMP" "IDA" "IMP" "TAS" "IEA" "IEA" "IMP" "IBA" "IMP" "ISO" "IMP"
[1213] "IEA" "IMP" "ISO" "IBA" "IMP" "IEA" "IMP" "IMP" "IBA" "IEA" "IMP" "IMP"
[1225] "IGI" "IMP" "IEA" "IEA" "IMP" "ISO" "IGI" "TAS" "IMP" "IGI" "IDA" "IEA"
[1237] "IGI" "IMP" "IMP" "IMP" "IMP" "IMP" "IMP" "IMP" "IMP" "IBA" "IMP" "IMP"
[1249] "IMP" "IGI" "IMP" "IMP" "ISO" "IGI" "IEA" "IMP" "IMP" "IEA" "IMP" "IMP"
[1261] "ISO" "IGI" "IMP" "IMP" "TAS" "IMP" "IEA" "IMP" "IGI" "IMP" "IGI" "IMP"
[1273] "IMP" "IGI" "IMP" "IMP" "IMP" "IGI" "IDA" "IMP" "ISO" "IMP" "IMP" "ISO"
[1285] "ISO" "IGI" "IMP" "ISO" "IMP" "IGI" "IMP" "IEA" "IGI" "IMP" "IGI" "IMP"
[1297] "IGI" "IMP" "IGI" "ISO" "IMP" "IMP" "IMP" "IMP" "IMP" "IEA" "IMP" "IEA"
[1309] "IBA" "IMP" "IMP" "IEA" "NAS" "IMP" "IMP" "IDA" "IMP" "IGI" "IMP" "IDA"
[1321] "TAS" "IMP" "IMP" "IMP" "ISO" "IMP" "IGI" "IMP" "IMP" "ISO" "IDA" "IEA"
[1333] "IMP" "IMP" "IGI" "IMP" "ISO" "IMP" "IDA" "IEA" "IEA" "IMP" "IEA" "IEA"
[1345] "IMP" "IGI" "IGI" "IMP" "ISO" "IMP" "ISO" "IC"  "IDA" "IEA" "IMP" "IMP"
[1357] "IMP" "IEA" "IEA" "IMP" "IDA" "ISO" "IEA" "IMP" "IMP" "IMP" "IMP" "ISO"
[1369] "IGI" "IBA" "IEA" "IMP" "TAS" "IEA" "IMP" "IMP" "IDA" "IGI" "IMP" "NAS"
[1381] "IMP" "IEA" "IMP" "IMP" "ISO" "IMP" "IEA" "ISO" "IMP" "IPI" "IMP" "IMP"
[1393] "NAS" "IMP" "IMP" "IGI" "IMP" "IMP" "IMP" "IMP" "ISO" "NAS" "ISO" "ISO"
[1405] "IEA" "IGI" "IMP" "IMP" "IEA" "IMP" "ISO" "IMP" "IGI" "IMP" "IGI" "IDA"
[1417] "IEA" "IMP" "IMP" "ISO" "ISO" "IMP" "IMP" "ISO" "TAS" "IEA" "IMP" "IGI"
[1429] "IMP" "IMP" "IMP" "IGI" "IMP" "IMP" "IDA" "IMP" "IMP" "IMP" "IMP" "IDA"
[1441] "ISO" "IEA" "IPI" "ISO" "IEA" "IMP" "IMP" "IMP" "IMP" "IMP" "IMP" "IGI"
[1453] "IMP" "IEA" "IMP" "IMP" "ISO" "IEA" "IMP" "IGI" "IMP" "IGI" "IMP" "IMP"
[1465] "IGI" "IGI" "IMP" "IMP" "IDA" "ISO" "IGI" "IMP" "IGI" "IMP" "ISO" "IEA"
[1477] "IGI" "IMP" "IPI" "IMP" "IMP" "ISO" "IMP" "IMP" "IMP" "IDA" "IEA" "IMP"
[1489] "IMP" "IGI" "IDA" "IEA" "IMP" "IGI" "ISO" "IEA" "IMP" "IMP" "IMP" "IMP"
[1501] "IEA" "IEA" "IMP" "ISO" "IEA" "IGI" "IDA" "IMP" "IMP" "ISO" "ISO" "IMP"
[1513] "IMP" "IGI" "ISO" "TAS" "ISO" "IMP" "IEA" "IMP" "IMP" "IEA" "IMP" "IMP"
[1525] "ISO" "IEA" "IMP" "IGI" "IMP" "ISO" "IEA" "IBA" "IMP" "IMP" "ISO" "IMP"
[1537] "IMP" "IDA" "IEA" "IMP" "IMP" "IMP" "IGI" "IMP" "IEA" "IMP" "IMP" "IMP"
[1549] "IMP" "IGI" "IMP" "ISO" "IMP" "IMP" "IGI" "ISO" "IMP" "IMP" "ISO" "IMP"
[1561] "IBA" "IBA" "IMP" "IMP" "IBA" "ISO" "ISO" "IGI" "IMP" "IBA" "IMP" "IMP"
[1573] "IDA" "IBA" "IEA" "IMP" "IMP" "IGI" "IEA" "IMP" "ISO" "IDA" "IMP" "IEA"
[1585] "ISO" "ISO" "IMP" "IGI" "IEA" "IMP" "IMP" "IEA" "IMP" "IGI" "IMP" "IEA"
[1597] "IMP" "IGI" "IMP" "IEA" "IEA" "IEA" "IMP" "IDA" "IMP" "IMP" "TAS" "IMP"
[1609] "IDA" "IMP" "IGI" "IMP" "IGI" "IMP" "IMP" "IMP" "IMP" "IMP" "IMP" "ISO"
[1621] "IMP" "IDA" "ISO" "IDA" "IMP" "IMP" "IMP" "IEA" "IMP" "IMP" "IMP" "ISO"
[1633] "IMP" "IEA" "IMP" "ISO" "IMP" "IMP" "IGI" "IDA" "IMP" "IMP" "ISO" "ISO"
[1645] "IMP" "IDA" "IGI" "IEA" "IEA" "IMP" "IGI" "IMP" "IDA" "IEA" "IMP" "ISO"
[1657] "IMP" "ISO" "IGI" "IEA" "IMP" "IGI" "ISO" "IGI" "IGI" "IEA" "IDA" "IMP"
[1669] "ISO" "IGI" "IMP" "ISO" "IEA" "IMP" "IEA" "IDA" "ISO" "IMP" "ISO" "IDA"
[1681] "ISO" "IMP" "IMP" "IMP" "IEA" "ISO" "IMP" "IDA" "IMP" "IDA" "IEA" "ISO"
[1693] "IMP" "IGI" "IMP" "IGI" "IMP" "ISO" "IMP" "IMP" "IMP" "IC"  "IEA" "ISO"
[1705] "ISO" "IMP" "IMP" "IMP" "IEA" "IMP" "IBA" "ISO" "IMP" "IMP" "IEA" "IEA"
[1717] "IMP" "IDA" "IEA" "IGI" "IMP" "ISO" "NAS" "IMP" "IMP" "IC"  "IEA" "IMP"
[1729] "ISO" "IMP" "IMP" "IEA" "IPI" "ISO" "IDA" "IMP" "IEA" "IGI" "IMP" "IDA"
[1741] "IMP" "IEA" "IGI" "IMP" "IMP" "IMP" "IEA" "IMP" "ISO" "ISO" "IEA" "IDA"
[1753] "IMP" "IGI" "IMP" "IMP" "IDA" "IMP" "ISO" "IMP" "IMP" "IDA" "IMP" "IMP"
[1765] "ISO" "IMP" "IEA" "IMP" "ISO" "IMP" "ISO" "IEA" "IMP" "ISO" "IMP" "IGI"
[1777] "IDA" "IGI" "IMP" "IMP" "IMP" "ISO" "IEA" "IMP" "IMP" "IMP" "IGI" "IMP"
[1789] "ISO" "IC"  "IEA" "IDA" "IMP" "IMP" "IMP" "IMP" "ISO" "IEA" "IMP" "IMP"
[1801] "IMP" "IGI" "IMP" "IGI" "ISA" "IEA" "ISO" "ISO" "IGI" "IMP" "ISO" "IDA"
[1813] "IMP" "IMP" "IMP" "IMP" "IEA" "ISO" "IMP" "TAS" "IDA" "IMP" "ISO" "IMP"
[1825] "IGI" "IMP" "IGI" "TAS" "IMP" "IMP" "IDA" "IMP" "ISO" "IGI" "IMP" "ISO"
[1837] "IDA" "IEA" "IMP" "IMP" "IMP" "IEA" "IMP" "TAS" "IDA" "IEA" "IMP" "IMP"
[1849] "ISO" "TAS" "ISO" "IMP" "IMP" "IDA" "IMP" "ISO" "ISO" "IMP" "ISO" "IDA"
[1861] "IMP" "NAS" "ISO" "IGI" "IGI" "IMP" "IMP" "IBA" "IMP" "IEA" "IMP" "IMP"
[1873] "IMP" "TAS" "IGI" "IMP" "IDA" "ISO" "IDA" "IMP" "IEA" "IMP" "IGI" "IEA"
[1885] "IDA" "IMP" "IDA" "IMP" "IGI" "IMP" "IMP" "ISO" "IMP" "TAS" "IMP" "IMP"
[1897] "IMP" "IMP" "IEA" "ISO" "IMP" "ISO" "ISO" "IMP" "IEA" "IMP" "IEA" "IMP"
[1909] "IMP" "ISO" "IGI" "IMP" "IEA" "IMP" "ISO" "IEA" "IMP" "IMP" "IDA" "ISO"
[1921] "ISO" "IMP" "ISO" "IEA" "TAS" "IDA" "IEA" "IMP" "IBA" "IMP" "IMP" "IBA"
[1933] "ISO" "IMP" "IEA" "IMP" "ISO" "IDA" "IDA" "IMP" "ISO" "ISO" "IMP" "IMP"
[1945] "IEA" "IGI" "IEA" "IMP" "IEA" "IMP" "ISO" "IDA" "IGI" "IMP" "IMP" "IEA"
[1957] "IEA" "IGI" "IMP" "IMP" "ISO" "ISO" "IMP" "IGI" "IMP" "IEA" "IMP" "IMP"
[1969] "IDA" "IEA" "IMP" "ISO" "IMP" "IEA" "IDA" "IEA" "IMP" "IDA" "ISO" "IMP"
[1981] "ISO" "IEA" "IMP" "IMP" "IEA" "IGI" "IMP" "IGI" "IMP" "IEA" "IDA" "IGI"
[1993] "IMP" "ISO" "IMP" "IMP" "IGI" "IMP" "IMP" "IDA" "IEA" "IMP" "IGI" "IMP"
[2005] "IMP" "IGI" "IDA" "IGI" "IMP" "ISO" "IMP" "IDA" "IMP" "IMP" "ISO" "IMP"
[2017] "IGI" "IMP" "IMP" "IEA" "IMP" "IMP" "IMP" "IMP" "IGI" "IMP" "IDA" "IGI"
[2029] "IMP" "ISO" "IMP" "IEA" "IMP" "IMP" "IDA" "IEA" "TAS" "ISO" "IGI" "IMP"
[2041] "IGI" "IMP" "IDA" "IEA" "IMP" "IDA" "IMP" "IMP" "IMP" "IMP" "ISO" "IDA"
[2053] "IMP" "IMP" "IEA" "IDA" "IMP" "IMP" "IMP" "IMP" "IEA" "IMP" "ISO" "IMP"
[2065] "IMP" "IBA" "IMP" "IMP" "IEA" "IDA" "ISO" "IDA" "ISO" "ISO" "IMP" "IMP"
[2077] "IMP" "ISO" "IDA" "IEA" "IMP" "IEA" "IMP" "IMP" "IDA" "IMP" "IEA" "IGI"
[2089] "IGI" "IMP" "IDA" "IEA" "IGI" "IMP" "ISO" "ISO" "IEA" "IMP" "IMP" "IEA"
[2101] "IMP" "IMP" "IMP" "IEA" "IMP" "IMP" "IMP" "IDA" "IDA" "IMP" "IEA" "IMP"
[2113] "IMP" "IDA" "IMP" "IEA" "IEA" "IMP" "ISO" "IGI" "IGI" "IMP" "ISO" "IMP"
[2125] "ISO" "ISO" "ISO" "IEA" "IMP" "NAS" "IEA" "IEA" "IEA" "IDA" "IMP" "IMP"
[2137] "IBA" "IEA" "IDA" "IMP" "TAS" "IDA" "IMP" "ISO" "NAS" "IEA" "IMP" "IBA"
[2149] "IMP" "IGI" "IMP" "ISO" "ISS" "IBA" "ISO" "IMP" "IMP" "TAS" "TAS" "IMP"
[2161] "IGI" "IMP" "IBA" "ISO" "IBA" "ISO" "IGI" "IDA" "IMP" "IGI" "IMP" "IGI"
[2173] "IMP" "IEA" "IMP" "IMP" "IDA" "ISO" "IMP" "IMP" "IMP" "IBA" "IMP" "IMP"
[2185] "IDA" "IEA" "IBA" "IEA" "ISO" "IEA" "IGI" "IMP" "IDA" "IEA" "IMP" "IEA"
[2197] "IMP" "IEA" "IGI" "IMP" "IMP" "ISO" "ISO" "IBA" "IEA" "IMP" "IMP" "IMP"
[2209] "IBA" "ISO" "IMP" "ISO" "IDA" "IDA" "IMP" "ISO" "IMP" "IMP" "IMP" "IMP"
[2221] "IEA" "IEA" "ISO" "IMP" "IGI" "IMP" "ISO" "IMP" "IBA" "IBA" "IMP" "IEA"
[2233] "IEA" "ISO" "IMP" "IGI" "IMP" "IBA" "IEA" "IMP" "IMP" "IMP" "IBA" "IDA"
[2245] "IEA" "IEA" "IPI" "ISO" "IMP" "IDA" "IMP" "IBA" "IEA" "IEA" "IMP" "IMP"
[2257] "IGI" "IMP" "IEA" "TAS" "IEA" "IGI" "IMP" "IBA" "IDA" "IDA" "IMP" "IMP"
[2269] "TAS" "IMP" "IMP" "IBA" "IMP" "IMP" "IMP" "IMP" "ISO" "IGI" "IMP" "IGI"
[2281] "IMP" "IBA" "IMP" "IMP" "IGI" "IEA" "IMP" "IGI" "IGI" "IMP" "IEA" "IMP"
[2293] "IMP" "IDA" "IMP" "TAS" "IMP" "IEA" "IMP" "IBA" "IEA" "IMP" "IGI" "IMP"
[2305] "IMP" "ISO" "IEA" "IEA" "IMP" "ISS" "IMP" "IEA" "IMP" "IGI" "IMP" "IMP"
[2317] "IMP" "TAS" "IMP" "IEA" "IMP" "TAS" "IMP" "IEA" "IEA" "IMP" "ISO" "IBA"
[2329] "IMP" "IMP" "IMP" "ISO" "ISO" "ISO" "ISA" "ISS" "IGI" "IEA" "IGI" "IGI"
[2341] "IMP" "ISO" "IMP" "ISO" "TAS" "TAS" "IMP" "IMP" "IBA" "IMP" "IMP" "IMP"
[2353] "IMP" "IMP" "IDA" "ISA" "ISO" "IEA" "IMP" "IMP" "IEA" "IEA" "IMP" "IMP"
[2365] "IMP" "IMP" "IMP" "IGI" "IMP" "ISO" "IEA" "IMP" "IMP" "IMP" "ISO" "IGI"
[2377] "IMP" "ISO" "IGI" "NAS" "IMP" "IMP" "IDA" "IMP" "IEA" "IEA" "IMP" "ISO"
[2389] "IMP" "IEA" "IEA" "IMP" "IBA" "IGI" "IMP" "ISO" "IMP" "IMP" "IGI" "IMP"
[2401] "IMP" "IMP" "IMP" "ISO" "IGI" "IDA" "IMP" "IMP" "IMP" "IBA" "IMP" "IMP"
[2413] "IEA" "IMP" "ISO" "IMP" "IMP" "IDA" "ISA" "ISO" "IEA" "ISO" "IMP" "IEA"
[2425] "IMP" "IMP" "ISO" "IMP" "ISO" "IMP" "IMP" "IMP" "IMP" "ISO" "IMP" "IGI"
[2437] "IMP" "ISO" "IEA" "IMP" "IEA" "IMP" "IMP" "IEA" "ISO" "IGI" "IDA" "IEA"
[2449] "IMP" "IGI" "IMP" "IMP" "ISO" "IGI" "NAS" "IEA" "NAS" "IMP" "IMP" "IEA"
[2461] "IMP" "IMP" "IGI" "IEA" "IMP" "IDA" "IGI" "IMP" "IDA" "IGI" "IMP" "IMP"
[2473] "IEA" "IEA" "IEA" "IEA" "ISO" "IMP" "IMP" "IMP" "IMP" "ISO" "IEA" "IEA"
[2485] "IMP" "IBA" "IMP" "IGI" "IMP" "IEA" "IMP" "ISO" "IMP" "IMP" "IGI" "IMP"
[2497] "IEA" "IMP" "ISO" "IMP" "IMP" "IMP" "IMP" "ISO" "IMP" "IMP" "NAS" "IGI"
[2509] "IDA" "IMP" "IMP" "IMP" "IMP" "IMP" "IMP" "ISO" "IDA" "IMP" "IMP" "IMP"
[2521] "IMP" "IMP" "IMP" "IMP" "ISO"
> 
> 
> 
> 
> 
> dev.off()
null device 
          1 
>