Seqanswers Leaderboard Ad

Collapse

Announcement

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

  • Help

    Hi everyone

    I have a file 1 with a column of several NCBI ID's like NC_014251.1 and a file B with several lines containing ID's and the description, i want to generate a file C with my IDs from file 1 ans its description from file B

    for one record i did this
    grep -w "NC_014251.1" ident_allbac160615.txt > NNSV15DNABNNSV15RNAB_R1R1q20allhg38nmIDsnum1.txt

    but when i am trying to do it for all file A with
    grep -wf NNSV15DNABNNSV15RNAB_R1R1q20allhg38nmIDsnum.txt ident_allbac160615.txt > NNSV15DNABNNSV15RNAB_R1R1q20allhg38nmIDsnumA.txt

    i am losing IDs and its order (from 34140 just 1440 ), any idea whats going on?

    I will appreciate any help

  • #2
    Just as a side note, perhaps you should consider a more informative title for your post...

    Comment


    • #3
      you can use the join command, below is a quick tutorial

      Tutorial on using join, a UNIX and Linux command to join lines of two files on a common field. Examples of joining two files, sorting before joining, specifying a field separator and specifying the output format.

      Comment


      • #4
        Hi everyone

        This time i will try to be more clear, i am using grep to search a string on a file, individually works fine but now i have a file with a column of strings many of them are the same and the result is only one for those that are the same.

        grep -wFf file_A Pattern_file > result


        Like:

        Pattern_file
        aQ2nVEJb
        aQ2nVEJb
        DFGTYHDF
        aQ2nVEJb

        file_A
        aQ2nVEJb 12
        DFGTYHDF 15
        sdfgRTYH 18

        The result is
        DFGTYHDF 15
        aQ2nVEJb 12

        I would like this
        aQ2nVEJb 12
        aQ2nVEJb 12
        DFGTYHDF 15
        aQ2nVEJb 12

        Any idea how to solve this?

        Tks

        Comment


        • #5
          I'm not sure if grep does duplicates so I don't know how to do it in grep. However if you do this it will work:
          Code:
          sort pattern_file > pattern_file_sorted
          sort file_a > file_a_sorted
          join pattern_file_sorted file_a_sorted > results
          You will get the list you are after.

          Comment

          Latest Articles

          Collapse

          • seqadmin
            Recent Innovations in Spatial Biology
            by seqadmin


            Spatial biology is an exciting field that encompasses a wide range of techniques and technologies aimed at mapping the organization and interactions of various biomolecules in their native environments. As this area of research progresses, new tools and methodologies are being introduced, accompanied by efforts to establish benchmarking standards and drive technological innovation.

            3D Genomics
            While spatial biology often involves studying proteins and RNAs in their...
            Yesterday, 07:30 PM
          • seqadmin
            Advancing Precision Medicine for Rare Diseases in Children
            by seqadmin




            Many organizations study rare diseases, but few have a mission as impactful as Rady Children’s Institute for Genomic Medicine (RCIGM). “We are all about changing outcomes for children,” explained Dr. Stephen Kingsmore, President and CEO of the group. The institute’s initial goal was to provide rapid diagnoses for critically ill children and shorten their diagnostic odyssey, a term used to describe the long and arduous process it takes patients to obtain an accurate...
            12-16-2024, 07:57 AM

          ad_right_rmr

          Collapse

          News

          Collapse

          Topics Statistics Last Post
          Started by seqadmin, 12-30-2024, 01:35 PM
          0 responses
          21 views
          0 likes
          Last Post seqadmin  
          Started by seqadmin, 12-17-2024, 10:28 AM
          0 responses
          41 views
          0 likes
          Last Post seqadmin  
          Started by seqadmin, 12-13-2024, 08:24 AM
          0 responses
          55 views
          0 likes
          Last Post seqadmin  
          Started by seqadmin, 12-12-2024, 07:41 AM
          0 responses
          40 views
          0 likes
          Last Post seqadmin  
          Working...
          X