diff --git a/qiime2-2022.2-DADA2-SILVA138.1-PR2_4.14.0/02-utility-scripts/package-code-for-external-repo.sh b/qiime2-2022.2-DADA2-SILVA138.1-PR2_4.14.0/02-utility-scripts/package-code-for-external-repo.sh new file mode 100755 index 0000000..57253f2 --- /dev/null +++ b/qiime2-2022.2-DADA2-SILVA138.1-PR2_4.14.0/02-utility-scripts/package-code-for-external-repo.sh @@ -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 diff --git a/qiime2-2022.2-DADA2-SILVA138.1-PR2_4.14.0/02-utility-scripts/package-data-for-external-repo.sh b/qiime2-2022.2-DADA2-SILVA138.1-PR2_4.14.0/02-utility-scripts/package-data-for-external-repo.sh index 811265f..b008a1d 100755 --- a/qiime2-2022.2-DADA2-SILVA138.1-PR2_4.14.0/02-utility-scripts/package-data-for-external-repo.sh +++ b/qiime2-2022.2-DADA2-SILVA138.1-PR2_4.14.0/02-utility-scripts/package-data-for-external-repo.sh @@ -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 @@ -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