Skip to content

Commit 0f53ed4

Browse files
committed
changes for local execution
1 parent 9d70668 commit 0f53ed4

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

workflow/envs/VIS_fastqc_env.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ channels:
44
- bioconda
55
- defaults
66
dependencies:
7-
- multiqc
7+
- fastqc

workflow/envs/VIS_full_env.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,6 @@ dependencies:
1717
- minimap2=2.26 #minimap
1818
- bedtools #bedtools
1919
- blast #blast
20-
- multiqc #fastqc #multiqc
20+
- fastqc #fastqc
21+
- multiqc #multiqc
2122
- nanoplot #nanoplot

workflow/scripts/VIS_helper_functions.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@
1212
from Bio import SeqIO
1313
import pandas as pd
1414
import numpy as np
15+
import matplotlib
16+
matplotlib.use('Agg') #ensures that now GUI are opened from maptlotlib during execution of the pipeline
1517
import matplotlib.pyplot as plt
1618
import collections
1719
import seaborn as sns
@@ -601,7 +603,6 @@ def plot_longest_interval(matches, longest_start, longest_end, longest_subject_i
601603
plt.legend(loc='upper right')
602604
plt.tight_layout()
603605
plt.savefig(outfile, dpi=600)
604-
plt.show()
605606

606607
@redirect_logging(logfile_param="logfile")
607608
def find_and_plot_longest_blast_interval(blastn, buffer, threshold, output_dir, logfile):

0 commit comments

Comments
 (0)