Skip to content

Commit

Permalink
Update packaging scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
jcmcnch committed Nov 19, 2022
1 parent 5524312 commit f4e21f0
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
@@ -0,0 +1,9 @@
#!/bin/bash -i
mkdir -p code-export/02-EUKs/ code-export/02-PROKs
cp -r *cfg runscripts scripts code-export/

#scripts
cp -r 02-PROKs/*tsv 02-PROKs/*txt 02-PROKs/scripts/ code-export/02-PROKs
cp -r 02-EUKs/*tsv 02-EUKs/*txt 02-EUKs/scripts/ code-export/02-EUKs

echo "This directory contains scripts from a custom pipeline for analyzing amplicons from the 515Y/926R primers (https://github.com/jcmcnch/eASV-pipeline-for-515Y-926R). The configuration file included here specifies parameters that the user chose during the analysis." > code-export/README.md
Expand Up @@ -41,7 +41,7 @@ cp 02-EUKs/15-exports/*all-18S*with-*tax.proportions.tsv data-export/18S/
cp -r 02-PROKs/scripts/ data-export/16S
cp -r 02-EUKs/scripts/ data-export/18S

#zip up tsvs and fastas
#zip up files to save space
for item in `find data-export/ -name "*fasta"`; do
zip -m $item.zip $item
done
Expand All @@ -50,4 +50,8 @@ for item in `find data-export/ -name "*tsv"`; do
zip -m $item.zip $item
done

for item in `find data-export/ -name "*biom"`; do
zip -m $item.zip $item
done

echo "This repository contains scripts and data from a custom pipeline for analyzing amplicons from the 515Y/926R primers (https://github.com/jcmcnch/eASV-pipeline-for-515Y-926R). The configuration file included here specifies parameters that the user chose during the analysis. The \`eukfrac\` folder indicates the fraction of eukaryotic sequences in each sample after primer trimming and before denoising. 16S and 18S data tables are presented separately and merged if the user has run the merging script. Depending on your research question, you may choose to analyze any of those tables in isolation but the merged table will give the most comprehensive picture of the community. Various ASV tables subsetted by taxonomy strings are also included by default (for example, if you wanted to exclude Metazoa, Chloroplasts, or Mitochondria from your ASV table). ASV sequences are exported in a file ending in \*dna-sequences.fasta and denoising statistics as a file ending with \*stats.tsv." > data-export/README.md

0 comments on commit f4e21f0

Please sign in to comment.