Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 17 additions & 7 deletions topics/sequence-analysis/tutorials/mapping/tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,17 @@ follow_up_training:
level: Introductory
edam_ontology:
- topic_0102
contributors:
- joachimwolff
- bebatut
- hexylena
contributions:
authorship:
- joachimwolff
- bebatut
- hexylena
editing:
- tflowers15
funding:
- unimelb
- melbournebioinformatics
- AustralianBioCommons
recordings:
- captioners:
- shiltemann
Expand Down Expand Up @@ -114,6 +121,10 @@ In the following, we will process a dataset with the mapper **Bowtie2** and we w
>
> {% snippet faqs/galaxy/datasets_rename.md %}
>
> 4. Create a paired collection named `Paired Reads`
>
> {% snippet faqs/galaxy/collections_build_list_paired.md %}
>
{: .hands_on}

We just imported in Galaxy FASTQ files corresponding to paired-end data as we could get directly from a sequencing facility.
Expand All @@ -135,10 +146,9 @@ We need a reference genome to map the reads on.
Currently, there are over 60 different mappers, and their number is growing. In this tutorial, we will use [Bowtie2](http://bowtie-bio.sourceforge.net/bowtie2/), a fast and memory-efficient open-source tool particularly good at aligning sequencing reads of about 50 up to 1,000s of bases to relatively long genomes.

> <hands-on-title>Mapping with Bowtie2</hands-on-title>
> 1. {% tool [Bowtie2](toolshed.g2.bx.psu.edu/repos/devteam/bowtie2/bowtie2/2.4.2+galaxy0) %} with the following parameters
> 1. {% tool [Bowtie2](toolshed.g2.bx.psu.edu/repos/devteam/bowtie2/bowtie2/2.5.4+galaxy0) %} with the following parameters
> - *"Is this single or paired library"*: `Paired-end`
> - {% icon param-file %} *"FASTA/Q file #1"*: `reads_1`
> - {% icon param-file %} *"FASTA/Q file #2"*: `reads_2`
> - {% icon param-collection %} *"FASTQ Paired Dataset"*: `Paired Reads`
> - *"Do you want to set paired-end options?"*: `No`
>
> You should have a look at the parameters there, specially the mate orientation if you know it. They can improve the quality of the paired-end mapping.
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
- doc: "Test sample data for Sequence analysis: Mapping"
job:
null:
class: Collection
collection_type: list:paired
elements:
- class: Collection
type: paired
identifier: wt_H3K4me3
elements:
- class: File
identifier: forward
location: https://zenodo.org/record/1324070/files/wt_H3K4me3_read1.fastq.gz
- class: File
identifier: reverse
location: https://zenodo.org/record/1324070/files/wt_H3K4me3_read2.fastq.gz
outputs:
bowtie2_mapping_stats:
asserts:
has_text:
text: '43652 (90.26%) aligned concordantly exactly 1 time'
bam_stats_1:
asserts:
has_text:
text: '4819009'
bam_stats_2:
asserts:
has_text:
text: '4466767'
Loading