Skip to content

Commit

Permalink
Documentation fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
maltekuehl committed May 30, 2024
1 parent cc0af42 commit f704d14
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions pytximport/core/_tximport.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ def tximport(
Args:
file_paths (List[Union[str, Path]]): The paths to the quantification files.
data_type (Literal["kallisto", "salmon"], optional): The type of quantification file.
transcript_gene_map (pd.DataFrame): The mapping from transcripts to genes. Contains two columns: `transcript`
and `gene`.
transcript_gene_map (pd.DataFrame): The mapping from transcripts to genes. Contains two columns: `transcript_id`
and `gene_id`.
counts_from_abundance (Optional[Literal["scaled_tpm", "length_scaled_tpm"]], optional): The type of counts to
convert to. Defaults to "length_scaled_tpm".
return_transcript_data (bool, optional): Whether to return the transcript-level expression. Defaults to False.
Expand Down
4 changes: 2 additions & 2 deletions pytximport/utils/_convert_transcripts_to_genes.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ def convert_transcripts_to_genes(
Args:
transcript_data (xr.Dataset): The transcript-level expression data from multiple samples.
transcript_gene_map (pd.DataFrame): The mapping from transcripts to genes. Contains two columns: `transcript`
and `gene`.
transcript_gene_map (pd.DataFrame): The mapping from transcripts to genes. Contains two columns: `transcript_id`
and `gene_id`.
ignore_after_bar (bool, optional): Whether to split the transcript id after the bar character (`|`).
Defaults to True.
ignore_transcript_version (bool, optional): Whether to ignore the transcript version. Defaults to True.
Expand Down

0 comments on commit f704d14

Please sign in to comment.