Skip to content

Commit

Permalink
added script for process 'footprint_extraction'
Browse files Browse the repository at this point in the history
  • Loading branch information
renewiegandt committed Nov 19, 2018
1 parent da77364 commit 1a6ce69
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions pipeline.nf
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ process overlap_with_known_TFBS {
process clustering {

input:
file (faste) from FASTA_for_clustering
file (fasta) from FASTA_for_clustering

output:
set name, file ('*.bed') into bed_for_motif_esitmation
Expand Down Expand Up @@ -132,7 +132,7 @@ process tomtom {
}


//Joining channels with meme and tsv files. Filter joined channel on linecount.
//Joining channels with meme and tsv files. Filter joined channel on line count.
//Only meme-files which corresponding tsv files have linecount <= 1 are writen to next channel.
for_filter = meme_for_filter.join( tsv_for_filter )
for_filter
Expand All @@ -143,7 +143,7 @@ for_filter
.into { meme_for_scan; check }


//If unknown channel is empty print errormessage
//If channel 'check' is empty print errormessage
process check_for_unknown_motifs {
echo true

Expand All @@ -160,6 +160,7 @@ process check_for_unknown_motifs {
}


//Get the best(first) Motif from each MEME-file
process get_best_motif {

input:
Expand Down Expand Up @@ -220,6 +221,8 @@ process create_GTF {
bed_for_final_filter.combine(gtf_for_uropa).set {uropa_in}


// Create configuration file for UROPA.
// Takes template and replaces bed- and gtf-placeholders with actual paths.
process create_uropa_config {

publishDir '/mnt/agnerds/Rene.Wiegandt/10_Master/', mode: 'copy'
Expand Down

0 comments on commit 1a6ce69

Please sign in to comment.