Entering edit mode
24 months ago
m.storti
•
0
Hi everyone!
I'm entering the bioinformatics world, and I have some problems with Salmon. In particular, I have to perform salmon on 101 pair-end samples (no replicates). I could do it one by one, but I think it is prone to errors. I tried some loops that I found on the net, but none of them worked. I have the index already. Please find below some of the samples that I have to align.
R55_S1_R2_001.fastq
R56_S2_R2_001.fastq
R57_S3_R2_001.fastq
R58_S4_R2_001.fastq
R59_S5_R2_001.fastq
R60_S6_R2_001.fastq
R61_S7_R2_001.fastq
R62_S8_R2_001.fastq
Do you have any suggestions? Many thanks in advance!
show us what you tried
Many thanks Pierre for your answer! I tried this:
And this one:
When I submitted the job, the cluster killed it in 20 seconds.
are you using the nodes of cluster or running on a server ?
if 1) you must submit using SGE or SLURM or etc... if 2) you shouldn't run such tool on a small server. See 1
First of all, data seems to be in $HOME where on a cluster it typically does not belong. Is there no scratch drive to store data? Then I see uncompressed fastq. No reason for that, gzip it to save space. Also, I see no scheduler instructions in the script, like SLURM as mentioned already. If you're new to cluster computing talk to the admins or a collegaue who did it before. If you run this on the headnode then the kill is expected (and intended).
You are right. I'm working on a server not on a cluster. I don't know if it is small or not. I will contact the admin. Thank you