-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
corrected paths + minor embellishments #101
Open
evezeyl
wants to merge
1
commit into
master
Choose a base branch
from
evfi-data_pre_processing
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ Dataset used during this session can be found in the following location within a | |
|
||
Create a new folder called _Data_pre_processing_Dec14_ in your home area and move there. | ||
``` | ||
cd /work/projects/nn9305k/home/<your_user_name>/ | ||
cd /projects/nn9305k/home/<your_user_name>/ | ||
mkdir Data_pre_processing_Dec14 | ||
cd Data_pre_processing_Dec14 | ||
``` | ||
|
@@ -46,7 +46,7 @@ $ fastqc Ha_R1.fq.gz | |
``` | ||
|
||
3. Try to find help for _fastqc_ and discuss what flags one can use to process multiple samples. | ||
You will use _-t_ option to use multiple threads. One thread will analyse one file at a time. | ||
You will use _`-t`_ option to use multiple threads. One thread will analyse one file at a time. | ||
4. Use _SLURM_ to process the other four files. | ||
|
||
_SLURM script_ | ||
|
@@ -82,16 +82,16 @@ mv ../data/*html . | |
mv ../data/*.zip . | ||
``` | ||
|
||
6. Copy the _raw_fastqc_ folder from abel to Biolinux in a folder called _Data_pre_processing_Dec14_ in _Desktop_ using scp. | ||
Option _-r (stands for recursively)_ will help in copying folders and all the content inside (and do not forget the _'.'_ at the end of the command. | ||
6. Copy the _raw_fastqc_ folder from abel to Biolinux in a folder called _Data_pre_processing_Dec14_ in _Desktop_ using `scp`. | ||
Option _`-r` (stands for recursively)_ will help in copying folders and all the content inside (and do not forget the _`.`_ at the end of the command. | ||
|
||
**In Biolinux:** | ||
``` | ||
cd | ||
cd Desktop | ||
mkdir Data_pre_processing_Dec14 | ||
cd Data_pre_processing_Dec14 | ||
scp -r <your_user_name>@abel.uio.no:/work/projects/nn9305k/home/<your_user_name>/Data_pre_processing_Dec14/raw_fastqc . | ||
scp -r <your_user_name>@abel.uio.no:/projects/nn9305k/home/<your_user_name>/Data_pre_processing_Dec14/raw_fastqc . | ||
``` | ||
|
||
7. Go through the html files and discuss. | ||
|
@@ -100,7 +100,7 @@ scp -r <your_user_name>@abel.uio.no:/work/projects/nn9305k/home/<your_user_name> | |
## Trimmomatic - adapter trimming and removing | ||
|
||
We wll use [Trimmomatic](http://www.usadellab.org/cms/index.php?page=trimmomatic) to trim/remove adapter and low quality reads. | ||
This tool is NOT available via _module load_ in abel but available at _/work/projects/nn9305k/bin/_. Make sure you know where the adapter sequences are available. | ||
This tool is NOT available via _module load_ in abel but available at _`/work/projects/nn9305k/bin/`_. Make sure you know where the adapter sequences are available. | ||
|
||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We have gone over to use conda. Could you check if trimmomatic is conda available, and if so, update the text? |
||
-------- | ||
**Task** | ||
|
@@ -156,7 +156,7 @@ java -jar /work/projects/nn9305k/bin/trimmomatic-0.36.jar SE -threads 12 -phred3 | |
|
||
Use trimmomatic to trim/remove adapters and low quality reads in _Br_R1.fq.gz_ and _Br_R2.fq.gz_ (or/and _Ed_R1.fq.gz_ and _Ed_R2.fq.gz_) | ||
|
||
1. Remember that you are working with paired end data (Change _SE_ to _PE_). | ||
1. Remember that you are working with paired end data (Change _`SE`_ to _`PE`_). | ||
2. There are two input files and four output files. | ||
3. Use _TruSeq3-PE-2.fa_ instead of _TruSeq3-SE.fa_ since we are dealing with paired end reads. | ||
4. Change _MINLEN_ parameter to _36_. | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should probably move the test data to /projects too. Also, maybe remove the Dec14 tag? That would make it more independent.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ok - we can remove tag, then we have to rename the files on Abel. - has to be consistent. Can rename when done.
So: pending