Seqanswers Leaderboard Ad

Collapse

Announcement

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

  • gringer
    replied
    The head command in Linux also alllows you to extract a number of lines from the start of the file (or use the tail command for the end of the file)
    FWIW, there's also the split command:

    Code:
    split -n 2 file.fa file.split.fa. # for splitting a file into two
    But bear in mind that raw reads from NGS runs frequently have low-quality reads near the start and end of the file, so you'll get a bit of quality bias from choosing a specific half of the file.
    Last edited by gringer; 11-11-2013, 08:33 PM.

    Leave a comment:


  • mbayer
    replied
    The head command in Linux also alllows you to extract a number of lines from the start of the file (or use the tail command for the end of the file), without splitting the whole file:

    In analogy to the above:

    $ wc -l file.fastq
    100 file.fastq

    $ head -n 50 file.fastq > halfAFile.fastq

    cheers

    Micha

    Leave a comment:


  • jgibbons1
    replied
    If you know how many lines are in your file you can use the split command

    $ wc -l file.fastq
    100 file.fastq

    $ split -l 50 file.fastq

    Leave a comment:


  • swbarnes2
    replied
    Use awk or grep or something to filter by the tile.

    Or use unix head to get the top half of the file.

    Leave a comment:


  • Patrick Dekker
    replied
    Hi,

    Open the sequencelist switch to table view (5th icon below the sequences). Select a number of sequences and press "create sequencelist".

    best
    Patrick

    Leave a comment:


  • gevielr
    started a topic easy way to assemble 50% of reads?

    easy way to assemble 50% of reads?

    Is there an easy way to separate a large fastq file of raw reads in half? I would imagine this should be pretty easy. I want to see how assembling half of my reads would do with some command... but I also have access to CLC and there doesn't seem to be a way to specify 50% of reads. This is a 70M+ 100 bp dataset.

Latest Articles

Collapse

  • seqadmin
    Exploring the Dynamics of the Tumor Microenvironment
    by seqadmin




    The complexity of cancer is clearly demonstrated in the diverse ecosystem of the tumor microenvironment (TME). The TME is made up of numerous cell types and its development begins with the changes that happen during oncogenesis. “Genomic mutations, copy number changes, epigenetic alterations, and alternative gene expression occur to varying degrees within the affected tumor cells,” explained Andrea O’Hara, Ph.D., Strategic Technical Specialist at Azenta. “As...
    07-08-2024, 03:19 PM

ad_right_rmr

Collapse

News

Collapse

Topics Statistics Last Post
Started by seqadmin, 07-25-2024, 06:46 AM
0 responses
9 views
0 likes
Last Post seqadmin  
Started by seqadmin, 07-24-2024, 11:09 AM
0 responses
26 views
0 likes
Last Post seqadmin  
Started by seqadmin, 07-19-2024, 07:20 AM
0 responses
160 views
0 likes
Last Post seqadmin  
Started by seqadmin, 07-16-2024, 05:49 AM
0 responses
127 views
0 likes
Last Post seqadmin  
Working...
X