I searched online but I didn't find anything that could answer my question.
I'm using a java tool in Ubuntu Linux, calling it with bash command; this tool has two paths for two different input files:
java -Xmx8G -jar picard.jar FastqToSam \
FASTQ=6484_snippet_1.fastq \ #first read file of pair
FASTQ2=6484_snippet_2.fastq \ #second read file of pair
[...]
What I'd like to do is for example, instead of specify the path of a single FASTQ
, specify the path of two different files.
So instead of having cat file1 file2 > File
and using File
as input of FASTQ
, I'd like that this operation would be executed on the fly and create the File
on the fly, without saving it on the file system (that would be what happens with the command cat file1 file2 > File
).
I hope that I've been clear in explaining my question, in case just ask me and I'll try to explain better.