Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support new format of MiSeq sample sheets #1144

Draft
wants to merge 19 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions .flake8
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ per-file-ignores =
micall/tests/test_cigar_tools.py: E704,W503
micall/tests/test_consensus_aligner.py: F841,E126,W504,E701,F401
micall/tests/test_contig_stitcher.py: W503
micall/tests/test_error_metrics_parser.py: E231
micall/tests/test_fastq_g2p.py: W293
micall/tests/test_hcv_reference_tree.py: W293
micall/tests/test_hcv_rules_import.py: E241
Expand Down Expand Up @@ -77,6 +76,5 @@ per-file-ignores =
micall/utils/report_amino.py: W504
micall/utils/sam_g2p_simplify.py: W293,E265,E303,E305
micall/utils/sample_fastq.py: E305
micall/utils/sample_sheet_parser.py: E275,W504
micall/utils/scan_run_folders.py: W504
micall/utils/v3loop_alignment_scores/plot.py: W293
5 changes: 4 additions & 1 deletion .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,11 +118,14 @@ jobs:
- name: Singularity build
run: sudo singularity build micall.simg Singularity

- name: Install python packages
run: pip install multicsv

- name: Singularity test
run: python release_test_microtest.py micall.simg

- name: Upload Singularity Image
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: micall.simg
path: micall.simg
1 change: 0 additions & 1 deletion .mypy.ini
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,6 @@ exclude = (?x)
^micall/utils/sample_fastq[.]py$|
^micall/utils/sample_project_summary[.]py$|
^micall/utils/samples_from_454[.]py$|
^micall/utils/sample_sheet_parser[.]py$|
^micall/utils/scan_run_folders[.]py$|
^micall/utils/seed_alignments[.]py$|
^micall/utils/spring_beads[.]py$|
Expand Down
2 changes: 1 addition & 1 deletion micall/tests/test_error_metrics_parser.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from io import BytesIO, StringIO
from struct import pack
from unittest import TestCase
from micall.monitor.error_metrics_parser import read_errors, write_phix_csv,\
from micall.monitor.error_metrics_parser import read_errors, write_phix_csv, \
read_records


Expand Down
Loading
Loading