![]() |
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
Plotting ChIP-seq read profiles relative to genomic features | Gilman85 | Bioinformatics | 7 | 12-07-2012 10:45 AM |
Excel file with Blast info | Chuckytah | Bioinformatics | 1 | 04-24-2011 08:07 PM |
Dmel Genomic Features files | chrishawk | Bioinformatics | 1 | 11-23-2010 11:00 AM |
BEDTools: A flexible suite of utilities for comparing genomic features | nilshomer | Literature Watch | 5 | 02-01-2010 10:36 AM |
Export HCDiff file from ReferenceMapper as an Excel file | Nigel | Bioinformatics | 1 | 09-30-2009 07:51 AM |
![]() |
|
Thread Tools |
![]() |
#1 |
Junior Member
Location: oregon Join Date: Jan 2012
Posts: 3
|
![]()
Hi, everyone,
I'm totally new to RNA-seq. I have collaborated with other lab to sequence one Chip-seq library. Now I have some half-analyzed tags data in excel file the column title like this, totally about 1000 rows: Chr CenterMeter SummedHeight ChrStart ChrEnd. I'm wondering how I start from these data to generate the genomic feature of these tags? 1 how to translate xls files to bed or other files? 2 how I can start from the tags chromosomal location files to get while tags genomic features distribution, like Transcription units, CpG islands, repeats, et.al. I can use a lot bit of R language not a expert. Thanks a lot for your help! |
![]() |
![]() |
![]() |
#2 |
Senior Member
Location: Berlin Join Date: Jul 2011
Posts: 156
|
![]()
1. The BED format is simple:
http://genome.ucsc.edu/FAQ/FAQformat.html#format1 You can write that with write.table in R. You can read an Excel sheet with e.g. read.xls from the gdata package. 2. Could you re-write this question more clearly? If you mean that you want to know how to compare the genomic locations with known genomic features, you can use e.g. intersectBed from BEDtools, if you have the features in a GFF or BED file. |
![]() |
![]() |
![]() |
#3 |
Junior Member
Location: oregon Join Date: Jan 2012
Posts: 3
|
![]()
HI, Arvid, Thanks a lot for your help.
I only have the tags' genomic location in excel files, like chr 3, 1398765. I want to get the genomic features of these location. like are these tags prefer clustering at CpGi sland or transcription units or other regions ? Thanks a lot! |
![]() |
![]() |
![]() |
#4 |
Senior Member
Location: East Coast USA Join Date: Feb 2008
Posts: 7,081
|
![]()
You should be able to use the "table browser" from UCSC (http://genome.ucsc.edu) to get the genomic features info.
See the help page here: http://genome.ucsc.edu/goldenPath/he...ablesHelp.html Tutorials available here: http://www.openhelix.com/cgi/tutorialInfo.cgi?id=28 |
![]() |
![]() |
![]() |
#5 |
Junior Member
Location: oregon Join Date: Jan 2012
Posts: 3
|
![]()
hi, I guess I didn't give enough information. I have a file like this:
chrom chromStart chromEnd chr13 38021582 38023245 chr11 22920116 22921002 chr15 91737068 91740707 chr18 48206683 48207725 chr9 78326184 78327354 chr10 57693494 57697038 chrX 71688149 71689220 chrX 130684504 130685256 chr4 149618312 149620001 chr11 3031766 3033033 chr1 193808626 193809612 chr13 94710571 94711334 chr9 64025568 64026410 chr17 45705704 45706771 ...... ...... My question is how I can get the genomic features of these location? I'm pretty new to bioinformatics. A little bit of more detail will be much appreciated. Thanks a lot! ps: thanks GenoMax, I tried your link, however I don't know where to input the csv file into the genome browser. looks they need a table for identifiers (names/accessions) table. |
![]() |
![]() |
![]() |
#6 | |
Senior Member
Location: Berlin Join Date: Jul 2011
Posts: 156
|
![]() Quote:
Code:
intersectBed -a your_chr_loc.bed -b genomic_features.gff > overlapping_features.gff |
|
![]() |
![]() |
![]() |
Tags |
chip-seq, excel file, genomic feature, integration sites |
Thread Tools | |
|
|