Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
nextflow
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
lestrada
nextflow
Compare revisions
master to 6a290f9fef04e71f36194c9fdf2e2a1e98bc0c5b
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
lestrada/nextflow
Select target project
No results found
6a290f9fef04e71f36194c9fdf2e2a1e98bc0c5b
Select Git revision
Branches
master
tp_experimental_biologists
2 results
Swap
Target
LBMC/nextflow
Select target project
LBMC/regards/nextflow
elabaron/nextflow
lanani/nextflow
mlepetit/nextflow
mdjaffar/nextflow
LBMC/RMI2/rmi2_pipelines
lpicard/nextflow
rseraphi/nextflow
hregue/nextflow
letien02/nextflow
mshamjal/nextflow
z483801/nextflow
fduveau/nextflow
cginevra/nextflow
dtorresc/nextflow
fmortreu/nextflow
jshapiro/nextflow
carpin/nextflow
LBMC/Delattre/JU28_59vs17_SNP
jclaud01/nextflow
dchalopi/nextflow
mvilcot/nextflow
mherbett/nextflow
lestrada/nextflow
nfontrod/nextflow
gbenoit/nextflow
gyvert/nextflow
aguill09/nextflow
alapendr/nextflow
jprobin/nextflow
vvanoost/nextflow
jblin/nextflow
mparis/nextflow
ogandril/nextflow
cbourgeo/nextflow
ggirau03/nextflow
ecombe01/nextflow
acorbin/nextflow
pberna01/nextflow
pmarie01/nextflow
rhoury/nextflow
lgely/nextflow
jvalat/nextflow
cfournea/nextflow
mprieux/nextflow
hpolvech/nextflow
LBMC/nextflow
mcariou/nextflow
z483800/nextflow
yjia01/nextflow
jkleine/nextflow
LBMC/Palladino/RNAseq_nextflow
jseimand/nextflow
nlecouvr/nextflow-nathan
54 results
master
Select Git revision
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (5)
fasta_sampler_TP1.nf: add process
· 1d922006
lestrada
authored
7 years ago
1d922006
fasta_sampler.nf: Channel definition
· 8a1e46c7
lestrada
authored
7 years ago
8a1e46c7
fasta_sampler.nf: specifying an output folder
· bd2159a7
lestrada
authored
7 years ago
bd2159a7
fasta_sampler.nf: output folder for several files
· 2b8c0abf
lestrada
authored
7 years ago
2b8c0abf
RNQA_Seq.nf: cutadapt block
· 6a290f9f
lestrada
authored
7 years ago
6a290f9f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/RNA_Seq.nf
+39
-0
39 additions, 0 deletions
src/RNA_Seq.nf
src/fasta_sampler.nf
+17
-0
17 additions, 0 deletions
src/fasta_sampler.nf
with
56 additions
and
0 deletions
src/RNA_Seq.nf
0 → 100644
View file @
6a290f9f
/*
* cutadapt :
* Imputs : fastq files
* Output : fastq files
*/
/* Illumina adaptor removal */
/*
* for paired-end data
*/
params
.
fastq
=
"$baseDir/data/fastq/*_{1,2}.fastq"
log
.
info
"fastq files : ${params.fastq}"
Channel
.
fromFilePairs
(
params
.
fastq
)
.
ifEmpty
{
error
"Cannot find any fastq files matching: ${params.fastq}"
}
.
set
{
fastq_files
}
process
adaptor_removal
{
tag
"$pair_id"
publishDir
"results/fastq/adaptor_removal/"
,
mode:
'copy'
input:
set
pair_id
,
file
(
reads
)
from
fastq_files
output:
file
"*_cut_R{1,2}.fastq.gz"
into
fastq_files_cut
script:
"""
cutadapt -a AGATCGGAAGAG -g CTCTTCCGATCT -A AGATCGGAAGAG -G CTCTTCCGATCT \
-o ${pair_id}_cut_R1.fastq.gz -p ${pair_id}_cut_R2.fastq.gz \
${reads[0]} ${reads[1]} > ${pair_id}_report.txt
"""
}
This diff is collapsed.
Click to expand it.
src/fasta_sampler.nf
0 → 100644
View file @
6a290f9f
Channel
.
fromPath
(
"data/tiny_dataset/fasta/*.fasta"
)
.
set
{
fasta_file
}
process
sample_fasta
{
publishDir
"results/sampling/"
,
mode:
'copy'
input:
file
fasta
from
fasta_file
output:
file
"*_sample.fasta"
into
fasta_sample
script:
"""
head ${fasta} > ${fasta.baseName}_sample.fasta
"""
}
This diff is collapsed.
Click to expand it.