We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent de47a89 commit 940bd59Copy full SHA for 940bd59
src/setup/process.sh
@@ -19,8 +19,10 @@ ln -fs *.processed.fa "$ASSEMBLY.fa"
19
bwa index "$ASSEMBLY.fa" # creates $ASSEMBLY.bwt
20
faToTwoBit "$ASSEMBLY.fa" $ASSEMBLY.2bit
21
samtools faidx "$ASSEMBLY.fa" # creates $ASSEMBLY.fa.fai
22
-# Do I need to use a compressed FASTA instead?
23
-dicey index -o $ASSEMBLY.fa.fm9 "$ASSEMBLY.fa"
+
+ln -s ../downloads/*.fa.gz "$ASSEMBLY.fa.gz"
24
+# This will silently fail if the source is not gzipped. Also creates $ASSEMBLY.fa.fm9_check
25
+dicey index -o $ASSEMBLY.fa.fm9 "$ASSEMBLY.fa.gz"
26
27
python3 "$SETUP_BIN/process_gff3.py" $GFF
28
rm "$FASTA" $GFF
0 commit comments