This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| java -jar ./trimmomatic-0.33.jar SE -threads 2 -phred33 /home/antonkulaga/data/raw/flies/fastq/3_TTAGGC_L003_R1_001.fastq /home/antonkulaga/data/raw/flies/cleanup/3_trm.fastq ILLUMINACLIP:/opt/trimmomatic/adapters/TruSeq2-SE.fa:2:30:10 SLIDINGWINDOW:4:25 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ###IMPROVING FASTQ (note: apply the same to all your fastq files) ### | |
| #deleting illumina adapters by https://github.com/vsbuffalo/scythe | |
| ./sickle se -f /home/uploader/flies/assembly4/3_cleaned.fastq -t sanger /home/uploader/flies/assembly4/3.fastq | |
| #triming fastq by https://github.com/najoshi/sickle | |
| sickle se -f /home/uploader/flies/assembly4/3_cleaned.fastq -t sanger -o /home/uploader/flies/assembly4/3.fastq -q 25 | |
| ### Hisat http://ccb.jhu.edu/software/hisat/manual.shtml ### |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #NOTE: all actions are done with three samples, that have names: 3,4 and 9 | |
| ###IMPROVING FASTQ### | |
| #deleting illumina adapters by https://github.com/vsbuffalo/scythe | |
| ./sickle se -f /home/uploader/flies/assembly5/3_cleaned.fastq -t sanger /home/uploader/flies/assembly5/3.fastq | |
| ./sickle se -f /home/uploader/flies/assembly5/4_cleaned.fastq -t sanger /home/uploader/flies/assembly5/4.fastq | |
| ./sickle se -f /home/uploader/flies/assembly5/9_cleaned.fastq -t sanger /home/uploader/flies/assembly5/9.fastq | |
| #triming fastq by https://github.com/najoshi/sickle |
OlderNewer