<div dir="ltr">O objeto do tipo matrix em R somente aceita variáveis do mesmo tipo. Como você está lendo o CSV que contém caracteres (nomes dos genes) e valores numéricos (expressão), o R converte tudo para caracter. <div>Você precisa colocar a coluna do nome dos genes no rownames, excluir a coluna de nome de genes e converter tudo em uma matriz numérica.</div><div><br></div><div>Assim você poderá trabalhar com ela</div><div><br></div><div>daniel</div><div><br></div><div><br></div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">Em qui., 4 de ago. de 2022 às 10:52, Michele Claire Breton por (R-br) <<a href="mailto:r-br@listas.c3sl.ufpr.br">r-br@listas.c3sl.ufpr.br</a>> escreveu:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr">Caríssimos(as) utilizadores(as) do R,<div><br></div><div>Estou em outro nível de problema.</div><div>Quero converter FPKM em log2CPM. Para tanto, fiz o seguinte: <br clear="all"><div><br></div><div>dados<-read.csv("/home/Genes interesse NePCa.csv")<br>head(dados)<br>class(dados)</div><div><br><b>[1] "data.frame"</b></div><div><br>geneLength <- rowMeans(dados)<br></div><div><b>Error in rowMeans(dados) : 'x' must be numeric</b></div><div><pre aria-label="Console Output" role="document" id="gmail-m_8426824409116685153gmail-rstudio_console_output" style="font-family:"Ubuntu Mono",monospace;font-size:18.6667px;outline:none;border:none;word-break:break-all;margin-top:0px;margin-bottom:0px;line-height:1.25;color:rgb(255,255,255);background-color:rgb(15,15,15);white-space:pre-wrap"><span role="document" style="outline:none"><span style="color:rgb(255,102,0)"></span></span></pre><br></div><div><pre aria-label="Console Output" role="document" id="gmail-m_8426824409116685153gmail-rstudio_console_output" style="font-family:"Ubuntu Mono",monospace;font-size:18.6667px;outline:none;border:none;word-break:break-all;margin-top:0px;margin-bottom:0px;line-height:1.25;color:rgb(255,255,255);background-color:rgb(15,15,15);white-space:pre-wrap"><span role="document" style="outline:none"><span style="color:rgb(255,102,0)"></span></span></pre><pre aria-label="Console Output" role="document" id="gmail-m_8426824409116685153gmail-rstudio_console_output" style="font-family:"Ubuntu Mono",monospace;font-size:18.6667px;outline:none;border:none;word-break:break-all;margin-top:0px;margin-bottom:0px;line-height:1.25;color:rgb(255,255,255);background-color:rgb(15,15,15);white-space:pre-wrap"><span role="document" style="outline:none"><span style="color:rgb(255,102,0)"></span></span></pre><pre aria-label="Console Output" role="document" id="gmail-m_8426824409116685153gmail-rstudio_console_output" style="font-family:"Ubuntu Mono",monospace;font-size:18.6667px;outline:none;border:none;word-break:break-all;margin-top:0px;margin-bottom:0px;line-height:1.25;color:rgb(255,255,255);background-color:rgb(15,15,15);white-space:pre-wrap"><span role="document" style="outline:none"><span style="color:rgb(255,102,0)"></span></span></pre></div><div><pre aria-label="Console Output" role="document" id="gmail-m_8426824409116685153gmail-rstudio_console_output" style="font-family:"Ubuntu Mono",monospace;font-size:18.6667px;outline:none;border:none;word-break:break-all;margin-top:0px;margin-bottom:0px;line-height:1.25;color:rgb(255,255,255);background-color:rgb(15,15,15);white-space:pre-wrap"><span role="document" style="outline:none"><span style="color:rgb(255,102,0)"></span></span></pre><pre aria-label="Console Output" role="document" id="gmail-m_8426824409116685153gmail-rstudio_console_output" style="font-family:"Ubuntu Mono",monospace;font-size:18.6667px;outline:none;border:none;word-break:break-all;margin-top:0px;margin-bottom:0px;line-height:1.25;color:rgb(255,255,255);background-color:rgb(15,15,15);white-space:pre-wrap"><span role="document" style="outline:none"><span style="color:rgb(255,102,0)"></span></span></pre><pre aria-label="Console Output" role="document" id="gmail-m_8426824409116685153gmail-rstudio_console_output" style="font-family:"Ubuntu Mono",monospace;font-size:18.6667px;outline:none;border:none;word-break:break-all;margin-top:0px;margin-bottom:0px;line-height:1.25;color:rgb(255,255,255);background-color:rgb(15,15,15);white-space:pre-wrap"><span role="document" style="outline:none"><span style="color:rgb(255,102,0)"></span></span></pre>dadoslog2cpm <- convertCounts(dados,<br>                        unit = "cpm",<br>                        log = TRUE,<br>                        normalize = "tmm")<br></div><div><b>Error: countsMatrix must be a numeric matrix or dataframe of N genes x M Samples. All columns must be numeric.</b><br></div><div><pre aria-label="Console Output" role="document" id="gmail-m_8426824409116685153gmail-rstudio_console_output" style="font-family:"Ubuntu Mono",monospace;font-size:18.6667px;outline:none;border:none;word-break:break-all;margin-top:0px;margin-bottom:0px;line-height:1.25;color:rgb(255,255,255);background-color:rgb(15,15,15);white-space:pre-wrap"><span role="document" style="outline:none"><span style="color:rgb(255,102,0)"></span></span></pre><pre aria-label="Console Output" role="document" id="gmail-m_8426824409116685153gmail-rstudio_console_output" style="font-family:"Ubuntu Mono",monospace;font-size:18.6667px;outline:none;border:none;word-break:break-all;margin-top:0px;margin-bottom:0px;line-height:1.25;color:rgb(255,255,255);background-color:rgb(15,15,15);white-space:pre-wrap"><span role="document" style="outline:none"><span style="color:rgb(255,102,0)"></span></span></pre><br></div><div>Não entendo o que possa estar errado. A tabela de dados está em anexo. Vocês podem me ajudar, por favor?</div><div><br></div><div>Obrigada,</div><div><br></div><div>Michele</div>-- <br><div dir="ltr"><div dir="ltr">------------------------------------------------------------------------<br><div><i><b>Dra. Michele Claire Breton</b></i></div><div>Researcher in Bioinformatics<br></div><div><div>PhD in Cellular and Molecular Biology</div><div>CICS - Health Sciences Research Center</div><div>Faculty of Health Sciences</div><div>University of Beira Interior</div><div>Covilhã - Castelo Branco - Portugal</div></div></div></div></div></div>
_______________________________________________<br>
R-br mailing list<br>
<a href="mailto:R-br@listas.c3sl.ufpr.br" target="_blank">R-br@listas.c3sl.ufpr.br</a><br>
<a href="https://listas.inf.ufpr.br/cgi-bin/mailman/listinfo/r-br" rel="noreferrer" target="_blank">https://listas.inf.ufpr.br/cgi-bin/mailman/listinfo/r-br</a><br>
Leia o guia de postagem (<a href="http://www.leg.ufpr.br/r-br-guia" rel="noreferrer" target="_blank">http://www.leg.ufpr.br/r-br-guia</a>) e forneça código mínimo reproduzível.<br>
</blockquote></div><br clear="all"><div><br></div>-- <br><div dir="ltr" class="gmail_signature"><div dir="ltr"><div><div><div><div>Daniel Tiezzi, MD, PhD<br></div><div>Associate Professor</div>Breast Disease and Gynecologic Oncology Division<br></div>Department of Gynecology and Obstetrics<br></div>University of São Paulo<br></div>Brazil<br></div></div>