Skip to content

Estimation motifs #92

Merged
merged 25 commits into from
Mar 26, 2019
Merged
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
170ca1e
get_motif_seq.R: Removed redundant code
renewiegandt Jan 28, 2019
565d4b8
Rename get_motif_seq.R
renewiegandt Jan 28, 2019
e470bed
pipeline.nf: changed output dir of logs
renewiegandt Jan 28, 2019
b931ea7
compareBed.sh: rename stats to log
renewiegandt Jan 28, 2019
35d6f0c
Added venn.R to 3.2_evaluation
renewiegandt Feb 4, 2019
98654e1
Update uropa.config
renewiegandt Feb 4, 2019
2186cc6
Added uropa to the enviroment yaml
renewiegandt Feb 4, 2019
3793c70
Added uropa and venn process; mergeing gtf files; added parameter for…
renewiegandt Feb 4, 2019
1a95d4c
Added yaml-file for meme-suite enviroment
renewiegandt Feb 11, 2019
011b99a
Added meme_env parameter
renewiegandt Feb 11, 2019
10a3df3
Fixed channel for venn; added conda meme-env
renewiegandt Feb 11, 2019
4c08eeb
added parameter gap penalty to 2.2config
renewiegandt Feb 11, 2019
9bf3ed9
merge_similar_clusters.R: bugfix
renewiegandt Feb 11, 2019
50ec488
fixed label_cluster; minor changes
renewiegandt Feb 11, 2019
e11e0af
merge_similar_clusters: bugfix; improved cluster plot
renewiegandt Mar 4, 2019
a46476f
pipeline: added uropa summary to output
renewiegandt Mar 4, 2019
51dcfc0
merge_similar_clusters: fixed filenames
renewiegandt Mar 4, 2019
f1eb5f1
pipeline: Added seed for glam2
renewiegandt Mar 4, 2019
c034878
Added skript png_to_pdf
renewiegandt Mar 20, 2019
fae46c6
Better output directory names
renewiegandt Mar 20, 2019
cdc73a2
Minor formating changes of output file
renewiegandt Mar 20, 2019
89ae057
Update parameters in README
renewiegandt Mar 26, 2019
f8c572b
Added new parameters to config files
renewiegandt Mar 26, 2019
5d9fb6c
Minor changes
renewiegandt Mar 26, 2019
07d492c
Minor changes
renewiegandt Mar 26, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Prev Previous commit
Next Next commit
pipeline: Added seed for glam2
renewiegandt committed Mar 4, 2019
commit f1eb5f13414963e503c5f9c0cccb556d773a032a
12 changes: 8 additions & 4 deletions pipeline.nf
Original file line number Diff line number Diff line change
@@ -46,6 +46,7 @@
params.motif_max_key = 20 // Maximum number of key positions (aligned columns)
params.iteration = 10000 // Number of Iterations done by glam2. A high iteration number equals a more accurate result but with an higher runtime.
params.gap_penalty = 1000
params.seed = 123456789

//tomtom
params.tomtom_treshold = 0.01 // threshold for similarity score.
@@ -116,6 +117,7 @@ if (params.bigwig == "" || params.bed == "" || params.organism == "" || params.g
--tomtom_treshold FLOAT Threshold for similarity score. (Default: 0.01)
--best_motif INT Get the best X motifs per cluster. (Default: 3)
--gap_penalty INT Set penalty for gaps in GLAM2 (Default: 1000)
--seed Set seed for GLAM2 (Default: 123456789)
Moitf clustering:
--cluster_motif Boolean If 1 pipeline clusters motifs. If its 0 it does not. (Defaul: 0)
--edge_weight INT Minimum weight of edges in motif-cluster-graph (Default: 5)
@@ -154,7 +156,7 @@ int_params = ["window_length", "step", "min_size_fp", "max_size_fp", "kmer",
req_params = ["bigwig", "bed", "genome_fasta", "motif_db", "config"]
all_params = int_params + req_params + ["organism" , "identity", "tfbsscan_method",
"percentage", "tomtom_treshold", "motif_similarity_thresh", "out",
"tissues", "gtf_path", "cluster_motif", "tfbs_path", "help", "gtf2"]
"tissues", "gtf_path", "cluster_motif", "tfbs_path", "help", "gtf2", "seed"]

valid_organism = ["hg38", "hg19", "mm9", "mm10"]
valid_tfbsscan_methods = ["moods","fimo"]
@@ -376,7 +378,7 @@ process glam2 {

script:
"""
glam2 n ${fasta} -O ./${name}/ -E ${params.gap_penalty} -J ${params.gap_penalty} -a ${params.motif_min_key} -b ${params.motif_max_key} -z 5 -n ${params.iteration}
glam2 n ${fasta} -O ./${name}/ -E ${params.gap_penalty} -J ${params.gap_penalty} -a ${params.motif_min_key} -b ${params.motif_max_key} -z 5 -n ${params.iteration} -s ${params.seed}
"""
}

@@ -505,7 +507,7 @@ process merge_fasta {

output:
file ('*.fasta') into motif_clustered_fasta_list
file('*.png')
file('*')

when:
params.cluster_motif == 1
@@ -544,7 +546,7 @@ process clustered_glam2 {
script:
name = fasta.getBaseName()
"""
glam2 n ${fasta} -O ./${name}/ -E ${params.gap_penalty} -J ${params.gap_penalty} -a ${params.motif_min_key} -b ${params.motif_max_key} -z 5 -n ${params.iteration}
glam2 n ${fasta} -O ./${name}/ -E ${params.gap_penalty} -J ${params.gap_penalty} -a ${params.motif_min_key} -b ${params.motif_max_key} -z 5 -n ${params.iteration} -s ${params.seed}
"""
}

@@ -836,4 +838,6 @@ workDir : ${workflow.workDir}
exit status : ${workflow.exitStatus}
Error report: ${workflow.errorReport ?: '-'}
"""
f = file(workflow.workDir + '/tmp/re_scan_final')
f.deleteDir()
}