Extracting topTable data from saved file
1
0
Entering edit mode
Voke AO ▴ 760
@voke-ao-4830
Last seen 9.6 years ago
Hi all, I have a few topTables saved from my Limma analyses of a number of studies. I would like to know what genes are common to groups of these tables, what genes are unique to each table and eventually draw a Venn diagram if possible. Any suggestions will be greatly appreciated. Thanks. -Avoks
limma limma • 1.3k views
ADD COMMENT
0
Entering edit mode
Ekta Jain ▴ 370
@ekta-jain-5131
Last seen 9.6 years ago
Hi Avoks, What you are looking for is the decideTests(). Assuming 'fit' is your LIMMA fit object, something like: > Results <- decideTests(fit) # gives you counts of upregulated(1) and downregulated(-1) genes in each comparison. Kindly note that default cut-off for LogFC =0, this can be changed > summary(Results) > vennDiagram(Results) # You can pull out commonly upregulated gene lists by doing geneList<-which(Results[,1] == 1 & results[,2] == 1) # and commonly downregulated by changing 1 to -1 above Hope this helps, Ekta -----Original Message----- From: bioconductor-bounces@r-project.org [mailto:bioconductor- bounces@r-project.org] On Behalf Of Ovokeraye Achinike-Oduaran Sent: 15 May 2012 08:26 To: bioconductor at r-project.org Subject: [BioC] Extracting topTable data from saved file Hi all, I have a few topTables saved from my Limma analyses of a number of studies. I would like to know what genes are common to groups of these tables, what genes are unique to each table and eventually draw a Venn diagram if possible. Any suggestions will be greatly appreciated. Thanks. -Avoks _______________________________________________ Bioconductor mailing list Bioconductor at r-project.org https://stat.ethz.ch/mailman/listinfo/bioconductor Search the archives: http://news.gmane.org/gmane.science.biology.informatics.conductor The information contained in this electronic message and in any attachments to this message is confidential, legally privileged and intended only for use by the person or entity to which this electronic message is addressed. If you are not the intended recipient, and have received this message in error, please notify the sender and system manager by return email and delete the message and its attachments and also you are hereby notified that any distribution, copying, review, retransmission, dissemination or other use of this electronic transmission or the information contained in it is strictly prohibited. Please note that any views or opinions presented in this email are solely those of the author and may not represent those of the Company or bind the Company. Any commitments made over e-mail are not financially binding on the company unless accompanied or followed by a valid purchase order. This message has been scanned for viruses and dangerous content by Mail Scanner, and is believed to be clean. The Company accepts no liability for any damage caused by any virus transmitted by this email. www.jubl.com
ADD COMMENT
0
Entering edit mode
Thanks Ekta. I don't think that that's what I'm looking for though. I probably wasn't very clear with my question. I already have topTables meeting my set thresholds from different studies relating to a certain condition saved on my comp. So, what I'm looking to do now is to call on these saved text files to get a list of genes common across, say, tables 1,2 &3 (an intersect). As well as a list of unique genes per table (3 lists) and perhaps, a Venn diagram capturing the data from the 3 tables(1 Venn diagram with 3 circles). But thanks again. -Avoks On 15 May 2012, at 6:03 AM, Ekta Jain <ekta_jain at="" jubilantbiosys.com=""> wrote: > Hi Avoks, > What you are looking for is the decideTests(). Assuming 'fit' is your LIMMA fit object, something like: >> Results <- decideTests(fit) > # gives you counts of upregulated(1) and downregulated(-1) genes in each comparison. Kindly note that default cut-off for LogFC =0, this can be changed >> summary(Results) >> vennDiagram(Results) > # You can pull out commonly upregulated gene lists by doing > geneList<-which(Results[,1] == 1 & results[,2] == 1) > # and commonly downregulated by changing 1 to -1 above > > Hope this helps, > Ekta > > > -----Original Message----- > From: bioconductor-bounces at r-project.org [mailto:bioconductor- bounces at r-project.org] On Behalf Of Ovokeraye Achinike-Oduaran > Sent: 15 May 2012 08:26 > To: bioconductor at r-project.org > Subject: [BioC] Extracting topTable data from saved file > > Hi all, > > I have a few topTables saved from my Limma analyses of a number of studies. I would like to know what genes are common to groups of these tables, what genes are unique to each table and eventually draw a Venn diagram if possible. Any suggestions will be greatly appreciated. > > Thanks. > > -Avoks > > _______________________________________________ > Bioconductor mailing list > Bioconductor at r-project.org > https://stat.ethz.ch/mailman/listinfo/bioconductor > Search the archives: http://news.gmane.org/gmane.science.biology.informatics.conductor > The information contained in this electronic message and in any attachments to this message is confidential, legally privileged and intended only for use by the person or entity to which this electronic message is addressed. If you are not the intended recipient, and have received this message in error, please notify the sender and system manager by return email and delete the message and its attachments and also you are hereby notified that any distribution, copying, review, retransmission, dissemination or other use of this electronic transmission or the information contained in it is strictly prohibited. Please note that any views or opinions presented in this email are solely those of the author and may not represent those of the Company or bind the Company. Any commitments made over e-mail are not financially binding on the company unless accompanied or followed by a valid purchase order. This message has been scanned for viruses and dangerous content by Mail Scanner, and is believed to be clean. The Company accepts no liability for any damage caused by any virus transmitted by this email. > www.jubl.com >
ADD REPLY
0
Entering edit mode
---- On Mon, 14 May 2012 23:50:48 -0700 Ovokeraye Achinike-Oduaran <ovokeraye@gmail.com> wrote ---- Thanks Ekta. I don't think that that's what I'm looking for though. I probably wasn't very clear with my question. I already have topTables meeting my set thresholds from different studies relating to a certain condition saved on my comp. So, what I'm looking to do now is to call on these saved text files to get a list of genes common across, say, tables 1,2 &3 (an intersect). As well as a list of unique genes per table (3 lists) and perhaps, a Venn diagram capturing the data from the 3 tables(1 Venn diagram with 3 circles). But thanks again. >Yeah, I wanna know if there is a way to do it in R too cos I was doing comparison like this in excel by using advanced filtering to get unique genes and then matched between the lists. Guess it's not quite smart though.. Cheers, Michelle -Avoks On 15 May 2012, at 6:03 AM, Ekta Jain <Ekta_Jain@jubilantbiosys.com> wrote: > Hi Avoks, > What you are looking for is the decideTests(). Assuming 'fit' is your LIMMA fit object, something like: >> Results <- decideTests(fit) > # gives you counts of upregulated(1) and downregulated(-1) genes in each comparison. Kindly note that default cut-off for LogFC =0, this can be changed >> summary(Results) >> vennDiagram(Results) > # You can pull out commonly upregulated gene lists by doing > geneList<-which(Results[,1] == 1 & results[,2] == 1) > # and commonly downregulated by changing 1 to -1 above > > Hope this helps, > Ekta > > > -----Original Message----- > From: bioconductor-bounces@r-project.org [mailto:bioconductor- bounces@r-project.org] On Behalf Of Ovokeraye Achinike-Oduaran > Sent: 15 May 2012 08:26 > To: bioconductor@r-project.org > Subject: [BioC] Extracting topTable data from saved file > > Hi all, > > I have a few topTables saved from my Limma analyses of a number of studies. I would like to know what genes are common to groups of these tables, what genes are unique to each table and eventually draw a Venn diagram if possible. Any suggestions will be greatly appreciated. > > Thanks. > > -Avoks > > _______________________________________________ > Bioconductor mailing list > Bioconductor@r-project.org > https://stat.ethz.ch/mailman/listinfo/bioconductor > Search the archives: http://news.gmane.org/gmane.science.biology.informatics.conductor > The information contained in this electronic message and in any attachments to this message is confidential, legally privileged and intended only for use by the person or entity to which this electronic message is addressed. If you are not the intended recipient, and have received this message in error, please notify the sender and system manager by return email and delete the message and its attachments and also you are hereby notified that any distribution, copying, review, retransmission, dissemination or other use of this electronic transmission or the information contained in it is strictly prohibited. Please note that any views or opinions presented in this email are solely those of the author and may not represent those of the Company or bind the Company. Any commitments made over e-mail are not financially binding on the company unless accompanied or followed by a valid purchase order. This message has been scanned for viruses and dangerous content by Mail Scanner,! and is believed to be clean. The Company accepts no liability for any damage caused by any virus transmitted by this email. > www.jubl.com > _______________________________________________ Bioconductor mailing list Bioconductor@r-project.org https://stat.ethz.ch/mailman/listinfo/bioconductor Search the archives: http://news.gmane.org/gmane.science.biology.informatics.conductor [[alternative HTML version deleted]]
ADD REPLY
0
Entering edit mode
Hi Avoks, The toptable is generated from your fit object. In LIMMA, you would need an object for the Venn Diagram function (http://127.0.0.1:22029/library/limma/html/venn.html) this in your case should be a vennCounts or decideTests(fit). But if you do not have access to your fit object and only have the toptable, then what you could do is read your toptables data in separate vectors or dataframes. Intersect() and merge() can give you common genes BUT between 2 vectors only. Intersect2() can apparently work on more than two vectors http://cran.r-project.org/web/packages/MergeGUI/MergeGUI.pdf. These can give you a start. You could read more on the same functions as well. HTH, Ekta -----Original Message----- From: Ovokeraye Achinike-Oduaran [mailto:ovokeraye@gmail.com] Sent: 15 May 2012 12:21 To: Ekta Jain Cc: bioconductor at r-project.org Subject: Re: [BioC] Extracting topTable data from saved file Thanks Ekta. I don't think that that's what I'm looking for though. I probably wasn't very clear with my question. I already have topTables meeting my set thresholds from different studies relating to a certain condition saved on my comp. So, what I'm looking to do now is to call on these saved text files to get a list of genes common across, say, tables 1,2 &3 (an intersect). As well as a list of unique genes per table (3 lists) and perhaps, a Venn diagram capturing the data from the 3 tables(1 Venn diagram with 3 circles). But thanks again. -Avoks On 15 May 2012, at 6:03 AM, Ekta Jain <ekta_jain at="" jubilantbiosys.com=""> wrote: > Hi Avoks, > What you are looking for is the decideTests(). Assuming 'fit' is your LIMMA fit object, something like: >> Results <- decideTests(fit) > # gives you counts of upregulated(1) and downregulated(-1) genes in each comparison. Kindly note that default cut-off for LogFC =0, this can be changed >> summary(Results) >> vennDiagram(Results) > # You can pull out commonly upregulated gene lists by doing > geneList<-which(Results[,1] == 1 & results[,2] == 1) > # and commonly downregulated by changing 1 to -1 above > > Hope this helps, > Ekta > > > -----Original Message----- > From: bioconductor-bounces at r-project.org [mailto:bioconductor- bounces at r-project.org] On Behalf Of Ovokeraye Achinike-Oduaran > Sent: 15 May 2012 08:26 > To: bioconductor at r-project.org > Subject: [BioC] Extracting topTable data from saved file > > Hi all, > > I have a few topTables saved from my Limma analyses of a number of studies. I would like to know what genes are common to groups of these tables, what genes are unique to each table and eventually draw a Venn diagram if possible. Any suggestions will be greatly appreciated. > > Thanks. > > -Avoks > > _______________________________________________ > Bioconductor mailing list > Bioconductor at r-project.org > https://stat.ethz.ch/mailman/listinfo/bioconductor > Search the archives: http://news.gmane.org/gmane.science.biology.informatics.conductor > The information contained in this electronic message and in any attachments to this message is confidential, legally privileged and intended only for use by the person or entity to which this electronic message is addressed. If you are not the intended recipient, and have received this message in error, please notify the sender and system manager by return email and delete the message and its attachments and also you are hereby notified that any distribution, copying, review, retransmission, dissemination or other use of this electronic transmission or the information contained in it is strictly prohibited. Please note that any views or opinions presented in this email are solely those of the author and may not represent those of the Company or bind the Company. Any commitments made over e-mail are not financially binding on the company unless accompanied or followed by a valid purchase order. This message has been scanned for viruses and dangerous content by Mail Scanner, and is believed to be clean. The Company accepts no liability for any damage caused by any virus transmitted by this email. > www.jubl.com > The information contained in this electronic message and in any attachments to this message is confidential, legally privileged and intended only for use by the person or entity to which this electronic message is addressed. If you are not the intended recipient, and have received this message in error, please notify the sender and system manager by return email and delete the message and its attachments and also you are hereby notified that any distribution, copying, review, retransmission, dissemination or other use of this electronic transmission or the information contained in it is strictly prohibited. Please note that any views or opinions presented in this email are solely those of the author and may not represent those of the Company or bind the Company. Any commitments made over e-mail are not financially binding on the company unless accompanied or followed by a valid purchase order. This message has been scanned for viruses and dangerous content by Mail Scanner, and is believed to be clean. The Company accepts no liability for any damage caused by any virus transmitted by this email. www.jubl.com
ADD REPLY
0
Entering edit mode
Thanks a bunch, Ekta! Sorted. -Avoks On Tue, May 15, 2012 at 12:29 PM, Ekta Jain <ekta_jain at="" jubilantbiosys.com=""> wrote: > Hi Avoks, > The toptable is generated from your fit object. In LIMMA, you would need an object for the Venn Diagram function (http://127.0.0.1:22029/library/limma/html/venn.html) this in your case should be a vennCounts or decideTests(fit). > > But if you do not have access to your fit object and only have the toptable, then what you could do is read your toptables data in separate vectors or dataframes. Intersect() and merge() can give you common genes BUT between 2 vectors only. > > Intersect2() can apparently work on more than two vectors http://cran.r-project.org/web/packages/MergeGUI/MergeGUI.pdf. > > These can give you a start. You could read more on the same functions as well. > > > HTH, > Ekta > > > -----Original Message----- > From: Ovokeraye Achinike-Oduaran [mailto:ovokeraye at gmail.com] > Sent: 15 May 2012 12:21 > To: Ekta Jain > Cc: bioconductor at r-project.org > Subject: Re: [BioC] Extracting topTable data from saved file > > Thanks Ekta. I don't think that that's what I'm looking for though. I probably wasn't very clear with my question. I already have topTables meeting my set thresholds from different studies relating to a certain condition saved on my comp. So, what I'm looking to do now is to call on these saved text files to get a list of genes common across, say, tables 1,2 &3 (an intersect). As well as a list of unique genes per table (3 lists) and perhaps, a Venn diagram capturing the data from the 3 tables(1 Venn diagram with 3 circles). But thanks again. > > -Avoks > > > > > On 15 May 2012, at 6:03 AM, Ekta Jain <ekta_jain at="" jubilantbiosys.com=""> wrote: > >> Hi Avoks, >> What you are looking for is the decideTests(). Assuming 'fit' is your LIMMA fit object, something like: >>> Results <- decideTests(fit) >> # gives you counts of upregulated(1) and downregulated(-1) genes in each comparison. Kindly note that default cut-off for LogFC =0, this can be changed >>> summary(Results) >>> vennDiagram(Results) >> # You can pull out commonly upregulated gene lists by doing >> geneList<-which(Results[,1] == 1 & results[,2] == 1) >> # and commonly downregulated by changing 1 to -1 above >> >> Hope this helps, >> Ekta >> >> >> -----Original Message----- >> From: bioconductor-bounces at r-project.org [mailto:bioconductor- bounces at r-project.org] On Behalf Of Ovokeraye Achinike-Oduaran >> Sent: 15 May 2012 08:26 >> To: bioconductor at r-project.org >> Subject: [BioC] Extracting topTable data from saved file >> >> Hi all, >> >> I have a few topTables saved from my Limma analyses of a number of studies. I would like to know what genes are common to groups of these tables, what genes are unique to each table and eventually draw a Venn diagram if possible. Any suggestions will be greatly appreciated. >> >> Thanks. >> >> -Avoks >> >> _______________________________________________ >> Bioconductor mailing list >> Bioconductor at r-project.org >> https://stat.ethz.ch/mailman/listinfo/bioconductor >> Search the archives: http://news.gmane.org/gmane.science.biology.informatics.conductor >> The information contained in this electronic message and in any attachments to this message is confidential, legally privileged and intended only for use by the person or entity to which this electronic message is addressed. If you are not the intended recipient, and have received this message in error, please notify the sender and system manager by return email and delete the message and its attachments and also you are hereby notified that any distribution, copying, review, retransmission, dissemination or other use of this electronic transmission or the information contained in it is strictly prohibited. Please note that any views or opinions presented in this email are solely those of the author and may not represent those of the Company or bind the Company. Any commitments made over e-mail are not financially binding on the company unless accompanied or followed by a valid purchase order. This message has been scanned for viruses and dangerous content by Mail Scanner, and is believed to be clean. The Company accepts no liability for any damage caused by any virus transmitted by this email. >> www.jubl.com >> > The information contained in this electronic message and in any attachments to this message is confidential, legally privileged and intended only for use by the person or entity to which this electronic message is addressed. If you are not the intended recipient, and have received this message in error, please notify the sender and system manager by return email and delete the message and its attachments and also you are hereby notified that any distribution, copying, review, retransmission, dissemination or other use of this electronic transmission or the information contained in it is strictly prohibited. Please note that any views or opinions presented in this email are solely those of the author and may not represent those of the Company or bind the Company. Any commitments made over e-mail are not financially binding on the company unless accompanied or followed by a valid purchase order. This message has been scanned for viruses and dangerous content by Mail Scanner, and is believed to be clean. The Company accepts no liability for any damage caused by any virus transmitted by this email. > www.jubl.com >
ADD REPLY

Login before adding your answer.

Traffic: 1100 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6