Skip to content

Commit

Permalink
Update documentation for filterAlignments. This fixes #267 #277 (#282)
Browse files Browse the repository at this point in the history
* Update documentation for filterAlignments. This fixes #267 #277
  • Loading branch information
PoslavskySV authored and dbolotin committed Nov 22, 2017
1 parent 80704b4 commit 350cccf
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 6 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG_CURRENT
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
minor: Added proper filtering for alleles with wildcard symbols in `featureToAlign` region
minor: Added proper filtering for alleles with wildcard symbols in `featureToAlign` region
minor: Documentation added for `filterAlignments`
5 changes: 0 additions & 5 deletions doc/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,6 @@ MiXCR is free for academic and non-profit use (see :ref:`License <license>`).

*MiXCR pipeline. The workflow from IG or T-cell receptor data sets to final clonotypes is shown*

:ref:`getting-started`
:ref:`main-actions`
:ref:`special-cases`
:ref:`in-depth-topics`

.. _getting-started:

.. toctree::
Expand Down
28 changes: 28 additions & 0 deletions doc/utils.rst
Original file line number Diff line number Diff line change
Expand Up @@ -47,3 +47,31 @@ Allows to merge multiple ``.vdjca`` files into a single one:
> mixcr mergeAlignments file1.vdjca file2.vdjca ... output.vdjca


Filter alignments
-----------------

Allows to filter alignments in ``.vdjca`` file. Example:

::

> mixcr filterAlignments --chains TRA,TRB input_file.vdjca output_file.vdjca

The available options are:

+--------------------------------+-------------------------------------------------------------------------------------------------+
| Option | Description |
+================================+=================================================================================================+
| ``-e``, ``--cdr3-equals`` | Include only those alignments which CDR3 equals to a specified nucleotide sequence |
+--------------------------------+-------------------------------------------------------------------------------------------------+
| ``c``, ``--chains`` | Include only alignments with specified immunological protein chains (comma separated list |
| | of some of IGH, IGL, IGK, TRA, TRB, TRG, TRD chains) |
+--------------------------------+-------------------------------------------------------------------------------------------------+
| ``-x``, ``--chimeras-only`` | Output only chimeric alignments |
+--------------------------------+-------------------------------------------------------------------------------------------------+
| ``-g``, ``--contains-feature`` | Include only those alignments that contain specified gene feature (see :ref:`ref-geneFeatures`) |
+--------------------------------+-------------------------------------------------------------------------------------------------+
| ``-i``, ``--read-ids`` | Output alignments with specified IDs only |
+--------------------------------+-------------------------------------------------------------------------------------------------+
| ``-n``, ``--limit`` | Maximal number of alignments to process |
+--------------------------------+-------------------------------------------------------------------------------------------------+

0 comments on commit 350cccf

Please sign in to comment.