Skip to content
Advertisement

Change output filename when running a command in a loop

I am using the Tracer software package (https://github.com/Teichlab/tracer). The program is invoked as followed:

tracer assemble [options] <file_1> [<file_2>] <cell_name> <output_directory>

The program runs on a single dataset and the output goes to /<output_directory>/<cell_name>

What I want to do now is run this program on multiple files. To do so this is what I do:

JavaScript

This works in priciple, but as cell_name is static, every iteration overwrites the output from the previous iteration. How do I need to change my script in order to give the output folder the name of the input file?

For example: Input filename is tcell1.fastq. For this cell_name should be tcell1. Next file is tcell2.fastq and cell_name should be tcell2, and so on…

Advertisement

Answer

I think this will do it, in bash, if I understand correctly –

JavaScript

${filename##*/} removes the part up to the last /, and ${basefilename%.fastq} removes the .fastq at the end.

User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement