Skip to content

Commit 940bd59

Browse files
committed
Fix Dicey index
1 parent de47a89 commit 940bd59

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/setup/process.sh

+4-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,10 @@ ln -fs *.processed.fa "$ASSEMBLY.fa"
1919
bwa index "$ASSEMBLY.fa" # creates $ASSEMBLY.bwt
2020
faToTwoBit "$ASSEMBLY.fa" $ASSEMBLY.2bit
2121
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"
22+
23+
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"
2426

2527
python3 "$SETUP_BIN/process_gff3.py" $GFF
2628
rm "$FASTA" $GFF

0 commit comments

Comments
 (0)