AmelieSchreiber
commited on
Commit
•
44efbd5
1
Parent(s):
dff8ab6
Update cluster_landscapes_v3.py
Browse files- cluster_landscapes_v3.py +1 -1
cluster_landscapes_v3.py
CHANGED
@@ -71,7 +71,7 @@ file_path = 'clustering_and_evoprotgrad/filtered_protein_interaction_pairs.tsv'
|
|
71 |
protein_pairs_df = pd.read_csv(file_path, sep='\t')
|
72 |
|
73 |
# Only process the first 1000 proteins
|
74 |
-
protein_pairs_df = protein_pairs_df.head(
|
75 |
|
76 |
# Extract concatenated sequences
|
77 |
concatenated_sequences = protein_pairs_df['Protein1'] + protein_pairs_df['Protein2']
|
|
|
71 |
protein_pairs_df = pd.read_csv(file_path, sep='\t')
|
72 |
|
73 |
# Only process the first 1000 proteins
|
74 |
+
protein_pairs_df = protein_pairs_df.head(10000)
|
75 |
|
76 |
# Extract concatenated sequences
|
77 |
concatenated_sequences = protein_pairs_df['Protein1'] + protein_pairs_df['Protein2']
|