Scroll to navigation

OBIGREP(1) OBITools OBIGREP(1)

NAME

obigrep - description of obigrep

The obigrep command is in some way analog to the standard Unix grep command. It selects a subset of sequence records from a sequence file.

A sequence record is a complex object composed of an identifier, a set of attributes (key=value), a definition, and the sequence itself.

Instead of working text line by text line as the standard Unix tool, selection is done sequence record by sequence record. A large set of options allows refining selection on any of the sequence record elements.

Moreover obigrep allows specifying simultaneously several conditions (that take the value TRUE or FALSE) and only the sequence records that fulfill all the conditions (all conditions are TRUE) are selected.

SEQUENCE RECORD SELECTION OPTIONS

Regular expression pattern to be tested against the sequence itself. The pattern is case insensitive.


Examples:

> obigrep -s 'GAATTC' seq1.fasta > seq2.fasta


Selects only the sequence records that contain an EcoRI restriction site.

> obigrep -s 'A{10,}' seq1.fasta > seq2.fasta


Selects only the sequence records that contain a stretch of at least 10 A.

> obigrep -s '^[ACGT]+$' seq1.fasta > seq2.fasta


Selects only the sequence records that do not contain ambiguous nucleotides.




Regular expression pattern to be tested against the definition of the sequence record. The pattern is case sensitive.


Example:

> obigrep -D '[Cc]hloroplast' seq1.fasta > seq2.fasta


Selects only the sequence records whose definition contains chloroplast or Chloroplast.




Regular expression pattern to be tested against the identifier of the sequence record. The pattern is case sensitive.


Example:

> obigrep -I '^GH' seq1.fasta > seq2.fasta


Selects only the sequence records whose identifier begins with GH.




<FILENAME> points to a text file containing the list of sequence record identifiers to be selected. The file format consists in a single identifier per line.


Example:

> obigrep --id-list=my_id_list.txt seq1.fasta > seq2.fasta


Selects only the sequence records whose identifier is present in the my_id_list.txt file.





Regular expression pattern matched against the attributes of the sequence record. the value of this attribute is of the form : key:regular_pattern. The pattern is case sensitive. Several -a options can be used on the same command line and in this last case, the selected sequence records will match all constraints.


Example:

> obigrep -a 'family_name:Asteraceae' seq1.fasta > seq2.fasta


Selects the sequence records containing an attribute whose key is family_name and value is Asteraceae.




Selects sequence records having an attribute whose key = <KEY>.


Example:

> obigrep -A taxid seq1.fasta > seq2.fasta


Selects only the sequence records having a taxid attribute defined.




Python boolean expression to be evaluated for each sequence record. The attribute keys defined for each sequence record can be used in the expression as variable names. An extra variable named ‘sequence’ refers to the sequence record itself. Several -p options can be used on the same command line and in this last case, the selected sequence records will match all constraints.


Example:

>  obigrep -p '(forward_error<2) and (reverse_error<2)' \

seq1.fasta > seq2.fasta


Selects only the sequence records whose forward_error and reverse_error attributes have a value smaller than two.




Keeps sequence records whose sequence length is equal or shorter than lmax.


Example:

> obigrep -L 100 seq1.fasta > seq2.fasta


Selects only the sequence records that have a sequence length equal or shorter than 100bp.




Selects sequence records whose sequence length is equal or longer than lmin.


Examples:

> obigrep -l 100 seq1.fasta > seq2.fasta


Selects only the sequence records that have a sequence length equal or longer than 100bp.




Inverts the sequence record selection.


Examples:

> obigrep -v -l 100 seq1.fasta > seq2.fasta


Selects only the sequence records that have a sequence length shorter than 100bp.




TAXONOMY RELATED OPTIONS

ecoPCR taxonomy Database name

NCBI Taxonomy dump repository name

select sequence with taxid tag containing a parent of rank <RANK_NAME>



OPTIONS TO SPECIFY INPUT FORMAT

Restrict the analysis to a sub-part of the input file

The N first sequence records of the file are discarded from the analysis and not reported to the output file

Only the N next sequence records of the file are analyzed. The following sequences in the file are neither analyzed, neither reported to the output file. This option can be used conjointly with the –skip option.

Sequence annotated format

Input file is in genbank format.

Input file is in embl format.

Input file is in fasta format (including OBITools fasta extensions).

Input file is in Sanger fastq format (standard fastq used by HiSeq/MiSeq sequencers).

Input file is in fastq format produced by Solexa (Ga IIx) sequencers.

Input file is in ecoPCR format.

Input is an ecoPCR database.

Specifying the sequence type

Input file contains nucleic sequences.

Input file contains protein sequences.

OPTIONS TO SPECIFY OUTPUT FORMAT

Standard output format

--fasta-output
Output sequences in OBITools fasta format

Output sequences in Sanger fastq format

Generating an ecoPCR database

--ecopcrdb-output=<PREFIX_FILENAME>
Creates an ecoPCR database from sequence records results

Miscellaneous option

Print sequences in upper case (default is lower case)

COMMON OPTIONS

Shows this help message and exits.

Sets logging in debug mode.

AUTHOR

The OBITools Development Team - LECA

COPYRIGHT

2019 - 2015, OBITool Development Team

July 27, 2019 1.02 13