We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Description: Encountered the following error messages while testing the cluster address assignment with 2 or fewer levels using GAS version 0.1.2.
Cluster Address(es): 1 level (e.g., 1): AttributeError: 'int' object has no attribute 'split'
AttributeError: 'int' object has no attribute 'split'
Cluster Address(es): 2 levels (e.g., 1.1): AttributeError: 'float' object has no attribute 'split'
AttributeError: 'float' object has no attribute 'split'
Possible Cause: Could be in the format_df function in assign.py at line 88:
format_df
assign.py
genomic_address_service/genomic_address_service/classes/assign.py
Lines 83 to 101 in c6c246f
Proposed Fix: Modify line 88 to convert data[sample_id] to a string before splitting:
data[sample_id]
address = str(data[sample_id]).split(delim)
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Description: Encountered the following error messages while testing the cluster address assignment with 2 or fewer levels using GAS version 0.1.2.
Cluster Address(es): 1 level (e.g., 1):
AttributeError: 'int' object has no attribute 'split'
Cluster Address(es): 2 levels (e.g., 1.1):
AttributeError: 'float' object has no attribute 'split'
Possible Cause: Could be in the
format_df
function inassign.py
at line 88:genomic_address_service/genomic_address_service/classes/assign.py
Lines 83 to 101 in c6c246f
Proposed Fix: Modify line 88 to convert
data[sample_id]
to a string before splitting:The text was updated successfully, but these errors were encountered: