From 9f940778e411b0e2fe2c978066a1d348529b7e7d Mon Sep 17 00:00:00 2001 From: "Thomas A. Christensen II" <25492070+MillironX@users.noreply.github.com> Date: Fri, 19 Mar 2021 09:44:42 -0600 Subject: [PATCH] Make fasta tarball conversion work on Cygwin --- convert-fastas.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/convert-fastas.sh b/convert-fastas.sh index 2cea868..bce1b66 100755 --- a/convert-fastas.sh +++ b/convert-fastas.sh @@ -12,7 +12,7 @@ FASTANAME=$(basename -s .fastas.tar "$FASTAFILE") mkdir "$FASTANAME" # 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 cat "$FASTANAME"/*.fasta > "$FASTANAME"/"$FASTANAME".fasta