Seqanswers Leaderboard Ad

Collapse

Announcement

Collapse
No announcement yet.
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • envfit, R, writing output in a tab-delimited format

    Greetings, I was wondering if anyone had any experience in writing the output of envfit in the R function to a tab-delimited file format. I performed envfit on a matrix of 16S rRNA OTUs over an nmds result, and would now like to filter the results, but find the R output difficult to use on its own, and can't seem get it write to a file.

    thanks,

    -tony

  • #2
    I work these things out using the str() function in R-

    Consider an example envfit object made by using the provided commands:

    Code:
    > data(varespec)
    > data(varechem)
    > library(MASS)
    > ord <- metaMDS(varespec)
    (skipped output)
    > (fit <- envfit(ord, varechem, perm = 999))
    (skipped output)
    Then you can do:
    Code:
    > str(fit)
    List of 3
     $ vectors  :List of 5
      ..$ arrows      : num [1:14, 1:2] -0.0573 0.6197 0.7665 0.6852 0.6325 ...
      .. ..- attr(*, "dimnames")=List of 2
      .. .. ..$ : chr [1:14] "N" "P" "K" "Ca" ...
      .. .. ..$ : chr [1:2] "NMDS1" "NMDS2"
      .. ..- attr(*, "decostand")= chr "normalize"
      ..$ r           : Named num [1:14] 0.254 0.194 0.181 0.412 0.427 ...
      .. ..- attr(*, "names")= chr [1:14] "N" "P" "K" "Ca" ...
      ..$ permutations: int 999
      ..$ pvals       : num [1:14] 0.061 0.099 0.13 0.003 0.002 0.137 0.001 0.002 0.001 0.11 .
    (note: skipped longer output)
    That shows a long output, but the whole thing is a list of 3 items. The first one of those is called "$vectors" and is in turn a list of 5 items. If what you're looking to write to a file are the list items $arrows, $r, and $pvals,
    you can make them into a dataframe like:
    Code:
    df <- data.frame((fit$vectors)$arrows, (fit$vectors)$r, (fit$vectors)$pvals)
    Then you can write that to a file with write.table().

    Comment

    Latest Articles

    Collapse

    • seqadmin
      Essential Discoveries and Tools in Epitranscriptomics
      by seqadmin




      The field of epigenetics has traditionally concentrated more on DNA and how changes like methylation and phosphorylation of histones impact gene expression and regulation. However, our increased understanding of RNA modifications and their importance in cellular processes has led to a rise in epitranscriptomics research. “Epitranscriptomics brings together the concepts of epigenetics and gene expression,” explained Adrien Leger, PhD, Principal Research Scientist...
      04-22-2024, 07:01 AM
    • seqadmin
      Current Approaches to Protein Sequencing
      by seqadmin


      Proteins are often described as the workhorses of the cell, and identifying their sequences is key to understanding their role in biological processes and disease. Currently, the most common technique used to determine protein sequences is mass spectrometry. While still a valuable tool, mass spectrometry faces several limitations and requires a highly experienced scientist familiar with the equipment to operate it. Additionally, other proteomic methods, like affinity assays, are constrained...
      04-04-2024, 04:25 PM

    ad_right_rmr

    Collapse

    News

    Collapse

    Topics Statistics Last Post
    Started by seqadmin, Yesterday, 08:47 AM
    0 responses
    16 views
    0 likes
    Last Post seqadmin  
    Started by seqadmin, 04-11-2024, 12:08 PM
    0 responses
    60 views
    0 likes
    Last Post seqadmin  
    Started by seqadmin, 04-10-2024, 10:19 PM
    0 responses
    60 views
    0 likes
    Last Post seqadmin  
    Started by seqadmin, 04-10-2024, 09:21 AM
    0 responses
    54 views
    0 likes
    Last Post seqadmin  
    Working...
    X