NIH | National Cancer Institute | NCI Wiki  

Error rendering macro 'rw-search'

null

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »

<strong>Release Up To:</strong> caArray 2.2

<strong>Date entered:</strong> 03/06/2009

</span>

caArray Usage

questionDiv
question
Question: The Organism List in caArray and How to Add One Manually questionEnd
I did not see my sample organism on the Organism list. How can I add mine to the list?
questionDivEnd

Contents

Topic:

Release:

Date entered:

Question

Answer

Have a comment?

Please leave your comment in the caArray End User Forum.

<noinclude>
\ width="100%" style="border: solid 1px #A3B1BF; background: #F5FAFF" |

-

answer}}Answer:{{answerEnd
h5}}Organism List{{h5End
Organism represents the source of sample biomaterial used in an experiment. It is one of the mandatory fields describing each caArray experiment. An initialization script, which is part of the caArray installation package, will insert the most commonly used organisms to caArry's database table: Organism. The organisms can then be selected from two drop-down lists in following sections:

  1. Create New Experiment
  2. Import New Array Design

h5}}Manually Adding Organism{{h5End
If the organism list in caArray does not contain the organism for your samples, there are two other ways to add new organisms into caArray.

1. Any new organism defined in the MAGE-TAB Annotation files that are used to annotate experiments will be automatically added to caArray's database during the data file importing.
The organism is defined in MAGE-TAB's SDRF file following the sample source definition. It has the column heading as "CharacteristicsOrganism.

2. New organism can also be manually added at the database level. The SQL statement below is a simple insert statement that can be used to add a new entry to Organism table:

insert into organism
(ncbi_taxonomy_id, common_name, scientific_name, taxonomy_rank, term_source)
select 9606, 'human', 'Homo sapiens', 'species', id
from term_source where term_source.name='ncbitax';

There are two fields that need to be clarified in this SQL statement:

  1. term_source: This is a numeric field. It is really the term source identifier, ID, from term_source table. In the example above, the scientific name is defined in ncbitax taxonomy (url: 'http://www.ncbi.nlm.nih.gov/Taxonom/taxonomyhome.html/'), a known source already defined in term_source table. If your taxonomy source is not in Term_Source table yet, it needs to be added into the Term_Source table prior to this insert statement.
  2. ncbi_taxonomy_id: it is the taxonomy ID used by ncbitax.

Prior to any database modification, a database backup is highly recommended.

Have a comment? Please leave your comment in caArray End User Forum

</html>

  • No labels