Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
LBMC
ReGArDS
nextflow
Commits
2a991dc6
Verified
Commit
2a991dc6
authored
Aug 22, 2018
by
Laurent Modolo
Browse files
BEDtools: update nf structure
parent
4afb1981
Changes
4
Hide whitespace changes
Inline
Side-by-side
src/nf_modules/BEDtools/
bedtools
.config
→
src/nf_modules/BEDtools/
fasta_from_bed
.config
View file @
2a991dc6
File moved
src/nf_modules/BEDtools/
bedtools
.nf
→
src/nf_modules/BEDtools/
fasta_from_bed
.nf
View file @
2a991dc6
File moved
src/nf_modules/BEDtools/tests
/tests
.sh
→
src/nf_modules/BEDtools/tests.sh
View file @
2a991dc6
nextflow src/nf_modules/BEDtools/
tests/
fasta_from_bed.nf
\
-c
src/nf_modules/BEDtools/
bedtools
.config
\
nextflow src/nf_modules/BEDtools/fasta_from_bed.nf
\
-c
src/nf_modules/BEDtools/
fasta_from_bed
.config
\
-profile
docker
\
--fasta
"data/tiny_dataset/fasta/tiny_v2.fasta"
\
--bed
"data/tiny_dataset/annot/tiny.bed"
\
src/nf_modules/BEDtools/tests/fasta_from_bed.nf
deleted
100644 → 0
View file @
4afb1981
params.fastq = "$baseDir/data/fasta/*.fasta"
params.bed = "$baseDir/data/annot/*.bed"
log.info "fasta file : ${params.fasta}"
log.info "bed file : ${params.bed}"
Channel
.fromPath( params.fasta )
.ifEmpty { error "Cannot find any fasta files matching: ${params.fasta}" }
.set { fasta_files }
Channel
.fromPath( params.bed )
.ifEmpty { error "Cannot find any bed files matching: ${params.bed}" }
.set { bed_files }
process fasta_from_bed {
tag "${bed.baseName}"
cpus 4
publishDir "results/fasta/", mode: 'copy'
input:
file fasta from fasta_files
file bed from bed_files
output:
file "*_extracted.fasta" into fasta_files_extracted
script:
"""
bedtools getfasta -name \
-fi ${fasta} -bed ${bed} -fo ${bed.baseName}_extracted.fasta
"""
}
Write
Preview
Supports
Markdown
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!
Cancel
Please
register
or
sign in
to comment