Skip to content

Commit

Permalink
fix: remove debug
Browse files Browse the repository at this point in the history
  • Loading branch information
rhysnewell committed Apr 9, 2024
1 parent c50b6b5 commit b5a1d3a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
1 change: 0 additions & 1 deletion aviary/modules/processor.py
Original file line number Diff line number Diff line change
Expand Up @@ -521,7 +521,6 @@ def process_batch(args, prefix):
break

batch = pd.read_csv(args.batch_file, sep=separator, engine='python', names=BATCH_HEADER, header=header)
print(batch)
if len(batch.columns) != 7:
logging.critical(f"Batch file contains incorrect number of columns ({len(batch.columns)}). Should contain 7.")
logging.critical(f"Current columns: {batch.columns}")
Expand Down
10 changes: 5 additions & 5 deletions docs/_include/examples/example_batch.tsv
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
sample short_reads_1 short_reads_2 long_reads long_read_type assembly coassemble
sample_1 pe1.fq.gz pe2.fq.gz nanopore.fq.gz ont NA NA
sample_2 interleaved.fq.gz NA pacbio.fq.gz ccs NA NA
sample_3 pe1.1.fq.gz,pe1.2.fq.gz pe2.1.fq.gz,pe2.2.fq.gz n1.fq.gz,n2.fq.gz,n3.fq.gz ont-hq NA True
sample_4 pe1.1.fq.gz,pe1.2.fq.gz pe2.1.fq.gz,pe2.2.fq.gz n1.fq.gz,n2.fq.gz,n3.fq.gz ont-hq assembly.fasta False
sample short_reads_1 short_reads_2 long_reads long_read_type assembly coassemble
sample_1 pe1.fq.gz pe2.fq.gz nanopore.fq.gz ont NA NA
sample_2 interleaved.fq.gz NA pacbio.fq.gz ccs NA NA
sample_3 pe1.1.fq.gz,pe1.2.fq.gz pe2.1.fq.gz,pe2.2.fq.gz n1.fq.gz,n2.fq.gz,n3.fq.gz ont-hq NA True
sample_4 pe1.1.fq.gz,pe1.2.fq.gz pe2.1.fq.gz,pe2.2.fq.gz n1.fq.gz,n2.fq.gz,n3.fq.gz ont-hq assembly.fasta False

0 comments on commit b5a1d3a

Please sign in to comment.