Seqanswers Leaderboard Ad

Collapse

Announcement

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

  • How can I extract each APAsite possibility from this table?

    Hello,

    I have an output from APATrap package, which gives back the predicted APA sites from samples. I need to make a list from all the possibles APAs to cross it with miRNAs database and get known if there is a match. The problem is a have a huges lists from 16 samples, and I need a way to automatize this task for reproducibility.

    I have this summed up table:

    Predicted_APA.TOTAL Loci.TOTAL

    41867799,41867388,41866990 chr17:41866927-41867904

    And I need something like this:

    CHR Loci.UTR.TOTAL Locus initial Locus Final

    chr17 41866927-41867799 41866927 41867799
    chr17 41866927-41867388 41866927 41867388
    chr17 41866927-41866990 41866927 41866990

    Do you know any tip or clue to do it for 16 samples with 1000 results each one?

    Thanks in advance, and sorry if my question isn't appropriate. I will answer any question for further people in the same situation.
    Beginner @ RNA-Seq, R programming, Linux, Python.-

    Please be patients!

  • #2
    I got this answer from another forum, so I add it here in case someone needs it.

    input:
    $cat test.txt

    Predicted_APA.TOTAL Loci.TOTAL
    41867799,41867388,41866990 chr17:41866927-41867904
    output:
    $awk -v FS='[-:\t]' -v OFS="\t" ' NR != 1 {split($1,a,","); for (i in a) {print $2,$3"-"a[i],$3,a[i]}}' test.txt

    chr17 41866927-41867799 41866927 41867799
    chr17 41866927-41867388 41866927 41867388
    chr17 41866927-41866990 41866927 41866990
    Beginner @ RNA-Seq, R programming, Linux, Python.-

    Please be patients!

    Comment

    Latest Articles

    Collapse

    • seqadmin
      Latest Developments in Precision Medicine
      by seqadmin



      Technological advances have led to drastic improvements in the field of precision medicine, enabling more personalized approaches to treatment. This article explores four leading groups that are overcoming many of the challenges of genomic profiling and precision medicine through their innovative platforms and technologies.

      Somatic Genomics
      “We have such a tremendous amount of genetic diversity that exists within each of us, and not just between us as individuals,”...
      05-24-2024, 01:16 PM
    • 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

    ad_right_rmr

    Collapse

    News

    Collapse

    Topics Statistics Last Post
    Started by seqadmin, Yesterday, 06:55 AM
    0 responses
    12 views
    0 likes
    Last Post seqadmin  
    Started by seqadmin, 05-30-2024, 03:16 PM
    0 responses
    24 views
    0 likes
    Last Post seqadmin  
    Started by seqadmin, 05-29-2024, 01:32 PM
    0 responses
    28 views
    0 likes
    Last Post seqadmin  
    Started by seqadmin, 05-24-2024, 07:15 AM
    0 responses
    215 views
    0 likes
    Last Post seqadmin  
    Working...
    X