Skip to content

Commit

Permalink
fixed some bugs but there is still a problem, even when the command i…
Browse files Browse the repository at this point in the history
…s "ls -ltr"
  • Loading branch information
jvanheld committed Aug 19, 2018
1 parent 67afdc3 commit 53aacfe
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions scripts/snakefiles/workflows/integration_ChIP_RNA.wf
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,8 @@ rule gene_comparison:
image_format = venn_format,
TF = TF,
verbose = 1
output:
output:
#"boum"
venn = VENN,
gene_table = TABLE,
chip_genes_gff = GFF_CHIP,
Expand All @@ -142,25 +143,25 @@ rule gene_comparison:
log: INTEGRATION_DIR + "/" + outdir_prefix + ".log"
benchmark: INTEGRATION_DIR + "/" + outdir_prefix + "_benchmark.txt"
conda: "../envs/venn.yaml"
conda: "../envs/rnaseq_deg.yaml"
shell: """
Rscript ../..//RSnakeChunks/misc/gene_lists_comparison.R \
--chip_genes={input.chip_genes} \
--rna_genes={input.rna_genes} \
--gene_descriptions={input.regulondb_gene_product} \
--TUs={input.regulondb_tus} \
--BS={input/regulondb.sites} \
--BS={input.regulondb_sites} \
--TFs={input.regulondb_gene_product} \
--myTF={params.TF} \
--venn.format={params.image_format} \
--verbose={params.verbose} \
--outdir={params.outdir} \
--venn={output.VENN} \
--venn={output.venn} \
--gene_table={output.gene_table} \
--chip_genes_gff={output.chip_genes_gff} \
--rna_genes_gff={output.rna_genes_gff} \
--regulon_genes_gff={output.regulon_genes_gff}
--regulon_genes_gff={output.regulon_genes_gff}
&> {log}
#echo "HELLO"; ls -ltr > boum \
"""

# script:
Expand Down

0 comments on commit 53aacfe

Please sign in to comment.