Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
rnaseq_nextflow
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
David Trudgian
rnaseq_nextflow
Commits
bfa008bc
Commit
bfa008bc
authored
8 years ago
by
Brandi Cantarel
Browse files
Options
Downloads
Patches
Plain Diff
updating tags
parent
1f8a21d9
Branches
Branches containing commit
Tags
publish_0.0.5
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
workflow/main.nf
+3
-5
3 additions, 5 deletions
workflow/main.nf
with
3 additions
and
5 deletions
workflow/main.nf
+
3
−
5
View file @
bfa008bc
#!/usr/bin/env nextflow
// Default parameter values to run tests
params.pairs="pe"
params.genome="/project/apps_database/hisat2_index/hg38/"
params.gtf="/project/apps_database/iGenomes/Homo_sapiens/NCBI/GRCh38/Annotation/Genes.gencode/genes.gtf"
params.design="$baseDir/../test_data/design.txt"
params.fastqs="$baseDir/../test_data/*.fastq.gz"
fastqs=params.fastqs
design_file = file(params.design)
gtf_file = file(params.gtf)
// params genome is the directory
...
...
@@ -100,7 +98,7 @@ process trimpe {
output:
set pair_id, file("${read1.baseName.split("\\.", 2)[0]}_val_1.fq.gz"), file("${read2.baseName.split("\\.", 2)[0]}_val_2.fq.gz") into trimpe
when:
param.pairs == 'pe'
param
s
.pairs == 'pe'
script:
"""
module load trimgalore/0.4.1 cutadapt/1.9.1
...
...
@@ -113,7 +111,7 @@ process trimse {
output:
set pair_id, file("${read1.baseName.split("\\.", 2)[0]}_trimmed.fq.gz") into trimse
when:
param.pairs == 'se'
param
s
.pairs == 'se'
script:
"""
module load trimgalore/0.4.1 cutadapt/1.9.1
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment