Skip to content
David DeTomaso edited this page Mar 1, 2016 · 2 revisions

What is a Signature?

A Signature is a set of genes with some common characteristic or function. For example, the set of genes involved in the process of coagulation.

Alternately, signatures can describe changes in gene expression between two conditions. For example, a signature could describe "When comparing dendritic cells 4 hours post LPS stimulation, Genes A, B, C, D ... are up-regulated and Genes X, Y, Z ... are down-regulated."

Where can I find signatures?

A great resource for signatuers is the MSigDB, by the Broad Institute

By using the "Search Gene Sets" dialog, many signatures can be downloaded at once in the .gmt file format, which can be input directly into FastProject without modification.

Can I create my own signatures?

Yes, you can create your own signatures. See the section below for information on correctly formatting the signature file.

Acceptable Signature File Formats(file extension matters, see below)

List of gene signatures

Text, tab-delimited Genes should match the row labels in the input data matrix (matching is case insensitive)

Format A (File ends in .txt extension)

One gene per line (each signature has many lines)

<Signature Name> TAB <Signature Sign> TAB <Gene Name>
<Signature Sign> can be either "plus", "minus", or "both" if it's unsigned.

Alternately, you can just omit the second column and all genes will be treated as unsigned.

Example:

Lin-neg_cell_vs_NKT_cellplusTEK
Lin-neg_cell_vs_NKT_cellplusAGPAT5
Lin-neg_cell_vs_NKT_cellplusHSPA4L
Lin-neg_cell_vs_NKT_cellplusFAM126A
Lin-neg_cell_vs_NKT_cellminusUBR1
Lin-neg_cell_vs_NKT_cellminusCYSLTR2
Lin-neg_cell_vs_NKT_cellminusZNF205
Lin-neg_cell_vs_NKT_cellminusUBXN11
B_cell_vs_CD4T_cellplusRAB39
B_cell_vs_CD4T_cellplusEVI2B
B_cell_vs_CD4T_cellplusGALNS
B_cell_vs_CD4T_cellplusCRIP3
B_cell_vs_CD4T_cellplusHES6
B_cell_vs_CD4T_cellplusHMGXB4
.........

Format B (File ends in .gmt)

One signature per line, (however "plus" and "minus" genes are split into two lines) Each line:

<Signature Name> TAB <Signature Description> TAB <Gene1> TAB <Gene2> … (etc) 

The signature description is ignored by FastProject: that column just exists so the format conforms to the standard .gmt format.

To denote signature signs, use two lines to show the signature, with the "plus" genes in one and the "minus" genes in the other. Add "_plus" to the signature name on the line with the "plus" genes and "_minus" to the signature name on the line with the "minus" genes.

Example:

MEMORY_VS_NAIVE_CD8_TCELL_plusGSE16522PRHOCOFD1MLF1...
MEMORY_VS_NAIVE_CD8_TCELL_minusGSE16522PTPRKS100A5IL1A...
BCELL_VS_LUPUS_BCELL_plusGSE10325OXTKCNH2BTBD7...
BCELL_VS_LUPUS_BCELL_minusGSE10325VAMP5WSB2CCR2...

Clone this wiki locally