2
私は、多数のサンプルに以下のコマンドの実行をしようとしています。Linuxに並行して多数のサンプルを供給するには?
java -jar GenomeAnalysisTK.jar \
-R scaffs_HAPSgracilaria92_50REF.fasta \
-T HaplotypeCaller \
-I assembled_reads/{sample_name}.sorted.bam \
--emitRefConfidence GVCF \
-ploidy 1 \
-nt {number of cores} \
-nct {number of threds} \
-o {sample_name}.raw.snps.indels.g.vcf
私が持っている:
3312 cores,
20 PB RAM of memory,
110 TFLOPS of compute power
を私はこれらのサンプルの数千人が処理しなければなりません。
各サンプルは、自分のローカルコンピュータ上で完了するために一日か二日ほどかかります。
共有LinuxクラスタとSlurm
というジョブスケジューリングシステムを使用しています。
返信用のおかげで、あなたが始めるために多くのドキュメントがありません。 – user1952312