papers Flashcards
the format for metadata storage in arrayexpress?
MAGE-TAB format it has 2 spread sheets: Investigation Description Format (IDF) file and the Sample Data Relationship Format (SDRF) file
what is investigation description format in arrayexpress?
The IDF contains an overview of the whole experiment, including the title, the submitter’s contact details, publication information, protocols and the experimental variables.
The SDRF format in arrayexpress?
The SDRF describes all the sample characteristics (e.g. cell type) or any treatment that the sample has been subjected to (e.g. growth in low oxygen conditions), and links each sample to its corresponding data file. The structure of the SDRF, i.e. the order of the columns, reflects the experimental workflow from source material, through intermediate steps (e.g. labelling of nucleic acids, preparation of sequencing libraries, running of sequencing assays) to raw and processed data.
what are CEL files?
the raw data for microarray experments
how to specify the exp factor like cold and the organism in the arrayexpress search?
efv: cold AND organism: “Oryza sative”
what are the dyes for control and treatment in the microarray?
CY3 : control
cy5: treatment
DREB/CBF is a part of which type of TFs?
ERF
what does the green text in the linux shell imply?
the computer is ready to accept our commands
what is working directory in linux?
One important concept to understand is that the shell has a notion of a default location in which any file operations will take place. This is its working directory. If you try to create new files or directories, view existing files, or even delete them, the shell will assume you’re looking for them in the current working directory unless you take steps to specify otherwise.
what are the slashes in the folder addresses?
directory seperators
the function for creating a list in python?
list()
if no arguments are passed it would return an empty list
the code for installing packages in R?
install.packages(‘limma’)
what’s the code for converting the data into a dataframe?
x=data.frame()
what’s the main difference b/w lists and tuples?
lists are mutable tuples are not
what is a csv file
comma separated file, is a text file which contains a list of data which is separated by comma
what does tuple unpacking mean?
splitting tuple elements into individual variables
a,b=(1,2)
the code for importing matplotlib.
import matplotlib.pyplot as plt
the code for getting a metabolite by id in cobrapy?
model.metabolites.get_by_id(‘metabolte id’)
what are the types of boundary reactions and why they’re called pseudo reactions?
All of them are unbalanced pseudo
reactions, that means they fulfill a function for modeling by adding to or removing metabolites from the model
system but are not based on real biology.
an exchange, demand and sink reaction definition?
An exchange reaction is a reversible reaction that adds to or removes
an extracellular metabolite from the extracellular compartment. A demand reaction is an irreversible reaction that
consumes an intracellular metabolite. A sink is similar to an exchange but specifically for intracellular metabolites,
i.e., a reversible reaction that adds or removes an intracellular metabolite.
codes for printing out the exchange sink and demand rxns of a model.
print(“exchanges”, model.exchanges)
print(“demands”, model.demands)
print(“sinks”, model.sinks)
the code for reading excel files in python?
how to read only a single column?
import pandas as pd
df = pd.read_excel (‘C:\Users\Ron\Desktop\name of the file.xlsx’, usecols=[‘gene ID’])
how to convert a dataframe to a list? how to do it with specific values?
genes_list =genes.values.tolist()[0:9]
how to generally convert something to the list?
model_gene_list=list(rice_model.genes)