# ELAEVO Students!! Help me find my mistake
I just got back from the field, I made a terrible mistake. I had a very valuable RNA sample that I had accidentally left out in the sun for 3 days. I'm sure it is ruined.. :(
My lab technician made an even worse mistake. While preparing the sample for sequencing, he might have mis-labeled the samples and now I don't know which is the good sample and which is the bad sample.
Can you help me figure out which is the good sample and which is the bad sa
Matt MacManes changed 6 years agoView mode Like Bookmark
# Transcriptome Assembly Practical RON ELAEVO 2019
#### The following details the steps involved in:
- Generating a _de novo_ RNA-Seq assembly using the Oyster River Protocol
- Evaluating the quality of the assembly
- BUSCO and TransRate
- Quantifying transcript expression levels
- Using Salmon
- Functionally annotating transcripts (won't get here, but see code)
- dammit
- Predicting coding regions (won't get here, but see code)
- TransDecoder
#### Oyster River Protocol
One of the ni
Matt MacManes changed 6 years agoView mode Like Bookmark
# Transcriptome Assembly Practical DOCKER ELAEVO 2019
#### The following details the steps involved in:
- Generating a _de novo_ RNA-Seq assembly using the Oyster River Protocol
- Evaluating the quality of the assembly
- BUSCO and TransRate
- Quantifying transcript expression levels
- Using Salmon
- Functionally annotating transcripts (won't get here, but see code)
- dammit
- Predicting coding regions (won't get here, but see code)
- TransDecoder
#### Oyster River Protocol
One of th
Matt MacManes changed 6 years agoView mode Like Bookmark
# Connecting to Ron Server
1. If you are on Windows, download Putty: https://the.earth.li/~sgtatham/putty/latest/w64/putty.exe
2. Double click the executable. A window will pop up:

3. En la foto notas el espacio q dice "example.com". You are going to type `ron.sr.unh.edu`, y click open.

Click "Yes"
4. Once the SSH Connection is open, you should see a terminal prompt asking for your username:
```
login as:
Connec
Matt MacManes changed 6 years agoView mode Like Bookmark
# Windows 10 Pro, Linux, Mac users
Docker is a nice tool, and should be installable by Win10 Pro, Linux, and Mac Users. Follow the below instructions. At the end of each, procedure you can verify your installation by typing `docker run hello-world`
Ubuntu Users:
https://docs.docker.com/install/linux/docker-ce/ubuntu/
Windows 10 Pro users:
https://docs.docker.com/docker-for-windows/install/
Mac Users:
https://docs.docker.com/docker-for-mac/
Matt MacManes changed 6 years agoView mode Like Bookmark
# DNAZoo Annotation Project
Having genomes is good - chromosome level genomes are better... But it's the annotation of those genomes that is really enabling. Knowing something about the full complement of genes, and their order on chromosomes, is exeptionally powerful, and allows direct comparisons of genomes across the tree of life. To begin to understand this, we set out to create a set of annotations for all the mammals of the DNAZoo.
tl;dr, the entire set, from 67 genomes, can be found he
Matt MacManes changed 6 years agoView mode Like Bookmark
Jocie GATK Array Work
==
```
### make 100kb windows for genome
python $HOME/nanopolish/scripts/nanopolish_makerange.py \
--segment-length 100000 \
--overlap-length -1 $HOME/pero_genome/Peer1.7.2.fasta \
| tee -a Peer172.ranges
### format properly for GATK (tab sep file)
sed -i 's_:_\t_g' /mnt/lustre/macmaneslab/macmanes/Peer172.ranges
sed -i 's+-+\t+g' /mnt/lustre/macmaneslab/macmanes/Peer172.ranges
split -l 1 ../Peer172.ranges -d 0 --additional-suffix=".bed" -a 5 &
### get rid of leading z
Matt MacManes changed 6 years agoEdit mode Like Bookmark