Seqanswers Leaderboard Ad

Collapse

Announcement

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

  • Parsing file to retrieve specific pattern

    I have a txt file with several rows. Each row contains several words separated by space. I want to print the values which have pattern like amenXXXXXXX (where length of X string is different in many rows). I tried grep with -o option and some other one-liners but not able to print only the words that have the pattern like amen. Indeed I want the output like:

    amen2wit
    amen3grps
    amen0qw
    amen8dbskm.....

    I will appreciate your expert suggestions.

  • #2
    Are all amenXXXXXXX in the same column? If yes, you could just:

    cut -f N

    Where N is the column number.
    savetherhino.org

    Comment


    • #3
      Originally posted by Shishir View Post
      I have a txt file with several rows. Each row contains several words separated by space. I want to print the values which have pattern like amenXXXXXXX (where length of X string is different in many rows). I tried grep with -o option and some other one-liners but not able to print only the words that have the pattern like amen. Indeed I want the output like:

      amen2wit
      amen3grps
      amen0qw
      amen8dbskm.....

      I will appreciate your expert suggestions.
      What about this:

      Code:
      echo "no pattern
      amen
      amenXXX
      foo amenBLA foo2
      etc" > mytext.txt
      
      grep -o 'amen[^ ]*' mytext.txt
      amen
      amenXXX
      amenBLA
      How do you want to deal with the pattern occurring more than once per row, if that happens?

      Comment


      • #4
        Thanks you all !!

        Originally posted by dariober View Post
        What about this:

        Code:
        echo "no pattern
        amen
        amenXXX
        foo amenBLA foo2
        etc" > mytext.txt
        
        grep -o 'amen[^ ]*' mytext.txt
        amen
        amenXXX
        amenBLA
        How do you want to deal with the pattern occurring more than once per row, if that happens?

        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, Yesterday, 06:57 AM
        0 responses
        12 views
        0 likes
        Last Post seqadmin  
        Started by seqadmin, 05-06-2024, 07:17 AM
        0 responses
        16 views
        0 likes
        Last Post seqadmin  
        Started by seqadmin, 05-02-2024, 08:06 AM
        0 responses
        20 views
        0 likes
        Last Post seqadmin  
        Started by seqadmin, 04-30-2024, 12:17 PM
        0 responses
        24 views
        0 likes
        Last Post seqadmin  
        Working...
        X