%%bash
specifies to use the shell for this Jupyter cellfor file in /Volumes/nightingales/C_gigas/2212_lane2_[^N]*
initiates a for loop to handle all files beginning with 2212_lane2_
and only those that do not have the letter "N" at that position in the file name.do
tells the for loop what to do with each of the files.newname=${file##*/}
takes the value of the $file
variable (which is /Volumes/nightingales/C_gigas/2212_lane2_[^N]*
) and trims the longest match from the beginning of the pattern (the pattern is */
; the ##
is a bash command to specifiy how to trim). The resulting output (which is just the file name without the full path) is then stored in the newname
variable.SE
)-threads 16
),-phred33
),"$file"
),/Volumes/Data/Sam/scratch/20140414_trimmed_$newname
),ILLUMINACLIP:/usr/local/bioinformatics/Trimmomatic-0.30/adapters/TruSeq3-SE.fa:2:30:10
),LEADING:3
)TRAILING:3
)SLIDINGWINDOW:4:15
)done
closes for loop.%%bash
for file in /Volumes/nightingales/C_gigas/2212_lane2_[^N]*
do
newname=${file##*/}
java -jar /usr/local/bioinformatics/Trimmomatic-0.30/trimmomatic-0.30.jar SE -threads 16 -phred33 "$file" /Volumes/Data/Sam/scratch/20140414_trimmed_$newname ILLUMINACLIP:/usr/local/bioinformatics/Trimmomatic-0.30/adapters/TruSeq3-SE.fa:2:30:10 LEADING:3 TRAILING:3 SLIDINGWINDOW:4:15;
done
TrimmomaticSE: Started with arguments: -threads 16 -phred33 /Volumes/nightingales/C_gigas/2212_lane2_CTTGTA_L002_R1_001.fastq.gz /Volumes/Data/Sam/scratch/20140414_trimmed_2212_lane2_CTTGTA_L002_R1_001.fastq.gz ILLUMINACLIP:/usr/local/bioinformatics/Trimmomatic-0.30/adapters/TruSeq3-SE.fa:2:30:10 LEADING:3 TRAILING:3 SLIDINGWINDOW:4:15 Using Long Clipping Sequence: 'AGATCGGAAGAGCGTCGTGTAGGGAAAGAGTGTA' Using Long Clipping Sequence: 'AGATCGGAAGAGCACACGTCTGAACTCCAGTCAC' ILLUMINACLIP: Using 0 prefix pairs, 2 forward/reverse sequences, 0 forward only sequences, 0 reverse only sequences Input Reads: 16000000 Surviving: 15922161 (99.51%) Dropped: 77839 (0.49%) TrimmomaticSE: Completed successfully TrimmomaticSE: Started with arguments: -threads 16 -phred33 /Volumes/nightingales/C_gigas/2212_lane2_CTTGTA_L002_R1_002.fastq.gz /Volumes/Data/Sam/scratch/20140414_trimmed_2212_lane2_CTTGTA_L002_R1_002.fastq.gz ILLUMINACLIP:/usr/local/bioinformatics/Trimmomatic-0.30/adapters/TruSeq3-SE.fa:2:30:10 LEADING:3 TRAILING:3 SLIDINGWINDOW:4:15 Using Long Clipping Sequence: 'AGATCGGAAGAGCGTCGTGTAGGGAAAGAGTGTA' Using Long Clipping Sequence: 'AGATCGGAAGAGCACACGTCTGAACTCCAGTCAC' ILLUMINACLIP: Using 0 prefix pairs, 2 forward/reverse sequences, 0 forward only sequences, 0 reverse only sequences Input Reads: 16000000 Surviving: 15906198 (99.41%) Dropped: 93802 (0.59%) TrimmomaticSE: Completed successfully TrimmomaticSE: Started with arguments: -threads 16 -phred33 /Volumes/nightingales/C_gigas/2212_lane2_CTTGTA_L002_R1_003.fastq.gz /Volumes/Data/Sam/scratch/20140414_trimmed_2212_lane2_CTTGTA_L002_R1_003.fastq.gz ILLUMINACLIP:/usr/local/bioinformatics/Trimmomatic-0.30/adapters/TruSeq3-SE.fa:2:30:10 LEADING:3 TRAILING:3 SLIDINGWINDOW:4:15 Using Long Clipping Sequence: 'AGATCGGAAGAGCGTCGTGTAGGGAAAGAGTGTA' Using Long Clipping Sequence: 'AGATCGGAAGAGCACACGTCTGAACTCCAGTCAC' ILLUMINACLIP: Using 0 prefix pairs, 2 forward/reverse sequences, 0 forward only sequences, 0 reverse only sequences Input Reads: 16000000 Surviving: 15881522 (99.26%) Dropped: 118478 (0.74%) TrimmomaticSE: Completed successfully TrimmomaticSE: Started with arguments: -threads 16 -phred33 /Volumes/nightingales/C_gigas/2212_lane2_CTTGTA_L002_R1_004.fastq.gz /Volumes/Data/Sam/scratch/20140414_trimmed_2212_lane2_CTTGTA_L002_R1_004.fastq.gz ILLUMINACLIP:/usr/local/bioinformatics/Trimmomatic-0.30/adapters/TruSeq3-SE.fa:2:30:10 LEADING:3 TRAILING:3 SLIDINGWINDOW:4:15 Using Long Clipping Sequence: 'AGATCGGAAGAGCGTCGTGTAGGGAAAGAGTGTA' Using Long Clipping Sequence: 'AGATCGGAAGAGCACACGTCTGAACTCCAGTCAC' ILLUMINACLIP: Using 0 prefix pairs, 2 forward/reverse sequences, 0 forward only sequences, 0 reverse only sequences Input Reads: 10634369 Surviving: 10548081 (99.19%) Dropped: 86288 (0.81%) TrimmomaticSE: Completed successfully TrimmomaticSE: Started with arguments: -threads 16 -phred33 /Volumes/nightingales/C_gigas/2212_lane2_GCCAAT_L002_R1_001.fastq.gz /Volumes/Data/Sam/scratch/20140414_trimmed_2212_lane2_GCCAAT_L002_R1_001.fastq.gz ILLUMINACLIP:/usr/local/bioinformatics/Trimmomatic-0.30/adapters/TruSeq3-SE.fa:2:30:10 LEADING:3 TRAILING:3 SLIDINGWINDOW:4:15 Using Long Clipping Sequence: 'AGATCGGAAGAGCGTCGTGTAGGGAAAGAGTGTA' Using Long Clipping Sequence: 'AGATCGGAAGAGCACACGTCTGAACTCCAGTCAC' ILLUMINACLIP: Using 0 prefix pairs, 2 forward/reverse sequences, 0 forward only sequences, 0 reverse only sequences Input Reads: 16000000 Surviving: 15956775 (99.73%) Dropped: 43225 (0.27%) TrimmomaticSE: Completed successfully TrimmomaticSE: Started with arguments: -threads 16 -phred33 /Volumes/nightingales/C_gigas/2212_lane2_GCCAAT_L002_R1_002.fastq.gz /Volumes/Data/Sam/scratch/20140414_trimmed_2212_lane2_GCCAAT_L002_R1_002.fastq.gz ILLUMINACLIP:/usr/local/bioinformatics/Trimmomatic-0.30/adapters/TruSeq3-SE.fa:2:30:10 LEADING:3 TRAILING:3 SLIDINGWINDOW:4:15 Using Long Clipping Sequence: 'AGATCGGAAGAGCGTCGTGTAGGGAAAGAGTGTA' Using Long Clipping Sequence: 'AGATCGGAAGAGCACACGTCTGAACTCCAGTCAC' ILLUMINACLIP: Using 0 prefix pairs, 2 forward/reverse sequences, 0 forward only sequences, 0 reverse only sequences Input Reads: 16000000 Surviving: 15944342 (99.65%) Dropped: 55658 (0.35%) TrimmomaticSE: Completed successfully TrimmomaticSE: Started with arguments: -threads 16 -phred33 /Volumes/nightingales/C_gigas/2212_lane2_GCCAAT_L002_R1_003.fastq.gz /Volumes/Data/Sam/scratch/20140414_trimmed_2212_lane2_GCCAAT_L002_R1_003.fastq.gz ILLUMINACLIP:/usr/local/bioinformatics/Trimmomatic-0.30/adapters/TruSeq3-SE.fa:2:30:10 LEADING:3 TRAILING:3 SLIDINGWINDOW:4:15 Using Long Clipping Sequence: 'AGATCGGAAGAGCGTCGTGTAGGGAAAGAGTGTA' Using Long Clipping Sequence: 'AGATCGGAAGAGCACACGTCTGAACTCCAGTCAC' ILLUMINACLIP: Using 0 prefix pairs, 2 forward/reverse sequences, 0 forward only sequences, 0 reverse only sequences Input Reads: 16000000 Surviving: 15952602 (99.70%) Dropped: 47398 (0.30%) TrimmomaticSE: Completed successfully TrimmomaticSE: Started with arguments: -threads 16 -phred33 /Volumes/nightingales/C_gigas/2212_lane2_GCCAAT_L002_R1_004.fastq.gz /Volumes/Data/Sam/scratch/20140414_trimmed_2212_lane2_GCCAAT_L002_R1_004.fastq.gz ILLUMINACLIP:/usr/local/bioinformatics/Trimmomatic-0.30/adapters/TruSeq3-SE.fa:2:30:10 LEADING:3 TRAILING:3 SLIDINGWINDOW:4:15 Using Long Clipping Sequence: 'AGATCGGAAGAGCGTCGTGTAGGGAAAGAGTGTA' Using Long Clipping Sequence: 'AGATCGGAAGAGCACACGTCTGAACTCCAGTCAC' ILLUMINACLIP: Using 0 prefix pairs, 2 forward/reverse sequences, 0 forward only sequences, 0 reverse only sequences Input Reads: 16000000 Surviving: 15922255 (99.51%) Dropped: 77745 (0.49%) TrimmomaticSE: Completed successfully TrimmomaticSE: Started with arguments: -threads 16 -phred33 /Volumes/nightingales/C_gigas/2212_lane2_GCCAAT_L002_R1_005.fastq.gz /Volumes/Data/Sam/scratch/20140414_trimmed_2212_lane2_GCCAAT_L002_R1_005.fastq.gz ILLUMINACLIP:/usr/local/bioinformatics/Trimmomatic-0.30/adapters/TruSeq3-SE.fa:2:30:10 LEADING:3 TRAILING:3 SLIDINGWINDOW:4:15 Using Long Clipping Sequence: 'AGATCGGAAGAGCGTCGTGTAGGGAAAGAGTGTA' Using Long Clipping Sequence: 'AGATCGGAAGAGCACACGTCTGAACTCCAGTCAC' ILLUMINACLIP: Using 0 prefix pairs, 2 forward/reverse sequences, 0 forward only sequences, 0 reverse only sequences Input Reads: 16000000 Surviving: 15909223 (99.43%) Dropped: 90777 (0.57%) TrimmomaticSE: Completed successfully TrimmomaticSE: Started with arguments: -threads 16 -phred33 /Volumes/nightingales/C_gigas/2212_lane2_GCCAAT_L002_R1_006.fastq.gz /Volumes/Data/Sam/scratch/20140414_trimmed_2212_lane2_GCCAAT_L002_R1_006.fastq.gz ILLUMINACLIP:/usr/local/bioinformatics/Trimmomatic-0.30/adapters/TruSeq3-SE.fa:2:30:10 LEADING:3 TRAILING:3 SLIDINGWINDOW:4:15 Using Long Clipping Sequence: 'AGATCGGAAGAGCGTCGTGTAGGGAAAGAGTGTA' Using Long Clipping Sequence: 'AGATCGGAAGAGCACACGTCTGAACTCCAGTCAC' ILLUMINACLIP: Using 0 prefix pairs, 2 forward/reverse sequences, 0 forward only sequences, 0 reverse only sequences Input Reads: 255678 Surviving: 253470 (99.14%) Dropped: 2208 (0.86%) TrimmomaticSE: Completed successfully
%%bash
for file in /Volumes/Data/Sam/scratch/20150414_trimmed_2212*; do fastqc "$file" --outdir=/Volumes/Eagle/Arabidopsis/; done
Analysis complete for 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_001.fastq.gz Analysis complete for 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_002.fastq.gz Analysis complete for 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_003.fastq.gz Analysis complete for 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_004.fastq.gz Analysis complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_001.fastq.gz Analysis complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_002.fastq.gz Analysis complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_003.fastq.gz Analysis complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_004.fastq.gz Analysis complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_005.fastq.gz Analysis complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_006.fastq.gz
Started analysis of 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_001.fastq.gz Approx 5% complete for 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_001.fastq.gz Approx 10% complete for 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_001.fastq.gz Approx 15% complete for 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_001.fastq.gz Approx 20% complete for 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_001.fastq.gz Approx 25% complete for 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_001.fastq.gz Approx 30% complete for 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_001.fastq.gz Approx 35% complete for 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_001.fastq.gz Approx 40% complete for 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_001.fastq.gz Approx 45% complete for 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_001.fastq.gz Approx 50% complete for 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_001.fastq.gz Approx 55% complete for 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_001.fastq.gz Approx 60% complete for 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_001.fastq.gz Approx 65% complete for 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_001.fastq.gz Approx 70% complete for 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_001.fastq.gz Approx 75% complete for 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_001.fastq.gz Approx 80% complete for 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_001.fastq.gz Approx 85% complete for 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_001.fastq.gz Approx 90% complete for 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_001.fastq.gz Approx 95% complete for 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_001.fastq.gz Started analysis of 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_002.fastq.gz Approx 5% complete for 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_002.fastq.gz Approx 10% complete for 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_002.fastq.gz Approx 15% complete for 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_002.fastq.gz Approx 20% complete for 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_002.fastq.gz Approx 25% complete for 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_002.fastq.gz Approx 30% complete for 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_002.fastq.gz Approx 35% complete for 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_002.fastq.gz Approx 40% complete for 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_002.fastq.gz Approx 45% complete for 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_002.fastq.gz Approx 50% complete for 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_002.fastq.gz Approx 55% complete for 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_002.fastq.gz Approx 60% complete for 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_002.fastq.gz Approx 65% complete for 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_002.fastq.gz Approx 70% complete for 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_002.fastq.gz Approx 75% complete for 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_002.fastq.gz Approx 80% complete for 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_002.fastq.gz Approx 85% complete for 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_002.fastq.gz Approx 90% complete for 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_002.fastq.gz Approx 95% complete for 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_002.fastq.gz Started analysis of 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_003.fastq.gz Approx 5% complete for 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_003.fastq.gz Approx 10% complete for 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_003.fastq.gz Approx 15% complete for 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_003.fastq.gz Approx 20% complete for 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_003.fastq.gz Approx 25% complete for 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_003.fastq.gz Approx 30% complete for 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_003.fastq.gz Approx 35% complete for 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_003.fastq.gz Approx 40% complete for 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_003.fastq.gz Approx 45% complete for 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_003.fastq.gz Approx 50% complete for 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_003.fastq.gz Approx 55% complete for 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_003.fastq.gz Approx 60% complete for 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_003.fastq.gz Approx 65% complete for 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_003.fastq.gz Approx 70% complete for 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_003.fastq.gz Approx 75% complete for 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_003.fastq.gz Approx 80% complete for 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_003.fastq.gz Approx 85% complete for 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_003.fastq.gz Approx 90% complete for 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_003.fastq.gz Approx 95% complete for 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_003.fastq.gz Started analysis of 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_004.fastq.gz Approx 5% complete for 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_004.fastq.gz Approx 10% complete for 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_004.fastq.gz Approx 15% complete for 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_004.fastq.gz Approx 20% complete for 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_004.fastq.gz Approx 25% complete for 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_004.fastq.gz Approx 30% complete for 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_004.fastq.gz Approx 35% complete for 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_004.fastq.gz Approx 40% complete for 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_004.fastq.gz Approx 45% complete for 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_004.fastq.gz Approx 50% complete for 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_004.fastq.gz Approx 55% complete for 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_004.fastq.gz Approx 60% complete for 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_004.fastq.gz Approx 65% complete for 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_004.fastq.gz Approx 70% complete for 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_004.fastq.gz Approx 75% complete for 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_004.fastq.gz Approx 80% complete for 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_004.fastq.gz Approx 85% complete for 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_004.fastq.gz Approx 90% complete for 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_004.fastq.gz Approx 95% complete for 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_004.fastq.gz Started analysis of 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_001.fastq.gz Approx 5% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_001.fastq.gz Approx 10% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_001.fastq.gz Approx 15% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_001.fastq.gz Approx 20% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_001.fastq.gz Approx 25% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_001.fastq.gz Approx 30% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_001.fastq.gz Approx 35% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_001.fastq.gz Approx 40% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_001.fastq.gz Approx 45% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_001.fastq.gz Approx 50% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_001.fastq.gz Approx 55% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_001.fastq.gz Approx 60% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_001.fastq.gz Approx 65% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_001.fastq.gz Approx 70% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_001.fastq.gz Approx 75% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_001.fastq.gz Approx 80% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_001.fastq.gz Approx 85% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_001.fastq.gz Approx 90% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_001.fastq.gz Approx 95% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_001.fastq.gz Started analysis of 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_002.fastq.gz Approx 5% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_002.fastq.gz Approx 10% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_002.fastq.gz Approx 15% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_002.fastq.gz Approx 20% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_002.fastq.gz Approx 25% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_002.fastq.gz Approx 30% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_002.fastq.gz Approx 35% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_002.fastq.gz Approx 40% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_002.fastq.gz Approx 45% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_002.fastq.gz Approx 50% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_002.fastq.gz Approx 55% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_002.fastq.gz Approx 60% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_002.fastq.gz Approx 65% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_002.fastq.gz Approx 70% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_002.fastq.gz Approx 75% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_002.fastq.gz Approx 80% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_002.fastq.gz Approx 85% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_002.fastq.gz Approx 90% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_002.fastq.gz Approx 95% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_002.fastq.gz Started analysis of 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_003.fastq.gz Approx 5% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_003.fastq.gz Approx 10% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_003.fastq.gz Approx 15% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_003.fastq.gz Approx 20% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_003.fastq.gz Approx 25% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_003.fastq.gz Approx 30% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_003.fastq.gz Approx 35% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_003.fastq.gz Approx 40% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_003.fastq.gz Approx 45% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_003.fastq.gz Approx 50% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_003.fastq.gz Approx 55% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_003.fastq.gz Approx 60% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_003.fastq.gz Approx 65% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_003.fastq.gz Approx 70% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_003.fastq.gz Approx 75% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_003.fastq.gz Approx 80% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_003.fastq.gz Approx 85% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_003.fastq.gz Approx 90% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_003.fastq.gz Approx 95% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_003.fastq.gz Started analysis of 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_004.fastq.gz Approx 5% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_004.fastq.gz Approx 10% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_004.fastq.gz Approx 15% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_004.fastq.gz Approx 20% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_004.fastq.gz Approx 25% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_004.fastq.gz Approx 30% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_004.fastq.gz Approx 35% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_004.fastq.gz Approx 40% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_004.fastq.gz Approx 45% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_004.fastq.gz Approx 50% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_004.fastq.gz Approx 55% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_004.fastq.gz Approx 60% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_004.fastq.gz Approx 65% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_004.fastq.gz Approx 70% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_004.fastq.gz Approx 75% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_004.fastq.gz Approx 80% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_004.fastq.gz Approx 85% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_004.fastq.gz Approx 90% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_004.fastq.gz Approx 95% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_004.fastq.gz Started analysis of 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_005.fastq.gz Approx 5% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_005.fastq.gz Approx 10% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_005.fastq.gz Approx 15% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_005.fastq.gz Approx 20% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_005.fastq.gz Approx 25% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_005.fastq.gz Approx 30% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_005.fastq.gz Approx 35% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_005.fastq.gz Approx 40% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_005.fastq.gz Approx 45% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_005.fastq.gz Approx 50% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_005.fastq.gz Approx 55% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_005.fastq.gz Approx 60% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_005.fastq.gz Approx 65% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_005.fastq.gz Approx 70% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_005.fastq.gz Approx 75% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_005.fastq.gz Approx 80% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_005.fastq.gz Approx 85% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_005.fastq.gz Approx 90% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_005.fastq.gz Approx 95% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_005.fastq.gz Started analysis of 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_006.fastq.gz Approx 5% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_006.fastq.gz Approx 10% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_006.fastq.gz Approx 15% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_006.fastq.gz Approx 20% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_006.fastq.gz Approx 25% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_006.fastq.gz Approx 30% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_006.fastq.gz Approx 35% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_006.fastq.gz Approx 40% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_006.fastq.gz Approx 45% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_006.fastq.gz Approx 50% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_006.fastq.gz Approx 55% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_006.fastq.gz Approx 60% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_006.fastq.gz Approx 65% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_006.fastq.gz Approx 70% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_006.fastq.gz Approx 75% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_006.fastq.gz Approx 80% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_006.fastq.gz Approx 85% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_006.fastq.gz Approx 90% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_006.fastq.gz Approx 95% complete for 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_006.fastq.gz
cd /Volumes/Eagle/Arabidopsis/
/Volumes/Eagle/Arabidopsis
%%bash
for file in 20150414_trimmed_2212*.zip; do unzip "$file"; done
Archive: 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_001_fastqc.zip creating: 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_001_fastqc/ creating: 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_001_fastqc/Icons/ creating: 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_001_fastqc/Images/ inflating: 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_001_fastqc/Icons/fastqc_icon.png inflating: 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_001_fastqc/Icons/warning.png inflating: 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_001_fastqc/Icons/error.png inflating: 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_001_fastqc/Icons/tick.png inflating: 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_001_fastqc/summary.txt inflating: 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_001_fastqc/Images/per_base_quality.png inflating: 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_001_fastqc/Images/per_tile_quality.png inflating: 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_001_fastqc/Images/per_sequence_quality.png inflating: 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_001_fastqc/Images/per_base_sequence_content.png inflating: 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_001_fastqc/Images/per_sequence_gc_content.png inflating: 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_001_fastqc/Images/per_base_n_content.png inflating: 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_001_fastqc/Images/sequence_length_distribution.png inflating: 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_001_fastqc/Images/duplication_levels.png inflating: 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_001_fastqc/Images/adapter_content.png inflating: 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_001_fastqc/Images/kmer_profiles.png inflating: 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_001_fastqc/fastqc_report.html inflating: 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_001_fastqc/fastqc_data.txt inflating: 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_001_fastqc/fastqc.fo Archive: 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_002_fastqc.zip creating: 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_002_fastqc/ creating: 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_002_fastqc/Icons/ creating: 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_002_fastqc/Images/ inflating: 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_002_fastqc/Icons/fastqc_icon.png inflating: 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_002_fastqc/Icons/warning.png inflating: 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_002_fastqc/Icons/error.png inflating: 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_002_fastqc/Icons/tick.png inflating: 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_002_fastqc/summary.txt inflating: 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_002_fastqc/Images/per_base_quality.png inflating: 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_002_fastqc/Images/per_tile_quality.png inflating: 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_002_fastqc/Images/per_sequence_quality.png inflating: 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_002_fastqc/Images/per_base_sequence_content.png inflating: 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_002_fastqc/Images/per_sequence_gc_content.png inflating: 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_002_fastqc/Images/per_base_n_content.png inflating: 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_002_fastqc/Images/sequence_length_distribution.png inflating: 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_002_fastqc/Images/duplication_levels.png inflating: 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_002_fastqc/Images/adapter_content.png inflating: 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_002_fastqc/Images/kmer_profiles.png inflating: 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_002_fastqc/fastqc_report.html inflating: 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_002_fastqc/fastqc_data.txt inflating: 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_002_fastqc/fastqc.fo Archive: 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_003_fastqc.zip creating: 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_003_fastqc/ creating: 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_003_fastqc/Icons/ creating: 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_003_fastqc/Images/ inflating: 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_003_fastqc/Icons/fastqc_icon.png inflating: 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_003_fastqc/Icons/warning.png inflating: 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_003_fastqc/Icons/error.png inflating: 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_003_fastqc/Icons/tick.png inflating: 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_003_fastqc/summary.txt inflating: 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_003_fastqc/Images/per_base_quality.png inflating: 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_003_fastqc/Images/per_tile_quality.png inflating: 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_003_fastqc/Images/per_sequence_quality.png inflating: 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_003_fastqc/Images/per_base_sequence_content.png inflating: 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_003_fastqc/Images/per_sequence_gc_content.png inflating: 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_003_fastqc/Images/per_base_n_content.png inflating: 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_003_fastqc/Images/sequence_length_distribution.png inflating: 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_003_fastqc/Images/duplication_levels.png inflating: 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_003_fastqc/Images/adapter_content.png inflating: 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_003_fastqc/Images/kmer_profiles.png inflating: 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_003_fastqc/fastqc_report.html inflating: 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_003_fastqc/fastqc_data.txt inflating: 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_003_fastqc/fastqc.fo Archive: 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_004_fastqc.zip creating: 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_004_fastqc/ creating: 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_004_fastqc/Icons/ creating: 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_004_fastqc/Images/ inflating: 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_004_fastqc/Icons/fastqc_icon.png inflating: 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_004_fastqc/Icons/warning.png inflating: 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_004_fastqc/Icons/error.png inflating: 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_004_fastqc/Icons/tick.png inflating: 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_004_fastqc/summary.txt inflating: 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_004_fastqc/Images/per_base_quality.png inflating: 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_004_fastqc/Images/per_tile_quality.png inflating: 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_004_fastqc/Images/per_sequence_quality.png inflating: 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_004_fastqc/Images/per_base_sequence_content.png inflating: 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_004_fastqc/Images/per_sequence_gc_content.png inflating: 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_004_fastqc/Images/per_base_n_content.png inflating: 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_004_fastqc/Images/sequence_length_distribution.png inflating: 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_004_fastqc/Images/duplication_levels.png inflating: 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_004_fastqc/Images/adapter_content.png inflating: 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_004_fastqc/Images/kmer_profiles.png inflating: 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_004_fastqc/fastqc_report.html inflating: 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_004_fastqc/fastqc_data.txt inflating: 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_004_fastqc/fastqc.fo Archive: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_001_fastqc.zip creating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_001_fastqc/ creating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_001_fastqc/Icons/ creating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_001_fastqc/Images/ inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_001_fastqc/Icons/fastqc_icon.png inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_001_fastqc/Icons/warning.png inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_001_fastqc/Icons/error.png inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_001_fastqc/Icons/tick.png inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_001_fastqc/summary.txt inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_001_fastqc/Images/per_base_quality.png inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_001_fastqc/Images/per_tile_quality.png inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_001_fastqc/Images/per_sequence_quality.png inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_001_fastqc/Images/per_base_sequence_content.png inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_001_fastqc/Images/per_sequence_gc_content.png inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_001_fastqc/Images/per_base_n_content.png inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_001_fastqc/Images/sequence_length_distribution.png inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_001_fastqc/Images/duplication_levels.png inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_001_fastqc/Images/adapter_content.png inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_001_fastqc/Images/kmer_profiles.png inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_001_fastqc/fastqc_report.html inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_001_fastqc/fastqc_data.txt inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_001_fastqc/fastqc.fo Archive: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_002_fastqc.zip creating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_002_fastqc/ creating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_002_fastqc/Icons/ creating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_002_fastqc/Images/ inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_002_fastqc/Icons/fastqc_icon.png inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_002_fastqc/Icons/warning.png inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_002_fastqc/Icons/error.png inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_002_fastqc/Icons/tick.png inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_002_fastqc/summary.txt inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_002_fastqc/Images/per_base_quality.png inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_002_fastqc/Images/per_tile_quality.png inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_002_fastqc/Images/per_sequence_quality.png inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_002_fastqc/Images/per_base_sequence_content.png inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_002_fastqc/Images/per_sequence_gc_content.png inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_002_fastqc/Images/per_base_n_content.png inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_002_fastqc/Images/sequence_length_distribution.png inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_002_fastqc/Images/duplication_levels.png inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_002_fastqc/Images/adapter_content.png inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_002_fastqc/Images/kmer_profiles.png inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_002_fastqc/fastqc_report.html inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_002_fastqc/fastqc_data.txt inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_002_fastqc/fastqc.fo Archive: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_003_fastqc.zip creating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_003_fastqc/ creating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_003_fastqc/Icons/ creating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_003_fastqc/Images/ inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_003_fastqc/Icons/fastqc_icon.png inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_003_fastqc/Icons/warning.png inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_003_fastqc/Icons/error.png inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_003_fastqc/Icons/tick.png inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_003_fastqc/summary.txt inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_003_fastqc/Images/per_base_quality.png inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_003_fastqc/Images/per_tile_quality.png inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_003_fastqc/Images/per_sequence_quality.png inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_003_fastqc/Images/per_base_sequence_content.png inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_003_fastqc/Images/per_sequence_gc_content.png inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_003_fastqc/Images/per_base_n_content.png inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_003_fastqc/Images/sequence_length_distribution.png inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_003_fastqc/Images/duplication_levels.png inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_003_fastqc/Images/adapter_content.png inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_003_fastqc/Images/kmer_profiles.png inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_003_fastqc/fastqc_report.html inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_003_fastqc/fastqc_data.txt inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_003_fastqc/fastqc.fo Archive: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_004_fastqc.zip creating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_004_fastqc/ creating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_004_fastqc/Icons/ creating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_004_fastqc/Images/ inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_004_fastqc/Icons/fastqc_icon.png inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_004_fastqc/Icons/warning.png inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_004_fastqc/Icons/error.png inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_004_fastqc/Icons/tick.png inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_004_fastqc/summary.txt inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_004_fastqc/Images/per_base_quality.png inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_004_fastqc/Images/per_tile_quality.png inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_004_fastqc/Images/per_sequence_quality.png inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_004_fastqc/Images/per_base_sequence_content.png inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_004_fastqc/Images/per_sequence_gc_content.png inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_004_fastqc/Images/per_base_n_content.png inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_004_fastqc/Images/sequence_length_distribution.png inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_004_fastqc/Images/duplication_levels.png inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_004_fastqc/Images/adapter_content.png inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_004_fastqc/Images/kmer_profiles.png inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_004_fastqc/fastqc_report.html inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_004_fastqc/fastqc_data.txt inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_004_fastqc/fastqc.fo Archive: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_005_fastqc.zip creating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_005_fastqc/ creating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_005_fastqc/Icons/ creating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_005_fastqc/Images/ inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_005_fastqc/Icons/fastqc_icon.png inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_005_fastqc/Icons/warning.png inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_005_fastqc/Icons/error.png inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_005_fastqc/Icons/tick.png inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_005_fastqc/summary.txt inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_005_fastqc/Images/per_base_quality.png inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_005_fastqc/Images/per_tile_quality.png inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_005_fastqc/Images/per_sequence_quality.png inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_005_fastqc/Images/per_base_sequence_content.png inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_005_fastqc/Images/per_sequence_gc_content.png inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_005_fastqc/Images/per_base_n_content.png inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_005_fastqc/Images/sequence_length_distribution.png inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_005_fastqc/Images/duplication_levels.png inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_005_fastqc/Images/adapter_content.png inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_005_fastqc/Images/kmer_profiles.png inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_005_fastqc/fastqc_report.html inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_005_fastqc/fastqc_data.txt inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_005_fastqc/fastqc.fo Archive: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_006_fastqc.zip creating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_006_fastqc/ creating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_006_fastqc/Icons/ creating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_006_fastqc/Images/ inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_006_fastqc/Icons/fastqc_icon.png inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_006_fastqc/Icons/warning.png inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_006_fastqc/Icons/error.png inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_006_fastqc/Icons/tick.png inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_006_fastqc/summary.txt inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_006_fastqc/Images/per_base_quality.png inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_006_fastqc/Images/per_tile_quality.png inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_006_fastqc/Images/per_sequence_quality.png inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_006_fastqc/Images/per_base_sequence_content.png inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_006_fastqc/Images/per_sequence_gc_content.png inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_006_fastqc/Images/per_base_n_content.png inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_006_fastqc/Images/sequence_length_distribution.png inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_006_fastqc/Images/duplication_levels.png inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_006_fastqc/Images/adapter_content.png inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_006_fastqc/Images/kmer_profiles.png inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_006_fastqc/fastqc_report.html inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_006_fastqc/fastqc_data.txt inflating: 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_006_fastqc/fastqc.fo
ls 20150414_*fastqc
20150414_trimmed_2112_lane1_ACAGTG_L001_R1_001_fastqc: Icons/ fastqc.fo fastqc_report.html Images/ fastqc_data.txt summary.txt 20150414_trimmed_2112_lane1_ACAGTG_L001_R1_002_fastqc: Icons/ fastqc.fo fastqc_report.html Images/ fastqc_data.txt summary.txt 20150414_trimmed_2112_lane1_ATCACG_L001_R1_001_fastqc: Icons/ fastqc.fo fastqc_report.html Images/ fastqc_data.txt summary.txt 20150414_trimmed_2112_lane1_ATCACG_L001_R1_002_fastqc: Icons/ fastqc.fo fastqc_report.html Images/ fastqc_data.txt summary.txt 20150414_trimmed_2112_lane1_ATCACG_L001_R1_003_fastqc: Icons/ fastqc.fo fastqc_report.html Images/ fastqc_data.txt summary.txt 20150414_trimmed_2112_lane1_CAGATC_L001_R1_001_fastqc: Icons/ fastqc.fo fastqc_report.html Images/ fastqc_data.txt summary.txt 20150414_trimmed_2112_lane1_CAGATC_L001_R1_002_fastqc: Icons/ fastqc.fo fastqc_report.html Images/ fastqc_data.txt summary.txt 20150414_trimmed_2112_lane1_CAGATC_L001_R1_003_fastqc: Icons/ fastqc.fo fastqc_report.html Images/ fastqc_data.txt summary.txt 20150414_trimmed_2112_lane1_GCCAAT_L001_R1_001_fastqc: Icons/ fastqc.fo fastqc_report.html Images/ fastqc_data.txt summary.txt 20150414_trimmed_2112_lane1_GCCAAT_L001_R1_002_fastqc: Icons/ fastqc.fo fastqc_report.html Images/ fastqc_data.txt summary.txt 20150414_trimmed_2112_lane1_TGACCA_L001_R1_001_fastqc: Icons/ fastqc.fo fastqc_report.html Images/ fastqc_data.txt summary.txt 20150414_trimmed_2112_lane1_TTAGGC_L001_R1_001_fastqc: Icons/ fastqc.fo fastqc_report.html Images/ fastqc_data.txt summary.txt 20150414_trimmed_2112_lane1_TTAGGC_L001_R1_002_fastqc: Icons/ fastqc.fo fastqc_report.html Images/ fastqc_data.txt summary.txt 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_001_fastqc: Icons/ fastqc.fo fastqc_report.html Images/ fastqc_data.txt summary.txt 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_002_fastqc: Icons/ fastqc.fo fastqc_report.html Images/ fastqc_data.txt summary.txt 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_003_fastqc: Icons/ fastqc.fo fastqc_report.html Images/ fastqc_data.txt summary.txt 20150414_trimmed_2212_lane2_CTTGTA_L002_R1_004_fastqc: Icons/ fastqc.fo fastqc_report.html Images/ fastqc_data.txt summary.txt 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_001_fastqc: Icons/ fastqc.fo fastqc_report.html Images/ fastqc_data.txt summary.txt 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_002_fastqc: Icons/ fastqc.fo fastqc_report.html Images/ fastqc_data.txt summary.txt 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_003_fastqc: Icons/ fastqc.fo fastqc_report.html Images/ fastqc_data.txt summary.txt 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_004_fastqc: Icons/ fastqc.fo fastqc_report.html Images/ fastqc_data.txt summary.txt 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_005_fastqc: Icons/ fastqc.fo fastqc_report.html Images/ fastqc_data.txt summary.txt 20150414_trimmed_2212_lane2_GCCAAT_L002_R1_006_fastqc: Icons/ fastqc.fo fastqc_report.html Images/ fastqc_data.txt summary.txt
cd /Volumes/Data/Sam/scratch/
/Volumes/Data/Sam/scratch
%%bash
#gunzips all matching files in folder and appends the data to a single file:
#20150414_trimmed_2212_lane2_400ppm_GCCAAT.fastq
for file in 20150414_trimmed_2212_lane2_G*
do
gunzip -c "$file" >> 20150414_trimmed_2212_lane2_400ppm_GCCAAT.fastq
done
%%bash
#Gzip file
gzip 20150414_trimmed_2212_lane2_400ppm_GCCAAT.fastq
%%bash
#gunzips all matching files in folder and appends the data to a single file:
#20150414_trimmed_2212_lane2_1000ppm_CTTGTA.fastq
for file in 20150414_trimmed_2212_lane2_C*
do
gunzip -c "$file" >> 20150414_trimmed_2212_lane2_1000ppm_CTTGTA.fastq
done
%%bash
#Gzip file
gzip 20150414_trimmed_2212_lane2_1000ppm_CTTGTA.fastq
%%bash
for file in 2015*e2_[14]*; do cp "$file" /Volumes/Eagle/Arabidopsis/; done