Skip to content

Commit

Permalink
plot_DAG everywhere
Browse files Browse the repository at this point in the history
  • Loading branch information
WardDeb committed Aug 12, 2024
1 parent d3d1143 commit 5e18d4a
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion snakePipes/workflows/ATACseq/ATACseq.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ def main():
cf.runAndCleanup(args, snakemake_cmd, logfile_name)

#CreateDAG
cf.print_DAG(args,snakemake_cmd, __file__,defaults)
cf.plot_DAG(args, snakemake_cmd, __file__, defaults)


if __name__ == "__main__":
Expand Down
2 changes: 1 addition & 1 deletion snakePipes/workflows/ChIPseq/ChIPseq.py
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ def main():
cf.runAndCleanup(args, snakemake_cmd, logfile_name)

#CreateDAG
cf.print_DAG(args,snakemake_cmd, __file__,defaults)
cf.plot_DAG(args, snakemake_cmd, __file__, defaults)


if __name__ == "__main__":
Expand Down
2 changes: 1 addition & 1 deletion snakePipes/workflows/DNAmapping/DNAmapping.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ def main():
cf.runAndCleanup(args, snakemake_cmd, logfile_name)

#CreateDAG
cf.print_DAG(args,snakemake_cmd, __file__,defaults)
cf.plot_DAG(args, snakemake_cmd, __file__, defaults)


if __name__ == "__main__":
Expand Down
2 changes: 1 addition & 1 deletion snakePipes/workflows/HiC/HiC.py
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ def main():
cf.runAndCleanup(args, snakemake_cmd, logfile_name)

# CreateDAG
cf.print_DAG(args, snakemake_cmd, __file__, defaults)
cf.plot_DAG(args, snakemake_cmd, __file__, defaults)


if __name__ == "__main__":
Expand Down
2 changes: 1 addition & 1 deletion snakePipes/workflows/WGBS/WGBS.py
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ def main():
cf.runAndCleanup(args, snakemake_cmd, logfile_name)

#CreateDAG
cf.print_DAG(args,snakemake_cmd, __file__,defaults)
cf.plot_DAG(args, snakemake_cmd, __file__, defaults)


if __name__ == "__main__":
Expand Down
2 changes: 1 addition & 1 deletion snakePipes/workflows/createIndices/createIndices.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ def main():
cf.runAndCleanup(args, snakemake_cmd, logfile_name)

#CreateDAG
cf.print_DAG(args,snakemake_cmd, __file__,defaults)
cf.plot_DAG(args, snakemake_cmd, __file__, defaults)


if __name__ == "__main__":
Expand Down
2 changes: 1 addition & 1 deletion snakePipes/workflows/mRNAseq/mRNAseq.py
Original file line number Diff line number Diff line change
Expand Up @@ -196,4 +196,4 @@ def main():
cf.runAndCleanup(args, snakemake_cmd, logfile_name)

#CreateDAG
cf.print_DAG(args,snakemake_cmd, __file__,defaults)
cf.plot_DAG(args, snakemake_cmd, __file__, defaults)
2 changes: 1 addition & 1 deletion snakePipes/workflows/ncRNAseq/ncRNAseq.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ def main():
cf.runAndCleanup(args, snakemake_cmd, logfile_name)

#CreateDAG
cf.print_DAG(args,snakemake_cmd, __file__,defaults)
cf.plot_DAG(args, snakemake_cmd, __file__, defaults)


if __name__ == "__main__":
Expand Down
2 changes: 1 addition & 1 deletion snakePipes/workflows/preprocessing/preprocessing.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ def main():
cf.runAndCleanup(args, snakemake_cmd, logfile_name)

#CreateDAG
cf.print_DAG(args,snakemake_cmd, __file__,defaults)
cf.plot_DAG(args, snakemake_cmd, __file__, defaults)


if __name__ == "__main__":
Expand Down
2 changes: 1 addition & 1 deletion snakePipes/workflows/scRNAseq/scRNAseq.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ def main():
cf.runAndCleanup(args, snakemake_cmd, logfile_name)

#CreateDAG
cf.print_DAG(args,snakemake_cmd, __file__,defaults)
cf.plot_DAG(args, snakemake_cmd, __file__, defaults)


if __name__ == "__main__":
Expand Down

0 comments on commit 5e18d4a

Please sign in to comment.