Make fasta tarball conversion work on Cygwin

This commit is contained in:
Thomas A. Christensen II 2021-03-19 09:44:42 -06:00 committed by GitHub
parent 7065e22ab3
commit 9f940778e4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -12,7 +12,7 @@ FASTANAME=$(basename -s .fastas.tar "$FASTAFILE")
mkdir "$FASTANAME" mkdir "$FASTANAME"
# Untar the tarball # Untar the tarball
tar -xf "$FASTAFILE" -C "$FASTANAME" tar -xf "$FASTAFILE" -C "$FASTANAME" --force-local
# Smash all of the FASTAs together into a single file # Smash all of the FASTAs together into a single file
cat "$FASTANAME"/*.fasta > "$FASTANAME"/"$FASTANAME".fasta cat "$FASTANAME"/*.fasta > "$FASTANAME"/"$FASTANAME".fasta