Unconfigured Ad

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • chariko
    Member
    • Jun 2010
    • 56

    Command for getting a fragment from a sequence file

    Hi all,

    Could anyone tell me how to get from a sequence file the sequence which is delimited from certain positions? As an example:

    Original file:

    asdfgh
    qwert


    Get sequence from positions 2 to 8:

    I tried the following:

    cat original.txt | cut -c 2-8 >result file

    Result file:

    sdfgh
    wert

    Instead of that I would like to obtain:

    sdfghqwe

    Can anyone help me?
  • mastal
    Senior Member
    • Mar 2009
    • 666

    #2
    How long are the actual sequences you are working with?

    It looks like your command would work if your sequence was all on one line.

    Comment

    • chariko
      Member
      • Jun 2010
      • 56

      #3
      Originally posted by mastal View Post
      How long are the actual sequences you are working with?

      It looks like your command would work if your sequence was all on one line.
      You are right mastal, the command works if my sequence is all on one line, the problem is that sometimes it´s not.

      Actually my sequences are contigs with about 235000 nucleotides...

      Comment

      • Richard Finney
        Senior Member
        • Feb 2009
        • 701

        #4
        Consider tr command

        tr -d "\n" to eliminate carriage returns.

        Example:
        cat file | tr -d "\n" | cut -b1-7

        Comment

        • TiborNagy
          Senior Member
          • Mar 2010
          • 329

          #5
          Seqret from Emboss package can handle it:
          seqret input.fasta -sbegin -send

          Comment

          • chariko
            Member
            • Jun 2010
            • 56

            #6
            # Richard This could be an option thanks!!

            # TiborNagy I just installed the Emboss package run your command and your option is just what I was looking for. thank you very much!!!

            Comment

            • santhilalsubhash
              Member
              • May 2012
              • 19

              #7
              Try this

              cat original.txt | sed 's/\n//g' | cut -c 2-8 >result file

              OR

              Other option will be, you can parse your BED file through this command with a simple perl or bash script.
              fastacmd -d input.fasta -s Chromosome -L start,stop

              Download fastacmd linux binary from here. Because in new BLAST tool this has been replace by blastdbcmd which does not supports this and not available in NCBI website.
              Last edited by santhilalsubhash; 02-12-2014, 01:28 PM.

              Comment

              Latest Articles

              Collapse

              • SEQadmin2
                Advanced Sequencing Platforms Tackle Neuroscience’s Toughest Genomics Problems
                by SEQadmin2


                Genomics studies in neuroscience face a special challenge due to the brain’s complexity and scarcity of samples. Mapping changes in cell type and state using conventional next-generation sequencing methods remains challenging. Advances in technologies like single-cell sequencing, spatial transcriptomics, and long-read sequencing have opened the door to deeper studies of the brain and diseases like Alzheimer’s, amyotrophic lateral sclerosis (ALS), and schizophrenia.

                Probing...
                Today, 11:10 AM
              • SEQadmin2
                Cancer Drug Resistance: The Lingering Barrier to Rising Survival
                by SEQadmin2



                Cancer survival rates have significantly increased in the last few decades in the United States, reaching a combined 70% 5-year survival rate by 2021. Behind this number, there are years of research to find new therapies, drug targets, and early detection methods. But there is one core challenge that keeps slowing down these advances, and it’s about drug resistance.

                There is no single reason why many patients don’t respond to treatment as expected. Cancer is...
                Yesterday, 05:17 AM
              • GATTACAT
                Reply to Nine Things a Sample Prep Scientist Thinks About Before Sequencing
                by GATTACAT
                Love this - good data definitely starts from good input, and poor input can only give relatively poor data. I particularly like the mention of Nanodrop/absorbance based methods for quantification. It's such a toss up if you'll get an accurate reading or what amounts to a randomly generated number, and a lot of library/sequencing related issues can be traced back to poor quant.
                07-01-2026, 11:43 AM

              ad_right_rmr

              Collapse

              News

              Collapse

              Topics Statistics Last Post
              Started by SEQadmin2, Today, 10:04 AM
              0 responses
              7 views
              0 reactions
              Last Post SEQadmin2  
              Started by SEQadmin2, Yesterday, 10:08 AM
              0 responses
              6 views
              0 reactions
              Last Post SEQadmin2  
              Started by SEQadmin2, 07-07-2026, 11:05 AM
              0 responses
              9 views
              0 reactions
              Last Post SEQadmin2  
              Started by SEQadmin2, 07-02-2026, 11:08 AM
              0 responses
              31 views
              0 reactions
              Last Post SEQadmin2  
              Working...