Seqanswers Leaderboard Ad

Collapse

Announcement

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

  • Command to reverse heading order

    Hi everyone,

    I am a very beginner for linux command and I need help in the command needed to perform this action for the heading of my contig.
    Example:
    I have a sentence which is in this way
    > contig85 |[average coverage: 76][Limit0.01]

    How am I going to rearrange it into:
    > [average coverage:76][Limit 0.01] contig85

    Thank you very much
    XY

  • #2
    Hi evepy88,
    In Linux you can use awk to rearrange your fields
    The following code will do the job:
    Code:
    awk 'BEGIN{FS="[|>]"}{print "> "$3$2}'
    FS="[|>]" determines the field seperators to be "|" or ">"
    $3 and $2 refer to the third and second field then.

    awk can be used for every line of a file:
    Code:
    awk 'BEGIN{FS="[|>]"}{print "> "$3$2}' FILENAME
    or with the pipe:
    Code:
    echo "> contig85 |[average coverage: 76][Limit0.01]" | awk 'BEGIN{FS="[|>]"}{print "> "$3$2}'
    > [average coverage: 76][Limit0.01] contig85

    Comment


    • #3
      Thanks

      Thanks hanshart

      Comment

      Latest Articles

      Collapse

      • seqadmin
        Choosing Between NGS and qPCR
        by seqadmin



        Next-generation sequencing (NGS) and quantitative polymerase chain reaction (qPCR) are essential techniques for investigating the genome, transcriptome, and epigenome. In many cases, choosing the appropriate technique is straightforward, but in others, it can be more challenging to determine the most effective option. A simple distinction is that smaller, more focused projects are typically better suited for qPCR, while larger, more complex datasets benefit from NGS. However,...
        10-18-2024, 07:11 AM
      • seqadmin
        Non-Coding RNA Research and Technologies
        by seqadmin




        Non-coding RNAs (ncRNAs) do not code for proteins but play important roles in numerous cellular processes including gene silencing, developmental pathways, and more. There are numerous types including microRNA (miRNA), long ncRNA (lncRNA), circular RNA (circRNA), and more. In this article, we discuss innovative ncRNA research and explore recent technological advancements that improve the study of ncRNAs.

        Nobel Prize for MicroRNA Discovery
        This week,...
        10-07-2024, 08:07 AM

      ad_right_rmr

      Collapse

      News

      Collapse

      Topics Statistics Last Post
      Started by seqadmin, 11-01-2024, 06:09 AM
      0 responses
      17 views
      0 likes
      Last Post seqadmin  
      Started by seqadmin, 10-30-2024, 05:31 AM
      0 responses
      18 views
      0 likes
      Last Post seqadmin  
      Started by seqadmin, 10-24-2024, 06:58 AM
      0 responses
      24 views
      0 likes
      Last Post seqadmin  
      Started by seqadmin, 10-23-2024, 08:43 AM
      0 responses
      53 views
      0 likes
      Last Post seqadmin  
      Working...
      X