This is a test version of Biostars. For the public version, visit https://www.biostars.org.
cutadapt -o versus >

Hi, I am following a protocol for CLIP data analysis, and their cutadapt options are using both -o and > it is paired end data, so under -o they put R1.out -p R2.out, but then they add > R_output.metrics

I tried looking it up in cutadapt manual, and it looked to me as if -o and > are mutually exclusive... anyone knows what the > means here?

thanks!

cutadapt

1 answer

> means "redirect the standard output to a file" on Linux and Macs. This is independent from any particular program.

so, this is just where the cutadapt report will end up? thanks!

Yes, R_output.metrics will contain the report which is printed to standard error. Just try and see...

you are absolutly right - thank you!

Log in to answer this question.