Unconfigured Ad

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • wbsimey
    replied
    Hi malcook, I tried to run this xargs one-liner, but I keep getting a basename error - "basename: invalid option -- 'a'"
    I have the latest Ubuntu coreutils (8.13-3ubuntu3.1).
    I looked at the basename man page and there are no listed options, only help and version.

    Leave a comment:


  • wbsimey
    replied
    Thanks malcook. I will play with this, especially the xargs -P option as I have 32 cores to play with.

    Leave a comment:


  • malcook
    replied
    time to learn xargs?

    here is a one-liner that uses xargs

    Code:
    basename -a data/rad1/*.dat | xargs -t -I {} bash -c 'cat data/rad1/"{}" data/rad2/"{}"  > data/rad3/"{}" ' \;
    notes:
    • this works on my mac/OSX; if you're on linux the options for xargs might be different
    • also, you might need to upgrade your GNU coreutils to get the version of basename that supports -a
    • xargs also supports -P for doing multiple cats in parallel if you have multiple processors this could speed things up....
    • the double quotes are protection again odd characters in your filenames, if any

    Leave a comment:


  • wbsimey
    replied
    Thank you Justin, that worked perfectly As you suggested, I didn't need the 'cp' command.

    Leave a comment:


  • BAMseek
    replied
    Here are a couple of things I noticed.

    1. dir2 should be set to /data/rad2
    2. instead of $topdir/$dir1, I think it should just be $dir1 (likewise for $dir2)
    3. basename includes the fastq extension, so no need to append .fastq

    This would be my attempt at it:

    Code:
    topdir=/data/rad3
    dir1=/data/rad1
    dir2=/data/rad2
    
    for f in $dir1/*.fastq
    do
        outf=$topdir/`basename $f`
        echo $outf
        cp $f $outf
        cat $dir2/`basename $f` >> $outf
    done
    I threw in an echo command, just to illustrate the usefulness of printing out your variables when debugging to see if the variable gets set to what you think it should be.

    Also, it might be more straightforward to do "cat a b > c" rather than "cp a c; cat b >> c;"

    So maybe the body could be replaced with

    Code:
    outf=$topdir/`basename $f`
    cat $f $dir2/`basename $f` > $outf
    Hope that helps.
    Justin

    Leave a comment:


  • wbsimey
    started a topic Append two fastq files repeatedly

    Append two fastq files repeatedly

    Hello, I am on an Ubuntu 12 system.
    I am trying to write a bash loop to run
    Code:
    cat /data/rad1/ang_TP30124.fastq  /data/rad2/ang_TP30124.fastq >  /data/rad3/ang_TP30124.fastq
    for 184 files.

    I have 184 files in two directories with identical file names (/data/rad1 and /data/rad2). I want to append each of the like named fastq files into a single like named file into a third directory /data/rad3.

    I am just learning and have come up with:
    Code:
    topdir=/data/rad3
    dir1=/data/rad1
    dir2=/data/rad1
    
    for f in $topdir/$dir1/*.fastq
    do
        outf=$topdir/`basename $f .fastq`
        cp $f $outf
        cat $topdir/$dir2/`basename $f` >> $outf
    done
    which is not working. Any advice for a beginner?

Latest Articles

Collapse

  • SEQadmin2
    Proteomic Platforms: How to Choose the Right Analytical Strategy to Improve Detection and Clinical Applications
    by SEQadmin2


    Proteomics platforms are evolving rapidly, with advances in mass spectrometry and affinity-based approaches expanding what researchers can detect and at what scale. As the field moves toward deeper proteome coverage and clinical applications, scientists face an increasingly complex landscape of tools. This article will explore how researchers are navigating these choices to find the right platform for their work.

    The systematic characterization of the human proteome has
    ...
    07-20-2026, 11:48 AM
  • 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.
    ...
    07-09-2026, 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...
    07-08-2026, 05:17 AM

ad_right_rmr

Collapse

News

Collapse

Topics Statistics Last Post
Started by SEQadmin2, 07-24-2026, 12:17 PM
0 responses
26 views
0 reactions
Last Post SEQadmin2  
Started by SEQadmin2, 07-23-2026, 11:41 AM
0 responses
20 views
0 reactions
Last Post SEQadmin2  
Started by SEQadmin2, 07-20-2026, 11:10 AM
0 responses
28 views
0 reactions
Last Post SEQadmin2  
Started by SEQadmin2, 07-13-2026, 10:26 AM
0 responses
38 views
0 reactions
Last Post SEQadmin2  
Working...