Clonotyping API¶
Module for clonotype aggregation.
clonotype ¶
Clonotype aggregation for TCRsift.
Groups cells by TCR CDR3 sequences to identify clonal populations.
aggregate_clonotypes ¶
aggregate_clonotypes(adata: AnnData, group_by: str = 'CDR3ab', min_umi: int = 2, handle_doublets: str = 'flag', verbose: bool = True, show_progress: bool = True) -> pd.DataFrame
Aggregate cells into clonotypes based on CDR3 sequences.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
adata
|
AnnData
|
AnnData with VDJ and phenotype information |
required |
group_by
|
str
|
How to group clones: "CDR3ab" (alpha+beta) or "CDR3b_only" (beta only) |
'CDR3ab'
|
min_umi
|
int
|
Minimum UMI count for a chain to be considered |
2
|
handle_doublets
|
str
|
How to handle cells with multiple chains: "flag", "remove", "keep-primary" |
'flag'
|
verbose
|
bool
|
Print detailed progress information |
True
|
show_progress
|
bool
|
Show progress bar |
True
|
Returns:
| Type | Description |
|---|---|
DataFrame
|
DataFrame with one row per unique clonotype |
Source code in tcrsift/clonotype.py
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 | |
get_clonotype_summary ¶
Get summary statistics for clonotypes.
Returns:
| Type | Description |
|---|---|
dict
|
Summary statistics |
Source code in tcrsift/clonotype.py
export_clonotypes_airr ¶
Export clonotypes in AIRR format.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
clonotypes
|
DataFrame
|
Clonotype DataFrame |
required |
output_path
|
str
|
Output file path (.tsv) |
required |
Source code in tcrsift/clonotype.py
calculate_clone_frequencies ¶
Calculate detailed frequency information for each clone.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
clonotypes
|
DataFrame
|
Clonotype DataFrame from aggregate_clonotypes |
required |
adata
|
AnnData
|
Original AnnData with cell-level data |
required |
Returns:
| Type | Description |
|---|---|
DataFrame
|
Clonotypes with additional frequency columns |