-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5073f26
commit 65cddfa
Showing
5 changed files
with
0 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
|
||
from __future__ import absolute_import | ||
|
||
import logging | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -189,7 +189,6 @@ def set_args(): | |
Split fasta files into sub files by accumulated sequence length or number | ||
author: fanjunpeng ([email protected]) | ||
version: v1.0 | ||
""") | ||
|
||
args.add_argument("input", metavar="FASTAs", nargs="+", help="fasta files") | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,6 @@ | |
""" | ||
import argparse | ||
from multiprocessing import Pool | ||
import os.path | ||
|
||
from FastaReader import open_fasta | ||
|
||
|
@@ -164,7 +163,6 @@ def get_args(): | |
Statistics on fasta files | ||
author: fanjunpeng ([email protected]) | ||
version: v1.0 | ||
""") | ||
|
||
args.add_argument("input", metavar='FILEs', nargs="+", help="file paths, '*' is accepted") | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -190,7 +190,6 @@ def set_args(): | |
Split fastq files into sub files by accumulated sequence length or number | ||
author: fanjunpeng ([email protected]) | ||
version: v1.0 | ||
""") | ||
|
||
args.add_argument("input", metavar="FASTQs", nargs="+", help="fastq files") | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -164,7 +164,6 @@ def get_args(): | |
Statistics on fastq files | ||
author: fanjunpeng ([email protected]) | ||
version: v1.0 | ||
""") | ||
|
||
args.add_argument("input", metavar='FILEs', nargs="+", help="file paths, '*' is accepted") | ||
|