Author:ligc
Date:19/5/15
下载参考基因组
我们的实验对象是小鼠(Mus musculus),所以进入UCSC官网下载小鼠的基因组文件.
![](https://img.haomeiwen.com/i15845576/d24a092c199b9923.png)
![](https://img.haomeiwen.com/i15845576/ad11beab59b86467.png)
下载基因组注释文件
进入gencode官网https://www.gencodegenes.org/下载小鼠基因组对应的gtf或gff文件
![](https://img.haomeiwen.com/i15845576/e67f73896dc78d11.png)
![](https://img.haomeiwen.com/i15845576/eab05be90afb5d34.png)
GTF(General Transfer Format)分为如下几列:
- seqname - name of the chromosome or scaffold; chromosome names can be given with or without the 'chr' prefix. Important note: the seqname must be one used within Ensembl, i.e. a standard chromosome name or an Ensembl identifier such as a scaffold ID, without any additional content such as species or assembly. See the example GFF output below.
- source - name of the program that generated this feature, or the data source (database or project name)
- feature - feature type name, e.g. Gene, Variation, Similarity
- start - Start position of the feature, with sequence numbering starting at 1.
- end - End position of the feature, with sequence numbering starting at 1.
- score- A floating point value.
- strand - defined as + (forward) or - (reverse).
- frame - One of '0', '1' or '2'. '0' indicates that the first base is a codon, '1' that the second base is the first base of a codon, and so on..
-
attribute - A semicolon-separated list of tag-value pairs, providing additional information about each feature.
GFF3
GFF3(General Feature Format)的格式如下:
- seqid - name of the chromosome or scaffold; chromosome names can be given with or without the 'chr' prefix. Important note: the seq ID must be one used within Ensembl, i.e. a standard chromosome name or an Ensembl identifier such as a scaffold ID, without any additional content such as species or assembly. See the example GFF output below.
- source - name of the program that generated this feature, or the data source (database or project name)
- type - type of feature. Must be a term or accession from the SOFA sequence ontology
- start - Start position of the feature, with sequence numbering starting at 1.
- end - End position of the feature, with sequence numbering starting at 1.
- score - A floating point value.
- strand - defined as + (forward) or - (reverse).
- phase - One of '0', '1' or '2'. '0' indicates that the first base of the feature is the first base of a codon, '1' that the second base is the first base of a codon, and so on..
- attributes - A semicolon-separated list of tag-value pairs, providing additional information about each feature. Some of these tags are predefined, e.g. ID, Name, Alias, Parent - see the GFF documentation for more details.
Integrative Genomics Viewer (IGV)
https://software.broadinstitute.org/software/igv/
The Integrative Genomics Viewer (IGV) is a high-performance visualization tool for interactive exploration of large, integrated genomic datasets.
网友评论