Skip to content

Commit 76f4709

Browse files
author
Tobias Hofmann
committed
fixed matplotlib plotting bug
1 parent ac77360 commit 76f4709

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

recipe/meta.yaml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
{% set version = "1.1.13" %}
1+
{% set version = "1.1.14" %}
22

33
package:
44
name: secapr
55
version: {{ version }}
66

77
source:
88
url: https://github.com/AntonelliLab/seqcap_processor/archive/v{{ version }}.tar.gz
9-
sha256: d4d90767c5ca1ba28906685b456f1b726b0386b84f4938c633f7ffeff8e6c08e
9+
sha256: 79b08ed957bf71d996419a329ea667ecbefb7b7d3e1974e7e7c060c2358d9a86
1010

1111
build:
1212
skip: True # [not py27]
@@ -22,7 +22,6 @@ requirements:
2222
- setuptools
2323
- biopython
2424
- pandas
25-
- r-base
2625

2726
run:
2827
- python
@@ -43,8 +42,6 @@ requirements:
4342
- pandas
4443
- numpy
4544
- cogent
46-
- r-base
47-
- r-tidyverse
4845

4946
test:
5047
imports:

secapr/quality_check.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
This script runs a fastqc test on all fastq samples in a user-provided folder and creates an overview plot,
55
"""
66

7+
import matplotlib
8+
matplotlib.use('Agg')
9+
710
import os
811
import sys
912
import glob

0 commit comments

Comments
 (0)