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
      Recent Advances in Sequencing Analysis Tools
      by seqadmin


      The sequencing world is rapidly changing due to declining costs, enhanced accuracies, and the advent of newer, cutting-edge instruments. Equally important to these developments are improvements in sequencing analysis, a process that converts vast amounts of raw data into a comprehensible and meaningful form. This complex task requires expertise and the right analysis tools. In this article, we highlight the progress and innovation in sequencing analysis by reviewing several of the...
      05-06-2024, 07:48 AM
    • 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

    ad_right_rmr

    Collapse

    News

    Collapse

    Topics Statistics Last Post
    Started by seqadmin, Today, 07:03 AM
    0 responses
    10 views
    0 likes
    Last Post seqadmin  
    Started by seqadmin, 05-10-2024, 06:35 AM
    0 responses
    31 views
    0 likes
    Last Post seqadmin  
    Started by seqadmin, 05-09-2024, 02:46 PM
    0 responses
    41 views
    0 likes
    Last Post seqadmin  
    Started by seqadmin, 05-07-2024, 06:57 AM
    0 responses
    33 views
    0 likes
    Last Post seqadmin  
    Working...
    X